@charset "UTF-8";

:root {
  --container-width: 800px;
  --container-inner-width: 680px;
  --container-space: 100px;
  --color-gray-0: #ffffff;
  --color-gray-800: #262626;
  --color-orange-main: #f4b700;
  --color-orange-accent: #ff8d4f;
  --color-orange-bg: #fff5d9;
  --color-blue-main: #0f96cf;
  --color-blue-bg: rgba(15, 150, 207, 0.14);
  --color-light-yellow: #fffef4;
  --box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

#main {
  padding-bottom: 0;
}

.contentWrap {
  max-width: var(--container-width);
  margin: 0 auto;
}

/* About block */
.about {
  padding-bottom: var(--container-space);
}
.about__topImg {
  width: 305px;
  height: auto;
  margin-bottom: 24px;
}
.about__ttl {
  margin-bottom: 1em;
  font-size: 20px;
  font-weight: bold;
}
.about__ttl span {
  font-weight: bold;
}
.about__txt {
  margin-bottom: 2em;
  color: var(--color-gray-800);
  font-size: 18px;
  text-align: left;
  line-height: 1.8;
}

.about__content {
  border-radius: 10px;
  background-color: var(--color-gray-0);
  box-shadow: var(--box-shadow);
}
.about__content.mb60 {
  margin-bottom: 60px;
}
.about__contentTtl {
  border-radius: 10px 10px 0 0;
  background-color: var(--color-orange-main);
  color: var(--color-gray-0);
}
.about__contentTtl h3 {
  padding: 0.3em;
  font-size: 26px;
}
.about__contentTxt {
  padding: 24px 40px;
  text-align: left;
}
.about__contentItem {
  display: flex;
  font-weight: bold;
}
.about__contentItem + .about__contentItem {
  margin-top: 8px;
}
.about__contentItem::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  margin-right: 8px;
  border-radius: 50%;
  background-color: var(--color-orange-main);
}

@media (max-width: 640px) {
  :root {
    --container-space: 60px;
  }

  #subPage {
    padding-bottom: 4vh;
  }

  .about {
    padding-left: 16px;
    padding-right: 16px;
  }
  .about__ttl span {
    display: block;
  }
  .about__txt {
    font-size: 16px;
  }

  .about__contentTtl h3 {
    font-size: 20px;
  }
}

/* For Users &  Supporter block */
.for-users {
  position: relative;
  padding-top: var(--container-space);
  padding-bottom: 60px;
  background-color: var(--color-orange-bg);
}
.for-users__content,
.for-supporter__content {
  border-radius: 10px;
  background-color: var(--color-gray-0);
  box-shadow: var(--box-shadow);
}
.for-users__content {
  padding-bottom: 32px;
}
.for-users__contentTtl,
.for-supporter__contentTtl {
  display: inline-block;
  border-radius: 25px;
  background-color: var(--color-orange-main);
  color: var(--color-gray-0);
  transform: translateY(-50%);
}
.for-supporter__contentTtl {
  background-color: var(--color-blue-main);
}
.for-users__contentTtl h3,
.for-supporter__contentTtl h3 {
  padding: 0.3em 2em;
  font-size: 24px;
}

.for-supporter {
  position: relative;
  padding-top: var(--container-space);
  padding-bottom: 80px;
  background-color: var(--color-blue-bg);
}

.contentBox {
  max-width: var(--container-inner-width);
  margin: 0 auto 40px;
}
.contentBox p {
  color: var(--color-gray-800);
  font-size: 18px;
  text-align: left;
}
.contentBox p + p {
  margin-top: 1em;
}

.stepAccordion + .stepAccordion {
  margin-top: 32px;
}
.stepAccordion__ttl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 32px;
  border-radius: 15px;
  background-color: var(--color-orange-main);
  color: var(--color-gray-0);
  box-shadow: var(--box-shadow);
}
.stepAccordion__ttl.open {
  border-radius: 15px 15px 0 0;
}
.stepAccordion__ttl.open .iconPlus {
  display: none;
}
.stepAccordion__ttl .stepAccordion__ttlLeft {
  display: flex;
  justify-content: start;
}
.stepAccordion__step {
  display: flex;
  align-items: center;
  padding-right: 12px;
  border-right: 2px solid var(--color-gray-0);
}
.stepAccordion__stepTxt {
  padding-top: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
}
.stepAccordion__stepNum {
  font-size: 26px;
  font-weight: bold;
  line-height: 1;
}
.stepAccordion__ttlTxt {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.7;
}
.stepAccordion__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 16px;
}
.stepAccordion__icon img {
  width: 48px;
  height: 40px;
}
.stepAccordion__ttlBtn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.stepAccordion__ttlBtn img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.stepAccordion__body {
  padding: 16px 8px 24px;
  display: none;
}

