@charset "utf-8";

/* 台湾ページ詳細
-------------------------------*/
/*カラー設定
--------------------*/
:root {
  --black: #212529;
  --gray-d: #3b3b3b;
  --gray-l: #f9f9f9;
  --white: #fff;
  --green: #b2ddcb;
  --green-l: #e8f1ed;
  --yellow: #fcd987;
  --yellow-m: #f5e9bb;
  --yellow-l: #fdfcf0;
  --pink: #f14482;
  --red: #a61616;
  --blue: #1c479c;
  --gold: #ccc78c;
}

/*共通
--------------------------*/
html {
  scroll-behavior: smooth;
}

body.modal-open {
  -webkit-overflow-scrolling: auto !important; /* モーダルが開いたときに解除 */
  overflow: hidden !important; /* 背景のスクロールを防止 */
}

article {
  font-family: YuGothic, "Yu Gothic", "Yu Gothic medium", "Arial",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo,
    "ＭＳ ゴシック", sans-serif;
  overflow-x: hidden;
  /* contain: paint; */
}

a:hover {
  text-decoration: none;
  opacity: 0.6;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.625;
}

small {
  font-size: 80%;
}

/* font
-----------------------*/
.font-oswald {
  font-family: "oswald", sans-serif;
}

/* flex
----------------------------------*/
.flex {
  display: flex;
}

/*flex-wrap*/
@media (max-width: 767px) {
    .sm-flex-wrap {
        flex-wrap: wrap;
    }
}

/* grid
----------------------------------*/
.grid {
  display: grid;
}


/* margin, padding
----------------------------------*/
.mt-lg-3 {
    margin-top: 10px;
}

@media (max-width: 767px) {
    .mt-lg-3 {
        margin-top: 0;
    }
   .mt-md-1 {
        margin-top: 10px;
    }
}


.mb-10 {
    margin-bottom: 100px;
}

@media (max-width: 1024px) {
    .mb-10 {
        margin-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .mb-10 {
        margin-bottom: 50px;
    }
}


/* section
-------------------------------------*/
.section {
  padding: 90px 0 100px;
}

@media (max-width: 767px) {
  .section {
    padding: 45px 0;
  }
}

/* block
--------------------------------------*/
.block {
  padding: 60px 0;
}


@media (max-width: 767px) {
    .block {
        padding: 30px 0 40px;
    }
}

/* heading
--------------------------------------*/
.heading {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 50px;
  position: relative;
}

.heading span {
  display: block;
}

.heading .heading-img {
  display: inline-block;
  text-align: center;
  line-height: 1.4;
}

.heading .en img {
  text-align: center;
  margin: 0 auto 20px;
}

.heading .jp {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 767px) {
  .heading {
    margin-bottom: 22px;
  }
  .heading .en {
    width: 50%;
    margin: auto;
  }
  .heading .jp {
    font-size: 18px;
  }
}

/* title
--------------------------------*/
.title {
  background: var(--yellow-m);
  font-size: 24px;
  font-weight: bold;
  color: var(--black);
  line-height: 1.4;
  padding: 16px 20px;
  margin: 32px auto 24px;
}

@media (max-width: 767px) {
  .title {
    font-size: 16px;
    margin: 24px auto 18px;
  }
}

/* title-radius */
.title-radius {
  text-align: center;
  display: inline-block;
  width: fit-content;
  padding: 10px 20px;
  background: var(--gray-d);
  border-radius: 100px;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  font-weight: bold;
  margin-right: 20px;
  margin-bottom: 10px;
}


@media (max-width: 767px) {
    .title-radius {
        padding: 8px 16px;
        margin-right: 12px;
    }
}

/* link
------------------------*/
.inline-link {
    text-decoration: underline;
}
.inline-link:hover {
    text-decoration: underline;
}


/* button
--------------------------------------*/
.button {
  display: block;
  max-width: 300px;
  width: 100%;
  margin: 30px auto;
  padding: 0;
}

.button-cv {
  max-width: 947px;
  text-align: center;
  margin: 30px auto 10px;
}

.button-link {
  position: relative;
  display: block;
  width: 100%;
  padding: 22px 30px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.6;
  text-align: center;
  color: var(--black);
  transition: 0.3s;
  background: var(--yellow-l);
  border-radius: 10px;
  border: 2px solid var(--black);
  box-shadow: 0 10px 0 var(--gray-d);
}
.button-link:hover {
  opacity: 0.6;
  color: var(--black);
  text-decoration: none;
}

.button-link::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 20px;
  font-size: 24px;
  color: var(--black);
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .button {
    max-width: 100%;
    margin: 20px auto;
  }

  .button-link {
    padding: 20px;
    font-size: 16px;
    box-shadow: 0 6px 0 var(--gray-d);
  }

  .button-link::after {
    top: auto;
    right: 20px;
    width: 20px;
    height: 18px;
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .button-link::after {
    top: calc(50% - 3px);
    right: 10px;
    width: 20px;
    height: 18px;
    font-size: 16px;
    transform: translateY(-50%);
  }
}

/*text-ib-link*/
.text-ib-link {
  display: inline-block;
  text-decoration: underline;
  color: #fff;
  position: relative;
  padding-right: 20px;
}

.text-ib-link::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  color: #fff;
}

