@charset "UTF-8";
/* foundation */
@import url("//fonts.googleapis.com/css?family=Noto+Sans+JP:100,200,300,400,500,700,900&subset=japanese");
main {
  display: block;
}

div, span, p, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

h2, h3, h4, h5, h6 {
  font-weight: bold;
}

a {
  word-break: break-all;
}

li {
  list-style-type: none;
}

img {
  width: 100%;
}

table {
  border-spacing: 0;
}

table, tr, th, td {
  border-collapse: collapse;
}

dt {
  font-weight: 500;
}

/* 背景色 */
/* テキストの色 */
/* リンクのの色 */
/* ボタンの色 */
/* その他色の設定 */
html {
  font-size: 62.5%;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-offset, 0px);
}

body {
  padding: 0;
  margin: 0;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4375;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  body {
    line-height: 1.75;
  }
}
body::before {
  content: "";
  background: url(../img/bg.webp) no-repeat center center/cover;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.red {
  color: #ce0501;
}

a {
  color: #0028aa;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

.c-btn {
  display: block;
  width: 287px;
  background: #2e69a9;
  border-radius: 3px;
  padding: 11px 0;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border: none;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .c-btn {
    width: 280px;
    padding: 14px 0;
    font-size: 1.8rem;
  }
}
.c-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 9.6px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url(../common/img/arrow-down.svg) no-repeat center center/contain;
  display: block;
  transition: filter 0.3s ease;
  filter: brightness(0) invert(1);
}
@media screen and (min-width: 768px) {
  .c-btn::after {
    width: 20px;
    height: 20px;
  }
}
.c-btn:hover {
  background: #1a3d63;
  color: #fff;
}
.c-btn:hover::after {
  filter: brightness(0) invert(1);
}
.c-btn.open::after {
  transform: translateY(-50%) rotate(180deg);
}

.c-btn-red {
  display: block;
  color: #fff;
  background-color: #c82534;
  border: 1px solid transparent;
  padding: 6px;
  border-radius: 2em;
  text-decoration: none;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-btn-red {
    width: 300px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.c-btn-red:hover {
  border-color: #ce0501;
  background-color: #fff;
  color: #ce0501;
}

.c-btn-external {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.c-btn-external::after {
  width: 15px;
  height: 15px;
  position: initial;
  transform: translateY(0);
  background: url(../common/img/external-icon.svg) no-repeat center center/contain;
}
.c-btn-external:hover::after {
  filter: brightness(0) invert(1);
}

.c-disc-list > li {
  position: relative;
  padding-left: 1em;
}
.c-disc-list > li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "・";
}

.c-num-list {
  counter-reset: num;
}
.c-num-list li {
  position: relative;
  padding-left: 1.2em;
}
.c-num-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: counter(num) ".";
  counter-increment: num;
}

.c-checkbox {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 10px auto 0;
}
@media screen and (min-width: 768px) {
  .c-checkbox {
    gap: 20px;
    width: 340px;
    margin-top: 20px;
  }
}
.c-checkbox__arrow {
  width: 44px;
}
@media screen and (min-width: 768px) {
  .c-checkbox__arrow {
    width: 68px;
  }
}
.c-checkbox__button {
  width: 100%;
  padding: 11px 0;
  background: #ffffff;
  border: 2px solid #bfbfbf;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
}
.c-checkbox__button:hover {
  background: #5f5f5f;
  color: #fff;
  border: 2px solid #bfbfbf;
}
.c-checkbox__button:hover input {
  border: 2px solid #ffffff;
}
@media screen and (min-width: 768px) {
  .c-checkbox__button {
    padding: 14px 0;
    font-size: 1.8rem;
    gap: 12px;
  }
}
.c-checkbox__button:has(input:checked) {
  background: #5f5f5f;
  border: 2px solid #bfbfbf;
}
.c-checkbox__button:has(input:checked) span {
  color: #ffffff;
}
.c-checkbox__button input {
  position: relative;
  width: 15px;
  height: 15px;
  border: 2px solid #333333;
  margin: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.c-checkbox__button input:checked {
  border: 2px solid #ffffff;
}
.c-checkbox__button input:checked::after {
  content: "";
  position: absolute;
  left: 3px;
  top: -1px;
  width: 4px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

h1,
h2,
h3,
h4,
h5,
h6,
b {
  font-weight: 700;
}

kome {
  display: inline-block;
  margin-inline: auto;
  padding-left: 1em;
  position: relative;
}
kome::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "※";
  line-height: inherit;
}

disc {
  display: inline-block;
  position: relative;
  padding-left: 1em;
}
disc::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "・";
  line-height: inherit;
}

.link:link, .link:hover, .link:visited {
  color: #0028aa;
}

/* fontawesome for windows  */
.fa-download:before {
  font-weight: 900 !important;
}

/****************************
印刷レイアウトの設定
****************************/
@media print {
  header {
    padding-top: 0px;
  }
  main {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 30px 0px;
  }
}
/****************************
印刷レイアウトの設定 END
****************************/
.js-modal {
  visibility: hidden;
  opacity: 0;
  overflow: auto;
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}
.js-modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}
.js-modal__background {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.7);
}
.js-modal__content {
  position: relative;
  z-index: 3;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  z-index: 1002;
  max-width: 1200px;
  width: 100%;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}
@media screen and (min-width: 768px) {
  .js-modal__content {
    width: auto;
    padding: 0 24px;
  }
}
.js-modal__content__inner {
  margin: 50px 15px;
  padding: 27px 16px;
  border-radius: 10px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .js-modal__content__inner {
    margin: 50px 0;
    padding: 25px;
  }
}
.js-modal__content__inner .js-modal-close {
  width: 45px;
  margin: 22px auto 0;
  padding: 0;
  border: initial;
  background: transparent;
  display: block;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.js-modal__content__inner .js-modal-close:hover {
  opacity: 0.7;
}
.js-modal.open .js-modal__content {
  transform: translateY(0);
}

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

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

/* 国内外の設定 *****************
 *  true: 国内
 *  false:海外
*/
/* ************************* */
/* object */
#page_header-pc {
  margin-bottom: 0 !important;
}

.JTBGF-ly_footer {
  margin-top: 0 !important;
}
@media screen and (min-width: 768px) {
  .JTBGF-ly_footer {
    margin-top: 0 !important;
  }
}

