@charset "UTF-8";

html {
  scroll-behavior: smooth;
}

.u-br-sp {
  display: none;
}

@media (max-width: 767px) {
  .u-br-sp {
    display: inline;
  }
}

[class$="__arrow-wrap"] {
  margin-top: 90px;
}

@media (max-width: 767px) {
  [class$="__arrow-wrap"] {
    margin-top: 56px;
  }
}

/* ============================================================
   ナビゲーション
============================================================ */
#section-nav {
  padding: 24px 0 56px;
}

.c-nav__list {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.c-nav__item {
  width: 279px;
  flex-shrink: 0;
}

.c-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 18px 50px;
  height: 80px;
  background: linear-gradient(to bottom, #f6ae1b, #fce40e);
  border-radius: 5px;
  box-shadow: 0px 4px 2px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  color: #222;
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
}

.c-nav__link:hover {
  opacity: 0.85;
  text-decoration: none;
  color: #222;
}

.c-nav__arrow {
  width: 17px;
  height: auto;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  #section-nav {
    padding: 16px 16px 24px;
  }

  .c-nav__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .c-nav__item {
    width: auto;
  }

  .c-nav__link {
    height: 54px;
    font-size: 16px;
    padding: 6px 10px 6px 18px;
    justify-content: space-between;
  }
}

/* ============================================================
   イベント概要
============================================================ */
#section-about {
  background: #0546d9;
}

.p-about__inner {
  padding-top: 60px;
  padding-bottom: 0;
}

.p-about__heading {
  color: #fff;
  font-size: 36px;
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 40px;
}

.p-about__period {
  border: 2px solid #fff;
  padding: 14px 20px;
  margin-bottom: 56px;
  max-width: 555px;
  margin-left: auto;
  margin-right: auto;
}

.p-about__period-text {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin: 0;
}

.p-about__body {
  display: grid;
  grid-template-columns: 454px 1fr;
  grid-template-areas:
    "flyer desc"
    "flyer collab";
  gap: 24px 90px;
  align-items: start;
}

.p-about__flyer {
  grid-area: flyer;
  display: block;
  width: 100%;
  height: auto;
}

.p-about__desc {
  grid-area: desc;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  line-height: 1.6;
  margin-bottom: 0;
}

.p-about__collab {
  grid-area: collab;
  padding-bottom: 0;
}

.p-about__collab-title {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 0 auto -72px;
}

.p-about__card {
  border: 3px solid #18beff;
  border-radius: 8px;
  background: #fff;
  padding: 64px 32px 24px;
  margin-bottom: 40px;
}

.p-about__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-about__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #e8e8e8;
  color: #2b3781;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.p-about__item:last-child {
  border-bottom: none;
}

.p-about__item-icon {
  width: 19px;
  height: auto;
  flex-shrink: 0;
}

.p-about__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 80px;
  background: linear-gradient(to bottom, #f6ae1b, #fce40e);
  border-radius: 5px;
  box-shadow: 0px 4px 2px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  color: #222;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0;
}

.p-about__cta:hover {
  opacity: 0.85;
  text-decoration: none;
  color: #222;
}

.p-about__cta-arrow {
  width: 17px;
  height: auto;
}

.p-about__arrow-wrap {
  background: #fff;
}

.p-about__arrow {
  width: 0;
  height: 0;
  border-left: 373px solid transparent;
  border-right: 373px solid transparent;
  border-top: 109px solid #0546d9;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .p-about__inner {
    padding-top: 36px;
  }

  .p-about__heading {
    font-size: 26px;
    margin-bottom: 28px;
  }

  .p-about__period {
    margin-bottom: 20px;
  }

  .p-about__period-text {
    font-size: 17px;
  }

  .p-about__desc {
    font-size: 14px;
    text-align: center;
    margin-bottom: 0;
  }

  .p-about__body {
    grid-template-columns: 1fr;
    grid-template-areas:
      "desc"
      "flyer"
      "collab";
    row-gap: 0;
  }

  .p-about__flyer {
    margin-top: 24px;
    margin-bottom: 0;
  }

  .p-about__collab {
    margin-top: 8px;
  }

  .p-about__collab-title {
    max-width: 90%;
    margin-bottom: -40px;
  }

  .p-about__card {
    padding: 40px 24px 16px;
    margin-bottom: 28px;
  }

  .p-about__item {
    font-size: 16px;
    gap: 12px;
  }

  .p-about__cta {
    font-size: 20px;
    height: 80px;
    margin-bottom: 0;
  }

  .p-about__arrow {
    border-left-width: 152px;
    border-right-width: 152px;
    border-top-width: 44px;
  }
}