@media (max-width: 767px) {
  .text-ib-link {
    margin-top: 5px;
    font-size: 12px;
  }
}

/* text
--------------------------------------*/
.lead {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3d3c3c;
}

.bold {
  font-weight: bold;
}

.small {
  font-size: 72%;
}

.text-center {
  text-align: center;
}

@media (max-width: 767px) {
  .lead {
    font-size: 14px;
    line-height: 1.5;
  }
}

/*color*/
.color-red {
  color: var(--red);
}
.color-black {
  color: var(--black);
}

/* box
----------------------------*/
.box-border {
  width: 100%;
  max-width: 947px;
  margin: 20px auto 30px;
  border-radius: 30px;
  border: 2px solid var(--gray-dark);
  padding: 40px 30px;
}

/* contents
---------------------------------------------*/
/*　MV
---------------------------------------*/
.hero-area {
  width: 100%;
  text-align: center;
  position: relative;
  margin-bottom: 80px;
}

.hero-heading {
  width: 100%;
  margin: auto;
  position: relative;
  z-index: 1;
}

.hero-heading img{
    width: 100%;
    max-width: 100%;
    margin: auto;
}


@media (max-width: 767px) {
    .hero-area {
        margin-bottom: 50px;
    }
    
}

/* mv slider */
/* スライダー表示遅延対策 */
.slick-slide{
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
.slick-initialized .slick-slide{
  display: block;
}

.mv-slider {
  position: relative;
  z-index: 0;
  margin-top: -140px;
}

.mv-slider-conatiner {
    margin-bottom: 20px;
}

/*slider img*/
.mv-slider-item {
    position: relative;
}

.hero-img {
  display: block;
  text-align: center;
  height: 600px;
}

.hero-img img {
    margin: auto;
    height: 100%;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center center;
}

/* slider option */
/* dot */
.mv-slider-conatiner .slick-dots {
    bottom: -40px;
}

.mv-slider-conatiner .slick-dots li button:before {
    font-size: 12px;
    color: var(--red);
}

@media(min-width: 1900px) {
    .mv-slider {
          margin-top: -180px;
    }
}

@media (max-width: 900px) {
    .hero-img {
        height: 80vw;
    }
}

@media (max-width: 767px) {
    
    /* slide image*/
    .mv-slider {
        margin-top: -100px;
    }

    .hero-img {
        height: 100vw;
    }
    
    .hero-img img {
        width: 100%;
        max-width: 100%;
    }
    
   /* dot */
    .mv-slider-conatiner .slick-dots {
        bottom: -30px;
    }
    
    .mv-slider-conatiner .slick-dots li {
        width: 16px;
        height: 16px;
    }

    .mv-slider-conatiner .slick-dots li button:before {
        font-size: 10px;
    }
}


/* page nav
--------------------------*/
/* 追従 */
.sticky-nav {
  width: 100%;
  transition: .6s;
}

.sticky-nav.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}