.fixed-btns {
  position: fixed;
  right: 7px;
  bottom: 7px;
  z-index: 101;
}
@media screen and (min-width: 768px) {
  .fixed-btns {
    right: clamp(24px, 5vw, 100px);
    bottom: 24px;
  }
}
.fixed-btns__inner {
  display: flex;
  align-items: center;
  gap: 7px;
}
@media screen and (min-width: 768px) {
  .fixed-btns__inner {
    gap: 10px;
  }
}
.fixed-btns__inner__btn {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0px 3px 8px rgba(0, 0, 0, 0.25));
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .fixed-btns__inner__btn {
    width: 44px;
    height: 44px;
  }
}

.sns__title {
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sns__title {
    font-size: 2rem;
  }
}
.sns__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  font-size: 1.5rem;
  margin-top: 30px;
}
.sns__list li {
  flex: 0 0 auto;
}
.sns__list li a {
  color: #fff;
  padding: 0.25em 0.5em;
  text-decoration: none;
  border-radius: 2px;
  line-height: 1.8;
}
.sns__list li a:hover {
  opacity: 0.8;
}
.sns__list li a.fb {
  background: #3b5998;
}
.sns__list li a.tw {
  background: #000;
}
.sns__list li a.ln {
  background: #1dcd00;
}
.sns__list li i {
  margin-right: 0.25em;
}
.sns__list li:nth-child(1) {
  margin-left: 0;
}

main {
  padding-bottom: 25px;
}
@media screen and (min-width: 768px) {
  main {
    padding-bottom: 40px;
  }
}

.section__wrap {
  padding: 25px 20px;
}
@media screen and (min-width: 768px) {
  .section__wrap {
    padding: 40px 20px;
  }
}
.section__wrap__inner {
  background: #fff;
  margin: auto;
  padding: 24px 20px;
}
@media screen and (min-width: 768px) {
  .section__wrap__inner {
    max-width: 800px;
    padding: 36px 40px;
  }
}
.section__wrap__inner__title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .section__wrap__inner__title {
    font-size: 2.8rem;
    line-height: 1.46;
  }
}

.mv__title {
  font-size: 2.4rem;
  line-height: 1.2;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 15px;
  color: #2e69a9;
  text-shadow: -2px 0 #fff, 2px 0 #fff, 0 -2px #fff, 0 2px #fff, -2px -2px #fff, 2px -2px #fff, -2px 2px #fff, 2px 2px #fff;
}
@media screen and (min-width: 768px) {
  .mv__title {
    font-size: 3.6rem;
    padding: 50px 0;
  }
}
.mv__title--small {
  font-size: 0.7em;
}
.mv__container {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .mv__container {
    flex-direction: row;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
  }
}
.mv__splide {
  padding-bottom: 15px;
}
.mv__splide img {
  display: block;
}
@media screen and (min-width: 768px) {
  .mv__splide {
    padding-bottom: 0px;
    flex: 1;
    position: relative;
  }
}
.mv__splide .splide__pagination {
  margin-top: 9px;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .mv__splide .splide__pagination {
    margin-top: 0;
    gap: 13px;
    position: absolute;
    left: 50%;
    bottom: -22px;
    transform: translateX(-50%);
  }
}
.mv__splide .splide__pagination li {
  width: 5px;
  height: 5px;
}
@media screen and (min-width: 768px) {
  .mv__splide .splide__pagination li {
    width: 13px;
    height: 13px;
  }
}
.mv__splide .splide__pagination .splide__pagination__page {
  display: block;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background: #d9d9d9;
  border-radius: 50%;
  border: initial;
  cursor: pointer;
  transition: background 0.3s ease;
}
.mv__splide .splide__pagination .splide__pagination__page:hover {
  background: #5f5f5f;
}
.mv__splide .splide__pagination .splide__pagination__page.is-active {
  background: #5f5f5f;
}
.mv__overview {
  padding: 14px 20px 0px;
  background-color: #fbfbfb;
}
@media screen and (min-width: 768px) {
  .mv__overview {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
    width: 28%;
    height: auto;
  }
}
.mv__overview__inner {
  background-color: initial;
}
@media screen and (min-width: 768px) {
  .mv__overview__inner {
    padding: 0;
  }
}
.mv__overview__notice {
  background: #ce0501;
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding: 6px 0;
  margin-bottom: 6px;
}
.mv__overview__range {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mv__overview__range__price {
  font-weight: 700;
  font-size: 2.8rem;
  color: #ce0501;
}
@media screen and (min-width: 768px) {
  .mv__overview__range__price {
    font-size: 3.6rem;
    line-height: 1.44;
  }
}
.mv__overview__range__price span {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .mv__overview__range__price span {
    font-size: 1em;
  }
}
.mv__overview__range__text {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .mv__overview__range__text {
    font-size: 1.5rem;
    line-height: 1.47;
  }
}
.mv__overview__info {
  margin-top: 14px;
}
@media screen and (min-width: 768px) {
  .mv__overview__info {
    margin-top: 23px;
  }
}
.mv__overview__info__text {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .mv__overview__info__text {
    font-size: 1.6rem;
    line-height: 1.4375;
  }
}
.mv__overview__tag {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .mv__overview__tag {
    margin-top: 11px;
  }
}
.mv__overview__tag__text {
  padding: 5px 10px;
  background: #ffffff;
  border: 1px solid #838383;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .mv__overview__tag__text {
    padding: 2px 10px;
  }
}
.mv__overview__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .mv__overview__buttons {
    margin-top: 25px;
  }
}
.mv__overview__button {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .mv__overview__button {
    width: 100%;
  }
}
.mv__overview__button--alt::after {
  display: none;
}