/* ============================================================
   カード
============================================================ */
#section-card {
  background: #fff;
  padding-top: 60px;
}

.p-card__title {
  display: block;
  height: 45px;
  width: auto;
  margin: 0 auto 24px;
}

.p-card__heading {
  color: #0546d9;
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 24px;
}

.p-card__desc {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 12px;
}

.p-card__note {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 40px;
}

.p-card__img {
  display: block;
  width: 100%;
  max-width: 1064px;
  height: auto;
  margin: 0 auto 16px;
}

.p-card__hologram {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
}

.p-card__arrow-wrap {
  background: #41903f;
}

.p-card__arrow {
  width: 0;
  height: 0;
  border-left: 373px solid transparent;
  border-right: 373px solid transparent;
  border-top: 109px solid #fff;
  margin: 0 auto;
}

@media (max-width: 767px) {
  #section-card {
    padding-top: 36px;
  }

  .p-card__title {
    height: 34px;
    margin-bottom: 16px;
  }

  .p-card__heading {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .p-card__desc {
    font-size: 16px;
    text-align: left;
    margin-bottom: 12px;
  }

  .p-card__note {
    font-size: 12px;
    text-align: left;
    margin-bottom: 28px;
  }

  .p-card__img {
    max-width: 100%;
    margin-bottom: 12px;
  }

  .p-card__hologram {
    font-size: 12px;
    margin-bottom: 40px;
  }

  .p-card__arrow {
    border-left-width: 152px;
    border-right-width: 152px;
    border-top-width: 44px;
    border-top-color: #fff;
  }
}

/* ============================================================
   ミッション&コラボ施設
============================================================ */
#section-mission {
  background: #41903f;
  padding-top: 60px;
}

.p-mission__title {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 16px;
}

.p-mission__heading {
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 40px;
}

.p-mission__map-wrap {
  position: relative;
  display: block;
  max-width: 1110px;
  margin: 0 auto 8px;
  cursor: default;
}

.p-mission__map {
  display: block;
  width: 100%;
  max-width: 1110px;
  height: auto;
  margin: 0 auto 0;
}

.p-mission__map-badge {
  display: none;
}

.p-mission__map-hint {
  display: none;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .p-mission__map-wrap {
    cursor: pointer;
  }

  .p-mission__map-badge {
    display: block;
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    backdrop-filter: blur(4px);
  }

  .p-mission__map-hint {
    display: block;
  }
}

#missionMapModal .modal-dialog {
  max-width: 96vw;
  margin: 8px auto;
}

#missionMapModal .modal-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#missionMapModal .modal-header {
  flex-shrink: 0;
  padding: 10px 16px;
  border-bottom: 1px solid #ebebeb;
}

#missionMapModal .modal-title {
  font-size: 14px;
  font-weight: 700;
}

#missionMapModal .modal-body {
  flex: 1;
  padding: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#missionMapModal .modal-body img {
  display: block;
  width: 100%;
  height: auto;
  min-width: 840px;
}

.p-mission__note {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 24px;
}

.p-mission__dl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 3px solid #fff;
  border-radius: 5px;
  height: 80px;
  max-width: 400px;
  margin: 0 auto 60px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}

.p-mission__dl-btn:hover {
  opacity: 0.85;
  text-decoration: none;
  color: #fff;
}