/* メニューが追従していない時の高さを浮かす調整*/
.sticky-nav.is-static {
  position: absolute;
}

@media (max-width: 767px) {
    .sticky-nav {
        margin: 0 auto;
    }
}

.page-nav {
  z-index: 5;
  margin: 0 auto;
}

.page-nav .card {
    background: transparent;
}

.page-nav .card-body {
    background: rgba( 255, 255, 255, 0.8);
    border-radius: 5px;
    margin-top: 8px;
    padding: 10px 12px 30px;
    position: relative;
    z-index: 12;
}

/*ナビ　ボタン*/
.page-nav-list {
  width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2%;
  justify-content: center;
}

.page-nav-list li {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto 15px;
}

.page-nav-list li a {
  display: block;
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  color: var(--black);
  padding: 26px 28px;
  position: relative;
  text-align: center;
  text-decoration: none;
  border: 2px solid var(--black);
  border-bottom: none;
  border-radius: 10px;
  box-shadow: 0px 8px 0px var(--gray-d);
  background-color: var(--yellow-l);
  transition: 0.3s;
}

.page-nav-list li a::after {
  content: none;
}

/*コンテンツトップの調整*/
.page-nav-content {
  padding-top: 106px;
  margin-top: -106px;
}

@media (max-width: 992px) {
  .page-nav ul {
    width: 100%;
  }
}

@media (max-width: 767px) {

  /*コンテンツトップの調整*/
    .page-nav-content {
      padding-top: 40px;
      margin-top: -40px;
    }

  .page-nav-list {
    width: 100%;
    gap: 1.5%;
    grid-template-columns: 1fr 1fr;
  }

  .page-nav-list li {
      justify-content: space-between;
      margin: 10px auto;
  }

  .page-nav-list li a {
    font-size: 12px;
    padding: 12px 10px;
  }

  .page-nav-list li a::after {
    right: 16px;
    font-size: 10px;
  }
}

@media (max-width: 320px) {
  .page-nav-list li a {
    font-size: 12px;
  }
}


/*アコーディオンメニューボタン*/
.card {
  border: none;
  display: block;
  width: 100%;
}

.button-acc {
  padding: 0;
  border-radius: 0;
  border-bottom: none;
  border: none;
  background-color: transparent;
}

.button-acc a {
  position: relative;
  display: block;
  width: 100%;
  padding: 24px 30px 20px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  border-radius: 10px;
  border: 2px solid var(--black);
  border-bottom: none;
  background: var(--yellow-l);
  box-shadow: 0 8px 0 var(--gray-d);
  color: var(--black);
  transition: 0.3s;
}

.button-acc a:hover {
    opacity: 1;
}

.button-acc a span {
    display: inline-block;
    text-align: center;
    transition: .6s;
}

.button-acc a span::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: calc(50% - 120px);
  font-size: 24px;
  color: var(--black);
  transform: translateY(-50%);
}

/*アコーディオンメニューアクティブ時*/
.button-acc [aria-expanded="true"] span::after{
    transform: translateY(-50%) rotate(180deg);
}


@media (max-width: 767px) { 
    .button-acc a {
      padding: 12px 30px 12px;
    }

    .button-acc a span::after {
      top: 50%;
      right: 20px;
      font-size: 24px;
    }
}


/* enjoy-area
----------------------------------------*/
.enjoy-area {
  background:  linear-gradient(180deg,#fff 0%,#fff 3%,#a61616 3%,#a61616 100%);
  margin-top: 300px;
  padding: 0 0 100px;
}

.enjoy-heading + p {
  color: var(--white);
  font-weight: bold;
  font-size: 18px;
  line-height: 1.6;
}

/* box-border*/
.box-border-gray {
  border-radius: 25px;
  border: 2px solid var(--gray-d);
  padding: 40px 40px 30px 60px;
  background: var(--white);
  margin: 50px auto 20px;
}

.enjoy-area .box-border-gray {
    max-width: 756px;
}

.box-border-title {
  width: fit-content;
  margin: -60px auto 20px 0;
  border-radius: 25px;
  padding: 12px 30px;
  background: var(--gray-d);
}

/*outline*/
.outline-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 2%;
}

