@charset "UTF-8";
html {
  font-size: 2.375vw;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

body {
  background-color: #000;
  font-family: "Noto Sans JP", YuGothicM, YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.6rem;
  -webkit-text-size-adjust: 100%;
}
body a {
  text-decoration: underline;
}
body a:hover {
  text-decoration: none;
}
body a.no-underline {
  text-decoration: none;
}
body img {
  vertical-align: bottom;
}

.only-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .only-pc {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .only-sp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  img.only-pc, span.only-pc {
    display: inline;
  }
}

@media screen and (min-width: 768px) {
  table.only-pc {
    display: table;
  }
}

.js-tel {
  text-decoration: none;
  cursor: default;
}

.pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  opacity: 0;
  transition: all 0.5s;
  transform: translateY(100px);
  width: 52px;
}
@media screen and (min-width: 768px) {
  .pagetop {
    width: 72px;
  }
}
.pagetop.is-show {
  opacity: 1;
  transform: translateY(0);
}

.inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-inline: 4%;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-inline: 20px;
  }
}

/* ------------------------------
   ヘッダー
------------------------------ */
.header {
  z-index: 999;
  position: relative;
}

.header-main {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  width: 100%;
  height: 70px;
  padding: 15px 2%;
  background-color: #000;
}
@media screen and (min-width: 768px) {
  .header-main {
    grid-template-columns: 1fr auto 1fr;
    padding-inline: 15px;
  }
}

.header-logo {
  width: 100%;
  max-width: 200px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .header-logo {
    grid-column: 2;
    max-width: 397px;
  }
}
.header-logo img {
  width: 100%;
}