.p-mission__dl-icon {
  width: 18px;
  height: auto;
}

.p-mission__facilities-heading {
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.p-mission__facilities-heading::before,
.p-mission__facilities-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #fff;
  opacity: 0.6;
}

.p-mission__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 48px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-mission__photo {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 12px;
}

.p-mission__facility-name {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 8px;
}

.p-mission__badge-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
}

.p-mission__badge {
  height: 25px;
  width: auto;
  flex-shrink: 0;
}

.p-mission__arrow-wrap {
  background: #0546d9;
}

.p-mission__arrow {
  width: 0;
  height: 0;
  border-left: 373px solid transparent;
  border-right: 373px solid transparent;
  border-top: 109px solid #41903f;
  margin: 0 auto;
}

@media (max-width: 767px) {
  #section-mission {
    padding-top: 36px;
  }

  .p-mission__heading {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .p-mission__map {
    max-width: 100%;
  }

  .p-mission__note {
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .p-mission__dl-btn {
    max-width: 326px;
    height: 55px;
    font-size: 18px;
    border-width: 2px;
    margin-bottom: 40px;
  }

  .p-mission__facilities-heading {
    font-size: 18px;
    gap: 16px;
    margin-bottom: 24px;
  }

  .p-mission__list {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .p-mission__facility-name {
    text-align: center;
  }

  .p-mission__badge-wrap {
    justify-content: center;
  }

  .p-mission__arrow {
    border-left-width: 152px;
    border-right-width: 152px;
    border-top-width: 44px;
    border-top-color: #41903f;
  }
}

/* ============================================================
   カード引き換え方法
============================================================ */
#section-howto {
  background: #0546d9;
  padding-top: 60px;
}

.p-howto__title {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 16px;
}

.p-howto__heading {
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 40px;
}

.p-howto__list {
  display: flex;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-howto__item {
  flex: 1;
  background: #fff;
  border-radius: 5px;
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
}

.p-howto__step-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.p-howto__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #0546d9;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}

.p-howto__step-title {
  color: #0546d9;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

.p-howto__step-img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}

.p-howto__step-desc {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  margin: 0;
}

.p-howto__step-desc p {
  margin: 0 0 4px;
}

.p-howto__step-note {
  font-size: 14px;
  margin: 0;
}

.p-howto__arrow-wrap {
  background: #fff;
}

.p-howto__arrow {
  width: 0;
  height: 0;
  border-left: 373px solid transparent;
  border-right: 373px solid transparent;
  border-top: 109px solid #0546d9;
  margin: 0 auto;
}

@media (max-width: 767px) {
  #section-howto {
    padding-top: 36px;
  }

  .p-howto__heading {
    font-size: 20px;
    margin-bottom: 28px;
  }

  .p-howto__list {
    flex-direction: column;
    gap: 16px;
  }

  .p-howto__step-title {
    font-size: 16px;
  }

  .p-howto__step-desc {
    font-size: 16px;
  }

  .p-howto__arrow {
    border-left-width: 152px;
    border-right-width: 152px;
    border-top-width: 44px;
  }
}

/* ============================================================
   オリジナルグッズ
============================================================ */
#section-goods {
  background: #fff;
  padding-top: 60px;
}

.p-goods__title {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 16px;
}

.p-goods__heading {
  color: #0546d9;
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
}

.p-goods__desc {
  font-size: 18px;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 12px;
}

.p-goods__note {
  font-size: 16px;
}

.p-goods__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #1a0dab;
  font-size: 16px;
  text-decoration: underline;
  margin-bottom: 32px;
}

.p-goods__link:hover {
  opacity: 0.75;
  color: #1a0dab;
}

.p-goods__link-arrow {
  width: 10px;
  height: auto;
}

.p-goods__img-wrap {
  position: relative;
  display: block;
  max-width: 1100px;
  margin: 0 auto 8px;
  cursor: default;
}

.p-goods__img {
  display: block;
  width: 100%;
  height: auto;
}

.p-goods__img-badge {
  display: none;
}