.outline-list li {
  margin: 10px 8% 10px 0;
}

.outline-list li .icon-text {
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
}

.outline-list .icon-text span {
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}

/* point */
.point-list li {
  position: relative;
  padding-left: 20px;
  font-weight: 500;
  line-height: 1.6;
  font-size: 16px;
  margin-top: 10px;
}

.point-list li::before {
  content: "\f058";
  left: 0;
  font-family: "Font Awesome 5 free";
  font-weight: 900;
  position: absolute;
  font-size: 16px;
  color: var(--red);
}

/*dot*/
.dot-list li {
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  margin-top: 16px;
}

.dot-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  font-size: 16px;
}

/* price */
.price-content {
    width: 100%;
    gap: 6%;
}

.one-price {
    justify-content: center;
}

.price-list {
  width: 40%;
  gap: 2%;
  justify-content: center;
  align-items: baseline;
}

.price-list:nth-of-type(n + 2) {
    margin-left: 3%;
}

.price-list-dt {
  width: 49%;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  align-items: baseline;
}

.price-list-dd {
    width: 58%;
    margin-left: 10px;
    vertical-align: bottom;
    align-items: baseline;
    justify-content: center;
}

.price-list-dd .plan-price {
    width: auto;
}

@media (max-width: 767px) {

    .enjoy-area {
        background: linear-gradient(180deg,#fff 1%,#fff 1%,#a61616 0,#a61616 100%);
        margin-top: 140px;
        padding: 0 0 60px;
    }
    
    .enjoy-heading + p {
        font-size: 16px;
    }
    
    .enjoy-heading .en {
        width: 96%;
    }
    
    .box-border-gray {
        padding: 40px 30px 30px;
    }
    
    .enjoy-area .box-border-gray {
        max-width: 100%;
        margin: 30px auto 20px;
    }
    
    .box-border-title {
      margin: -60px auto 20px;
      padding: 8px 20px;
      text-align: center;
    }
    
    .box-border-title img {
        width: 80%;
    }
    
    #include .box-border-title img {
        width: 90%;
    }
    
    /* outline */
    #outline .box-border-gray {
      padding: 40px 16px 20px 30px;   
    }
    
    .outline-list {
        gap: 1%;
    }
    
    .outline-list li {
        width: 49.5%;
        margin: 6px auto;
    }
    
    .outline-list li .icon-text {
        display: inline-block;
        font-size: 13px;
        line-height: 2
    }
    
    .outline-list .icon-text span {
        margin-right: 8px;
        display: inline-block;
        vertical-align: middle;
    }
    
    /*price*/
    #price .box-border-gray {
        padding: 40px 30px 30px 50px;
    }

    .price-list {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .price-list:nth-of-type(n + 2) {
        margin-left: 0;
    }
    
    .price-content {
        flex-wrap: wrap;
    }
    
    .point-list li {
      padding-left: 20px;
      line-height: 1.6;
      font-size: 14px;
      margin-top: 20px;
    }
    
    .point-list li::before {
      font-size: 13px;
    }

    .dot-list li {
      padding-left: 18px;
      font-size: 14px;
      line-height: 1.6;
      margin-top: 16px;
    }

    .price-list:nth-child(2) {
        margin-top: 10px;
    }
    
    #price .plan-price {
        font-size: 28px;
    }

    .price-list-dt {
      width: 43%;
      font-weight: bold;
      font-size: 16px;
      display: flex;
      align-items: baseline;
    }
    
    .price-list-dd {
      width: 50%;
    }
}


/* tourdate
---------------------------------------------*/
.tourdate-heading {
    margin: 140px auto 50px;
}

