@charset "utf-8";
/* このファイルはUTF-8のBOMなし(UTF-8N)で保存しています */

/**
 * CSS Information
 * ===============================================================
 *
 * Site URL:  http://
 * File name: base.css
 * Summary:   ベーススタイル
 * Author:    CrEa Inc.
 *
 * -----------------------------------
 *
 * TOC:
 *     =1    html & body
 *     =2    box model styles
 *       =2-1     margin
 *       =2-2     padding
 *       =2-3     box-sizing
 *     =3    text styles
 *     =4    img/video styles
 *     =5    link styles
 *     =6    list styles
 *     =7    heading styles
 *     =8    table styles
 *     =9    other selectors
 *     =10   general styles
 *       =10-1    display
 *       =10-2    position
 *       =10-3    float/align
 *       =10-4    form
 *       =10-5    clearfix
 *
 * ===============================================================
*/

/* @import url('https://fonts.googleapis.com/css?family=Playfair+Display:400,400i,700'); */

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Playfair Display"), local("PlayfairDisplay-Regular"),
    url("../../../src/region/common/pc/font/playfairdisplay/pfdis-regular.woff2")
      format("woff2"),
    url("../../../src/region/common/pc/font/playfairdisplay/pfdis-regular.woff")
      format("woff");
}

@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local("Playfair Display"), local("PlayfairDisplay-Italic"),
    url("../../../src/region/common/pc/font/playfairdisplay/pfdis-italic.woff2")
      format("woff2"),
    url("../../../src/region/common/pc/font/playfairdisplay/pfdis-italic.woff")
      format("woff");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Playfair Display"), local("PlayfairDisplay-Bold"),
    url("../../../src/region/common/pc/font/playfairdisplay/pfdis-bold.woff2")
      format("woff2"),
    url("../../../src/region/common/pc/font/playfairdisplay/pfdis-bold.woff")
      format("woff");
}

/** =1
 * ========================================
 * html & body
 * ========================================
 */

html {
  height: 100%;
  font-size: 62.5%; /* 基準10px=1em */
}