.p-goods__img-hint {
  display: none;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 0;
}

.p-goods__img-note {
  font-size: 12px;
  color: #222;
  line-height: 1.7;
  margin-top: 12px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .p-goods__img-wrap {
    cursor: pointer;
  }

  .p-goods__img-badge {
    display: block;
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    backdrop-filter: blur(4px);
  }

  .p-goods__img-hint {
    display: block;
  }
}

#goodsImgModal .modal-dialog {
  max-width: 96vw;
  margin: 8px auto;
}

#goodsImgModal .modal-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#goodsImgModal .modal-header {
  flex-shrink: 0;
  padding: 10px 16px;
  border-bottom: 1px solid #ebebeb;
}

#goodsImgModal .modal-title {
  font-size: 14px;
  font-weight: 700;
}

#goodsImgModal .modal-body {
  flex: 1;
  padding: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#goodsImgModal .modal-body img {
  display: block;
  width: 100%;
  height: auto;
  min-width: 540px;
}

.p-goods__arrow-wrap {
  background: #41903f;
}

.p-goods__arrow {
  width: 0;
  height: 0;
  border-left: 373px solid transparent;
  border-right: 373px solid transparent;
  border-top: 109px solid #fff;
  margin: 0 auto;
}

@media (max-width: 767px) {
  #section-goods {
    padding-top: 36px;
  }

  .p-goods__heading {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .p-goods__desc {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .p-goods__note {
    font-size: 12px;
  }

  .p-goods__link {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .p-goods__arrow {
    border-left-width: 152px;
    border-right-width: 152px;
    border-top-width: 44px;
    border-top-color: #fff;
  }
}

/* ============================================================
   等身大パネルの設置
============================================================ */
#section-display {
  background: #41903f;
  padding-top: 60px;
}

.p-display__title {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 16px;
}

.p-display__heading {
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
}

.p-display__desc {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 8px;
}

.p-display__note {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 32px;
}

.p-display__img {
  display: block;
  width: 100%;
  max-width: 1120px;
  height: auto;
  margin: 0 auto;
}

.p-display__arrow-wrap {
  background: #0546d9;
}

.p-display__arrow {
  width: 0;
  height: 0;
  border-left: 373px solid transparent;
  border-right: 373px solid transparent;
  border-top: 109px solid #41903f;
  margin: 0 auto;
}

@media (max-width: 767px) {
  #section-display {
    padding-top: 36px;
  }

  .p-display__heading {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .p-display__desc {
    font-size: 16px;
    text-align: left;
    margin-bottom: 8px;
  }

  .p-display__note {
    font-size: 12px;
    text-align: left;
    margin-bottom: 24px;
  }

  .p-display__img {
    max-width: 307px;
  }

  .p-display__arrow {
    border-left-width: 152px;
    border-right-width: 152px;
    border-top-width: 44px;
    border-top-color: #41903f;
  }
}

/* ============================================================
   モデルコース
============================================================ */
#section-course {
  background: #0546d9;
  padding-top: 60px;
}

.p-course__title {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 16px;
}

.p-course__heading {
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 48px;
}

.p-course__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.p-course__timeline::before {
  content: '';
  position: absolute;
  left: 68px;
  top: 0;
  bottom: 0;
  width: 7px;
  background: #fff;
}

.p-course__stop {
  position: relative;
  margin-bottom: 0;
}

.p-course__card {
  background: #fff;
  border-radius: 10px;
  padding: 18px 16px 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.p-course__time-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 94px;
  height: 94px;
  background: #0546d9;
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  flex-shrink: 0;
  line-height: 1;
}

.p-course__card-body {
  flex: 1;
}

.p-course__stop-name {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin: 0 0 6px;
}

.p-course__stop-activity {
  font-size: 18px;
  font-weight: 500;
  color: #222;
  margin: 0;
  line-height: 1.3;
}

.p-course__stop-note {
  font-size: 14px;
  font-weight: 500;
  color: #222;
  margin: 4px 0 0;
}