@media (max-width: 767px) {
    .tourdate-area .attention-text {
        padding-left: 0;
    }
    .tourdate-heading {
        margin: 60px auto 24px;
    }
}


/* calendar
---------------------------------- */
/*タブ
-----------------------*/
.calendartabs {
    max-width: 947px;
    margin: auto;
}

/*タブ切り替えボタン*/
.calendartabs-buttonlist.nav-tabs {
  display: flex;
  justify-content: center;
  gap: 2%;
  border-bottom: none;
}

.calendartabs-buttonlist.nav-tabs li {
  width: 100%;
  max-width: 180px;
  margin-bottom: 40px;
}

.calendartabs-buttonlist.nav-tabs li a {
  width: 100%;
  max-width: 180px;
  display: block;
  padding: 20px 30px;
  border-radius: 100px;
  border: 2px solid var(--gray-d);
  box-shadow: 0px 6px 0px var(--gray-d);
  background: var(--yellow-l);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.1;
  text-align: center;
  color: var(--black);
  position: relative;
  transition: 0;
  cursor: pointer;
}

.calendartabs-buttonlist.nav-tabs li a:hover {
    border-color: var(--gray-d);
    opacity: 1;
}

/*タブ アクティブ状態*/
.calendartabs-buttonlist.nav-tabs li a.active {
  background: var(--gold);
  border: 2px solid var(--gray-d);
  color: var(--black);
}

.tab-content {
  border: 3px solid var(--gray-dark);
}

/*カレンダーコンテンツ切り替え*/
.calendar-content {
  display: none;
}
.calendar-content.show {
  display: block;
}

.calendar-text {
  text-align: center;
  color: var(--red);
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 40px;
}

/* カレンダー */
.calendar-table {
  margin: 0 auto 5px;
  width: 80%;
  table-layout: fixed;
}

.calendar-table th,
.calendar-table td {
  padding: 20px;
  text-align: center;
  font-weight: bold;
}

.calendar-table thead th,
.calendar-table thead td {
  padding: 24px;
}

.calendar-table th:nth-child(1),
.calendar-table td:nth-child(1) {
  color: var(--red);
}

.calendar-table th:nth-child(7),
.calendar-table td:nth-child(7) {
  color: var(--blue);
}

/*催行日 マーク*/
.tour-on {
  position: relative;
}
.tour-on::before {
  content: "";
  position: absolute;
  z-index: -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  background: url("/static/img/tour/global/taiwan/jiufen/ico-tour-on.svg")
    no-repeat center center/ 100%;
}

.attention-text {
    width: 80%;
    margin: auto;
}

.attention-text li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 16px;
    margin: 5px auto 0;
}

.attention-text.dot-list li::before{
    top: 0;
}

.attention-text img {
    margin-right: 10px;
}

.attention-text span.mid {
    margin-right: 5px;
}


@media (max-width: 767px) {
    .calendartabs {
      max-width: 100%;
    }

    /*タブ切り替えボタン*/
    .calendartabs-buttonlist.nav-tabs {
      gap: 2%;
    }

    .calendartabs-buttonlist.nav-tabs li {
      max-width: 100px;
      margin-bottom: 10px;
    }

    .calendartabs-buttonlist.nav-tabs li a {
      width: 100%;
      padding: 16px 30px;
      font-size: 16px;
    }

    /*タブ アクティブ状態*/
    .calendartabs-buttonlist.nav-tabs li a.active {
      border: 2px solid var(--gray-d);
    }

    .tab-content {
      border: 2px solid var(--gray-dark);
      padding: 24px 20px 20px;
      margin: 20px auto 24px;
    }

    .calendar-text {
      font-size: 14px;
      margin-bottom: 0;
    }

    /* カレンダー */
    .calendar-table {
      margin: 0 auto 5px;
      width: 100%;
    }

    .calendar-table th,
    .calendar-table td {
      padding: 8px 10px;
    }

    .calendar-table thead th,
    .calendar-table thead td {
      padding: 13px 10px;
    }

    /*催行日 マーク*/
    .tour-on {
      position: relative;
    }
    .tour-on::before {
      width: 30px;
      height: 30px;
    }
    
    .attention-text {
        width: 100%;
    }

    .attention-text li {
        font-size: 14px;
        text-align: left;
        margin: 5px 0 0 0;
    }
    
    .attention-text img {
        width: 24px;
        margin-right: 5px;
    }
    
    .attention-text span {
        font-size: 13px;
    }
    
    .attention-text span.mid {
        font-size: 12px;
        margin-right: 8px;
    }
    
  
}