.point__section__title {
  margin-bottom: 22px;
}
@media screen and (min-width: 768px) {
  .point__section__title {
    margin-bottom: 32px;
  }
}
.point__section__img {
  margin-bottom: 18px;
}
.point__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .point__list {
    gap: 18px;
  }
}
.point__list__item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px 0 16px 14px;
  border-left: 3px solid #2e69a9;
  background: linear-gradient(90deg, rgba(46, 105, 169, 0.06) 0%, rgba(46, 105, 169, 0) 72%);
}
@media screen and (min-width: 768px) {
  .point__list__item {
    gap: 20px;
    padding: 20px 8px 20px 22px;
  }
}
.point__list__num {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #2e69a9;
  font-variant-numeric: tabular-nums;
}
@media screen and (min-width: 768px) {
  .point__list__num {
    font-size: 3.2rem;
  }
}
.point__list__text {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .point__list__text {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}

.event__section__title {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .event__section__title {
    margin-bottom: 25px;
  }
}
.event__section__infomation {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}
@media screen and (min-width: 768px) {
  .event__section__infomation {
    flex-direction: row;
    gap: 42px;
    font-size: 1.8rem;
    line-height: 1.89;
  }
}
.event__section__infomation:not(:last-child) {
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .event__section__infomation:not(:last-child) {
    margin-bottom: 0;
  }
}
.event__section__infomation__title {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .event__section__infomation__title {
    width: 165px;
  }
}
.event__section__infomation__content {
  margin-left: 1em;
}
@media screen and (min-width: 768px) {
  .event__section__infomation__content {
    flex: 1;
    margin-left: 0;
  }
}

.reception__section__title {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .reception__section__title {
    margin-bottom: 10px;
  }
}
.reception__section__periods__ul li {
  text-align: center;
  border-bottom: 1px dashed #ccc;
  margin-bottom: 25px;
  padding-bottom: 25px;
}
.reception__section__periods__ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.reception__section__periods__ul li.done .reception__section__periods__ul__message__up,
.reception__section__periods__ul li.done .reception__section__periods__ul__days p,
.reception__section__periods__ul li.done .reception__section__periods__ul__message__bottom {
  color: #ccc !important;
}
.reception__section__periods__ul li.done .badge {
  top: calc(50% - 20px);
  left: calc(50% - 130px);
  position: absolute;
  background: #fff;
  color: #c82534 !important;
  border: 2px solid #c82534;
  line-height: 40px;
  text-align: center;
  width: 250px;
  font-weight: 500;
  transform: rotate(-5deg);
  -moz-transform: rotate(-5deg);
  -webkit-transform: rotate(-5deg);
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2);
}
.reception__section__periods__ul__days {
  position: relative;
}
.reception__section__periods__ul__days__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  line-height: 3.2rem;
}
@media screen and (min-width: 768px) {
  .reception__section__periods__ul__days__inner {
    flex-wrap: nowrap;
    align-items: center;
    letter-spacing: 0.05em;
    line-height: 1;
    gap: 7px;
  }
}
.reception__section__periods__ul__days__inner p:not(.reception__section__periods__ul__days__to) {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.2;
  text-align: center;
  color: #ce0501;
}
@media screen and (min-width: 768px) {
  .reception__section__periods__ul__days__inner p:not(.reception__section__periods__ul__days__to) {
    width: auto;
  }
}
.reception__section__periods__ul__days__inner p:not(.reception__section__periods__ul__days__to) span {
  font-size: 1.6rem;
}
.reception__section__periods__ul__days__start {
  display: block;
  width: 100%;
}
.reception__section__periods__ul__days__to {
  font-size: 2rem;
  color: #000;
  padding: 0;
  transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  .reception__section__periods__ul__days__to {
    transform: rotate(0deg);
  }
}
.reception__section__periods__ul__days__end {
  display: block;
  width: 100%;
}
.reception__section__periods__ul__message__up {
  margin-bottom: 4px;
  font-size: 1.8rem;
}
.reception__section__periods__ul__message__up .plans {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.reception__section__periods__ul__message__up .plans span:not(:last-child)::after {
  content: "・";
}
.reception__section__periods__ul__message__bottom {
  margin-top: 16px;
}
.reception__section__periods__ul__result {
  margin-top: 54px;
}
@media screen and (min-width: 768px) {
  .reception__section__periods__ul__result {
    margin-top: 33px;
  }
}
.reception__section__periods__ul__result__title {
  font-size: 2rem;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .reception__section__periods__ul__result__title {
    font-size: 2.8rem;
    line-height: 1.46;
    margin-bottom: 10px;
  }
}
.reception__section__periods__ul__result__text {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.7;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .reception__section__periods__ul__result__text {
    font-size: 2.4rem;
    line-height: 1.4;
  }
}

.tixplus__inner {
  border: 2px solid #bdbdbd;
}
.tixplus__logo {
  width: 170px;
  height: auto;
  margin: 0 auto 30px;
  display: block;
}
@media screen and (min-width: 768px) {
  .tixplus__logo {
    width: 254px;
    margin-bottom: 10px;
  }
}
.tixplus__text {
  text-align: center;
  margin-bottom: 30px;
}
.tixplus__days {
  padding: 12px 0;
  margin: 0 22px 30px;
  background: #ededed;
}
@media screen and (min-width: 768px) {
  .tixplus__days {
    width: 500px;
    padding: 24px 0;
    margin: 0 auto 40px;
    font-size: 2rem;
    line-height: 1.7;
  }
}
.tixplus__days__title {
  font-weight: 700;
  text-align: center;
}
.tixplus__days__time {
  font-weight: 500;
  text-align: center;
  color: #ce0501;
}
.tixplus__button {
  margin: 0 auto;
}

.conditions__section__title {
  margin-bottom: 28px;
}
@media screen and (min-width: 768px) {
  .conditions__section__title {
    margin-bottom: 52px;
  }
}
.conditions__section__inner {
  padding: 24px 10px 30px;
  border: 3px solid #ce0501;
  line-height: 1.62;
}
@media screen and (min-width: 768px) {
  .conditions__section__inner {
    padding: 42px 29px;
    box-sizing: border-box;
    font-size: 1.8rem;
    line-height: 1.67;
  }
}
.conditions__section__inner__title {
  font-size: 1.8rem;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 13px;
}
@media screen and (min-width: 768px) {
  .conditions__section__inner__title {
    font-size: 2.4rem;
    line-height: 1.46;
    margin-bottom: 43px;
  }
}
.conditions__section__inner ol:not(:last-child) {
  margin-bottom: 1em;
}
.conditions__section__inner a {
  margin: 20px auto 0;
}
@media screen and (min-width: 768px) {
  .conditions__section__inner a {
    width: 300px;
    margin: 43px auto 0;
  }
}
.conditions__section__inner .c-btn {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .conditions__section__inner .c-btn {
    width: 300px;
  }
}

.flow__section__title {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .flow__section__title {
    margin-bottom: 42px;
  }
}
@media screen and (min-width: 768px) {
  .flow__section .c-checkbox {
    margin-top: 50px;
  }
}
.flow__list {
  display: flex;
  flex-direction: column;
}
.flow__list__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  z-index: 2;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .flow__list__item {
    padding-bottom: 45px;
  }
}
.flow__list__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 13px;
  width: 3px;
  background: rgba(46, 105, 169, 0.5);
  height: 100%;
}
.flow__list__item:last-child {
  padding-bottom: 0;
}
.flow__list__item:last-child::before {
  display: none;
}
.flow__list__item__number {
  margin-top: -5px;
  background: #2e69a9;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  position: relative;
  z-index: 2;
}
.flow__list__item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .flow__list__item__content {
    gap: 15px;
  }
}
.flow__list__item__content__title {
  font-size: 1.8rem;
  line-height: 1.22;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .flow__list__item__content__title {
    font-size: 2rem;
    line-height: 1.45;
  }
}
.flow__list__item__content__box {
  background: rgba(46, 105, 169, 0.06);
  padding: 12px 14px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .flow__list__item__content__box {
    padding: 15px;
    font-size: 1.8rem;
    line-height: 1.67;
  }
}
.flow__list__item__content__box__title {
  margin-bottom: 6px;
}
.flow__list__item__content__box__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.flow__list__item__content__box__list__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.flow__list__item__content__box__list__item__period {
  color: #ce0501;
}
.flow__list__item__content__box__list__item__text {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .flow__list__item__content__box__list__item__text {
    font-size: 1.6rem;
  }
}
.flow__list__item__content__box__list__item__button {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .flow__list__item__content__box__list__item__button {
    width: 280px;
  }
}
.flow__list__item__content__button {
  margin-top: 6px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .flow__list__item__content__button {
    margin: 0 auto;
    width: 287px;
  }
}