.header-box {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
@media screen and (min-width: 768px) {
  .header-box {
    grid-column: 3;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
.header-box .header-language .language-ttl {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  cursor: pointer;
}
.header-box .header-language .language-ttl .ico {
  width: 2rem;
}
.header-box .header-language .language-ttl span {
  flex: 1;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .header-box .header-language .language-ttl span {
    font-size: 1.5rem;
  }
}
.header-box .header-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 80px;
  padding: 5px;
  background-color: #fff;
  border-radius: 2em;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media screen and (min-width: 640px) {
  .header-box .header-menu {
    max-width: 90px;
  }
}
@media screen and (min-width: 768px) {
  .header-box .header-menu {
    max-width: 110px;
  }
}
.header-box .header-menu .ico {
  width: 1.8rem;
}
@media screen and (min-width: 768px) {
  .header-box .header-menu .ico {
    font-size: 2.2rem;
  }
}
.header-box .header-menu span {
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .header-box .header-menu span {
    font-size: 1.7rem;
  }
}

@media screen and (min-width: 768px) {
  .js-menuopen {
    overflow: hidden;
  }
}
.js-menuopen .nav-menu {
  transform: translateX(0);
  visibility: visible;
}

/* ------------------------------
   SPメニュー
------------------------------ */
.nav-menu {
  z-index: 999999;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #d3d6e2;
  transform: translateX(100%);
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  .nav-menu {
    width: 450px;
  }
}
.nav-menu._loaded {
  transition: all 0.5s;
}
.nav-menu .nav-menu-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 5em;
  overflow-y: auto;
}
.nav-menu a, .nav-menu div {
  display: block;
  text-decoration: none;
}
.nav-menu .header-main {
  display: flex !important;
  justify-content: flex-end;
  background-color: #000;
}
@media screen and (min-width: 768px) {
  .nav-menu .header-main {
    background-color: #d3d6e2;
  }
}
.nav-menu .header-logo {
  display: block;
}
@media screen and (min-width: 768px) {
  .nav-menu .header-logo {
    display: none;
  }
}
.nav-menu .header-box {
  width: 100%;
}
.nav-menu .header-box .header-language p span {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .nav-menu .header-box .header-language p span {
    color: #390f50;
  }
}
.nav-menu .nav-menu-main ul {
  margin-bottom: 30px;
}
.nav-menu .nav-menu-main ul li {
  border-bottom: 1px solid #fff;
}
.nav-menu .nav-menu-main ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  text-decoration: none;
  padding: 15px 30px;
  background: url(../img/common/ico_nav_arrow.svg) no-repeat right 20px center;
  background-size: 8px auto;
  font-size: 1.9rem;
  font-weight: 700;
  color: #390f50;
}
.nav-menu .nav-menu-main ul li a .ico {
  width: 2.6rem;
  height: 2.6rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.nav-menu .nav-menu-main ul li a .ico.ico-nav01 {
  background-image: url(../img/common/ico_nav01.svg);
}
.nav-menu .nav-menu-main ul li a .ico.ico-nav02 {
  background-image: url(../img/common/ico_nav02.svg);
}
.nav-menu .nav-menu-main ul li a .ico.ico-nav03 {
  background-image: url(../img/common/ico_nav03.svg);
}
.nav-menu .nav-menu-main ul li a .ico.ico-nav04 {
  background-image: url(../img/common/ico_nav04.svg);
}
.nav-menu .nav-menu-main ul li a .ico.ico-nav05 {
  background-image: url(../img/common/ico_nav05.svg);
}
.nav-menu .nav-menu-main ul li a span {
  flex: 1;
}
.nav-menu .nav-close-txt {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 245px;
  margin-inline: auto;
  padding: 20px;
  background-color: #daff4f;
  border: 1px solid #390f50;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  border-radius: 4em;
}

/* ------------------------------
   ページタイトル
------------------------------ */
.pagettl {
  padding-inline: 4%;
  background-color: #3a1468;
  color: #fff;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .pagettl {
    padding-inline: 100px;
  }
}
.pagettl .pagettl-logo {
  width: 100%;
  max-width: 140px;
  margin-inline: auto;
  padding-block: 20px;
}
.pagettl .pagettl-h {
  padding: 30px 0 40px;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .pagettl .pagettl-h {
    font-size: 2.6rem;
  }
}
.pagettl .pagettl-h span {
  font-size: 4rem;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .pagettl .pagettl-h span {
    font-size: 6rem;
  }
}

/* ------------------------------
   フッター
------------------------------ */
.footer {
  padding-top: 50px;
  border-top: 1px solid #fff;
  background: url(../img/common/footer_bg001.png) no-repeat left top;
  background-size: cover;
}
.footer .footer-in {
  width: 100%;
  margin: 0 auto;
  padding-inline: 4%;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .footer .footer-in {
    padding-inline: 100px;
  }
}
.footer .footer-banner {
  margin-bottom: 50px;
}
.footer .footer-banner p {
  width: 100%;
  max-width: 744px;
  margin: 0 auto;
}
.footer .footer-main {
  padding-bottom: 40px;
}
.footer .footer-main ul li {
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .footer .footer-main ul li {
    margin-bottom: 25px;
  }
}
.footer .footer-main ul li:last-child {
  margin-bottom: 0;
}
.footer .footer-main ul li a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 1.3em;
  text-indent: -1.3em;
  text-decoration: none;
  font-size: 1.6rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .footer .footer-main ul li a {
    font-size: 2rem;
  }
}
.footer .footer-main .f-logo {
  width: 100%;
  max-width: 267px;
  margin: 0 auto;
}
.footer .copy {
  font-size: 1.2rem;
}
@media screen and (min-width: 640px) {
  .footer .copy {
    font-size: 1.5rem;
  }
}

.c-anchor {
  display: block;
  position: relative;
  top: -60px;
  visibility: hidden;
}