/*遷移誘導*/
.detaile-cv-wrap {
    position: relative;
    background: var(--yellow-l);
    padding: 30px 0;
    border-radius: 20px;
}

.copy-text span {
    display: inline-block;
    position: relative;
    font-size: 18px;
    font-weight: bold;
    padding: 0 20px;
}

.copy-text span::before,
.copy-text span::after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 2px;
    height: 80%;
    bottom: 0;
    border-radius: 50px;
    background: var(--black);
}

.copy-text span::before {
    left: -24px;
    transform: translateX(-50%) rotate(-45deg);
}

.copy-text span::after{
    right: -24px;
    transform: translateX(-50%) rotate(45deg);
}

.detaile-cv-wrap .plan-price {
    margin: 10px auto;
}

.detaile-cv-button {
    width: 90%;
    max-width: 400px;
}

.detaile-cv-button .button-link {
    background: var(--gold);
    box-shadow: 0 3px 0 var(--gray-d);
}

@media (max-width: 767px) {
    .detaile-cv-wrap {
        padding: 20px 0 10px;
    }

    .copy-text span {
        font-size: 14px;
        padding: 0 20px;
    }

    .copy-text span::before,
    .copy-text span::after {
        width: 2px;
        height: 55%;
        bottom: 0;
    }

    .copy-text span::before {
        left: 0;
        transform: translateX(-50%) rotate(-45deg);
    }

    .copy-text span::after{
        right: 0;
        transform: translateX(-50%) rotate(45deg);
    }
    
    .detaile-cv-wrap .plan-price {
        margin: 8px auto 10px;
        width: 100%;
    }

}



/* schedule
--------------------------------------*/
.schedule-list .container {
    max-width: 947px;
}

.schedule-list > li:nth-child(odd) {
  background-color: var(--gray-l);
}
.schedule-list > li:last-child {
  border-bottom: 1px solid #C5C5C5;
}

.schedule-timeline {
  align-items: center;
}

.schedule-time {
  margin-bottom: 0;
}
.schedule-title {
  font-size: 16px;
  font-weight: bold;
}

.schedule-detaile {
  font-weight: 500;
  margin-bottom: 10px;
}

.title-line-list {
  position: relative;
  margin-top: 16px;
  overflow: hidden;
}

.title-line-list::after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  width: 89%;
  margin-left: 100px;
  height: 1px;
  display: block;
  background-color: var(--gray-d);
}

.title-line {
  width: fit-content;
  padding-right: 10px;
}

.schedule-img-list {
    gap: 1%;
}

.schedule-img-list li {
    max-width: 100%;
    margin-top: 30px;
}

.schedule-img {
    width: 100%;
    margin: 0 auto;
}

/* スケジュールアコーディオン */
.schedule-acc .card-header {
    padding: 0;
    background: var(--white);
}

.schedule-acc .card {
    background: var(--white);
}

.schedule-acc .card-header a {
    color: var(--black);
    font-size: 16px;
    font-weight: bold;
    text-decoration: underline;
    padding: 16px 20px;
    display: block;
    position: relative;
}

.schedule-acc .card-header a span {
    display: inline-block;
    font-size: 18px;
}

.schedule-acc .card-header a span::before{
    content: '\f13a';
    position: absolute;
    font-family: "Font Awesome 5 Free";
    right: 10px;
    font-size: 18px;
    color: var(--black);
    transition: 0.3s;
    transform: rotate(-180deg);
}

.schedule-acc .card-header .collapsed span::before {
    transform: rotate(0);
}