body {
  height: 100%;
  color: #383e45;
  font-size: 14px; /* CSS3未対応ブラウザ対策 */
  font-size: 1.4rem; /* CSS3単位 実質14px */
  line-height: 1.8;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic,
    "メイリオ", Meiryo, sans-serif; /* その他 font-family については、 =3 text styles セクションでクラス名で定義 */
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* -- >>> styles for narrow layout ----- */
@media all and (max-width: 767px) {
  html {
    font-size: 50%; /* 基準8px=1em */
  }

  body {
  }
}

/* -- >>> styles for wide layout ----- */
@media all and (min-width: 768px) {
  html {
  }

  body {
  }
}

/** =2
 * ========================================
 * box model styles
 * ========================================
 */

/** =2-1
   * margin
   * ----------------------------------
   */

.mb5 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb70 {
  margin-bottom: 70px;
}
.mb80 {
  margin-bottom: 80px;
}

.mb100 {
  margin-bottom: 100px;
}
.mb120 {
  margin-bottom: 120px;
}
.mb150 {
  margin-bottom: 150px;
}

.mb05em {
  margin-bottom: 0.5em;
}
.mb07em {
  margin-bottom: 0.7em;
}
.mb10em {
  margin-bottom: 1em;
}
.mb15em {
  margin-bottom: 1.5em;
}
.mb20em {
  margin-bottom: 2em;
}

/** =2-2
   * padding
   * ----------------------------------
   */

.pt5 {
  padding-top: 5px;
}
.pt10 {
  padding-top: 10px;
}
.pt15 {
  padding-top: 15px;
}
.pt20 {
  padding-top: 20px;
}
.pt30 {
  padding-top: 30px;
}
.pt40 {
  padding-top: 40px;
}
.pt50 {
  padding-top: 50px;
}
.pt60 {
  padding-top: 60px;
}
.pt70 {
  padding-top: 70px;
}
.pt80 {
  padding-top: 80px;
}
.pt100 {
  padding-top: 100px;
}
.pt120 {
  padding-top: 120px;
}
.pt150 {
  padding-top: 150px;
}

.pt05em {
  padding-top: 0.5em;
}
.pt10em {
  padding-top: 1em;
}
.pt15em {
  padding-top: 1.5em;
}
.pt20em {
  padding-top: 2em;
}

/** =2-3
   * box-sizing
   * ----------------------------------
   */

.boderBox {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/** =2-4
   * bg-color
   * ----------------------------------
   */

.bgBlue {
  background-color: #004ea2;
}
.bgLightBlue {
  background-color: #00b9ef;
}
.bgPaleBlue {
  background-color: #cff0fa;
}
.bgGrayishPaleBlue {
  background-color: #f0f7fc;
}

.bgYellow {
  background-color: #ffee33;
}
.bgDarkYellow {
  background-color: #e7d407;
}

/** =3
 * ========================================
 * text styles
 * ========================================
 */

.sans-serif {
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic,
    "メイリオ", Meiryo, sans-serif;
}
.serif {
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro",
    "Hiragino Mincho Pro", "游明朝", YuMincho, "HGS明朝E", serif;
}
.serifUnique {
  font-family: "Playfair Display", serif;
}
.sans-serifEn {
  font-family: Arial, sans-serif;
}

strong,
.strong,
.fwBold {
  font-weight: bold;
}
.fwNormal {
  font-weight: normal;
}

.fsItalic {
  font-style: italic;
}
.fsNormal {
  font-style: normal;
}

.uppercase {
  text-transform: uppercase;
}

.fcRed {
  /* color: #a62137; */
  color: #ff3333;
}
.fcYellow {
  color: #e7d407;
}
.fcBlue {
  color: #004ea2;
}
.fcLightBlue {
  color: #00b9ef;
}
.fcWhite {
  color: #ffffff;
}
.fcBlack {
  color: #000000;
}
.fcGray {
  color: #6d7985;
}
.fcLightGray {
  color: #a8afb6;
}
.fcVeryLightGray {
  color: #e2e5e7;
}



.fs10 {
  font-size: 10px;
  font-size: 1rem;
}
.fs11 {
  font-size: 11px;
  font-size: 1.1rem;
}
.fs12 {
  font-size: 12px;
  font-size: 1.2rem;
}
.fs13 {
  font-size: 13px;
  font-size: 1.3rem;
}
.fs14 {
  font-size: 14px;
  font-size: 1.4rem;
}
.fs15 {
  font-size: 15px;
  font-size: 1.5rem;
}
.fs16 {
  font-size: 16px;
  font-size: 1.6rem;
}
.fs18 {
  font-size: 18px;
  font-size: 1.8rem;
}
.fs20 {
  font-size: 20px;
  font-size: 2rem;
}
.fs22 {
  font-size: 22px;
  font-size: 2.2rem;
}
.fs24 {
  font-size: 24px;
  font-size: 2.4rem;
}
.fs26 {
  font-size: 26px;
  font-size: 2.6rem;
}
.fs28 {
  font-size: 28px;
  font-size: 2.8rem;
}
.fs30 {
  font-size: 30px;
  font-size: 3rem;
}
.fs32 {
  font-size: 32px;
  font-size: 3.2rem;
}
.fs36 {
  font-size: 36px;
  font-size: 3.6rem;
}
.fs40 {
  font-size: 40px;
  font-size: 4rem;
}
.fs58 {
  font-size: 58px;
  font-size: 5.8rem;
}
.fs48 {
  font-size: 48px;
  font-size: 4.8rem;
}
.fs60 {
  font-size: 60px;
  font-size: 6rem;
}
.fs64 {
  font-size: 64px;
  font-size: 6.4rem;
}

.fs50per {
  font-size: 50%;
}
.fs60per {
  font-size: 60%;
}
.fs70per {
  font-size: 70%;
}
.fs80per {
  font-size: 80%;
}
.fs90per {
  font-size: 90%;
}
.fs110per {
  font-size: 110%;
}
.fs120per {
  font-size: 120%;
}
.fs130per {
  font-size: 130%;
}
.fs140per {
  font-size: 140%;
}
.fs150per {
  font-size: 150%;
}
.fs200per {
  font-size: 200%;
}

.lh10 {
  line-height: 1;
}
.lh12 {
  line-height: 1.2;
}
.lh14 {
  line-height: 1.4;
}
.lh16 {
  line-height: 1.6;
}
.lh18 {
  line-height: 1.8;
}
.lh20 {
  line-height: 2;
}


.ls05 {
  letter-spacing: 0.05em;
}
.ls10 {
  letter-spacing: 0.1em;
}
.ls15 {
  letter-spacing: 0.15em;
}
.ls20 {
  letter-spacing: 0.2em;
}
.ls-05 {
  letter-spacing: -0.05em;
}
.ls-10 {
  letter-spacing: -0.1em;
}
.ls-15 {
  letter-spacing: -0.15em;
}
.ls-20 {
  letter-spacing: -0.2em;
}



sup,
sub {
  font-size: 50%;
}

/** =4
 * ========================================
 * img/video styles
 * ========================================
 */

/** =5
 * ========================================
 * link styles
 * ========================================
 */


/** =6
 * ========================================
 * list styles
 * ========================================
 */


/** =7
 * ========================================
 * heading styles
 * ========================================
 */


/** =8
 * ========================================
 * table styles
 * ========================================
 */

table {
  width: 100%;
  border: 1px solid #e2e5e7;
  line-height: 1.5;
  border-collapse: collapse;
}
th,
td {
  padding: 1em 1.5em;
  border: 1px solid #e2e5e7;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
th {
  background-color: #f0f7fc;
}

/* -- >>> styles for narrow layout ----- */
@media all and (max-width: 767px) {
  table.displayBlockSP th,
  table.displayBlockSP td {
    margin-top: -1px;
    padding: 0.5em 1em;
    display: block;
    width: 100%;
    border: none;
    border-top: 1px solid #e2e5e7;
  }
  /*table.displayBlockSP tr:first-child th:first-child,
    table.displayBlockSP tr:first-child td:first-child {
      border-top: none;
    }*/
  table.displayBlockSP td[data-th] {
    text-align: left;
  }
  table.displayBlockSP td[data-th]:before {
    display: inline-block;
    margin-right: 1em;
    color: #004083;
    font-weight: bold;
    content: attr(data-th) " :";
  }
}

/* -- >>> styles for wide layout ----- */
@media all and (min-width: 768px) {
}

/* tablePlain */
table.tablePlain {
  border: none;
}
table.tablePlain th,
table.tablePlain td {
  padding-right: 0;
  padding-left: 0;
  border: none;
  background: transparent;
}
table.tablePlain th {
}

/* -- >>> styles for narrow layout ----- */
@media all and (max-width: 767px) {
  table.tablePlain.displayBlockSP th,
  table.tablePlain.displayBlockSP td {
    border: none;
  }
  table.tablePlain.displayBlockSP th:first-child {
    padding-top: 1.5em;
  }
}

/** =9
 * ========================================
 * other selectors
 * ========================================
 */

/** =10
 * ========================================
 * general styles
 * ========================================
 */

/** =10-1
   * display
   * ----------------------------------
   */

.displayInlineBlock {
  display: inline-block;
}
.displayInline {
  display: inline;
}
.displayBlock {
  display: block;
}
.displayNone {
  display: none;
}

/* -- >>> styles for narrow layout ----- */
@media all and (max-width: 767px) {
  .displayPc {
    display: none;
  }
  .displaySp {
    display: inherit;
  }
  .displayNoneSp {
    display: none;
  }
}

/* -- >>> styles for medium layout -----
    @media all and (min-width: 600px) and (max-width: 959px) {
      .displayPc {
        display: inherit;
      }
      .displaySp {
        display: none;
      }
    } */

/* -- >>> styles for wide layout ----- */
@media all and (min-width: 768px) {
  .displayPc {
    display: inherit;
  }
  .displaySp {
    display: none;
  }
}

/** =10-2
   * position
   * ----------------------------------
   */

.posRelative {
  position: relative;
}
.posAbsolute {
  position: absolute;
}
.posFixed {
  position: fixed;
}
.posStatic {
  position: static;
}

/** =10-3
   * float/align
   * ----------------------------------
   */

.floatLeft {
  float: left;
}
.floatRight {
  float: right;
}

.clearLeft {
  clear: left;
}
.clearRight {
  clear: right;
}
.clearBoth {
  clear: both;
}

.txtLeft {
  text-align: left;
}
.txtCenter {
  text-align: center;
}
.txtRight {
  text-align: right;
}

.verticalTop {
  vertical-align: top;
}
.verticalMiddle {
  vertical-align: middle;
}
.verticalBottom {
  vertical-align: bottom;
}

/** =10-4
   * form
   * ----------------------------------
   */

/** =10-5
   * clearfix
   * ----------------------------------
   */

/* For modern browsers */
.clearfix:before,
.clearfix:after,
.cf:before,
.cf:after {
  display: table;
  content: "";
}

.clearfix:after,
.cf:after {
  clear: both;
}

/* For IE 6/7 (trigger hasLayout) */
.clearfix,
.cf {
  zoom: 1;
}

/* Slideshow */
.album1 {
  margin: auto;
  background-color: white;
  position: relative;
}

.album1 img {
  /* width: 50%; */
  animation-name: album1;
  -webkit-animation-name: album1;
  animation-duration: 20s;
  -webkit-animation-duration: 20s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  opacity: 0;
}

.album1 .img1 {
  display: block;
  margin: 0 auto;
}

.album1 .img2 {
  animation-delay: 4s;
  -webkit-animation-delay: 4s;
  position: absolute;
  top: 0;
  left: 0;
}

.album1 .img3 {
  animation-delay: 8s;
  -webkit-animation-delay: 8s;
  position: absolute;
  top: 0;
  left: 0;
}

.album1 .img4 {
  animation-delay: 12s;
  -webkit-animation-delay: 12s;
  position: absolute;
  top: 0;
  left: 0;
}

.album1 .img5 {
  animation-delay: 16s;
  -webkit-animation-delay: 16s;
  position: absolute;
  top: 0;
  left: 0;
}

@keyframes album1 {
  0% {
    opacity: 0;
  }

  6% {
    opacity: 1;
  }

  14% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
}

@-webkit-keyframes album1 {
  0% {
    opacity: 0;
  }

  6% {
    opacity: 1;
  }

  14% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
}

.album2 {
  margin: auto;
  background-color: white;
  position: relative;
}

.album2 img {
  /* width: 50%; */
  animation-name: album2;
  -webkit-animation-name: album2;
  animation-duration: 16s;
  -webkit-animation-duration: 16s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  opacity: 0;
}

.album2 .img1 {
  display: block;
  margin: 0 auto;
}

.album2 .img2 {
  animation-delay: 4s;
  -webkit-animation-delay: 4s;
  position: absolute;
  top: 0;
  left: 0;
}

.album2 .img3 {
  animation-delay: 8s;
  -webkit-animation-delay: 8s;
  position: absolute;
  top: 0;
  left: 0;
}

.album2 .img4 {
  animation-delay: 12s;
  -webkit-animation-delay: 12s;
  position: absolute;
  top: 0;
  left: 0;
}

@keyframes album2 {
  0% {
    opacity: 0;
  }

  7% {
    opacity: 1;
  }

  18% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
}

@-webkit-keyframes album2 {
  0% {
    opacity: 0;
  }

  7% {
    opacity: 1;
  }

  18% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
}

.album3 {
  margin: auto;
  background-color: white;
  position: relative;
}

.album3 img {
  /* width: 50%; */
  animation-name: album3;
  -webkit-animation-name: album3;
  animation-duration: 12s;
  -webkit-animation-duration: 12s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  opacity: 0;
}

.album3 .img1 {
  display: block;
  margin: 0 0;
}

.album3 .img2 {
  animation-delay: 4s;
  -webkit-animation-delay: 4s;
  position: absolute;
  top: 0;
  left: 0;
}

.album3 .img3 {
  animation-delay: 8s;
  -webkit-animation-delay: 8s;
  position: absolute;
  top: 0;
  left: 0;
}

@keyframes album3 {
  0% {
    opacity: 0;
  }

  7% {
    opacity: 1;
  }

  18% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
}

@-webkit-keyframes album3 {
  0% {
    opacity: 0;
  }

  7% {
    opacity: 1;
  }

  18% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
}

/* Accordion */
.accordion {
  min-width: 300px;
  margin: 10px auto;
  padding: 0;
}
.accordion .ac-content {
  margin: 0;
  padding: 0;
}
.accordion input {
  display: none;
}
.accordion label {
  display: block;
  /*  background: #f24b5f; */
  cursor: pointer;
  padding: 2px 20px;
  box-sizing: border-box;
  border-radius: 4px;
}
/* .accordion label:hover {
  background: #f66677;
} */
.accordion .ac-cont {
  transition: 0.2s;
  height: 0;
  overflow: hidden;
  background: #fff;
  padding: 0 10px;
  box-sizing: border-box;
}
.accordion input:checked + .ac-cont {
  height: auto;
  padding: 10px;
  /*  border-bottom: 1px dot #f24b5f; */
  box-sizing: border-box;
}

/* Accordion 色分け */

.acPink label {
  background: #fef2ef;
}
.acPink label:hover {
  background: #feece8;
}
.acPink input:checked + .ac-cont {
  border-bottom: 1px dot #fef2ef;
}

.acBlue label {
  background: #004ea2;
}
.acBlue label:hover {
  background: #2e66a2;
}
.acBlue input:checked + .ac-cont {
  border-bottom: 1px dot #004ea2;
}

.acPaleBlue label {
  background: #f0f7fc;
}
.acPaleBlue label:hover {
  background: #cff0fa;
}
.acPaleBlue input:checked + .ac-cont {
  border-bottom: 1px dot #f0f7fc;
}

.acGray label {
  background: #efefef;
}
.acGray label:hover {
  background: #efece5;
  color: #333;
}
.acGray input:checked + .ac-cont {
  border-bottom: 1px dot #f0f7fc;
}

.acWhite label {
  background: #cff0fa;
  border: 1px solid #004ea2;
}
.acWhite label:hover {
  background: #fff;
}
.acWhite input:checked + .ac-cont {
  border-bottom: 1px dot #f0f7fc;
}

.video_info {
  position: relative;
  width: 90%;
  padding-top: 56.25%;
  border: #666 1px dotted;
  margin: 0 auto 30px auto;
}
.video_info iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}


table{
  border-collapse: collapse;
  width: 100%;
}
.tb01 th,
.tb01 td{
  padding: 10px;
  border: solid 1px #ccc;
  text-align:center;
  box-sizing:border-box;
}
.tb01 th {
  background: #ff7bac;
  color: #fff;
  
}
@media screen and (max-width: 640px) {
  .tb01 {
    width: 100%;
  }
  table.tb01 th,
  table.tb01 td {
    display: block;
    width: 100%;
    border-bottom:none;
  }
  .tb01 tr:last-child{
    border-bottom: solid 1px #ccc;
  }
}