.font-en {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.font-maru {
  font-family: "Zen Maru Gothic", sans-serif;
}

.tab {
  display: none;
}
.tab.active {
  display: block;
}

.opacity {
  transition: all 0.6s;
}
.opacity:hover {
  opacity: 0.7;
}

.c-box {
  z-index: 99;
  position: relative;
  margin-bottom: 100px;
}

.c-sec {
  margin-bottom: 50px;
}

.c-heading {
  position: relative;
  padding: 30px 0 30px 40px;
  background: url(../img/common/ico_heading.svg) no-repeat left top 35px;
  background-size: 2rem auto;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .c-heading {
    background-size: 27px auto;
    font-size: 3rem;
    background-position: left top 40px;
  }
}

.c-subheading {
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-subheading {
    font-size: 2.4rem;
  }
}
.c-subheading a {
  display: block;
  text-underline-offset: 20px;
}
.c-subheading a .ico {
  width: 2.2rem;
  margin-left: 10px;
}

.c-heading_line {
  margin-bottom: 30px;
  font-size: 1.7rem;
  font-weight: 700;
  color: #000;
}
.c-heading_line span {
  padding: 5px 10px;
  background-color: #cfde5b;
}

.c-txt {
  line-height: 1.8;
}
.c-txt a {
  color: #45a2ff !important;
}
.c-txt strong {
  font-weight: 700;
}
.c-txt small {
  font-size: 1.4rem;
}
.c-txt._indent {
  padding-left: 1em;
  text-indent: -1em;
}

.c-lead {
  font-size: 1.8rem;
}

.c-caption {
  margin-top: 10px;
  font-size: 1.4rem;
}

.c-fig01 li {
  margin-bottom: 60px;
}
.c-fig01 li .c-txt {
  margin-top: 20px;
}
.c-fig01 li .c-txt a {
  color: #cfde5b !important;
}

.c-fig02 {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 5%;
  margin-bottom: 60px;
}
.c-fig02 li {
  width: 47.5%;
}
.c-fig02 li .c-txt {
  margin-top: 20px;
}
.c-fig02 li .c-txt a {
  color: #cfde5b !important;
}

.c-fig03 {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 3.125%;
  margin-bottom: 60px;
}
.c-fig03 li {
  width: 31.25%;
}
.c-fig03 li .c-txt {
  margin-top: 20px;
}
.c-fig03 li .c-txt a {
  color: #cfde5b !important;
}

.c-fig04 {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 2%;
  margin-bottom: 60px;
}
.c-fig04 li {
  width: 23.5%;
}
.c-fig04 li .c-txt {
  margin-top: 20px;
}
.c-fig04 li .c-txt a {
  color: #cfde5b !important;
}

.c-figtxt {
  display: block;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .c-figtxt {
    display: flex;
    justify-content: space-between;
    -moz-column-gap: 5%;
         column-gap: 5%;
  }
}
.c-figtxt._reverse {
  flex-direction: row-reverse;
}
.c-figtxt .figtxt-fig {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .c-figtxt .figtxt-fig {
    width: 47.5%;
  }
}
.c-figtxt .figtxt-txt {
  flex: 1;
}
.c-figtxt .figtxt-txt._frame {
  padding: 30px 25px;
  border: 1px solid #bcbcbc;
  border-radius: 1em;
}
.c-figtxt .figtxt-txt .c-box-border {
  padding-block: 25px;
}

.c-btn {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  min-width: min(360px, 100%);
  margin-inline: auto;
  padding: 1.2em;
  background: #fff url(../img/common/ico_arrow.svg) no-repeat right 20px center;
  background-size: 7px auto;
  color: #000 !important;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-radius: 4em;
}
.c-btn:hover {
  background-color: #cfde5b;
}
.c-btn._pdf {
  background-image: url("../img/common/ico_pdf.svg");
  background-position: right 20px center;
  background-size: 17px auto;
}
.c-btn._external {
  background-image: url("../img/common/ico_link.svg");
  background-position: right 20px center;
  background-size: 22px auto;
}
.c-btn._inverse {
  background-color: #cfde5b;
}
.c-btn._inverse:hover {
  background-color: #fff;
}

.c-linklist li {
  margin-bottom: 20px;
}
.c-linklist li:last-child {
  margin-bottom: 0;
}

.c-linktxt li {
  margin-bottom: 20px;
  padding-left: 40px;
  font-size: 1.6rem;
  background: url("../img/common/ico_arrow_w.svg") no-repeat left 10px top 0.5em;
  background-size: 5px auto;
}
.c-linktxt li:last-child {
  margin-bottom: 0;
}
.c-linktxt li._pdf {
  background: url("../img/common/ico_pdf.svg") no-repeat left 4px top 0.2em;
  background-size: 17px auto;
}
.c-linktxt li._external {
  background: url("../img/common/ico_link_y.svg") no-repeat left 5px top 0.2em;
  background-size: 22px auto;
}

.c-pointtxt li {
  margin-bottom: 0.5em;
}
.c-pointtxt li:last-child {
  margin-bottom: 0;
}
.c-pointtxt li::before {
  content: "■";
  display: inline-block;
  margin-right: 10px;
  font-size: 80%;
  color: #cfde5b;
}
.c-pointtxt li a {
  text-decoration: none;
  color: #45a2ff !important;
}
.c-pointtxt li a:hover {
  text-decoration: underline;
}

.c-keyword {
  display: flex;
  flex-direction: column;
  gap: 20px 30px;
  padding: 20px 30px;
  background-color: #5d687a;
  border-radius: 1em;
}
@media screen and (min-width: 768px) {
  .c-keyword {
    flex-direction: row;
  }
}
.c-keyword .keyword-ttl {
  font-size: 1.7rem;
  color: #fff;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-keyword .keyword-ttl {
    width: 8em;
  }
}
.c-keyword .keyword-tag {
  flex: 1;
  display: flex;
  gap: 20px 20px;
  flex-wrap: wrap;
}
.c-keyword .keyword-tag p {
  display: inline-block;
  padding: 5px 1em;
  background-color: #fff;
  font-size: 1.4rem;
  color: #000 !important;
  border-radius: 2em;
}