@media (max-width: 767px) {

    .schedule-list .container {
        max-width: 100%;;
    }
    
    .schedule-heading {
        text-align: center;
    }
    
    .schedule-heading img{
        width: 80%;
    }
    
    .schedule-timeline {
        align-items: flex-start;
    }
    
    .schedule-time {
      margin-bottom: 0;
    }
    
    .schedule-title {
      font-size: 16px;
      margin-bottom: 8px;
    }

    .schedule-detaile {
      font-size: 14px;
      margin-bottom: 10px;
    }

    .title-line-list::after {
      top: calc(50% - 5px);
    }

    .title-line {
      width: fit-content;
      padding-right: 10px;
    }
    
    .schedule-img-list {
      flex-wrap: wrap;
      justify-content: center;
    }

    .schedule-img-list li {
        margin-top: 15px;
    }
    
    
    /* スケジュールアコーディオン */
    .schedule-acc .card-header a {
        font-size: 14px;
        padding: 12px 14px;
    }

    .schedule-acc .card-header a span {
        font-size: 14px;
    }

    .schedule-acc .card-header a span::before{
        font-size: 14px;
    }

}

/* access
-------------------------------------*/
.access-area {
  position: relative;
}

/* map */
.access-map {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto 30px;
}
.access-map iframe {
  width: 100%;
}

.access-link a {
  font-size: 16px;
  text-decoration: underline;
}

.access-link a:hover {
    opacity: 0.6;
}

.access-list {
  width: 80%;
  margin: auto;
  text-align: center;
  font-weight: bold;
  align-items: center;
}

.access-list:not(:first-child) {
  margin-top: 40px;
}

.access-dt {
  align-items: center;
}

.access-dd p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  text-align: left;
}

.access-list:first-of-type .access-dd p  {
    text-align: center;
}