.p-course__photo {
  width: 181px;
  height: auto;
  flex-shrink: 0;
}

.p-course__map-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 3px solid #0546d9;
  border-radius: 5px;
  padding: 8px 12px;
  color: #0546d9;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.p-course__map-btn:hover {
  opacity: 0.8;
  color: #0546d9;
  text-decoration: none;
}

.p-course__map-icon {
  width: 14px;
  height: auto;
}

.p-course__transit {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 40px 0 40px 110px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.p-course__transit-icon {
  width: 20px;
  height: auto;
}

.p-course__note {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.6;
  max-width: 800px;
  margin: 24px auto 0;
}

.p-course__arrow-wrap {
  background: #fff;
}

.p-course__arrow {
  width: 0;
  height: 0;
  border-left: 373px solid transparent;
  border-right: 373px solid transparent;
  border-top: 109px solid #0546d9;
  margin: 0 auto;
}

@media (max-width: 767px) {
  #section-course {
    padding-top: 36px;
  }

  .p-course__heading {
    font-size: 20px;
    margin-bottom: 32px;
  }

  .p-course__timeline::before {
    left: 50px;
    width: 5px;
  }

  .p-course__time-badge {
    width: 71px;
    height: 71px;
    font-size: 18px;
  }

  .p-course__card {
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 12px 14px 16px;
  }

  .p-course__card-body {
    flex: 1;
    min-width: 0;
  }

  .p-course__stop-name {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .p-course__stop-activity {
    font-size: 14px;
  }

  .p-course__stop-note {
    font-size: 12px;
  }

  .p-course__photo {
    width: 100%;
    max-width: 150px;
    height: auto;
    order: 10;
    margin-left: 88px;
  }

  .p-course__map-btn {
    font-size: 16px;
    padding: 6px 10px;
    border-width: 1px;
  }

  .p-course__map-icon {
    width: 12px;
  }

  .p-course__transit {
    padding: 16px 0 16px 80px;
    font-size: 16px;
  }

  .p-course__note {
    font-size: 12px;
    margin-top: 20px;
  }

  .p-course__arrow {
    border-left-width: 152px;
    border-right-width: 152px;
    border-top-width: 44px;
    border-top-color: #0546d9;
  }
}

/* ============================================================
   プラン一覧
============================================================ */
#section-plan {
  background: #fff;
  padding-top: 60px;
}

.p-plan__title {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 16px;
}

.p-plan__heading {
  color: #0546d9;
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 24px;
}

.p-plan__sub-heading {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  color: #222;
  margin-bottom: 32px;
}

/* プランカード2枚 */
.p-plan__cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 60px;
}

.p-plan__card {
  display: flex;
  flex-direction: column;
  width: 359px;
  border: 1px solid #d8d8d8;
  border-radius: 15px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #fff;
}

.p-plan__card:hover {
  opacity: 0.85;
  text-decoration: none;
  color: inherit;
}

.p-plan__card-img {
  width: 100%;
  height: 238px;
  overflow: hidden;
  flex-shrink: 0;
}

.p-plan__card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-plan__card-body {
  padding: 16px 20px;
  flex: 1;
}

.p-plan__card-name {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  line-height: 1.4;
  margin-bottom: 8px;
}

.p-plan__card-desc {
  font-size: 16px;
  font-weight: 400;
  color: #222;
  line-height: 1.5;
  margin: 0;
}

.p-plan__card-price {
  padding: 0 20px 16px;
  text-align: right;
}

.p-plan__price-num {
  font-size: 28px;
  font-weight: 700;
  color: #ec7190;
  margin-left: 8px;
}

.p-plan__price-unit {
  font-size: 18px;
  font-weight: 700;
  color: #ec7190;
}

