@charset "UTF-8";
/*
**  ===================================================================
**  各種設定：var,reset,base-font,break-point
**  ===================================================================
*/
/**
 * Foundation
**/
/*
**  ===================================================================
**  foundation CSS ※サイト全体に共通のスタイル
**  ===================================================================
*/
/*!
     * YUI 3.5.0 - reset.css (http://developer.yahoo.com/yui/3/cssreset/)
     * http://cssreset.com
     * Copyright 2012 Yahoo! Inc. All rights reserved.
     * http://yuilibrary.com/license/
     */
/*
        TODO will need to remove settings on HTML since we can't namespace it.
        TODO with the prefix, should I group by selector or property for weight savings?
    */
html {
  color: #000;
  background: #FFF; }

/*
        TODO remove settings on BODY since we can't namespace it.
    */
/*
        TODO test putting a class on HEAD.
            - Fails on FF.
    */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

fieldset,
img {
  border: 0; }

/*
        TODO think about hanlding inheritence differently, maybe letting IE6 fail a bit...
    */
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal; }

ol,
ul {
  list-style: none; }

caption,
th {
  text-align: left; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal; }

q:before,
q:after {
  content: ''; }

abbr,
acronym {
  border: 0;
  font-variant: normal; }

/* to preserve line-height and selector appearance */
sup {
  vertical-align: text-top; }

sub {
  vertical-align: text-bottom; }

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit; }

/*to enable resizing for IE*/
input,
textarea,
select {
  *font-size: 100%; }

/*because legend doesn't inherit in IE */
legend {
  color: #000; }

/* YUI CSS Detection Stamp */
#yui3-css-stamp.cssreset {
  display: none; }

/*
**  ===================================================================
**  Mixin CSS
**  ===================================================================
*/
/**
 * clearfix
**/
.clearfix:after {
  content: "";
  clear: both;
  display: block; }