@media (max-width: 767px) {
  .access-map {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .access-map iframe {
    height: 305px;
  }
    
   .access-link a {
    font-size: 14px;
  }

  .access-list {
    width: 100%;
    display: block;
    text-align: left;
  }

  .access-dt {
    padding: 8px 26px;
    margin-right: 0;
    text-align: left;
    font-size: 13px;
  }

  .access-dd,
  .access-dd p {
    text-align: left;
    font-size: 14px;
    margin-bottom: 20px;
  }
    
  .access-list:first-of-type .access-dd p  {
    text-align: left;
  }
    
}


/* voice
----------------------------------------*/
.voice-area {
  background: linear-gradient(180deg,#fff 0%,#fff 21%,#f9f9f9 21%,#f9f9f9 100%);
}

.voice-card {
  max-width: 467px;
  margin: 0 10px;
  min-height: 273px;
  background: var(--white);
}

.voice-text {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}

.voice-info {
  margin-top: 20px;
  margin-left: auto;
  text-align: right;
}

@media (max-width: 767px) {
    .voice-area {
      background: linear-gradient(180deg,#fff 0%,#fff 18%,#f9f9f9 18%,#f9f9f9 100%);
    }
    
    .voice-heading .en {
        width: 40%;
    }
    
    .voice-slider {
        margin-bottom: 0;
    }

    .voice-card {
      max-width: 273px;
      padding: 20px; 
      min-height: 187px;
    }

    .voice-text {
      font-size: 14px;
    }

    .voice-info {
      font-size: 14px;
      margin-top: 20px;
    }
    
    .voice-info .day,
    .voice-info .age{
      font-size: 14px;
    }

}


/* notes
--------------------------------------*/
.notes-box {
  max-width: 947px;
  margin-top: 120px;
}

.notes-button {
  margin-top: 80px;
}

@media (max-width: 767px) {
    .notes-box {
        margin-top: 60px;
        padding: 40px 20px 30px;
    }
    
    .notes-button {
        margin-top: 40px;
    }
}

/* 追従プラン*
----------------------------------------*/
.bottom-plan-fix {
  width: 100%;
  position: fixed;
  z-index: 10;
  bottom: 0;
  left: 0;
  border: 2px solid var(--gray-d);
  background: var(--gold);
  display: none;
  transition: 0.3s;
}

.bottom-plan-fix.is-view {
    display: block;
    opacity: 1;
}

.bottom-plan-fix a:hover {
    color: var(--gray-d);
}

.bottom-plan-card {
    display: flex;
    align-items: center;
    column-gap: 1%;
    color: var(--gray-d);
    font-size: 20px;
    padding: 4px 1%;
}

.plan-name {
    width: 40%;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
}

.plan-price {
    width: 28%;
    color: var(--red);
    vertical-align: bottom;
    font-weight: bold;
}

.plan-price small {
    font-size: 18px;
    font-weight: bold;
}

.plan-price b {
    font-size: 16px;
    line-height: 1.6;
    display: inline-block;
    margin-right: 10px;
}

.plan-price .num {
    font-size: 36px;
    line-height: 1.2;
    position: relative;
}

.plan-price .num::after {
    content: '～';
    position: absolute;
    font-size: 13px;
    font-weight: bold;
    /* vertical-align: middle; */
    top: calc(50% + 3px);
    right: -15px;
    transform: translateY(-50%);
}

.plan-button {
    width: 30%;
    margin: 10px auto;
}

.plan-button .button-link {
    padding: 14px 26px;
    box-shadow: 0 4px 0 var(--gray-d);
    font-size: 18px;
}

.plan-button .button-link::after {
    content: none;
}

#section-footer {
    margin-bottom: 30px;
}


/*固定追従 モーダル*/
/*.modal-torigger {
    background: transparent;
    width: 100%; 
}

.modal-backdrop {
  position: fixed !important; /* 必ず固定位置にする */
  /*z-index: 1040 !important;  /* Bootstrapの標準値 */
/*}*/
/*
.modal {
    position: fixed !important;
    z-index: 1050 !important;
}
*/

/*プラン分岐モーダルコンテンツ*/
/*
.plan-modal-wrap h3 {
    font-size: 16px;
    font-weight: bold;
}

.plan-modal-wrap .modal-footer {
    justify-content: center;
}

.modal-plan-item .plan-name {
    font-size: 13px;
    width: auto;
}
*/

/* btn */
/*
.modal-plan-item .button-link {
    display: flex;
    align-items: center;
    padding: 16px 24px 16px 12px;
    box-shadow: 0 3px 0 var(--gray-d);
}
.modal-plan-item .button-link::after {
    right: 5px;
}

.modal-plan-item .wrap-price {
    font-size: 20px;
    color: var(--red);
    font-weight: bold;
}
*/

@media (max-width: 990px) {
    
    .plan-price {
        width: 55%;
    }

    .plan-price small {
        font-size: 14px;
    }

    .plan-price b {
        font-size: 12px;
        margin-right: 1%;
    }

    .plan-button {
        width: 42%;
        margin: 3px auto 0;
    }
}

@media (max-width: 767px) {
    .bottom-plan-fix a:hover {
        color: var(--gray-d);
    }

    .bottom-plan-card {
        flex-wrap: wrap;
        justify-content: space-between;
        font-size: 14px;
        padding: 8px 0;
    }

    .plan-name {
        width: 100%;
        text-align: center;
        font-size: 16px;
        line-height: 1.6;
    }

    .plan-price {
        width: 55%;
    }

    .plan-price small {
        font-size: 14px;
    }

    .plan-price b {
        font-size: 12px;
        margin-right: 1%;
    }

    .plan-price .num {
        font-size: 25px;
        line-height: 1.2;
    }
    
    .plan-price .num::after {
        font-size: 10px;
        right: -12px;
    }

    .plan-button {
        width: 42%;
        margin: 3px auto 0;
    }

    .plan-button .button-link {
        padding: 12px 10px;
        box-shadow: 0 3px 0 var(--gray-d);
        font-size: 13px;
    }

    .plan-button .button-link::after {
        content: none;
    }

    #section-footer {
        margin-bottom: 30px;
    }
    
}

#pageup {
    display: none !important;
}