#flow-pay-modal .js-modal__content__inner {
  background: #ededed;
}
#flow-pay-modal .js-modal__content__inner ul {
  margin-bottom: 20px;
}
#flow-pay-modal .js-modal__content__inner ul:last-of-type {
  margin-bottom: 0;
}

.plans__section__inner {
  padding: 0;
  background-color: initial;
}
@media screen and (min-width: 768px) {
  .plans__section__inner {
    max-width: 1200px;
  }
}
.plans__section__title {
  margin-bottom: 35px;
}
@media screen and (min-width: 768px) {
  .plans__section__title {
    margin-bottom: 48px;
  }
}
.plans__section__plans {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (min-width: 768px) {
  .plans__section__plans:has(.col2) {
    gap: 40px;
  }
}
@media screen and (min-width: 768px) {
  .plans__section__plans:has(.col3) {
    gap: 30px;
  }
}
@media screen and (min-width: 768px) {
  .plans__section__plans {
    align-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
}
.plans__section__plans__plan {
  width: 100%;
}
.plans__section__plans__plan.col1 .plan__detail {
  width: auto;
  padding: 0 17px;
}
@media screen and (min-width: 768px) {
  .plans__section__plans__plan.col1 .plan__detail {
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .plans__section__plans__plan.col2 {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (min-width: 768px) {
  .plans__section__plans__plan.col3 {
    width: calc((100% - 60px) / 3);
  }
}
.plans__section__plans__plan.col3 .plan__info__r {
  width: 100%;
}
.plans__section__plans__plan.col3 .plan__info__r__price {
  align-items: center;
  justify-content: center;
}

.plan__modal__title {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.plan__modal__title .icon {
  width: 36px;
  height: 36px;
  background: #2e69a9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  line-height: 1;
}
.plan__modal__title .name {
  flex: 1;
  font-size: 2rem;
  line-height: 1.2;
}
.plan__modal__title .name span {
  font-size: 1.5rem;
}
.plan__modal .plan__info {
  padding: 0;
  margin-top: 12px;
}
.plan__modal .plan__info__l__icons ul {
  margin-top: 7px;
}
.plan__modal .plan__info__r {
  margin-bottom: 17px;
}
.plan__inner {
  background: #ffffff;
  border: 1px solid #bdbdbd;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 17px 0 24px;
}
@media screen and (min-width: 768px) {
  .plan__inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px 20px;
    box-sizing: border-box;
    border-color: #d9d9d9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }
}
.plan__inner__btn {
  padding: 0px 25px 0;
  margin-bottom: 0;
  margin-top: auto;
}
@media screen and (min-width: 768px) {
  .plan__inner__btn {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }
}
.plan__inner__btn button {
  width: 100%;
  font-size: inherit;
}
@media screen and (min-width: 768px) {
  .plan__inner__btn button {
    font-size: 1.8rem;
  }
}
.plan__inner__btn button:hover {
  background: #444;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .plan__inner__btn button.c-btn,
  .plan__inner__btn button.c-btn.c-btn-external {
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
  }
}
.plan__title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 0 11px;
}
@media screen and (min-width: 768px) {
  .plan__title {
    padding: 0 0 14px;
    width: 100%;
    flex: 0 0 auto;
    border-bottom: 1px solid #bdbdbd;
  }
}
.plan__title .icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  background: #2e69a9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .plan__title .icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }
}
.plan__title .name {
  font-size: 2.2rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .plan__title .name {
    line-height: 1.35;
    font-weight: 700;
  }
}
.plan__title .name span {
  font-size: 0.75em;
}
@media screen and (min-width: 768px) {
  .plan__title .name span {
    display: block;
    margin-top: 4px;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .plan__body {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
    width: 100%;
    height: -webkit-fill-available;
    height: -moz-available;
    height: stretch;
    margin-top: 13px;
    margin-bottom: 25px;
  }
}
.plan__info {
  padding: 12px 15px 0px 15px;
}
@media screen and (min-width: 768px) {
  .plan__info {
    display: block;
    width: 100%;
    flex: 0 0 auto;
    flex: 1;
    padding: 0;
    box-sizing: border-box;
  }
}
.plan__info__l {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .plan__info__l {
    flex: none;
    width: 100%;
    margin-top: 0;
    margin-bottom: 8px;
  }
}
.plan__info__l__catch {
  margin-bottom: 7px;
  color: #ce0501;
}
@media screen and (min-width: 768px) {
  .plan__info__l__catch {
    margin-bottom: 5px;
  }
}
.plan__info__l__info .tripterm:not(:last-child)::after {
  content: "、";
}
.plan__info__l__icons {
  margin-top: 7px;
}
@media screen and (min-width: 768px) {
  .plan__info__l__icons {
    margin-top: 5px;
  }
}
.plan__info__l__icons ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .plan__info__l__icons ul {
    gap: 7px;
  }
}
.plan__info__l__icons ul li {
  padding: 5px 10px;
  background: #ffffff;
  border: 1px solid #838383;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .plan__info__l__icons ul li {
    line-height: 1.375;
  }
}
.plan__info__l__icons ul li::before {
  content: "#";
}
.plan__info__l__icons.--detail ul {
  margin-top: 0;
}
.plan__info__l__icons.--detail li {
  border: initial;
  background-color: initial;
  padding: 0;
  border-radius: initial;
  display: inline-block;
  position: relative;
  padding-left: 1em;
}
.plan__info__l__icons.--detail li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "・";
  line-height: inherit;
}
.plan__info__r {
  position: relative;
  width: 100%;
  margin-top: 12px;
  margin-bottom: 26px;
}
@media screen and (min-width: 768px) {
  .plan__info__r {
    width: auto;
    flex: 0 0 auto;
    margin-top: 0;
    margin-bottom: 0;
    align-self: flex-start;
  }
}
.plan__info__r__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-weight: 700;
  font-size: 3.3rem;
  line-height: 1.45;
  color: #ce0501;
}
@media screen and (min-width: 768px) {
  .js-modal__content .plan__info__r__price, .plans__section__plans__plan.col1 .plan__info__r__price {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 0 0 auto;
    align-items: flex-end;
  }
}
.plan__info__r__price > p {
  margin: 0;
}
.plan__info__r__price > p:first-child {
  text-align: center;
}
.plan__info__r__price span {
  font-size: 1.6rem;
}
.plan__info__r__price .tax {
  font-weight: 500;
  font-size: 1.6rem;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .plan__info__r__price .tax {
    line-height: 1.4375;
  }
}
.plan__detail {
  margin-bottom: 30px;
}
.plan__detail__section:not(:last-child) {
  margin-bottom: 36px;
}
.plan__detail__section__schedule .koutei {
  margin: 0 0 10px;
}
.plan__detail__section__schedule .koutei__dl {
  display: block;
  width: 100%;
  border-collapse: collapse;
}
@media screen and (min-width: 768px) {
  .plan__detail__section__schedule .koutei__dl {
    display: table;
  }
}
.plan__detail__section__schedule .koutei__dl:not(:first-child) {
  margin-top: -1px;
}
.plan__detail__section__schedule .koutei__dl.head dt,
.plan__detail__section__schedule .koutei__dl.head dd {
  display: none;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  background: rgba(46, 105, 169, 0.06);
}
@media screen and (min-width: 768px) {
  .plan__detail__section__schedule .koutei__dl.head dt,
  .plan__detail__section__schedule .koutei__dl.head dd {
    display: table-cell;
  }
}
.plan__detail__section__schedule .koutei__dl__dt {
  display: block;
  width: calc(100% - 10px);
  border: 1px solid #ccc;
  border-bottom: none;
  padding: 5px;
  text-align: center;
  background: rgba(46, 105, 169, 0.06);
  font-size: 1.3rem;
  font-weight: 500;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .plan__detail__section__schedule .koutei__dl__dt {
    display: table-cell;
    width: 15%;
    padding: 10px 15px;
    font-size: 1.5rem;
    border-bottom: 1px solid #ccc;
  }
}
.plan__detail__section__schedule .koutei__dl__dd {
  display: block;
  width: calc(100% - 10px);
  border: 1px solid #ccc;
  padding: 10px 5px;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .plan__detail__section__schedule .koutei__dl__dd {
    display: table-cell;
    width: 85%;
    padding: 20px;
  }
}
.plan__detail__section__schedule .koutei__dl__dd meal {
  position: relative;
  font-weight: 300;
  display: block;
  font-size: 1.3rem;
  line-height: 1.4rem;
  color: #999;
  float: none;
  margin: 25px 5px 5px;
}
@media screen and (min-width: 768px) {
  .plan__detail__section__schedule .koutei__dl__dd meal {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1.4rem;
    float: right;
    margin: 20px 0 0;
  }
}
.plan__detail__section__schedule .koutei__dl__dd meal::before {
  margin-right: 5px;
  font-weight: 400;
  content: "(　 食事)";
}
.plan__detail__section__schedule .koutei__dl__dd meal::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f2e7";
  position: absolute;
  left: 7px;
  top: 1px;
}
.plan__detail__section__schedule .koutei__dl__dd .tx-right-1 {
  display: block;
  text-align: left;
  margin: 25px 5px 5px;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .plan__detail__section__schedule .koutei__dl__dd .tx-right-1 {
    text-align: right;
    margin: 5px 0;
    font-size: 1.4rem;
  }
}
.plan__detail__section__schedule .koutei__dl__dd .tx-right-1 span {
  background-color: darkblue;
  color: #fff;
  padding: 5px 8px;
}
.plan__detail__section__schedule .koutei__dl__dd ul li {
  display: block;
  position: relative;
  padding: 0 0px 40px 30px;
  font-size: 1.3rem;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .plan__detail__section__schedule .koutei__dl__dd ul li {
    display: flex;
    font-size: 1.4rem;
  }
}
.plan__detail__section__schedule .koutei__dl__dd ul li:not(:last-child)::before {
  content: "";
  width: 2px;
  background: #ccc;
  position: absolute;
  top: 5px;
  bottom: 0px;
  left: 9px;
}
.plan__detail__section__schedule .koutei__dl__dd ul li:not(:last-child)::after {
  content: "";
  position: absolute;
  width: calc(100% - 30px);
  border-bottom: 1px dashed #ddd;
  bottom: 0px;
  left: 30px;
  padding-top: 10px;
  margin-bottom: 20px;
}
.plan__detail__section__schedule .koutei__dl__dd ul li:last-child {
  padding: 0 0px 0px 30px;
}
.plan__detail__section__schedule .koutei__dl__dd ul li schedule,
.plan__detail__section__schedule .koutei__dl__dd ul li note {
  display: block;
  width: 100%;
}
.plan__detail__section__schedule .koutei__dl__dd ul li schedule {
  display: block;
  width: calc(100% - 5px);
  padding: 0;
}
@media screen and (min-width: 768px) {
  .plan__detail__section__schedule .koutei__dl__dd ul li schedule {
    padding-right: 15px;
  }
}
.plan__detail__section__schedule .koutei__dl__dd ul li note {
  padding-left: 15px;
}
@media screen and (min-width: 768px) {
  .plan__detail__section__schedule .koutei__dl__dd ul li note {
    border-left: 1px solid #eee;
  }
}
.plan__detail__section__schedule .koutei__dl__dd ul li note p {
  display: block;
  width: calc(100% - 20px);
  border: none;
  margin-top: 10px;
  margin-bottom: 5px;
  line-height: 2rem;
}
.plan__detail__section__schedule .koutei__dl__dd ul li place,
.plan__detail__section__schedule .koutei__dl__dd ul li marker {
  position: relative;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5rem;
  display: block;
  color: #444;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .plan__detail__section__schedule .koutei__dl__dd ul li place,
  .plan__detail__section__schedule .koutei__dl__dd ul li marker {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
.plan__detail__section__schedule .koutei__dl__dd ul li place::before,
.plan__detail__section__schedule .koutei__dl__dd ul li marker::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding: 10px 0px 8px 0px;
  background: #fff;
  z-index: 99;
  position: absolute;
  top: -9px;
}
.plan__detail__section__schedule .koutei__dl__dd ul li place::before {
  content: "\f3c5";
  left: -27px;
  font-size: 1.8rem;
  color: #c82534;
}
.plan__detail__section__schedule .koutei__dl__dd ul li marker::before {
  content: "\f192";
  left: -28px;
  font-size: 1.5rem;
  color: #ccc;
}
.plan__detail__section__schedule .koutei__dl__dd ul li event {
  display: block;
  border: 2px solid #c82534;
  border-radius: 5px;
  color: #c82534;
  font-weight: 500;
  font-size: 1.3rem;
  padding: 8px;
  margin-top: 10px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .plan__detail__section__schedule .koutei__dl__dd ul li event {
    font-size: 1.4rem;
    padding: 10px;
    margin-top: 10px;
  }
}
.plan__detail__section__schedule .koutei__dl__dd ul li p {
  margin-top: 10px;
  line-height: 2rem;
}
.plan__detail__section__schedule .koutei__dl__dd ul li icon {
  position: relative;
  font-weight: 400;
  display: block;
  font-size: 1.3rem;
  line-height: 1.4rem;
  color: #999;
  margin-top: 10px;
}
.plan__detail__section__schedule .koutei__dl__dd ul li icon i {
  margin-right: 5px;
}
.plan__detail__section__schedule .koutei__dl__dd ul li move {
  position: relative;
  font-weight: 400;
  display: block;
  font-size: 1.3rem;
  line-height: 1.4rem;
  color: #999;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .plan__detail__section__schedule .koutei__dl__dd ul li move {
    font-size: 1.4rem;
  }
}
.plan__detail__section__schedule .koutei__dl__dd ul li move::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding: 10px 0px 0px 0px;
  margin-right: 5px;
}
.plan__detail__section__schedule .koutei__dl__dd ul li move.bus::before {
  content: "\f207";
}
.plan__detail__section__schedule .koutei__dl__dd ul li move.train::before {
  content: "\f238";
}
.plan__detail__section__schedule .koutei__dl__dd ul li move.plane::before {
  content: "\f072";
}
.plan__detail__section__schedule .koutei__dl__dd ul li move.ship::before {
  content: "\f21a";
  font-size: 1.3rem;
}
.plan__detail__section__schedule .koutei__dl__dd ul li move.user::before {
  content: "\f007";
}
.plan__detail__section__schedule .koutei__dl__dd ul li time {
  position: relative;
  font-weight: 400;
  display: block;
  font-size: 1.4rem;
  line-height: 1.4rem;
  color: #999;
  margin-top: 10px;
}
.plan__detail__section__schedule .koutei__dl__dd ul li time::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding: 10px 0px 0px 0px;
  margin-right: 5px;
  content: "\f017";
}
.plan__detail__section__price__title {
  margin-bottom: 6px;
}
.plan__detail__section__price__noticket {
  color: #c82534;
  font-weight: 400;
}
.plan__detail__section__price__view:has(.plan__detail__section__price__switch__input[value=card]:checked) .plan__detail__section__price__cards {
  display: flex;
}
.plan__detail__section__price__view:has(.plan__detail__section__price__switch__input[value=card]:checked) .plan__detail__section__price__table {
  display: none;
}
.plan__detail__section__price__view:has(.plan__detail__section__price__switch__input[value=table]:checked) .plan__detail__section__price__cards {
  display: none;
}
.plan__detail__section__price__view:has(.plan__detail__section__price__switch__input[value=table]:checked) .plan__detail__section__price__table {
  display: block;
}
.plan__detail__section__price__view--card-only .plan__detail__section__price__cards {
  display: flex;
}
.plan__detail__section__price__view--card-only .plan__detail__section__price__table {
  display: none;
}
.plan__detail__section__price__view--table-only .plan__detail__section__price__cards {
  display: none;
}
.plan__detail__section__price__view--table-only .plan__detail__section__price__table {
  display: block;
}
.plan__detail__section__price__switch {
  position: relative;
  display: flex;
  width: 100%;
  background: #d9d9d9;
  border-radius: 3px;
  padding: 5px;
  gap: 12px;
  margin: 7px 0;
  box-sizing: border-box;
}
.plan__detail__section__price__switch__thumb {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  width: calc((100% - 12px) / 2);
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(0);
  z-index: 0;
}
.plan__detail__section__price__switch:has(.plan__detail__section__price__switch__input[value=table]:checked) .plan__detail__section__price__switch__thumb {
  transform: translateX(calc(100% + 2px));
}
.plan__detail__section__price__switch__input {
  display: none;
}
.plan__detail__section__price__switch__btn {
  position: relative;
  z-index: 1;
  flex: 1;
  margin: 0;
  padding: 6px 0;
  text-align: center;
  font-weight: 700;
  color: #444444;
  border-radius: 4px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: transparent;
  transition: color 0.2s ease;
}
.plan__detail__section__price__cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.plan__detail__section__price__card {
  background: #fff;
  border: 2px solid #838383;
  border-radius: 5px;
  padding: 10px 15px 18px;
}
.plan__detail__section__price__card__title {
  display: flex;
  flex-direction: column;
  padding-bottom: 11px;
  margin-bottom: 11px;
  border-bottom: 2px dashed #000000;
  font-weight: 700;
  line-height: 1.4;
}
.plan__detail__section__price__card__title__name {
  font-size: 1.8rem;
}
.plan__detail__section__price__card__list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.plan__detail__section__price__card__list dt {
  font-weight: 700;
  padding: 4px 10px;
  background-color: rgba(46, 105, 169, 0.06);
}
.plan__detail__section__price__card__list dd {
  padding: 0 10px 5px;
}
.plan__detail__section__price__card__price {
  color: #c82534;
  font-weight: 700;
}
.plan__detail__section__price__card__btn {
  margin-top: 14px;
}
.plan__detail__section__price__card__btn .active {
  display: block;
  background: #c82534;
  color: #fff;
  text-align: center;
  padding: 8px 12px;
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  opacity: 0.9;
}
.plan__detail__section__price__card__btn .active:hover {
  opacity: 1;
}
.plan__detail__section__price__card__btn .disactive {
  display: block;
  background: #ccc;
  color: #fff;
  text-align: center;
  padding: 8px 12px;
  font-weight: 500;
  border-radius: 4px;
}
.plan__detail__section__price__table {
  margin: 15px auto;
}
.plan__detail__section__price__table table {
  width: 100%;
}
.plan__detail__section__price__table table td {
  font-size: 1.4rem;
  font-size: 1.3rem;
  line-height: 2rem;
  border-collapse: collapse;
  border: 1px solid #ccc;
  padding: 5px;
}
@media screen and (min-width: 768px) {
  .plan__detail__section__price__table table td {
    font-size: 1.4rem;
  }
}
.plan__detail__section__price__table table td .active {
  background: #c82534;
  color: #fff;
  text-align: center;
  display: block;
  padding: 3px 10px;
  text-decoration: none;
  font-weight: 400;
  opacity: 0.9;
}
.plan__detail__section__price__table table td .active:hover {
  opacity: 1;
}
.plan__detail__section__price__table table td .disactive {
  background: #ccc;
  color: #fff;
  text-align: center;
  display: block;
  padding: 3px 10px;
  text-decoration: none;
  font-weight: 400;
}
.plan__detail__section__price__table table tr:first-child td,
.plan__detail__section__price__table table tr:nth-child(2) td {
  font-weight: 500;
  background-color: rgba(46, 105, 169, 0.06);
  text-align: center;
}
.plan__detail__section__price__note {
  margin-top: 14px;
}
.plan__detail__section__other dl:not(:last-child) {
  margin-bottom: 1em;
}
.plan__detail__section__entryBtn a {
  display: block;
  background: #ce0501;
  border-radius: 3px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  padding: 11px 0;
  border: 1px solid transparent;
  transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .plan__detail__section__entryBtn a {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.8rem;
  }
}
.plan__detail__section__entryBtn a.disactive {
  background-color: #ccc;
  pointer-events: none;
}
.plan__detail__section__entryBtn a:hover {
  border-color: #ce0501;
  background-color: #fff;
  color: #ce0501;
}
.plan__detail__section__entryBtn .message_start {
  text-align: center;
  color: #c82534;
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 5px;
}
.plan__detail__section__entryBtn .message_done {
  text-align: center;
  color: #999;
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.terms__section__title {
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (min-width: 768px) {
  .terms__section__title {
    margin-bottom: 53px;
  }
}
.terms__section__title h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .terms__section__title h2 {
    font-size: 2.8rem;
    line-height: 1.46;
    margin-bottom: 18px;
  }
}
.terms__section__title p {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .terms__section__title p {
    font-size: 1.6rem;
    line-height: 1.4375;
  }
}
.terms__section__inner {
  padding: 24px 16px 30px;
}
@media screen and (min-width: 768px) {
  .terms__section__inner {
    padding: 36px 40px;
  }
}
.terms__section__block {
  border-bottom: #999 1px dashed;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .terms__section__block {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
.terms__section__block:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.terms__section__block__title {
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .terms__section__block__title {
    font-size: 2rem;
    line-height: 1.45;
    margin-bottom: 22px;
  }
}
.terms__section__block__content {
  font-size: 1.5rem;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .terms__section__block__content {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}
.terms__section__block__content__title {
  margin-bottom: 10px;
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .terms__section__block__content__title {
    font-size: 1.8rem;
    line-height: 1.67;
    margin-bottom: 12px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
}
.terms__section__block__content__dl {
  margin-top: 15px;
  display: block;
  width: 100%;
  border: none;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .terms__section__block__content__dl {
    display: table;
    border-collapse: collapse;
    border: 1px solid #ccc;
  }
}
.terms__section__block__content__dl.necessary {
  width: auto;
}
.terms__section__block__content__dl.necessary dd {
  min-width: calc(100% - 20px);
}
@media screen and (min-width: 768px) {
  .terms__section__block__content__dl.necessary dd {
    min-width: 350px;
  }
}
.terms__section__block__content__dl.basedate {
  margin-bottom: 15px;
  width: auto;
}
@media screen and (min-width: 768px) {
  .terms__section__block__content__dl.basedate {
    display: block;
    width: 340px;
    border: none;
  }
}
@media screen and (min-width: 768px) {
  .terms__section__block__content__dl.basedate dt {
    display: block;
    width: calc(100% - 20px);
  }
}
.terms__section__block__content__dl.basedate dd {
  min-width: calc(100% - 20px);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .terms__section__block__content__dl.basedate dd {
    border-top: none;
    display: block;
    width: calc(100% - 20px);
  }
}
.terms__section__block__content__dl.payback {
  margin-bottom: 5px;
}
.terms__section__block__content__dl dt {
  border: 1px solid #838383;
  display: block;
  width: calc(100% - 20px);
  padding: 8px;
  background: rgba(46, 105, 169, 0.06);
  vertical-align: middle;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .terms__section__block__content__dl dt {
    display: table-cell;
    width: 200px;
  }
}
.terms__section__block__content__dl dd {
  border: 1px solid #838383;
  border-top: none;
  display: block;
  width: calc(100% - 20px);
  padding: 11px 8px;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .terms__section__block__content__dl dd {
    border-top: 1px solid #838383;
    display: table-cell;
    padding: 8px;
    vertical-align: middle;
  }
}
.terms__section__block__content__dl dd ul li {
  display: inline-block;
}
.terms__section__block__content__dl dd ul li::after {
  margin-left: 2px;
  content: "、";
}
.terms__section__block__content__dl dd ul li:last-child::after {
  content: "";
}
.terms__section__block__content__table {
  width: 100%;
  background-color: #fff;
}
.terms__section__block__content__table th,
.terms__section__block__content__table td {
  border-collapse: collapse;
  border: 1px solid #838383;
  padding: 5px 10px;
}
.terms__section__block__content__table th {
  text-align: center;
  font-weight: 500;
  background: rgba(46, 105, 169, 0.06);
}
.terms__section__block__content__table th span {
  display: block;
}
.terms__section__block__content__table.husaiko {
  margin-top: 13px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .terms__section__block__content__table.husaiko {
    width: auto;
    margin-top: 5px;
    margin-bottom: 10px;
  }
}
.terms__section__block__content__table.cancel {
  margin-top: 5px;
  margin-bottom: 5px;
}
.terms__section__block__content__table.cancel td:last-child {
  text-align: center;
  white-space: nowrap;
}
.terms__section__block__content__table.cancel td:last-child b {
  display: block;
}
@media screen and (min-width: 768px) {
  .terms__section__block__content__table.cancel td:last-child b {
    display: inline;
  }
}
.terms__section__block__content__table.cancel td:nth-child(3) {
  text-align: left;
  white-space: nowrap;
}
.terms__section__block__content__table.cancel td:nth-child(3) b {
  display: block;
}
@media screen and (min-width: 768px) {
  .terms__section__block__content__table.cancel td:nth-child(3) b {
    display: inline;
  }
}
@media screen and (min-width: 768px) {
  .terms__section .c-checkbox {
    margin-top: 40px;
  }
}

.about__section__infomation {
  display: flex;
  flex-direction: column;
  gap: 45px;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .about__section__infomation {
    gap: 50px;
    font-size: 1.6rem;
  }
}
.about__section__infomation h2 {
  width: 260px;
  margin: 0 auto 16px;
  font-size: 2rem;
  line-height: 1.45;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__section__infomation h2 {
    width: auto;
    margin: 0 auto 30px;
    font-size: 2.8rem;
    line-height: 1.46;
  }
}
.about__section__infomation h3 {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .about__section__infomation h3 {
    font-size: 1.8rem;
  }
}
.about__section__infomation address {
  display: block;
  font-style: normal;
}
.about__section__infomation__contact i {
  margin-right: 5px;
}
.about__section__infomation__remarks {
  margin-top: 1.5em;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .about__section__infomation__remarks {
    margin-top: 1em;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .about__section__infomation .qualification {
    display: flex;
    flex-wrap: wrap;
  }
  .about__section__infomation .qualification li {
    display: inline;
  }
  .about__section__infomation .qualification li:not(:last-child)::after {
    content: "/";
  }
}
.about__section__infomation__note {
  margin-bottom: 1em;
}

.prevent .caution__wrap {
  background-color: rgba(3, 13, 64, 0.986);
  color: rgb(255, 255, 255);
  margin: 0;
}
.prevent .caution__wrap__inner {
  max-width: 1080px;
  width: 100%;
  margin: auto;
}
.prevent .caution__wrap__inner h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
  padding: 30px 30px 0;
  font-weight: 500;
}
.prevent .caution__wrap__inner ul {
  padding: 0px 30px 30px;
}

/* PCナビゲーション */
.navigation__section {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  padding: 0 10px 4px;
  border-bottom: 1px solid #bfbfbf;
}
.navigation__section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 4px;
  width: 48px;
  pointer-events: none;
  background: linear-gradient(to right, #fff 20%, transparent);
  z-index: 2;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.navigation__section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 4px;
  width: 48px;
  pointer-events: none;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff 80%);
  z-index: 2;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.navigation__section.is-at-start::before {
  opacity: 0;
}
.navigation__section.is-at-end::after {
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .navigation__section {
    padding: 0;
  }
  .navigation__section::after {
    display: none;
  }
}
.navigation__section__inner {
  overflow-x: auto;
  padding: 0;
  max-width: initial;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #bfbfbf transparent;
}
.navigation__section__inner::-webkit-scrollbar {
  height: 4px;
}
.navigation__section__inner::-webkit-scrollbar-track {
  background: transparent;
}
.navigation__section__inner::-webkit-scrollbar-thumb {
  background: #bfbfbf;
  border-radius: 2px;
}
@media screen and (min-width: 1200px) {
  .navigation__section__inner {
    overflow-x: hidden;
    max-width: 1200px;
    margin: 0 auto;
  }
}
.navigation__list {
  display: flex;
}
@media screen and (min-width: 1200px) {
  .navigation__list {
    justify-content: center;
  }
}
.navigation__item a {
  display: block;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
  padding: 20px 10px 24px;
  font-weight: 700;
  font-size: 1.8rem;
  color: #000;
  transition: opacity 0.3s ease;
}
.navigation__item a:hover {
  opacity: 0.7;
}
.navigation__item a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 13px;
  height: 3px;
  background: transparent;
  transition: background-color 0.3s ease;
}
.navigation__item a.is-active::after {
  background-color: #2e69a9;
}
@media screen and (min-width: 768px) {
  .navigation__item a {
    padding: 20px 27px 24px;
  }
  .navigation__item a::after {
    left: 27px;
    right: 27px;
    bottom: 12px;
  }
}

.information__section__inner {
  border: 2px solid #bdbdbd;
  padding: 14px 17px 33px;
}
@media screen and (min-width: 768px) {
  .information__section__inner {
    border: 1px solid #bdbdbd;
    max-width: 800px;
    padding: 20px 25px 25px;
    box-sizing: border-box;
  }
}
.information__section__subtitle {
  font-weight: 400;
  font-size: 1.3rem;
  text-align: center;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .information__section__subtitle {
    font-size: 1.6rem;
    line-height: 1;
  }
}
.information__section__content {
  margin-top: 38px;
}
@media screen and (min-width: 768px) {
  .information__section__content {
    margin-top: 20px;
  }
}
.information__section__content dl {
  margin-bottom: 1em;
}
.information__section__content dl:last-child {
  margin-bottom: 0;
}
.information__section__content dl.new dt {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.information__section__content dl.new dt::after {
  content: "NEW";
  font-size: 1.1rem;
  line-height: 1;
  color: #ffffff;
  padding: 3px 4px;
  background: #ce0501;
  border-radius: 3px;
}
@media screen and (min-width: 768px) {
  .information__section__content dl.new dt::after {
    font-size: 1.3rem;
    padding: 2px 7px;
  }
}
.information__section__content dl dt {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.43;
}
@media screen and (min-width: 768px) {
  .information__section__content dl dt {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}
.information__section__content dl dd {
  display: flex;
  align-items: baseline;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.43;
}
@media screen and (min-width: 768px) {
  .information__section__content dl dd {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}
.information__section__content dl dd::before {
  content: "・";
  flex: 0 0 1em;
}

.information-box h3 {
  text-align: center;
  margin-bottom: 10px;
}
.information-box dl {
  margin: 0;
  padding: 0;
  display: flex;
  padding: 5px 15px;
  background-color: #eee;
  margin-bottom: 5px;
  font-size: 1.5rem;
}
.information-box dt {
  font-weight: bold;
  color: #333;
  margin-right: 10px;
  flex-shrink: 0;
  width: 20%;
}
.information-box dd {
  margin: 0;
  color: #333;
  flex-grow: 1;
  width: 80%;
}

.playguide {
  margin: 28px 0;
  background: #efefef;
  padding: 20px;
}
.playguide__title {
  text-align: center;
  border-bottom: 2px solid #444;
  padding-bottom: 12px;
  margin-bottom: 28px;
  font-size: 2rem;
  font-weight: bold;
}
.playguide__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.playguide__item .logo {
  flex: 0 0 150px;
  padding-right: 20px;
}
.playguide__item .detail {
  font-size: 1.4rem;
  flex: 0 0 100%;
  max-width: 100%;
}
.playguide__item .detail dl {
  display: flex;
  flex-wrap: wrap;
}
.playguide__item .detail dl dt {
  flex: 0 0 100px;
  background: #fff;
  border: 2px solid #efefef;
  padding: 8px;
  text-align: center;
  font-weight: 500;
}
.playguide__item .detail dl dd {
  flex: 0 0 100%;
  max-width: calc(100% - 140px);
  background: #fff;
  border: 2px solid #efefef;
  padding: 8px;
}/*# sourceMappingURL=style.css.map */