.c-area {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.c-area p {
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
.c-area p .ico {
  width: 0.8rem;
}
.c-area p span {
  flex: 1;
  font-size: 1.4rem;
  color: #3a1468;
}

.c-category {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.c-category p {
  display: inline-block;
  padding: 5px 1em;
  background-color: #daff4f;
  font-size: 1.4rem;
  color: #3a1468;
  line-height: 1;
}

.c-event {
  margin-top: 50px;
  padding: 20px 30px;
  background-color: #1f1f1f;
  border: 1px solid #979797;
  border-radius: 20px;
}
.c-event .event-heading {
  margin-bottom: 20px;
  font-size: 2.4rem;
  color: #fff;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-event .event-con {
    display: flex;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
.c-event .event-con figure {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .c-event .event-con figure {
    width: 100%;
    max-width: 178px;
    margin-bottom: 0;
  }
}
.c-event .event-con dl {
  flex: 1;
}
.c-event .event-con dl dt {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}
.c-event .event-con dl dt a .ico {
  width: 1.9rem;
  margin-left: 10px;
}
.c-event .event-con dl dd {
  font-size: 1.4rem;
  color: #daff4f;
}

.c-mokuji {
  margin-bottom: 50px;
  background-color: #f6f9fc;
  color: #000;
  border-radius: 15px;
  overflow: hidden;
}
.c-mokuji .mokuji-heading {
  display: flex;
  align-items: center;
  padding: 20px;
}
.c-mokuji .mokuji-heading .ico {
  width: 2.4rem;
  margin-right: 20px;
}
.c-mokuji .mokuji-heading span {
  font-size: 1.8rem;
  font-weight: 500;
}
.c-mokuji .mokuji-in {
  position: relative;
  padding: 0 30px 20px;
}
.c-mokuji .mokuji-in::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, #fff, transparent);
  pointer-events: none;
}
.c-mokuji.is-open .mokuji-in::before {
  display: none;
}
.c-mokuji.is-open .mokuji-item {
  height: auto;
}
.c-mokuji.is-open .mokuji-btn span::after {
  content: "閉じる ▲";
}
.c-mokuji .mokuji-item {
  height: 300px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-mokuji .mokuji-item {
    height: 150px;
  }
}
.c-mokuji .mokuji-item > ul > li {
  margin-bottom: 0.5em;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}
.c-mokuji .mokuji-item > ul > li ul li {
  padding-left: 20px;
  background: url(../img/common/ico_arrow_pk.svg) no-repeat left 15px top 0.8em;
  background-size: 3px auto;
  font-size: 1.4rem;
  font-weight: 400;
}
.c-mokuji .mokuji-btn {
  cursor: pointer;
}
.c-mokuji .mokuji-btn .mokuji-btn-in {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 10px;
  background-color: #3a1468;
  color: #fff;
  line-height: 1;
}
.c-mokuji .mokuji-btn span {
  font-size: 1.6rem;
  font-weight: 500;
}
.c-mokuji .mokuji-btn span::after {
  content: "目次を開く ▼";
}

.c-listbox {
  padding: 30px 4.347826087%;
  border: 1px solid #bcbcbc;
  border-radius: 1em;
}
@media screen and (min-width: 768px) {
  .c-listbox {
    padding: 30px;
  }
}
.c-listbox ol {
  counter-reset: my-counter;
}
.c-listbox ol li {
  position: relative;
  margin-bottom: 0.5em;
  padding-left: 2em;
  font-size: 1.6rem;
}
.c-listbox ol li:last-child {
  margin-bottom: 0;
}
.c-listbox ol li::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.6rem;
  height: 1.6rem;
  margin-top: 0.3em;
  background-color: #cfde5b;
  border: 1px solid #cfde5b;
  color: #000;
  font-size: 1.2rem;
  line-height: 1;
  border-radius: 50%;
}

.c-slider {
  position: relative;
  margin-bottom: 45px;
}
.c-slider .c-slider-wrap {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  overflow: hidden;
}
.c-slider .slide-btn {
  z-index: 99;
  position: absolute;
  top: 50%;
  width: 46px;
  margin-top: -23px;
}
.c-slider .slide-btn._prev {
  left: 0;
}
.c-slider .slide-btn._next {
  right: 0;
}
.c-slider .swiper-pagination {
  position: static;
  display: flex;
  justify-content: flex-end;
  margin-top: 1.3333333333%;
  padding-inline: 4%;
}
@media screen and (min-width: 768px) {
  .c-slider .swiper-pagination {
    margin-top: 10px;
    padding-inline: 0;
  }
}

.c-yt {
  position: relative;
  aspect-ratio: 560/315;
}
.c-yt iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-detailspot {
  padding: 35px;
  border-radius: 1em;
  background-color: #1c2332;
}
.c-detailspot + .c-detailspot._item {
  margin-top: -50px !important;
  padding-top: 0;
}
.c-detailspot .ds-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px 4.1095890411%;
}
@media screen and (min-width: 768px) {
  .c-detailspot .ds-box {
    flex-direction: row;
  }
}
.c-detailspot .ds-item {
  border: 1px solid #cfde5b;
}
.c-detailspot .ds-item .ds-item-heading {
  padding: 10px 5px;
  background-color: #cfde5b;
  color: #000;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-detailspot .ds-item .ds-item-heading {
    font-size: 1.7rem;
  }
}
.c-detailspot .ds-item .ds-item-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 40px 30px;
  gap: 30px 4.1095890411%;
}
@media screen and (min-width: 768px) {
  .c-detailspot .ds-item .ds-item-main {
    flex-direction: row;
  }
}
.c-detailspot .ds-main {
  flex: 1;
}
.c-detailspot .ds-main .ds-area {
  width: 6em;
  margin-bottom: 10px;
  padding: 5px;
  color: #000;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  line-height: 1;
}
.c-detailspot .ds-main .ds-area._nagoya {
  background-color: #ffcccc;
}
.c-detailspot .ds-main .ds-area._oharu {
  background-color: #f7efae;
}
.c-detailspot .ds-main .ds-area._seto {
  background-color: #ccf38d;
}
.c-detailspot .ds-main .ds-ttl {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #cfde5b;
  font-size: 2.1rem;
  font-weight: 700;
}
.c-detailspot .ds-main .ds-txt {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #cfde5b;
  font-size: 1.6rem;
  line-height: 2;
}
.c-detailspot .ds-main .ds-detail dl {
  display: flex;
  margin-bottom: 5px;
}
.c-detailspot .ds-main .ds-detail dl:last-child {
  margin-bottom: 0;
}
.c-detailspot .ds-main .ds-detail dl dt {
  width: 7em;
}
.c-detailspot .ds-main .ds-detail dl dt div {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.c-detailspot .ds-main .ds-detail dl dt div .ico-pin02::before {
  width: 80% !important;
}
.c-detailspot .ds-main .ds-detail dl dd {
  flex: 1;
}
.c-detailspot .ds-side {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-detailspot .ds-side {
    width: 34.2465753425%;
    margin-top: 45px;
  }
}
.c-detailspot .ds-side .ds-side-fig-main {
  margin-bottom: 10px;
}
.c-detailspot .ds-side .side-btn {
  margin-top: 20px;
}

.c-information {
  padding: 40px 30px;
  background-color: #f6f9fc;
  border-radius: 10px;
  color: #1f1f1f;
}
.c-information .info-sec {
  margin-bottom: 80px;
}
.c-information .info-ttl {
  position: relative;
  margin-bottom: 55px;
  font-size: 1.8rem;
  font-weight: 500;
}
.c-information .info-ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 116px;
  height: 3px;
  margin-bottom: -20px;
  background-color: #ffe5e4;
}
.c-information .info-main {
  padding: 30px;
  background-color: #fff;
}
.c-information .info-main a {
  text-decoration: none;
  color: #0062ff;
}
.c-information .info-main a:hover {
  text-decoration: none;
}
.c-information .info-main a .ico {
  margin-left: 0.5em;
}
.c-information .info-main .ico-arrow-bl {
  width: 0.5em;
}
.c-information .info-main .c-pointtxt li::before {
  color: #1f1f1f;
}
.c-information .info-main .c-pointtxt li a {
  color: #0062ff !important;
}
.c-information .info-main._basic {
  padding: 0;
}
.c-information .info-main._basic table {
  width: 100%;
  font-size: 1.4rem;
}
.c-information .info-main._basic table tr {
  border-bottom: 1px solid #c9d3e7;
}
.c-information .info-main._basic table tr:last-child {
  border-bottom: none;
}
.c-information .info-main._basic table tr th {
  display: block;
  padding: 20px 20px 10px;
  text-align: left;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .c-information .info-main._basic table tr th {
    display: table-cell;
    vertical-align: top;
    width: 13em;
    padding: 20px 10px 25px 25px;
  }
}
.c-information .info-main._basic table tr td {
  display: block;
  padding: 10px 20px 20px;
}
@media screen and (min-width: 768px) {
  .c-information .info-main._basic table tr td {
    display: table-cell;
    padding: 20px 10px;
  }
}
.c-information .info-main._basic table tr td a {
  color: #0062ff !important;
  font-weight: 500;
}
.c-information .info-main._basic table tr td .basic-facility {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-information .info-main._basic table tr td .basic-facility {
    align-items: center;
    flex-direction: row;
  }
}
.c-information .info-main._basic table tr td .basic-facility ul {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.c-information .info-main._basic table tr td .basic-facility ul li {
  width: 50px;
}
.c-information .info-main._basic table tr td .basic-facility .ico-explanation {
  flex: 1;
  text-decoration: underline;
  color: #0062ff;
  cursor: pointer;
}
.c-information .info-main._basic table tr td .basic-facility .ico-explanation:hover {
  text-decoration: none;
}
.c-information .info-main._barrierfree .more-box .more-box-in {
  position: relative;
}
.c-information .info-main._barrierfree .more-box .more-box-in::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 146px;
  background: linear-gradient(to top, #fff, transparent);
  pointer-events: none;
}
.c-information .info-main._barrierfree .more-box.is-open .more-box-in::before {
  display: none;
}
.c-information .info-main._barrierfree .more-box.is-open .more-item {
  margin-bottom: 60px;
  height: auto;
}
.c-information .info-main._barrierfree .more-box.is-open .more-btn {
  background: #fff url(../img/common/ico_toggle_o.svg) no-repeat right 25px center;
  background-size: 10px auto;
}
.c-information .info-main._barrierfree .more-box.is-open .more-btn::after {
  content: "閉じる";
}
.c-information .info-main._barrierfree .more-box .more-item {
  height: 450px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-information .info-main._barrierfree .more-box .more-item {
    height: 300px;
  }
}
.c-information .info-main._barrierfree .more-box .more-btn {
  display: block;
  text-decoration: none;
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
  padding: 20px;
  border: 1px solid #b6b6b6;
  background: #fff url(../img/common/ico_toggle_c.svg) no-repeat right 25px center;
  background-size: 10px auto;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  color: #000;
  border-radius: 2em;
  cursor: pointer;
  line-height: 1;
}
.c-information .info-main._barrierfree .more-box .more-btn::after {
  content: "すべて見る";
}
.c-information .info-main._barrierfree .bf-box {
  margin-bottom: 35px;
}
.c-information .info-main._barrierfree .bf-box:last-child {
  margin-bottom: 0;
}
.c-information .info-main._barrierfree .bf-box .bf-heading {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 500;
}
.c-information .info-main._barrierfree .bf-box .bf-icon {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .c-information .info-main._barrierfree .bf-box .bf-icon {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.c-information .info-main._barrierfree .bf-box .bf-icon ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.c-information .info-main._barrierfree .bf-box .bf-icon ul li {
  width: 50px;
}
.c-information .info-main._barrierfree .bf-box .bf-icon .ico-explanation {
  text-decoration: underline;
  font-size: 1.4rem;
  color: #0062ff;
  cursor: pointer;
}
.c-information .info-main._barrierfree .bf-box .bf-icon .ico-explanation:hover {
  text-decoration: none;
}
.c-information .info-main._barrierfree table {
  width: 100%;
  margin-top: 10px;
  border-top: 1px solid #c9d3e7;
  font-size: 1.4rem;
}
.c-information .info-main._barrierfree table tr {
  border-bottom: 1px solid #c9d3e7;
}
.c-information .info-main._barrierfree table tr th {
  display: block;
  padding: 20px 15px;
  background: rgba(181, 226, 255, 0.5);
  font-weight: 400;
  text-align: left;
  color: #515151;
}
@media screen and (min-width: 768px) {
  .c-information .info-main._barrierfree table tr th {
    display: table-cell;
    width: 15em;
    vertical-align: top;
  }
}
.c-information .info-main._barrierfree table tr td {
  display: block;
  padding: 20px 15px;
}
@media screen and (min-width: 768px) {
  .c-information .info-main._barrierfree table tr td {
    display: table-cell;
    padding: 20px 40px;
  }
}
.c-information .info-main._frame {
  border-radius: 10px;
}
.c-information .info-main._frame .c-txt {
  color: #e04757;
}
.c-information .info-main._access {
  padding: 0;
  background: none;
}
.c-information .info-main._access .access-map .map-iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.c-information .info-main._access .access-map .map-iframe iframe {
  width: 100%;
  height: 100%;
}
.c-information .info-main._access .access-map .map-txt {
  margin-top: 20px;
  font-size: 1.4rem;
}
.c-information .info-main._access .access-map .map-txt::before {
  content: "■";
  margin-right: 0.5em;
  font-size: 70%;
  color: #0f2f8e;
}
.c-information .info-main._access .access-main {
  margin-top: 40px;
}
.c-information .info-main._access .access-main .access-box {
  padding-block: 20px 40px;
  border-top: 2px solid #fff;
}
.c-information .info-main._access .access-main .access-box .access-heading {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.c-information .info-main._access .access-main .access-box .access-heading span {
  flex: 1;
}
.c-information .info-main._access .access-main .access-box .access-heading .ico {
  width: 3.2rem;
  margin-right: 15px;
}
.c-information .info-main._access .access-main .access-box ul {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .c-information .info-main._access .access-main .access-box ul {
    padding-left: 60px;
  }
}

.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.pager button {
  display: block;
  width: 50px;
}
.pager ol {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.pager ol li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 1.8rem;
  color: #000;
  font-weight: 700;
  border-radius: 50%;
  line-height: 1;
}
.pager ol li a:hover, .pager ol li a.active {
  background-color: #fff;
}

.ico {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 1em;
  line-height: 0;
}
.ico::before {
  width: 100% !important;
}

.ico-language::before {
  content: url("../img/common/ico_language.svg");
}

.ico-language-w::before {
  content: url("../img/common/ico_language_w.svg");
}

.ico-menu::before {
  content: url("../img/common/ico_menu.svg");
}

.ico-close::before {
  content: url("../img/common/ico_close.svg");
}

.ico-close02::before {
  content: url("../img/common/ico_close02.svg");
}

.ico-search::before {
  content: url("../img/common/ico_search.svg");
}

.ico-search-w::before {
  content: url("../img/common/ico_search_w.svg");
}

.ico-pin::before {
  content: url("../img/common/ico_pin.svg");
}

.ico-pin-pp::before {
  content: url("../img/common/ico_pin_pp.svg");
}

.ico-area::before {
  content: url("../img/common/ico_area.svg");
}

.ico-link::before {
  content: url("../img/common/ico_link.svg");
}

.ico-link-w::before {
  content: url("../img/common/ico_link_w.svg");
}

.ico-link-bl::before {
  content: url("../img/common/ico_link_bl.svg");
}

.ico-map-all::before {
  content: url("../img/common/ico_map_all_act.svg");
}

.ico-map-spot::before {
  content: url("../img/common/ico_map_spot.svg");
}

.ico-map-event::before {
  content: url("../img/common/ico_map_event.svg");
}

.ico-map-stay::before {
  content: url("../img/common/ico_map_stay.svg");
}

.ico-map-root::before {
  content: url("../img/common/ico_map_root.svg");
}

.ico-map-favorite::before {
  content: url("../img/common/ico_map_favorite.svg");
}

.ico-mokuji::before {
  content: url("../img/common/ico_mokuji.svg");
}

.ico-pin02::before {
  content: url("../img/common/ico_pin02.svg");
}

.ico-time02::before {
  content: url("../img/common/ico_time02.svg");
}

.ico-holiday::before {
  content: url("../img/common/ico_holiday.svg");
}

.ico-remarks::before {
  content: url("../img/common/ico_remarks.svg");
}

.ico-calendar03::before {
  content: url("../img/common/ico_calendar03.svg");
}

.ico-reco::before {
  content: url("../img/common/ico_reco.svg");
}

.ico-arrow-bl::before {
  content: url("../img/common/ico_arrow_bl.svg");
}

.ico-access-car::before {
  content: url("../img/common/ico_access_car.svg");
}

.ico-access-train::before {
  content: url("../img/common/ico_access_train.svg");
}

.w100 {
  width: 100%;
}

.mab20 {
  margin-bottom: 20px !important;
}

.js-anime-fadein {
  opacity: 0;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.js-anime-fadein.js-anime-on {
  animation-name: fadeIn;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.js-anime-slide {
  opacity: 0;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.js-anime-slide.js-anime-on {
  animation-name: slide;
}

@keyframes slide {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-anime-slideleft {
  opacity: 0;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.js-anime-slideleft.js-anime-on {
  animation-name: slideLeft;
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.js-anime-slideright {
  opacity: 0;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.js-anime-slideright.js-anime-on {
  animation-name: slideRight;
}

@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@media print {
  .js-anime-fadein, .js-anime-slide, .js-anime-slideleft, .js-anime-slideright {
    opacity: initial;
  }
}/*# sourceMappingURL=style.css.map */