.borderTtl {
  margin-bottom: 1em;
  padding: 0.2em;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  font-size: 20px;
}
.ttlBlueCircle {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
}
.ttlBlueCircle::before {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border-radius: 50%;
  background-color: var(--color-blue-main);
}
.txtBlueCircle {
  margin-bottom: 16px;
  padding-left: 32px;
  font-size: 16px !important;
  line-height: 1.8;
}
.noteBlueCircle {
  padding-left: 32px;
  font-size: 14px !important;
}
.txtPrice {
  color: var(--color-orange-main) !important;
  font-size: 30px !important;
  font-weight: bold;
  text-align: center !important;
}
.txtPrice.--blue {
  color: var(--color-blue-main) !important;
}
.txtCenter {
  text-align: center !important;
}
.txtLeft {
  text-align: left !important;
}
.txtNote {
  margin-top: 0px !important;
  font-size: 14px !important;
}
.txtBold {
  font-weight: bold;
}
.txtMedium {
  margin-bottom: 8px;
  font-size: 16px !important;
}

.btnRow {
  display: flex;
  justify-content: space-between;
  margin: 8px auto 24px;
}
.btnL {
  margin-top: 16px;
}
.btnL a {
  display: block;
  width: 460px;
  margin: 0 auto;
  padding: 16px;
  border-radius: 15px;
  background-color: var(--color-orange-accent);
  color: var(--color-gray-0);
}
.btnL span {
  display: block;
}
.btnL a:hover {
  opacity: 0.7;
}
.btn__ttl {
  font-size: 18px;
}
.btn__telL {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: bold;
  letter-spacing: 0.06em;
}
.btn__blue {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48%;
  height: 100px;
  border-radius: 15px;
  background-color: var(--color-blue-main);
  color: var(--color-gray-0);
  font-weight: bold;
}
.btn__blue:hover {
  opacity: 0.7;
}
.btn__blueTel {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 35px;
  font-weight: bold;
  letter-spacing: 0.03em;
}
.btn__blueLable {
  padding: 5px 10px;
  border-radius: 8px;
  background-color: var(--color-gray-0);
  color: var(--color-blue-main);
  font-size: 13px;
  font-weight: bold;
}
.btn__blueTxt {
  padding-left: 8px;
  font-size: 28px;
  font-weight: 500;
}
.btn__blueRight {
  display: flex;
  align-items: center;
}
.btn__blueContactTel {
  display: flex;
  justify-content: center;
  gap: 0.2em;
  margin: 24px auto;
  align-items: center;
  width: 460px;
  height: 82px;
  border-radius: 15px;
  background-color: var(--color-blue-main);
  color: var(--color-gray-0);
  font-size: 42px;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
}
.btn__blueContactTel:hover {
  opacity: 0.7;
}
.imageColWrap {
  display: flex;
  justify-content: space-evenly;
  margin: 16px 0;
}
.imageCol {
  max-width: 70%;
  border-radius: 5px;
  box-shadow: var(--box-shadow);
}
.noteWrap {
  margin: 8px auto 0;
  width: fit-content;
}

.scheduleTable {
  width: 100%;
}
.scheduleTable + .scheduleTable {
  margin-top: 40px;
}
.scheduleTable__ttl {
  width: 100%;
  padding: 8px;
  background-color: var(--color-blue-main);
  color: var(--color-gray-0);
}
.scheduleTable__ttl h5 {
  font-size: 16px;
  font-weight: bold;
}
.scheduleTable dl {
  display: flex;
  background-color: var(--color-light-yellow);
}
.scheduleTable dt {
  width: 116px;
  padding: 24px;
  justify-content: flex-start;
  align-items: center;
  border-right: 1px solid var(--color-gray-800);
  border-bottom: 1px solid var(--color-gray-800);
}
.scheduleTable dd {
  flex: 1;
  padding: 24px;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid var(--color-gray-800);
  text-align: left;
}
.scheduleTable dl:last-child dt,
.scheduleTable dl:last-child dd {
  border-bottom: none;
  text-align: center;
}
.closed {
  color: red;
}

.formBtnWrap {
  text-align: center;
}

.formBtn {
  display: block;
  width: 240px;
  margin: 0 auto 8px;
  padding: 8px;
  background-color: var(--color-blue-main);
  border-radius: 25px;
  color: var(--color-gray-0);
  font-size: 20px;
}
.formBtn:hover {
  opacity: 0.7;
}

.donwloadLink {
  color: var(--color-blue-main);
  text-decoration: underline;
}

.slimBox {
  width: 420px;
  margin: 0 auto;
}

.yellowCard {
  padding: 16px 32px;
  background-color: var(--color-light-yellow);
  box-shadow: var(--box-shadow);
}

.yellowCard p {
  font-size: 14px;
}

.contactBox > p {
  font-weight: bold;
  font-size: 18px;
}
.contactBox > p + p {
  font-weight: normal;
}