header {
  border-top: 16px solid #e1242a;
  border-bottom: 1px solid #ddd;
  height: 84px;
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  @media only screen and (max-width: 896px) {
    header {
      padding: 0 10px; } }
  header .header_inner {
    max-width: 995px;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%; }
    header .header_inner a {
      text-decoration: none; }
      header .header_inner a .logo_wrap {
        font-size: 16px;
        color: #4c4847;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        min-width: 300px; }
        @media only screen and (max-width: 896px) {
          header .header_inner a .logo_wrap {
            width: 90vw;
            min-width: inherit; } }
        header .header_inner a .logo_wrap span {
          -webkit-box-flex: 1;
          -webkit-flex: 1;
          -ms-flex: 1;
          flex: 1; }
        header .header_inner a .logo_wrap img {
          height: 24px;
          margin-right: 16px; }
    @media only screen and (max-width: 896px) {
      header .header_inner nav {
        display: none; } }
    header .header_inner nav ul {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }
      header .header_inner nav ul li {
        margin-left: 18px; }
        header .header_inner nav ul li a {
          color: #646464;
          font-size: 10px; }
          header .header_inner nav ul li a::before {
            content: ">";
            color: #f24b4a;
            margin-right: 8px; }

.sp_nav {
  display: none; }
  @media only screen and (max-width: 896px) {
    .sp_nav {
      display: block;
      padding: 0 20px;
      box-sizing: border-box; } }
  .sp_nav .nav_header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    height: 80px;
    background: #fff; }
    .sp_nav .nav_header .title {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      height: 100%;
      font-size: 20px;
      color: #004178; }
      .sp_nav .nav_header .title img {
        margin-right: 12px; }
    .sp_nav .nav_header .btn {
      width: 30px;
      height: 23px;
      background: url("../images/nav_open.svg");
      background-size: 30px 23px;
      background-position: center; }
  .sp_nav ul {
    display: none; }
  .sp_nav.active ul {
    display: block;
    position: absolute;
    right: 0;
    width: 100%;
    background: #fff;
    top: 162px; }
    .sp_nav.active ul li {
      height: 55px; }
      .sp_nav.active ul li a {
        width: 100%;
        color: #332c26;
        letter-spacing: 0.063em;
        padding: 0 16px;
        box-sizing: border-box;
        margin: 0 0 16px 0;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        line-height: 55px; }
        .sp_nav.active ul li a:after {
          content: "";
          width: 7px;
          height: 8px;
          display: block;
          background: url(../images/side_arrow.svg);
          background-size: contain; }
  .sp_nav .btn {
    background: url("../images/nav_close.svg");
    background-size: 23px 23px;
    background-position: center;
    background-repeat: no-repeat; }

footer .global_footer {
  border-left: 16px solid #e1242a;
  height: 186px;
  background: -webkit-linear-gradient(right, #f5f5f5, #fff);
  background: linear-gradient(-90deg, #f5f5f5, #fff);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }
  @media only screen and (max-width: 896px) {
    footer .global_footer {
      background: #fff;
      border: none;
      height: auto; } }
  footer .global_footer .inner {
    max-width: 995px;
    width: 100%;
    margin: 0 auto;
    height: 120px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    @media only screen and (max-width: 768px) {
      footer .global_footer .inner {
        max-width: inherit;
        height: 80px;
        position: relative;
        margin-left: 20px; } }
    @media only screen and (max-width: 896px) {
      footer .global_footer .inner {
        max-width: inherit;
        height: auto;
        position: relative;
        margin-left: 0; } }
    @media only screen and (max-width: 896px) {
      footer .global_footer .inner .info {
        height: 132px;
        border-left: 16px solid #ff0100;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
        padding: 0 8px 0 0; } }
    footer .global_footer .inner .info ul {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }
      @media only screen and (max-width: 480px) {
        footer .global_footer .inner .info ul {
          margin-left: 8px;
          width: 100%;
          -webkit-box-pack: start;
          -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
          justify-content: flex-start; } }
    footer .global_footer .inner .info .how_to {
      border-right: 1px solid #383838;
      padding-right: 10px; }
      @media only screen and (max-width: 869px) {
        footer .global_footer .inner .info .how_to {
          margin-left: 8px; } }
      @media only screen and (max-width: 480px) {
        footer .global_footer .inner .info .how_to {
          margin-left: 0px; } }
    footer .global_footer .inner .info .privacy {
      margin-left: 10px; }
    footer .global_footer .inner .info a {
      color: #333; }
      @media only screen and (max-width: 896px) {
        footer .global_footer .inner .info a {
          font-size: 14px; } }
    @media only screen and (max-width: 896px) {
      footer .global_footer .inner .copy {
        font-size: 14px;
        padding-left: 22px;
        padding-right: 12px;
        box-sizing: border-box;
        width: calc(100% - 70px);
        margin-bottom: 12px;
        margin-top: 4px;
        line-height: 1.5; } }
    footer .global_footer .inner .back_to_top {
      display: none; }
      @media only screen and (max-width: 896px) {
        footer .global_footer .inner .back_to_top {
          display: block;
          position: absolute;
          right: 0;
          bottom: 0;
          width: 70px;
          height: 34px;
          background: #999999;
          color: #fff;
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -webkit-align-items: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: center;
          -webkit-justify-content: center;
          -ms-flex-pack: center;
          justify-content: center;
          font-size: 12px; } }

@media only screen and (max-width: 896px) {
  .side_nav {
    display: none; } }

.side_nav ul {
  margin-left: -30px;
  margin-top: 40px; }
  .side_nav ul li {
    width: 265px;
    height: 120px;
    background: url("../images/side_menu_off.png");
    background-size: cover;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .side_nav ul li:nth-child(n+2) {
      margin-top: -40px; }
    .side_nav ul li.hover {
      background: url("../images/side_menu_on.png");
      background-size: cover; }
    .side_nav ul li.current {
      background: url("../images/side_menu_on.png");
      background-size: cover; }
      .side_nav ul li.current a {
        pointer-events: none;
        color: #fff; }
    .side_nav ul li a {
      font-size: 16px;
      font-weight: 500;
      color: #1c75b3; }
      .side_nav ul li a:hover {
        color: #fff; }

@font-face {
  font-family: 'gen';
  src: url("../fonts/genjyuu-nomal.woff") format("woff"), url("fonts/genjyuu-nomal.ttf") format("truetype"), url("fonts/genjyuu-nomal.eot") format("eot");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: 'gen';
  src: url("../fonts/genjyuu-bold.woff") format("woff"), url("fonts/genjyuu-bold.ttf") format("truetype"), url("fonts/genjyuu-bold.eot") format("eot");
  font-weight: 500;
  font-style: bold; }

body {
  font-family: "gen";
  font-weight: 300;
  font-display: swap;
  color: #555;
  min-width: 1024px; }
  @media only screen and (max-width: 896px) {
    body {
      min-width: inherit;
      width: 100vw;
      overflow-x: hidden; } }
  body.fix {
    height: 100vh;
    overflow: hidden; }
  body a {
    text-decoration: none;
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
    opacity: 1; }
    body a:hover {
      opacity: .8; }

.cookie_modal {
  position: fixed;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 100; }
  @media only screen and (max-width: 896px) {
    .cookie_modal {
      height: 100%;
      overflow-y: scroll;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
      -ms-flex-align: start;
      align-items: flex-start;
      padding-top: 5%; } }
  .cookie_modal .modal_block {
    background: #fff;
    width: 800px; }
    @media only screen and (max-width: 896px) {
      .cookie_modal .modal_block {
        width: 90%;
        margin-bottom: 100px; } }
  .cookie_modal .dialog-title {
    padding: 23px 0 21px 0;
    border-bottom: 1px solid #0075c1; }
    .cookie_modal .dialog-title .title {
      width: 360px;
      margin: 0 auto; }
      @media only screen and (max-width: 896px) {
        .cookie_modal .dialog-title .title {
          width: calc(100% - 40px); } }
      .cookie_modal .dialog-title .title img {
        width: 100%; }
  .cookie_modal .dialog-content01 {
    padding: 15px 40px 24px; }
    @media only screen and (max-width: 896px) {
      .cookie_modal .dialog-content01 {
        padding: 15px 20px 24px; } }
    .cookie_modal .dialog-content01 h3 {
      font-weight: bold;
      font-size: 20px;
      text-align: left;
      margin-bottom: 5px; }
    .cookie_modal .dialog-content01 p {
      font-size: 15px;
      line-height: 1.8; }
  .cookie_modal .dialog-content02 {
    background-color: #ecf7f7;
    padding: 18px 0 22px 0; }
    .cookie_modal .dialog-content02 .dialog-content02-txt {
      font-size: 16px;
      text-align: center;
      line-height: 1.8; }
      @media only screen and (max-width: 896px) {
        .cookie_modal .dialog-content02 .dialog-content02-txt {
          padding: 0 20px; } }
  .cookie_modal .btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 24px 0; }
    .cookie_modal .btn a {
      margin: 0 12px;
      text-decoration: none;
      display: block;
      color: #fff;
      text-align: center;
      width: 137px;
      height: 42px;
      line-height: 42px;
      font-size: 18px;
      border-radius: 10px; }
      .cookie_modal .btn a:first-child {
        background: #0075c1; }
      .cookie_modal .btn a:last-child {
        background: #ccc; }

@media only screen and (max-width: 896px) {
  .content {
    width: 100vw;
    overflow-x: hidden; } }

#index .mainvisual {
  background: url("../images/mainvisual_sp.png");
  background-size: cover;
  background-position: top right;
  padding: 60px  0 0 0; }
  @media only screen and (orientation: landscape) {
    #index .mainvisual {
      background: url("../images/mainvisual.png");
      min-height: calc(100vh - 84px);
      background-size: cover;
      background-position: top right;
      padding: 90px 0 0 0; } }
  #index .mainvisual .mv_inner {
    height: 100%;
    width: 995px;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
    @media only screen and (max-width: 896px) {
      #index .mainvisual .mv_inner {
        background-position: top right;
        width: 100%; } }
  #index .mainvisual h2 {
    width: 705px;
    border-bottom: 1px solid #fff;
    padding-bottom: 40px;
    padding-left: 30px;
    box-sizing: border-box;
    color: #1c75b3;
    font-size: 60px;
    letter-spacing: 0.2em; }
    @media only screen and (max-width: 896px) {
      #index .mainvisual h2 {
        font-size: 32px; } }
    #index .mainvisual h2 span {
      font-size: 50px; }
      @media only screen and (max-width: 896px) {
        #index .mainvisual h2 span {
          font-size: 24px; } }
    #index .mainvisual h2 .letter {
      font-size: 60px;
      letter-spacing: 0.269em; }
      @media only screen and (max-width: 896px) {
        #index .mainvisual h2 .letter {
          font-size: 32px; } }
    @media only screen and (max-width: 896px) {
      #index .mainvisual h2 {
        width: calc(100vw - 60px);
        padding-bottom: 22px;
        padding-left: 0;
        margin-left: 30px; } }
    #index .mainvisual h2 img {
      width: 497px; }
      @media only screen and (max-width: 896px) {
        #index .mainvisual h2 img {
          width: 100%; } }
  #index .mainvisual ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 844px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -12px; }
    @media only screen and (max-width: 480px) {
      #index .mainvisual ul {
        width: 100%;
        margin-left: -8%;
        margin-top: -40px; } }
    #index .mainvisual ul li {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
      width: 370px;
      height: 210px;
      background: url("../images/menu_bg.png");
      background-size: cover;
      background-position: center; }
      @media only screen and (max-width: 480px) {
        #index .mainvisual ul li {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
          -ms-flex-direction: column;
          flex-direction: column;
          width: 100%;
          height: 255px; } }
      @media only screen and (max-width: 375px) {
        #index .mainvisual ul li {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
          -ms-flex-direction: column;
          flex-direction: column;
          width: 100%;
          height: 220px; } }
      @media only screen and (max-width: 360px) {
        #index .mainvisual ul li {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
          -ms-flex-direction: column;
          flex-direction: column;
          width: 100%;
          height: 220px;
          margin-left: -7px; } }
      #index .mainvisual ul li:nth-child(2) {
        margin-left: -20px; }
        @media only screen and (max-width: 480px) {
          #index .mainvisual ul li:nth-child(2) {
            margin-left: 0px;
            margin-top: -100px; } }
        @media only screen and (max-width: 360px) {
          #index .mainvisual ul li:nth-child(2) {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
            width: 100%;
            height: 220px;
            margin-left: -10px; } }
      #index .mainvisual ul li:nth-child(3) {
        margin-top: -80px; }
        @media only screen and (max-width: 480px) {
          #index .mainvisual ul li:nth-child(3) {
            margin-top: -100px; } }
        @media only screen and (max-width: 360px) {
          #index .mainvisual ul li:nth-child(3) {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
            width: 100%;
            height: 220px;
            margin-left: -10px; } }
      #index .mainvisual ul li:nth-child(4) {
        margin-left: -20px;
        margin-top: -80px; }
        @media only screen and (max-width: 480px) {
          #index .mainvisual ul li:nth-child(4) {
            margin-top: -100px;
            margin-left: 0px; } }
        @media only screen and (max-width: 360px) {
          #index .mainvisual ul li:nth-child(4) {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
            width: 100%;
            height: 220px;
            margin-left: -10px; } }
      #index .mainvisual ul li a {
        text-decoration: none;
        color: #1f6fa8;
        font-weight: 500;
        font-size: 24px;
        letter-spacing: .05em;
        -webkit-transition: all .5s;
        transition: all .5s; }
        #index .mainvisual ul li a:hover {
          opacity: .5; }
  #index .mainvisual .movie {
    margin-left: -40px;
    margin-top: -70px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start; }
    @media only screen and (max-width: 480px) {
      #index .mainvisual .movie {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-left: -8%;
        margin-top: -100px;
        margin-bottom: 40px; } }
    #index .mainvisual .movie img {
      width: 430px; }
      @media only screen and (max-width: 414px) {
        #index .mainvisual .movie img {
          width: 495px; } }
      @media only screen and (max-width: 375px) {
        #index .mainvisual .movie img {
          width: 448px; } }
    #index .mainvisual .movie .text {
      width: 314px;
      margin-top: 60px; }
      @media only screen and (max-width: 480px) {
        #index .mainvisual .movie .text {
          margin-top: -40px;
          text-align: center; } }
      @media only screen and (max-width: 414px) {
        #index .mainvisual .movie .text {
          width: 495px; } }
      @media only screen and (max-width: 375px) {
        #index .mainvisual .movie .text {
          width: 448px; } }
      #index .mainvisual .movie .text h3 {
        color: #1f6fa8;
        font-size: 20px;
        font-weight: 500; }
      #index .mainvisual .movie .text p {
        margin-top: 8px;
        font-size: 16px;
        line-height: 22px;
        box-sizing: border-box; }
        @media only screen and (max-width: 480px) {
          #index .mainvisual .movie .text p {
            padding: 0 80px; } }