.p-plan__card-btn{
  padding:0 16px 16px;
}
.p-plan__card-btn span{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 18px 50px;
  height: 80px;
  background: linear-gradient(to bottom, #f6ae1b, #fce40e);
  border-radius: 5px;
  box-shadow: 0px 4px 2px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  color: #222;
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
}

/* 予約不要ショップ3枚 */
.p-plan__shops {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 0px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.p-plan__shop {
  text-align: center;
}

.p-plan__shop-img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}

.p-plan__shop-name {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
}

.p-plan__shop-activity {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
}

.p-plan__shop-note {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  line-height: 1.4;
  margin: 0;
}

.p-plan__shop-note-small {
  font-size: 14px;
}

.p-plan__arrow-wrap {
  background: #41903f;
}

.p-plan__arrow {
  width: 0;
  height: 0;
  border-left: 373px solid transparent;
  border-right: 373px solid transparent;
  border-top: 109px solid #fff;
  margin: 0 auto;
}

@media (max-width: 767px) {
  #section-plan {
    padding-top: 36px;
  }

  .p-plan__heading {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .p-plan__sub-heading {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .p-plan__cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
  }

  .p-plan__card {
    width: 100%;
  }

  .p-plan__shops {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .p-plan__shop-img {
    margin-bottom: 12px;
  }

  .p-plan__shop-name {
    font-size: 18px;
  }

  .p-plan__shop-activity {
    font-size: 16px;
  }

  .p-plan__arrow {
    border-left-width: 152px;
    border-right-width: 152px;
    border-top-width: 44px;
    border-top-color: #fff;
  }
}

/* ============================================================
   アクセス
============================================================ */
#section-access {
  background: #41903f;
  padding-top: 60px;
}

.p-access__title {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 16px;
}

.p-access__heading {
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 32px;
}

.p-access__card {
  background: #fff;
  border-radius: 10px;
  padding: 40px 40px 48px;
  max-width: 1033px;
  margin: 0 auto;
}

.p-access__map {
  display: block;
  width: 100%;
  max-width: 740px;
  height: auto;
  margin: 0 auto 32px;
}

/* アクセスブロック（薄緑背景テーブル） */
.p-access__block {
  background: #f5fcf8;
  border-radius: 10px;
  padding: 24px 32px 32px;
  margin-bottom: 40px;
}

.p-access__block-heading {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  text-align: center;
  border: 1px solid #222;
  padding: 8px 16px;
  margin: 0 auto 24px;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
}

.p-access__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
}

.p-access__row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.p-access__city {
  flex-shrink: 0;
  width: 200px;
  border: 1px solid #41903f;
  border-radius: 100px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #41903f;
  padding: 4px 8px;
  line-height: 1.4;
  white-space: nowrap;
}

.p-access__routes {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap:16px;
  margin: 0;
}

.p-access__route {
  align-items: center;
  font-size: 16px;
  color: #222;
  line-height: 1.5;
}

.p-access__route-icon {
  width: 20px;
  height: auto;
  flex-shrink: 0;
  margin-right: 8px;
}

.p-access__route-note {
  font-size: 12px;
  color: #222;
}

/* チャート図 */
.p-access__chart {
  display: block;
  width: 100%;
  max-width: 840px;
  height: auto;
  margin: 0 auto 40px;
}

.p-access__arrow-wrap {
  background: #0546d9;
}

.p-access__arrow {
  width: 0;
  height: 0;
  border-left: 373px solid transparent;
  border-right: 373px solid transparent;
  border-top: 109px solid #41903f;
  margin: 0 auto;
}

@media (max-width: 767px) {
  #section-access {
    padding-top: 36px;
  }

  .p-access__heading {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .p-access__card {
    padding: 24px 16px 32px;
  }

  .p-access__block {
    padding: 16px;
    margin-bottom: 28px;
  }

  .p-access__block-heading {
    font-size: 16px;
    padding: 6px 12px;
    margin-bottom: 16px;
  }

  .p-access__row {
    flex-direction: column;
    gap: 16px;
  }

  .p-access__city {
    width: auto;
    align-self: flex-start;
    min-width: 200px;
    text-align: center;
    margin:auto;
  }

  .p-access__routes {
    gap: 8px;
  }

  .p-access__route {
    font-size: 14px;
  }

  .p-access__arrow {
    border-left-width: 152px;
    border-right-width: 152px;
    border-top-width: 44px;
  }
}