@media (max-width: 640px) {
  .about__contentTxt {
    padding: 24px 24px;
  }

  .for-users,
  .for-supporter {
    padding-left: 16px;
    padding-right: 16px;
  }

  .for-users__contentTtl h3,
  .for-supporter__contentTtl h3 {
    font-size: 16px;
  }

  .contentBox {
    padding: 8px 16px;
  }

  .contentBox p {
    font-size: 16px;
  }

  .borderTtl {
    font-size: 18px;
  }

  .btnL a {
    width: 100%;
  }

  .btn__ttl {
    font-size: 16px;
  }

  .btn__telL {
    font-size: 30px;
  }

  .btnRow {
    flex-direction: column;
  }

  .btn__blue {
    width: 100%;
  }

  .btn__blue + .btn__blue {
    margin-top: 24px;
  }

  .btn__blueTel {
    margin-bottom: 8px;
    font-size: 30px;
  }

  .btn__blueTxt {
    font-size: 24px;
  }

  .stepAccordion + .stepAccordion {
    margin-top: 16px;
  }
  .stepAccordion__ttl {
    padding: 12px 16px;
  }
  .stepAccordion__step {
    padding-right: 6px;
  }
  .stepAccordion__stepTxt {
    font-size: 16px;
  }
  .stepAccordion__ttlTxt {
    font-size: 20px;
  }
  .stepAccordion__icon {
    margin: 0 12px;
  }
  .stepAccordion__icon img {
    width: 32px;
    height: auto;
  }
  .stepAccordion__ttlBtn {
    display: grid;
    place-content: center;
  }
  .stepAccordion__ttlBtn img {
    position: relative;
    transform: translate(-50%, 0);
  }
  .stepAccordion__ttl .iconMinus {
    display: none;
  }
  .stepAccordion__ttl .iconPlus {
    display: block;
  }
  .iPhone .stepAccordion__ttl .iconPlus {
    margin-top: -10px;
  }
  .stepAccordion__ttl.open .iconMinus {
    display: block;
    transform: translate(0, 50%);
  }
  .iPhone .stepAccordion__ttl.open .iconMinus {
    transform: translate(0, 0);
  }
  .stepAccordion__ttl.open .iconPlus {
    display: none;
  }
  .stepAccordion__body {
    padding-bottom: 24px;
  }

  .slimBox {
    width: 100%;
  }

  .btn__blueContactTel {
    width: 100%;
  }
  .btn__blueContactTel {
    font-size: 24px;
  }
  .btn__blueContactTel img {
    width: 24px;
    height: auto;
  }
  .imageColWrap {
    flex-direction: column;
  }
  .imageCol {
    max-width: 100%;
  }
  .imageCol + .imageCol {
    margin-top: 24px;
  }

  .ttlBlueCircle {
    margin-bottom: 16px;
  }

  .txtBlueCircle {
    padding-left: 0;
  }

  .noteBlueCircle {
    padding-left: 0;
  }

  .scheduleTable dl {
    flex-direction: column;
  }
  .scheduleTable dt {
    width: 100%;
    padding: 16px 8px;
    border-right: none;
    background-color: #fff5d9;
  }
  .scheduleTable dl:last-child dt {
    border-bottom: 1px solid var(--color-gray-800);
  }
  .scheduleTable dd {
    padding: 16px 8px;
  }
}

/* photo-slider（Slick→Swiper@9.4.1・2026-06-05）。
   スライド幅・配置は Swiper(slidesPerView) が制御（PC=4枚 / SP=1枚）。
   旧Slickは 24vwスロット内に 20vw写真＝左右2vw余白だった。Swiperはスロット幅いっぱいに
   なるため、スロット(.photo-slider-item=.swiper-slide)に左右2vwパディングを入れて写真を
   20vw化し、各写真（右端含む）に均等な余白を再現。box-sizing で外形幅は Swiper 値を維持。 */
.photo-slider {
  margin-top: 48px;
  /* 左右対称インセット（旧は右が 50%-50vw＝右端密着で左右非対称だった）。
     左端写真の左余白＝右端写真の右余白＝4vw(コンテナ)＋2vw(スロット padding)＝6vw に揃える。 */
  margin-left: calc(50% - 50vw + 4vw);
  margin-right: calc(50% - 50vw + 4vw);
}
.photo-slider-item {
  box-sizing: border-box;
  padding: 0 2vw;
}
.photo-slider-item img {
  width: 100%;
  height: auto;
  border-radius: 12%;
}
@media (max-width: 640px) {
  .photo-slider {
    margin-left: auto;
    margin-right: auto;
  }
  .photo-slider-item {
    padding: 0;
  }
}

/* utils */
.mt16 {
  margin-top: 16px;
}

.mb16 {
  margin-bottom: 16px;
}

.mb40 {
  margin-bottom: 40px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb60 {
  padding-bottom: 60px;
}

.visible-sp {
  display: none !important;
}

.visible-pc {
  display: block !important;
}

@media (max-width: 640px) {
  .visible-sp {
    display: block !important;
  }

  .visible-pc {
    display: none !important;
  }
}

/* 2024.06.25 追加 */
.ex-button__content {
  margin: 40px 0;
}
.ex-button {
  display: block;
  width: 460px;
  margin: 0 auto;
  padding: 16px;
  border-radius: 15px;
  background-color: var(--color-orange-accent);
  color: var(--color-gray-0);
  font-size: 20px;
}
.ex-button:hover {
  opacity: 0.7;
}
@media (max-width: 480px) {
  .ex-button {
    width: 100%;
    font-size: 16px;
  }
}