#index .info .info_header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 72px; }
  @media only screen and (max-width: 896px) {
    #index .info .info_header {
      margin-top: 32px; } }
  #index .info .info_header .icon img {
    width: 63px; }
  #index .info .info_header h2 {
    font-size: 28px;
    font-weight: 500;
    color: #333; }
  #index .info .info_header p {
    font-size: 18px; }
    @media only screen and (max-width: 896px) {
      #index .info .info_header p {
        padding: 0 27px;
        font-size: 16px;
        text-align: justify; } }

#index .info a {
  width: 995px;
  margin: 0 auto 100px auto;
  display: block; }
  @media only screen and (max-width: 896px) {
    #index .info a {
      width: calc(100% - 40px);
      margin: 0 auto 60px auto; } }
  #index .info a img {
    width: 995px;
    margin: 0 auto; }
    @media only screen and (max-width: 896px) {
      #index .info a img {
        width: 100%; } }
    #index .info a img.pc {
      display: block; }
      @media only screen and (max-width: 896px) {
        #index .info a img.pc {
          display: none; } }
    #index .info a img.sp {
      display: none; }
      @media only screen and (max-width: 896px) {
        #index .info a img.sp {
          display: block; } }

#page {
  background: url("../images/page_bg.jpg");
  background-color: #d9eeef;
  background-size: 100vw;
  background-position: top right;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }
  @media only screen and (max-width: 896px) {
    #page {
      background: url("../images/page_bg_sp.jpg");
      background-color: #d9eeef;
      background-size: 150vw;
      background-position: top right;
      background-repeat: no-repeat; } }
  #page .page_content {
    width: 757px;
    min-height: 100vh;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    margin-top: 70px;
    margin-bottom: 120px;
    padding: 30px;
    box-sizing: border-box; }
    @media only screen and (max-width: 896px) {
      #page .page_content {
        width: calc(100% - 40px);
        padding: 20px;
        min-height: inherit; } }
    #page .page_content h1 {
      color: #1f6fa8;
      font-size: 32px;
      font-weight: 500; }
      @media only screen and (max-width: 896px) {
        #page .page_content h1 {
          font-size: 28px; } }
    #page .page_content .breadcrumb {
      border-top: 2px dashed #1f6fa8;
      margin-top: 20px;
      margin-bottom: 30px; }
      #page .page_content .breadcrumb ul {
        margin-top: 12px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start; }
        #page .page_content .breadcrumb ul li:first-child:after {
          content: ">";
          margin: 0 4px; }
        #page .page_content .breadcrumb ul li a {
          color: #666;
          font-size: 13px; }
    #page .page_content .read {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      margin-bottom: 80px; }
    #page .page_content .page_block {
      padding-left: 26px;
      margin-bottom: 60px; }
      @media only screen and (max-width: 896px) {
        #page .page_content .page_block {
          padding-left: 0px; } }
      #page .page_content .page_block h2 {
        font-size: 24px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-bottom: 20px;
        margin-left: -26px; }
        @media only screen and (max-width: 896px) {
          #page .page_content .page_block h2 {
            margin-left: 0px;
            font-size: 24px;
            -webkit-box-align: start;
            -webkit-align-items: flex-start;
            -ms-flex-align: start;
            align-items: flex-start; } }
        #page .page_content .page_block h2:before {
          content: "";
          width: 26px;
          height: 27px;
          display: block;
          background: url("../images/icon_rose.svg");
          background-repeat: no-repeat;
          background-size: contain;
          margin-right: 6px; }
          @media only screen and (max-width: 896px) {
            #page .page_content .page_block h2:before {
              margin-top: 6px; } }
      #page .page_content .page_block .ul_blue li {
        margin-bottom: 22px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex; }
        #page .page_content .page_block .ul_blue li:before {
          content: "";
          width: 6px;
          height: 6px;
          background: #0075c1;
          display: block;
          float: left;
          border-radius: 2px;
          margin-top: 8px;
          margin-right: 8px;
          -webkit-box-flex: 0;
          -webkit-flex: 0 0 auto;
          -ms-flex: 0 0 auto;
          flex: 0 0 auto; }
          @media only screen and (max-width: 896px) {
            #page .page_content .page_block .ul_blue li:before {
              -webkit-box-flex: 0;
              -webkit-flex: 0 0 auto;
              -ms-flex: 0 0 auto;
              flex: 0 0 auto;
              margin-left: 16px; } }
        @media only screen and (max-width: 896px) {
          #page .page_content .page_block .ul_blue li br {
            display: none; } }
      #page .page_content .page_block .list_pink {
        border: 2px solid #e374a3;
        border-radius: 10px;
        background: #f5f5f5;
        padding: 24px;
        margin-top: 30px; }
        @media only screen and (max-width: 896px) {
          #page .page_content .page_block .list_pink {
            position: relative; } }
        #page .page_content .page_block .list_pink h3 {
          color: #fff;
          font-size: 15px;
          font-weight: 500;
          line-height: 33px;
          position: relative;
          border-radius: 16px;
          background: #e374a3;
          text-align: center;
          margin-bottom: 25px; }
          #page .page_content .page_block .list_pink h3 br {
            display: none; }
            @media only screen and (max-width: 896px) {
              #page .page_content .page_block .list_pink h3 br {
                display: block; } }
          @media only screen and (max-width: 896px) {
            #page .page_content .page_block .list_pink h3 {
              font-size: 15px;
              line-height: 1.4;
              padding: 4px 12px;
              display: -webkit-box;
              display: -webkit-flex;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
              -webkit-align-items: center;
              -ms-flex-align: center;
              align-items: center;
              -webkit-box-pack: justify;
              -webkit-justify-content: space-between;
              -ms-flex-pack: justify;
              justify-content: space-between; } }
          #page .page_content .page_block .list_pink h3:before {
            content: "";
            width: 6px;
            height: 6px;
            background: #fff;
            border-radius: 100%;
            display: block;
            position: absolute;
            top: 13px;
            left: 16px; }
            @media only screen and (max-width: 896px) {
              #page .page_content .page_block .list_pink h3:before {
                position: static; } }
          #page .page_content .page_block .list_pink h3:after {
            content: "";
            width: 6px;
            height: 6px;
            background: #fff;
            border-radius: 100%;
            display: block;
            position: absolute;
            top: 13px;
            right: 16px; }
            @media only screen and (max-width: 896px) {
              #page .page_content .page_block .list_pink h3:after {
                position: static; } }
        #page .page_content .page_block .list_pink ul {
          padding: 0 12px; }
          #page .page_content .page_block .list_pink ul li {
            margin-bottom: 22px;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex; }
            #page .page_content .page_block .list_pink ul li:before {
              content: "";
              width: 6px;
              height: 6px;
              background: #e374a3;
              display: block;
              float: left;
              border-radius: 2px;
              margin-top: 7px;
              margin-right: 8px;
              -webkit-box-flex: 0;
              -webkit-flex: 0 0 auto;
              -ms-flex: 0 0 auto;
              flex: 0 0 auto; }
              @media only screen and (max-width: 896px) {
                #page .page_content .page_block .list_pink ul li:before {
                  -webkit-box-flex: 1;
                  -webkit-flex: 1 0 auto;
                  -ms-flex: 1 0 auto;
                  flex: 1 0 auto; } }
            #page .page_content .page_block .list_pink ul li:last-child {
              margin-bottom: 0px; }
            #page .page_content .page_block .list_pink ul li span {
              font-weight: 500;
              color: #666; }
      #page .page_content .page_block .list_blue {
        border: 2px solid #74b4e3;
        border-radius: 10px;
        background: #f5f5f5;
        padding: 24px;
        margin-top: 30px;
        margin-bottom: 20px; }
        #page .page_content .page_block .list_blue h4, #page .page_content .page_block .list_blue h3 {
          color: #fff;
          font-size: 15px;
          font-weight: 500;
          line-height: 33px;
          position: relative;
          border-radius: 16px;
          background: #74b4e3;
          text-align: center;
          margin-bottom: 25px; }
          #page .page_content .page_block .list_blue h4:before, #page .page_content .page_block .list_blue h3:before {
            content: "";
            width: 6px;
            height: 6px;
            background: #fff;
            border-radius: 100%;
            display: block;
            position: absolute;
            top: 13px;
            left: 16px; }
            @media only screen and (max-width: 896px) {
              #page .page_content .page_block .list_blue h4:before, #page .page_content .page_block .list_blue h3:before {
                -webkit-box-flex: 1;
                -webkit-flex: 1 0 auto;
                -ms-flex: 1 0 auto;
                flex: 1 0 auto; } }
          #page .page_content .page_block .list_blue h4:after, #page .page_content .page_block .list_blue h3:after {
            content: "";
            width: 6px;
            height: 6px;
            background: #fff;
            border-radius: 100%;
            display: block;
            position: absolute;
            top: 13px;
            right: 16px; }
        #page .page_content .page_block .list_blue p {
          padding: 0 12px; }
        #page .page_content .page_block .list_blue ul {
          padding: 0 12px; }
          #page .page_content .page_block .list_blue ul li {
            margin-bottom: 22px;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex; }
            #page .page_content .page_block .list_blue ul li:before {
              content: "";
              width: 6px;
              height: 6px;
              background: #74b4e3;
              display: block;
              float: left;
              border-radius: 2px;
              margin-top: 7px;
              margin-right: 8px;
              -webkit-box-flex: 0;
              -webkit-flex: 0 0 auto;
              -ms-flex: 0 0 auto;
              flex: 0 0 auto; }
            #page .page_content .page_block .list_blue ul li:last-child {
              margin-bottom: 0px; }
            #page .page_content .page_block .list_blue ul li span {
              font-weight: 500;
              color: #666; }
      #page .page_content .page_block .list_check {
        margin-top: 30px; }
        #page .page_content .page_block .list_check p {
          padding: 0 12px; }
        #page .page_content .page_block .list_check ul li {
          margin-bottom: 22px;
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex; }
          #page .page_content .page_block .list_check ul li:before {
            content: "";
            width: 20px;
            height: 20px;
            background: url("../images/list_check.png");
            background-size: contain;
            background-repeat: no-repeat;
            display: block;
            float: left;
            border-radius: 2px;
            margin-top: 0px;
            margin-right: 8px; }
          #page .page_content .page_block .list_check ul li:last-child {
            margin-bottom: 0px; }
          #page .page_content .page_block .list_check ul li span {
            font-weight: 500;
            color: #666; }
    #page .page_content .caption {
      font-size: 12px; }
    #page .page_content #page01_block01 img {
      max-width: 480px;
      display: block;
      margin: 30px auto; }
      @media only screen and (max-width: 896px) {
        #page .page_content #page01_block01 img {
          max-width: 100%; } }
    #page .page_content #page01_block02 img {
      max-width: 480px;
      display: block;
      margin: 30px auto; }
      @media only screen and (max-width: 896px) {
        #page .page_content #page01_block02 img {
          max-width: 100%; } }
    @media only screen and (max-width: 896px) {
      #page .page_content #page02_block01 {
        position: relative; } }
    #page .page_content #page02_block01 .list_check {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
      margin-bottom: 30px; }
      @media only screen and (max-width: 896px) {
        #page .page_content #page02_block01 .list_check {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
          -ms-flex-direction: column;
          flex-direction: column; } }
    #page .page_content #page02_block01 img {
      width: 240px; }
      @media only screen and (max-width: 896px) {
        #page .page_content #page02_block01 img {
          width: 180px;
          margin-top: 20px; } }
    #page .page_content #page02_block02 {
      clear: both; }
      #page .page_content #page02_block02 p {
        width: calc(100% - 160px); }
        @media only screen and (max-width: 896px) {
          #page .page_content #page02_block02 p {
            width: 100%; } }
      #page .page_content #page02_block02 img {
        margin-top: -80px;
        width: 180px;
        float: right; }
        @media only screen and (max-width: 896px) {
          #page .page_content #page02_block02 img {
            margin-top: 10px;
            margin-bottom: 20px; } }
    #page .page_content #page02_block03 {
      clear: both; }
      #page .page_content #page02_block03 p {
        margin-top: 60px; }
        @media only screen and (max-width: 896px) {
          #page .page_content #page02_block03 p {
            margin-top: 30px; } }
      #page .page_content #page02_block03 img {
        margin-right: 20px;
        display: block;
        width: 120px;
        float: left; }
      #page .page_content #page02_block03 .list_blue {
        clear: both;
        margin-top: 80px; }
        @media only screen and (max-width: 896px) {
          #page .page_content #page02_block03 .list_blue {
            position: relative; }
            #page .page_content #page02_block03 .list_blue li:last-child {
              padding-right: 80px; } }
        #page .page_content #page02_block03 .list_blue img {
          width: 200px;
          margin-top: -120px;
          float: right; }
          @media only screen and (max-width: 896px) {
            #page .page_content #page02_block03 .list_blue img {
              position: absolute;
              width: 160px;
              bottom: -24px;
              right: -50px; } }
    #page .page_content #page02_block04 {
      clear: both; }
      #page .page_content #page02_block04 .list_blue {
        clear: both; }
        @media only screen and (max-width: 896px) {
          #page .page_content #page02_block04 .list_blue {
            position: relative; } }
        #page .page_content #page02_block04 .list_blue img {
          height: 200px;
          margin-top: -120px;
          float: right; }
          @media only screen and (max-width: 896px) {
            #page .page_content #page02_block04 .list_blue img {
              height: auto;
              width: 120px;
              margin-top: 0;
              position: absolute;
              right: -20px;
              bottom: -50px; } }
        @media only screen and (max-width: 896px) {
          #page .page_content #page02_block04 .list_blue ul {
            padding: 0; }
            #page .page_content #page02_block04 .list_blue ul li:last-child {
              padding-right: 80px; } }
    #page .page_content #page02_block05 {
      margin-bottom: 100px;
      clear: both; }
      #page .page_content #page02_block05 .list_blue {
        clear: both; }
        @media only screen and (max-width: 896px) {
          #page .page_content #page02_block05 .list_blue {
            position: relative; } }
        #page .page_content #page02_block05 .list_blue img {
          height: 200px;
          margin-right: 30px;
          float: right;
          margin-top: -160px; }
          @media only screen and (max-width: 896px) {
            #page .page_content #page02_block05 .list_blue img {
              height: auto;
              width: 120px;
              margin-top: 0;
              margin-right: 0;
              position: absolute;
              right: -20px;
              bottom: -30px; } }
        @media only screen and (max-width: 896px) {
          #page .page_content #page02_block05 .list_blue ul {
            padding: 0; }
            #page .page_content #page02_block05 .list_blue ul li:nth-child(3) {
              padding-right: 76px; }
            #page .page_content #page02_block05 .list_blue ul li:last-child {
              padding-right: 70px; } }
    #page .page_content #page02_block06 {
      clear: both;
      padding-top: 30px; }
      #page .page_content #page02_block06 img {
        width: 440px;
        display: block;
        margin: 0 auto; }
        @media only screen and (max-width: 896px) {
          #page .page_content #page02_block06 img {
            width: 100%; } }
      #page .page_content #page02_block06 .caution {
        border: 2px solid #e374a3;
        background: #f5f5f5;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 24px;
        margin-top: 30px;
        color: #e374a3;
        font-weight: 500; }
        @media only screen and (max-width: 896px) {
          #page .page_content #page02_block06 .caution {
            font-size: 14px;
            padding: 12px; } }
    #page .page_content #page02_block07 {
      padding-left: 0; }
      #page .page_content #page02_block07 p {
        margin-bottom: 30px; }
      @media only screen and (max-width: 896px) {
        #page .page_content #page02_block07 img {
          width: 100%; } }
      #page .page_content #page02_block07 .sayou_list {
        border: 2px solid #74b4e3;
        border-radius: 10px;
        box-sizing: border-box;
        background: #fff;
        overflow: hidden; }
        #page .page_content #page02_block07 .sayou_list dl {
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          border-top: 1px solid #74b4e3; }
          #page .page_content #page02_block07 .sayou_list dl dt {
            width: 80px;
            -webkit-box-flex: 0;
            -webkit-flex: 0 0 auto;
            -ms-flex: 0 0 auto;
            flex: 0 0 auto;
            padding: 4px;
            border-right: 1px solid #74b4e3; }
          #page .page_content #page02_block07 .sayou_list dl dd {
            width: calc(100%);
            padding: 4px; }
          #page .page_content #page02_block07 .sayou_list dl:first-child {
            background: #74b4e3;
            color: #fff;
            border-top: none; }
            #page .page_content #page02_block07 .sayou_list dl:first-child dt {
              text-align: center;
              border-right: 1px solid #fff; }
            #page .page_content #page02_block07 .sayou_list dl:first-child dd {
              text-align: center; }
    #page .page_content .caution_block {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      border: 2px solid #e374a3;
      border-radius: 10px;
      background: #f5f5f5;
      padding: 24px;
      margin-top: -50px;
      box-sizing: border-box;
      margin-bottom: 60px; }
      #page .page_content .caution_block img {
        width: 84px;
        margin-right: 20px; }
      #page .page_content .caution_block h4 {
        color: #e374a3; }
    #page .page_content #page03_read {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
      -ms-flex-align: start;
      align-items: flex-start; }
      #page .page_content #page03_read .img {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%; }
        @media only screen and (max-width: 896px) {
          #page .page_content #page03_read .img {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column; } }
      #page .page_content #page03_read img {
        margin: 20px 20px 0 20px; }
    #page .page_content #page03_caution .pc {
      display: block; }
    #page .page_content #page03_caution .sp {
      display: none; }
    @media only screen and (max-width: 896px) {
      #page .page_content #page03_caution h4 {
        margin-bottom: 8px; }
      #page .page_content #page03_caution .pc {
        display: none; }
      #page .page_content #page03_caution .sp {
        display: block;
        float: left; } }
    #page .page_content #page03_block01 ul {
      width: calc(100% - 140px);
      float: left; }
      @media only screen and (max-width: 896px) {
        #page .page_content #page03_block01 ul {
          width: 100%;
          float: none;
          padding: 0; }
          #page .page_content #page03_block01 ul li:last-child {
            padding-right: 40px; } }
    #page .page_content #page03_block01 #page03_img02 {
      width: 97px;
      margin-top: 30px;
      float: right; }
      @media only screen and (max-width: 896px) {
        #page .page_content #page03_block01 #page03_img02 {
          position: absolute;
          bottom: -20px;
          right: -18px; } }
    #page .page_content #page03_block02 ul {
      width: calc(100% - 102px);
      float: left; }
      @media only screen and (max-width: 896px) {
        #page .page_content #page03_block02 ul {
          width: calc(100% - 88px);
          float: left;
          padding: 0; } }
    #page .page_content #page03_block02 img {
      width: 102px;
      margin-top: 20px;
      float: right;
      margin-bottom: 20px; }
      @media only screen and (max-width: 896px) {
        #page .page_content #page03_block02 img{
          width: 70px;
        }
      }
    #page .page_content #page03_block02 .list_blue {
      clear: both; }
      @media only screen and (max-width: 896px) {
        #page .page_content #page03_block02 .list_blue {
          position: relative; }
          #page .page_content #page03_block02 .list_blue p {
            padding-left: 0px;
            padding-right: 50px; } }
    #page .page_content #page03_block02 .pc {
      display: block; }
    #page .page_content #page03_block02 .sp {
      display: none; }
    @media only screen and (max-width: 896px) {
      #page .page_content #page03_block02 .pc {
        display: none; }
      #page .page_content #page03_block02 .sp {
        display: block;
        position: absolute;
        bottom: -16px;
        right: -38px; } }
    @media only screen and (max-width: 896px) {
      #page .page_content #page03_block03 {
        position: relative;
        margin-bottom: 0px; } }
    #page .page_content #page03_block03 ul {
      width: calc(100% - 150px);
      float: left; }
      @media only screen and (max-width: 896px) {
        #page .page_content #page03_block03 ul {
          width: 100%;
          float: none;
          padding: 0; }
          #page .page_content #page03_block03 ul li:last-child {
            padding-right: 120px; } }
    #page .page_content #page03_block03 img {
      width: 150px;
      margin-top: -40px;
      float: right; }
      @media only screen and (max-width: 896px) {
        #page .page_content #page03_block03 img {
          width: 120px;
          margin-top: 0px;
          position: absolute;
          bottom: -42px;
          right: -24px; } }
    #page .page_content #page04_block01 img {
      width: 400px;
      margin: 30px auto;
      display: block; }
      @media only screen and (max-width: 896px) {
        #page .page_content #page04_block01 img {
          width: 100%; } }
    #page .page_content #page04_block02 img {
      width: 400px;
      margin: 30px auto;
      display: block; }
      @media only screen and (max-width: 896px) {
        #page .page_content #page04_block02 img {
          width: 100%; } }
    #page .page_content #page04_block03 img {
      width: 400px;
      margin: 30px auto;
      display: block; }
      @media only screen and (max-width: 896px) {
        #page .page_content #page04_block03 img {
          width: 100%; } }
    #page .page_content #page05_block01 div {
      margin: 0 auto; }
    #page .page_content #page05_block01 p {
      margin-top: 16px; }

/*# sourceMappingURL=../maps/common.css.map */