/* ============================================================
   プラン概要
============================================================ */
#section-plan-detail {
  background: #0546d9;
  padding: 60px 0 80px;
}

.p-detail__title {
  display: block;
  margin: 0 auto 16px;
  max-width: 461px;
}

.p-detail__heading {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin: 0 0 8px;
}

.p-detail__desc {
  font-size: 18px;
  color: #fff;
  text-align: center;
  margin: 0 0 40px;
}

.p-detail__copyright {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-top: 32px;
}

.p-detail__table {
  max-width: 948px;
  margin: 0 auto;
}

.p-detail__row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.p-detail__row:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.p-detail__label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 180px;
  flex-shrink: 0;
}

.p-detail__label-icon {
  width: 13px;
  height: 13px;
  background: #fff;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}

.p-detail__label-text {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
}

.p-detail__value {
  font-size: 16px;
  color: #fff;
  line-height: 1.3;
  flex: 1;
}

.p-detail__value p {
  margin: 0;
  padding-left: 24px;
  position: relative;
}
.p-detail__value p:before{
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.p-detail__value p + p{
  margin-top: 16px;
}

.p-detail__arrow-wrap {
  background: #fff;
}

.p-detail__arrow {
  width: 0;
  height: 0;
  border-left: 373px solid transparent;
  border-right: 373px solid transparent;
  border-top: 109px solid #0546d9;
  margin: 0 auto;
}

@media (max-width: 767px) {
  #section-plan-detail {
    padding: 36px 0 60px;
  }

  .p-detail__title {
    max-width: 80%;
    margin-bottom: 16px;
  }

  .p-detail__heading {
    font-size: 20px;
  }

  .p-detail__desc {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .p-detail__copyright {
    font-size: 14px;
  }

  .p-detail__row {
    flex-direction: column;
    gap: 8px;
    padding: 14px 0;
  }

  .p-detail__label {
    width: auto;
  }

  .p-detail__label-icon {
    margin-top: 4px;
  }

  .p-detail__label-text {
    font-size: 16px;
  }

  .p-detail__value {
    font-size: 14px;
  }

  .p-detail__arrow {
    border-left-width: 152px;
    border-right-width: 152px;
    border-top-width: 44px;
  }
}


/* ============================================================
   ヒーロー
============================================================ */
#section-hero {
  overflow: hidden;
}

#section-hero h1 {
  margin: 0;
  line-height: 0;
  font-size: 0;
}

#section-hero picture,
#section-hero img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}



.p-text__hosokuimg{
  text-align: center;
  display: block;
  margin-top: 60px;
  font-size: 80%;
}
#section-mission .p-text__hosokuimg{
  color: #fff;
}
@media (max-width: 767px) {
.p-text__hosokuimg{
  margin-top: 30px;
}
}


/* ============================================================
   お問い合わせ
============================================================ */
#section-contact {
  padding: 60px 0;
}

.p-contact__heading {
  font-size: 24px;
  text-align: center;
}

@media (max-width: 767px) {
  .p-contact__heading {
    font-size: 20px;
  }
}


.p-contact__heading{
  color: #41903f;
  font-weight:bold;
  margin-bottom: 32px;
  font-size: 20px;
}
.p-contact__inner{
  padding: 24px 32px;
  border:#41903f solid 3px;
  border-radius: 8px;
  text-align: center;
}
.p-contact__desc{
  margin-bottom: 16px;
}
.p-contact__company{
  font-weight: bold;
  margin-bottom: 8px;
}
.p-contact__list{
  display: flex;
  gap: 8px;
  justify-content: center;
}
.p-contact__note{
  margin-top: 8px;
  font-size: 80%;
}
.p-contact__hours{
  font-weight: bold;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .p-contact__note{
    text-align: left;
  }
}