@charset "UTF-8";
/* google fonts  */
/* Zen Kaku Gothic New  (font-family: "Zen Kaku Gothic New", sans-serif;)*/
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p&family=Noto+Serif+JP:wght@200..900&family=Shippori+Antique&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Old+Mincho&display=swap");
/* Kiwi Maru(font-family: "Kiwi Maru", serif;) */
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&family=M+PLUS+1p&family=Noto+Serif+JP:wght@200..900&family=Shippori+Antique&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Old+Mincho&display=swap");
* {
  margin: 0;
  box-sizing: border-box;
  position: relative;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #704E40;
  line-height: 1.5;
}

[id] {
  scroll-margin-top: 100px;
  /* 固定ヘッダーの高さ分を指定 */
}

.anm {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.1s;
}

.anm.visible {
  opacity: 1;
  transform: translateY(0);
}

/*  共通化 */
.pc-none {
  display: none;
}

.sp-none {
  display: block;
}

/* 横幅共通化 */
.base-width {
  max-width: 600px;
  width: 81.5%;
  margin: auto;
}

/* フォントサイズ */
.base-h1 {
  font-size: 64px;
  font-weight: 400;
  line-height: 1.4;
}

.base-h2 {
  font-size: 32px;
  font-weight: 450;
}

.base-big-h2 {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.5555555556;
}

.base-h3 {
  font-size: 24px;
  font-weight: 400;
}

.base-big-3 {
  font-size: 26px;
}

.base-h4 {
  font-size: 22px;
  font-weight: 400;
}

.base-min-h4 {
  font-size: 20px;
}

.base-min-p {
  font-size: 14px;
}

.base-p {
  font-size: 16px;
  font-weight: 400;
}

.base-lead-p {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 32px;
}

.base-bg-p {
  font-size: 20px;
}

.base-18-p {
  font-size: 18px;
}

.base-23-p {
  font-size: 23px;
}

.base-24-p {
  font-size: 24px;
}

.base-28-p {
  font-size: 28px;
}

.line-height-bg {
  line-height: 1.9;
}

/* フォント */
.base-zenkaku-font {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.base-kiwi-font {
  font-family: "Kiwi Maru", serif;
}

/* テキストカラー */
.col-green {
  color: #378D79;
}

.col-red {
  color: #EB2323;
}

.col-light-green {
  color: #7BBD00;
}

.col-gray {
  color: #838383;
}

.col-earth {
  color: #8D7937;
}

.col-pur {
  color: #AD60B9;
}

.col-or {
  color: #E57E58;
}

.col-bl {
  color: #4895C8;
}

/* センタリング用 */
.txt-center {
  text-align: center;
}

/* 左寄せ */
.txt-left {
  text-align: left;
}

/* 右寄せ */
.txt-right {
  text-align: right;
}

/* カラー共通化 */
:root {
  --col-light-green: #E3E3E3;
  --col-green: #9FCCAE;
  --col-dark-green: #378D79;
  --col-red: #FFB697;
  --col-gray: #828887;
  --col-back-green: #e0f4e7;
  --col-dark-red: #F44900;
  --col-pur: #AD60B9;
  --col-or: #E57E58;
  --col-bl: #4895C8;
}

.custom-checkbox input[type=checkbox],
.custom-checkbox input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #999;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* チェック状態の丸 */
.custom-checkbox input[type=checkbox]:checked,
.custom-checkbox input[type=radio]:checked {
  border-color: #378D79;
  background-color: #378D79;
}

.custom-checkbox input[type=checkbox]:checked::after,
.custom-checkbox input[type=radio]::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

/* ボタン */
.btn {
  display: block;
  width: 242px;
  margin-inline: auto;
  padding: 16px;
  background: var(--col-dark-green);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  text-align: center;
  border: 0;
}

.btn-contact {
  background: #F8E994;
  color: #704E40;
}

.btn-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  width: 240px;
  min-height: 68px;
  padding: 10px 50px 10px 23px;
  background: url(img_2025/tkn-btn-back.png) no-repeat 100% 50%/cover;
  border-radius: 14px;
  color: white;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
}
.btn-cta:hover {
  opacity: 0.6;
}

/* 余白 */
.mgn-btm {
  margin-bottom: 50px;
}

.mgn-mid-btm {
  margin-bottom: 20px;
}

.mgn-min-btm {
  margin-bottom: 8px;
}

.mgn-btm-bg {
  margin-bottom: 300px;
}

/* ドット下線 */
.dot-bar-btm {
  border-bottom: dotted 3px;
  padding: 20px 0;
  /* font-weight: 500; */
}

/* ダッシュ下線 */
.dash-bar-btm {
  border-bottom: 2px dashed var(--dash-bar-color, var(--col-dark-green));
  line-height: 1.4722222222;
}

/* 下線 */
.green-under-spn {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-color: var(--col-green);
  font-weight: 500;
}

/* テキストの丸い背景 */
.txt-back {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-block: 30px;
  padding: 3px 20px;
  background: var(--col-dark-green);
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.txt-back:first-child {
  margin-top: 0;
}
.txt-back:last-child {
  margin-bottom: 0;
}

/* 強調 */
.base-mid-str {
  font-weight: 450;
}

.base-str {
  font-weight: 500;
}

/* 下矢印 */
.under-arrow {
  position: relative;
}

.under-arrow::after {
  position: absolute;
  bottom: -23px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: url(img_2025/under-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

/*  Header  */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 9999;
}

.header-container {
  width: 100%;
  height: 100%;
  border: 1px solid var(--col-light-green);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  position: relative;
  z-index: 999;
}

.header-lt-box {
  height: 100%;
  display: flex;
}

.header-lt-box img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
  position: relative;
  z-index: 99;
}

.header-lt-txt-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  gap: 0;
  padding: 0 10px;
  position: relative;
  font-size: 20px;
  z-index: 999;
  line-height: 1.2;
  font-weight: 500;
}

.header-rt-box {
  display: flex;
  gap: 15px;
  padding-right: 15px;
  align-items: center;
	font-size:14px;
}

.hed-link {
  text-decoration: none;
  color: #000;
}

.pc-header {
  display: flex;
}

.ham-menu {
  display: none;
  position: relative;
  z-index: 99;
}

.sp-header {
  position: absolute;
  right: -100vw;
  height: 100vh;
  padding: 150px 50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  top: 0;
  background: #fff;
  transition: 0.5s ease;
  width: 100vw;
  justify-content: center;
  gap: 30px;
	text-align: center;
}

.ham-menu {
  height: 100%;
  padding: 0 20px;
}

.ham-btn {
    background: var(--col-dark-green);
    border: none;
    border-radius: 50px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    font-size: 20px;
}

.batu-icon {
  display: none;
}

.open {
  right: 0;
}

.close {
  right: -100vw;
}

@media (max-width: 1310px) {
  .pc-header {
    display: none;
  }
  .ham-menu {
    display: flex;
    align-items: center;
  }
}
/*  main  */
main {
  width: 100%;
  display: flex;
  background: var(--col-back-green);
  overflow: hidden;
}

.main-container {
  max-width: 768px;
  width: 100%;
  margin: 80px auto 0;
  background: #fff;
}
.main-container header {
  position: relative;
  height: auto;
  z-index: inherit;
}
.main-container *:first-child {
  margin-top: 0;
}
.main-container *:last-child {
  margin-bottom: 0;
}

/*  fv  */
.fv {
  padding-bottom: 80px;
}

.fv-top {
  width: 100%;
  min-height: 747px;
  background: url(img_2025/fv.jpg) no-repeat 50% 0/100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  padding-bottom: 10px;
  padding-inline: 10px;
}

.fv-top .base-h1 {
  position: relative;
  margin-block: 0;
  z-index: 10;
  text-align: center;
}

.fv-top .base-h1 span {
  line-height: 1.4;
}

.fv-top::after,
.rf-bk {
  width: 100%;
  position: absolute;
  height: 100px;
  background: linear-gradient(to bottom, transparent, #fff);
  bottom: -1px;
  right: 0;
  content: "";
}

.fv-under {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 100%;
  padding-top: 50px;
  background: url(img_2025/fv-under-back.jpg) no-repeat 0 0/100%;
}

.fv-under::before {
  background: linear-gradient(to top, transparent, #fff);
  top: -1px;
}

.fv-under-img-box {
  display: flex;
  justify-content: space-between;
  align-items: start;
  position: absolute;
  bottom: -215px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}

.under-img01 {
  -o-object-fit: contain;
     object-fit: contain;
  width: 37%;
}

.under-img02 {
  -o-object-fit: contain;
     object-fit: contain;
  width: 61%;
}

.rf-bk {
  background: url(img_2025/fv-under-back.jpg);
  position: relative;
  width: 100%;
  height: 180px;
  display: flex;
  align-items: start;
  background-size: cover;
}

.rf-bk .base-p {
  margin-top: 40px;
}

.fv-under-txts .base-h2,
.fv-under-txts .base-h3 {
  font-weight: 300;
}

.fv-under-txts p {
  margin-top: 32px;
}
.fv-under-txts p:first-child {
  margin-top: 0;
}

/* セクション１ */
.sec1 {
  padding-block: 70px 74px;
  background: url(img_2025/sec1-back.jpg) no-repeat 0 50%/cover;
}
.sec1 .base-big-h2 {
  margin-bottom: 60px;
}

/* 体験セッション */
.tkn {
  width: 100%;
  min-height: 320px;
  position: relative;
  display: flex;
  padding-block: 45px 32px;
}
.tkn .base-width {
  margin-bottom: 0;
}
.tkn .btn-cta {
  margin-top: 25px;
}

.tkn-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.tkn-box {
  width: -moz-fit-content;
  width: fit-content;
}
.tkn-box p {
  margin-block: 10px;
}
.tkn-box p:first-child {
  margin-top: 0;
}
.tkn-box p:last-child {
  margin-bottom: 0;
}

.rt-arrow {
  width: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* セクション２  */
.sec2 {
  padding-block: 80px 65px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.sec2-box {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.sec2-back {
  position: absolute;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.sec2-back img {
  width: 100%;
  height: auto;
}

.sec2-txt-box p:not([class*=mgn-]) {
  margin-bottom: 16px;
}

.sec2-txt-box .base-h3 {
  text-align: center;
}

.sec2-box-header {
  position: relative;
  margin-bottom: 48px;
}

.sec2-box1 {
  position: static;
}
.sec2-box1 .sec2-back {
  top: 0;
}

.sec2-box2 {
  margin-top: 336px;
}
.sec2-box2 .sec2-back {
  top: -383px;
}

.sec2-box3 {
  margin-top: 244px;
}
.sec2-box3 .sec2-back {
  top: -225px;
}

/* セクション３ */
.sec3 {
  padding-block: 80px;
  background: url(img_2025/sec3-back.jpg) no-repeat 50% 50%/cover;
}

.sec3-box {
  display: flex;
  flex-direction: column;
  row-gap: 2.8rem;
}

/* セクション5 */
.sec5 {
  position: relative;
  padding-block: 64px 194px;
  background: url(img_2025/sec5-back-top.png) no-repeat 100% 0/302px, url(img_2025/sec5-back-bottom.png) no-repeat 50% 100%/100%;
}

.sec5-box {
  position: relative;
  margin-top: 64px;
  padding-top: 160px;
  padding-inline: 32px;
  z-index: 0;
}
.sec5-box + .sec5-box {
  margin-top: 80px;
}

.sec5-back-img {
  position: absolute;
  inset-inline: 0;
  top: 0;
  border-radius: 12px;
  overflow: hidden;
  z-index: -1;
  aspect-ratio: 600/320;
}
.sec5-back-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 7.66%, rgba(255, 255, 255, 0.8) 53.16%, white 77.66%);
}
.sec5-back-img img {
  width: 100%;
  height: 100%;
  overflow: cover;
}

.sec5-box-head {
  display: flex;
  flex-direction: column;
  margin-bottom: 23px;
}
.sec5-box-head .txt-back {
  margin-top: 16px;
}

.sec5-txt-label {
  margin-bottom: 10px;
  color: var(--col-dark-green);
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.2142857143;
}

.sec5-ttl {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.4375;
}
.sec5-ttl small {
  font-size: 24px;
}

.sec5-txt-box {
  font-size: 14px;
  line-height: 1.7142857143;
}

/* セクション4 */
.happa {
  position: relative;
}
.happa::after {
  width: 250px;
  aspect-ratio: 1/1;
  position: absolute;
  content: "";
  background: url(img_2025/happa.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.sec4 {
  margin-top: -82px;
}
.sec4 .happa::after {
  right: -84px;
  top: -117px;
}

.sec4 .sec-1-el-top .txt-back {
  background: var(--col-dark-green);
}

.sec4 .sec1-el-box {
  box-shadow: none;
}

.sec4 .sec1-box {
  padding: 200px 0 0;
}

.sec4-el1 {
  display: flex;
  gap: 50px;
}

.sec4-el1 img {
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.sec4-rt {
  display: flex;
  align-items: center;
}

.sec4-bf,
.sec4-af {
  padding: 30px;
  display: flex;
  position: relative;
}

.sec4-bf {
  background: #EFEFEF;
}

.sec4-af {
  background: #F3FFF7;
}

.sec4-img-box {
  position: relative;
}

.sec4-img-box .bf-cmt {
  background: #6D6D6D;
}

.sec4 .under-arrow {
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  background: var(--col-dark-green);
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 5px;
  font-size: 18px;
  font-family: "Kiwi Maru", serif;
}

.sec4 .bf-cmt {
  background: #6D6D6D;
}

.sec4-img-box .bf-cmt::after {
  background: url(img_2025/dark-under-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.sec4-img-box .bf-cmt::after,
.sec4-img-box .under-arrow::after {
  width: 30px;
}

.sec4-el2 {
  display: flex;
  gap: 20px;
}

.sec4-img-box img {
  width: 200px;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
}

.sec4-elscmt {
  background: #DBF3ED;
  padding: 30px;
}

.sec4-elcmt-bf {
  background: #D9D9D9;
}

/* セクション6 */
.sec6-top {
  padding-bottom: 64px;
}

.sec6-ttl {
  margin-bottom: 46px;
  line-height: 2;
}
.sec6-ttl small {
  font-size: 20px;
}
.sec6-ttl em {
  font-size: 40px;
  font-style: normal;
}

.sec6-cmt-box {
  display: flex;
  gap: 50px;
  font-size: 15px;
}

.sec6-img-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sec6-img-box img {
  width: 120px;
  height: 120px;
  border-radius: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}

.sec6-img-name {
  text-align: center;
  text-wrap: nowrap;
}

.sec6-cmt-rt {
  display: flex;
  align-items: center;
  padding: 30px;
  background: #eaeaea;
  min-height: 96px;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 12px;
}

.pink-back {
  background: #FFE8ED;
  position: relative;
}

.pink-back::before {
  position: absolute;
  top: 36px;
  left: -25px;
  width: 40px;
  height: 40px;
  content: "";
  background: url(img_2025/sec6-cmt-pink-lt.png);
  background-size: contain;
  bottom: 20%;
}

.blue-back {
  background: #F0F6FF;
  position: relative;
}

.blue-back::before {
  position: absolute;
  top: 36px;
  right: -20px;
  width: 40px;
  height: 40px;
  content: "";
  background: url(img_2025/sec6-cmt-blue.png);
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 20%;
}

.sec6-under {
  position: relative;
  padding-block: 64px 320px;
  z-index: 0;
}
.sec6-under::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 320px;
  background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0) 100%), url(img_2025/sec6-back-bottom.jpg) no-repeat 50% 100%/cover;
  z-index: -1;
}

.sec6-txt-box {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  line-height: 2;
}

/* セクション7 */
.sec7 {
  position: relative;
  margin-top: -100px;
  padding-bottom: 125px;
  z-index: 0;
}
.sec7::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 401px;
  background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0) 50%, white 100%), url(img_2025/sec7-back-bottom.jpg) no-repeat 50% 100%/cover;
  z-index: -1;
}

.sec7-top {
  margin-bottom: 34px;
}

.sec7-under.happa::after {
  top: -125px;
  left: -65px;
}

/* プロフィールレイアウト */
.profile-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.profile-wrapper .dash-bar-btm {
  padding-bottom: 10px;
}

/* プロフィール画像 */
.profile-wrapper img {
  max-width: 222px;
  height: auto;
  flex-shrink: 0;
}

.profile-label {
  color: var(--col-dark-green);
  font-size: 15px;
}

.profile-name {
  font-weight: 500;
  font-size: 20px;
}
.profile-name.dash-bar-btm {
  padding-bottom: 16px;
}

.profile-txt-box {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-top: 16px;
  font-size: 14px;
}

/* メッセージボックス（白背景＋シャドウ） */
.hsp-ttl {
  border-color: var(--col-dark-green);
}

.hsp-message-box {
  background: #fff;
  padding: 40px 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2), 0 0 6px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 2;
}

.hsp-message-box::before {
  left: -50px;
  top: -80px;
  width: 250px;
  height: 300px;
  position: absolute;
  content: "";
  background: url(img_2025/sec8-happa.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.hsp-message-box .base-p {
  text-align: center;
}

/* 画像3枚横並び */
.hsp-photo-group {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

/* セクション8 */
.sec8 {
  padding-bottom: 80px;
}

.type-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.type-box {
  --type-color: var(--col-dark-green);
  --type-bg-color: #E0F4E7;
  padding: 45px 16px 16px;
  position: relative;
  background: var(--type-bg-color);
  display: flex;
  gap: 24px;
  flex-direction: column;
  border-radius: 12px;
  font-size: 14px;
}

.type-ttl {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 28px;
  font-weight: 500;
}

.type-label {
  color: var(--type-color);
  font-size: 16px;
  font-weight: bold;
}

.type-logo {
  position: absolute;
  width: 84px;
  -o-object-fit: contain;
     object-fit: contain;
  left: 16px;
  top: 16px;
}

.type-el {
  background: #fff;
  border-radius: 8px;
  position: relative;
  padding: 16px 16px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.type-el-spn {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  color: var(--type-color);
}

.type-box2 {
  --type-color: var(--col-pur);
  --type-bg-color: #F1E9F3;
}

.type-box3 {
  --type-color: var(--col-or);
  --type-bg-color: #FFEEE8;
}

.type-box4 {
  --type-color: var(--col-bl);
  --type-bg-color: #E3F4FF;
}

.ques {
  margin-block: 64px 80px;
}

.ques-box {
  font-size: 15px;
}

.ques-ttl {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
}

.ques-txt-box + .ques-txt-box {
  margin-top: 40px;
}

.ques-mark-txt {
  position: relative;
  padding-left: 20px;
  margin-bottom: 4px;
}

.ques-logo {
  width: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}

.ques-txt {
  margin-block: 16px;
}

.ques-txt-notes {
  font-size: 14px;
}

.ques-list-img {
  position: absolute;
  top: 5px;
  left: 0;
  width: 12px;
  height: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.ques-list-img.ques-list-img-check {
  width: 16px;
  height: 16px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-family: sans-serif;
  background-color: #e6f3e9;
}

.table th,
.table td {
  border: 1px solid #ffffff;
  padding: 8px 10px;
  text-align: center;
  font-weight: 500;
}
.table th small,
.table td small {
  font-size: 14px;
}

.table thead th {
  background-color: #36836c;
  color: white;
  white-space: nowrap;
}

.table td {
  background: #E0F4E7;
}

.table tbody tr:nth-child(even) {
  background-color: #f0faf2;
}

.table tbody tr:nth-child(odd) {
  background-color: #e6f3e9;
}

.table-unit {
  font-size: 12px;
}

/* セクション9 */
.sec9 {
  padding-bottom: 80px;
}

/* セクション10 */
/* グリッドレイアウト */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px 24px;
  max-width: 1000px;
  margin: 0 auto;
}

/* 各記事カード */
.article-card {
  background: #fff;
  overflow: hidden;
}

.article-card-link {
  display: block;
}
.article-card-link:hover {
  opacity: 0.7;
}

.article-card-ttl {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #704E40;
}

.article-card-thumb {
  aspect-ratio: 256/144;
  margin-bottom: 16px;
}
.article-card-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.article-card-datetime {
  color: var(--col-dark-green);
  font-size: 14px;
}

.sec10 .sec1-box::after {
  background: url(img_2025/sec10-fv.png);
  background-size: cover;
}

.sec10-txt {
  padding: 10px 0;
}

.sec10-btn {
  position: relative;
  z-index: 1;
}

.form-section {
  margin-top: -90px;
  padding-bottom: 64px;
}
.form-section .panel-back-img + .panel {
  margin-top: -212px;
}

.form-wrapper {
  margin: 0 auto;
  font-size: 15px;
}

/* 各入力グループ */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 500;
}

/* テキスト入力・選択・テキストエリア */
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=tel],
.form-group input[type=date],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 7px 12px;
  border: 1px solid #DBDBDB;
  background: white;
  border-radius: 4px;
  font-family: inherit;
  box-sizing: border-box;
  color: inherit;
  font-size: 15px;
  line-height: 1.2;
  height: 38px;
  appearance: none;
  -webkit-appearance: none;
  /* Safari */
  -moz-appearance: none;
  /* Firefox */
}
.form-group input[type=text]::-moz-placeholder, .form-group input[type=email]::-moz-placeholder, .form-group input[type=tel]::-moz-placeholder, .form-group input[type=date]::-moz-placeholder, .form-group select::-moz-placeholder, .form-group textarea::-moz-placeholder {
  opacity: 1;
  color: #B9B9B9;
}
.form-group input[type=text]::placeholder,
.form-group input[type=email]::placeholder,
.form-group input[type=tel]::placeholder,
.form-group input[type=date]::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  opacity: 1;
  color: #B9B9B9;
}
.form-group input[type=text]::-webkit-calendar-picker-indicator,
.form-group input[type=email]::-webkit-calendar-picker-indicator,
.form-group input[type=tel]::-webkit-calendar-picker-indicator,
.form-group input[type=date]::-webkit-calendar-picker-indicator,
.form-group select::-webkit-calendar-picker-indicator,
.form-group textarea::-webkit-calendar-picker-indicator {
  display: none;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group .wpcf7-list-item {
  margin-bottom: 12px;
}
.form-group .wpcf7-list-item.last {
  margin-bottom: 0;
}
.form-group .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}
.form-group .wpcf7-radio label {
  padding-inline: 0;
}

.form-notes {
  font-size: 12px;
}

.form-names-box,
.form-schedule-box {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: flex-start;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.form-names-box p,
.form-names-box br,
.form-schedule-box p,
.form-schedule-box br {
  display: contents;
}
.form-names-box div,
.form-schedule-box div {
  display: flex;
  -moz-column-gap: 4px;
       column-gap: 4px;
}
.form-names-box div span,
.form-schedule-box div span {
  flex: 1;
}
.form-names-box .names-head,
.form-names-box .schedule-head,
.form-schedule-box .names-head,
.form-schedule-box .schedule-head {
  position: relative;
  top: 8px;
}

.schedule-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.schedule-row span {
  flex: 1;
}

.schedule-row input {
  flex: 3;
}

/* チェックボックス・ラジオボタン */
.checkbox-group label,
.radio-group label,
.names-contaner,
.form-boxs {
  display: flex;
  background: #E0F4E7;
  /* border: 1px solid #D9E8D5; */
  border-radius: 4px;
  padding: 8px 10px;
  cursor: pointer;
}

.custom-checkbox {
  display: flex !important;
  align-items: start;
}

.custom-checkbox input {
  margin-top: 4px;
}

.select-wrapper select {
  appearance: none;
  /* Safari & Chrome */
  -webkit-appearance: none;
  /* iOS */
  -moz-appearance: none;
  /* Firefox */
  padding: 10px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: white;
  background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="12" viewBox="0 0 24 24" width="12" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 24px;
}

.custom-check-spn {
  flex: 8;
}

.checkbox-group input,
.radio-group input {
  position: relative;
  flex-shrink: 0;
  top: 2px;
  margin-right: 8px;
  vertical-align: middle;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.checkbox-group p,
.checkbox-group br {
  display: contents;
}
.checkbox-group textarea {
  min-height: 72px;
}

/* ボタン */
.form-submit {
  margin-top: 30px;
  text-align: center;
  border: none;
}

.form-section .mgn-min-btm {
  margin-bottom: 10px;
}

/* プレースホルダーカラー（やや薄く） */
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #999;
}
input::placeholder,
textarea::placeholder {
  color: #999;
}

.names-contaner,
.txtarea,
.age-box,
.form-boxs {
  display: flex !important;
  flex-direction: column;
  gap: 8px;
}

/* .form-names-box {
    display: flex;
    gap: 30px;
    align-items: center;
}
 */
.age-els {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.age-el {
  display: flex;
  align-items: center;
}

.custom-textarea:focus,
.custom-text:focus {
  border-color: var(--col-dark-green);
  /* お好きな色に変更可能 */
  outline: none;
  /* ブラウザの青い枠を消す場合 */
}

.form-section input:focus,
.form-section select:focus,
.form-section textarea:focus {
  border-color: var(--col-dark-green);
  /* 緑色（Bootstrapのsuccessカラー） */
  outline: none;
  /* デフォルトの青枠を消す場合 */
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.footer {
  background: var(--col-dark-green);
  padding: 15px;
  text-align: center;
  color: #fff;
}

.fixed {
  display: none;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .story-content {
    padding: 50px 15px;
  }
  .hsp-message-box,
  .hsp-message-conclusion {
    padding: 20px;
  }
  .profile-wrapper {
    flex-direction: column;
    align-items: center;
    row-gap: 24px;
    padding-inline: 20px;
  }
  .profile-wrapper img {
    max-width: 100%;
  }
  .profile-txt-box {
    row-gap: 16px;
  }
  .type-content {
    grid-template-columns: 1fr;
    row-gap: 40px;
    margin-top: 40px;
  }
  .type-box {
    padding: 60px 20px 24px;
  }
  .type-ttl {
    align-items: center;
    position: absolute;
    inset-inline: 0;
    top: -24px;
    text-align: center;
  }
  .type-logo {
    top: 16px;
    left: 24px;
    width: 180px;
  }
}
@media screen and (max-width: 600px) {
  /* 共通 */
  .base-h1 {
    font-size: 32px;
  }
  .base-h2 {
    font-size: 24px;
  }
  .base-big-h2 {
    font-size: 32px;
    line-height: 1.25;
  }
  .base-h3 {
    font-size: 18px;
  }
  .base-h4 {
    font-size: 19px;
  }
  .base-min-h4 {
    font-size: 18px;
  }
  .base-min-p {
    font-size: 12px;
  }
  .base-p {
    font-size: 16px;
    font-weight: 400;
    text-align: justify;
    line-height: 1.7;
  }
  .base-lead-p {
    font-size: 15px;
    line-height: 1.8666666667;
  }
  .base-bg-p {
    font-size: 16px;
    text-align: justify;
  }
  .sp-base-15-p {
    font-size: 15px;
  }
  .sp-base-17-p {
    font-size: 17px;
  }
  .sp-base-18-p {
    font-size: 18px;
  }
  .sp-base-20-p {
    font-size: 20px;
  }
  .sp-base-21-p {
    font-size: 21px;
  }
  .sp-base-22-p {
    font-size: 22px;
  }
  .sp-base-24-p {
    font-size: 24px;
  }
  .btn {
    width: min(100%, 282px);
  }
  .btn-cta {
    justify-content: center;
    padding-inline: 50px;
    width: min(100%, 320px);
    margin-inline: auto;
  }
  .sec1-box1 .sec1-el-box .base-h3 {
    margin: 0px 0 30px;
  }
  .sec1 {
    padding-block: 56px;
    background-position-x: 100%;
  }
  .sec1 .base-big-h2 {
    margin-bottom: 40px;
  }
  header {
    height: 72px;
  }
  .header-lt-txt-box {
        padding-left: 5px;
        padding-right: 0;
        font-size: 17px;
  }
  .ham-menu {
    height: 100%;
    padding: 0 9px;
  }
  .header-lt-box .base-min-p {
    font-size: 12px;
  }
  .main-container {
    margin-top: 72px;
  }
  .sp-txt-center {
    text-align: center;
  }
  .sp-txt-left {
    text-align: left;
  }
  .sp-txt-right {
    text-align: right;
  }
  .fv {
    padding-bottom: 56px;
  }
  .fv-top {
    min-height: 385px;
    padding-bottom: 0;
  }
  .fv-under {
    row-gap: 100px;
    padding-top: 20px;
    background-position-y: 190px;
  }
  .fv-under .base-p {
    font-size: 16px;
  }
  .fv-under-img-box {
    bottom: -100px;
  }
  .mgn-btm-bg {
    margin-bottom: 200px;
  }
  .dash-bar-btm:has(span) {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .dash-bar-btm > span {
    display: block;
    border-bottom: 2px dashed var(--dash-bar-color, var(--col-dark-green));
  }
  .form-section {
    margin-top: -70px;
    padding-bottom: 0;
  }
  .form-section .panel-back-img + .panel {
    margin-top: -220px;
  }
  .form-section .panel-ttl {
    font-size: 21px;
  }
  .form-section .panel-ttl-small {
    display: block;
    margin-top: 12px;
  }
  .form-section .base-lead-p {
    font-size: 13px;
  }
  .form-wrapper {
    font-size: 14px;
  }
  .form-group {
    margin-bottom: 20px;
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 15px;
  }
  .form-names-box {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }
  .form-schedule-box div {
    row-gap: 4px;
    flex-direction: column;
  }
  .checkbox-group {
    row-gap: 20px;
  }
  .pc-none {
    display: block;
  }
  .sp-none {
    display: none;
  }
  .sec1-box::after {
    aspect-ratio: 1/1;
    background-position: center !important;
    background-size: cover !important;
  }
  .sec1-1-el {
    width: 100%;
    max-width: none;
  }
  .sec-1-el {
    padding: 30px 0 30px 38px;
  }
  .sec1-btm {
    padding: 350px 0 0;
  }
  .sec1-1-el {
    padding: 20px;
    min-height: initial;
    align-items: center;
  }
  .tkn {
    min-height: 328px;
    padding-block: 40px 24px;
  }
  .tkn-box {
    width: 100%;
  }
  .tkn-box .base-h3 {
    font-size: 24px;
  }
  .tkn-box .base-min-p {
    font-size: 14px;
  }
  .sec2-box {
    font-size: 15px;
  }
  .sec2-box .base-p {
    font-size: inherit;
  }
  .sec2-back {
    height: 320px;
  }
  .sec2-box2 {
    margin-top: 312px;
  }
  .sec2-box2 .sec2-back {
    top: -370px;
  }
  .sec2-box3 {
    margin-top: 172px;
  }
  .sec2-box3 .sec2-back {
    top: -160px;
  }
  /* セクション３ */
  .sec3 {
    padding-block: 70px;
    background-position-x: 0;
  }
  .sec3 .base-h2 {
    font-size: 24px;
  }
  .sec3-box {
    row-gap: 2rem;
  }
  .sec3-box {
    flex-direction: column;
    gap: 20px;
  }
  .sec3-img {
    width: 60%;
    height: 150px;
    margin: 0 auto 10px;
  }
  /* セクション5 */
  .sec5 {
    padding-block: 70px 200px;
    background-size: 235px, max(100%, 767px);
    background-position: 100% 0, 0 100%;
  }
  .sec5-head .txt-back {
    width: 100%;
  }
  .sec5-box {
    margin-top: 48px;
    padding-inline: 0;
  }
  .sec5-box + .sec5-box {
    margin-top: 48px;
  }
  .sec5-back-img {
    aspect-ratio: 321/320;
  }
  .sec5-box-head .txt-back {
    margin-top: 24px;
  }
  .sec5-label {
    margin-bottom: 8px;
  }
  .sec5-ttl {
    line-height: 1.25;
  }
  /* セクション4 */
  .sec4 .happa::after {
    top: -120px;
    right: 0;
    width: 198px;
  }
  .sec4-el1 {
    flex-direction: column;
    gap: 20px;
  }
  .sec4-el1 img {
    width: 100%;
  }
  .sec4-img-box img {
    width: 100%;
  }
  .sec4-el2 {
    flex-direction: column;
  }
  /* セクション6 */
  .sec6-top {
    padding-bottom: 48px;
  }
  .sec6-ttl {
    margin-bottom: 32px;
  }
  .sec6-ttl .base-h2 {
    font-size: 22px;
  }
  .sec6-ttl .dash-bar-btm {
    line-height: 2;
  }
  .sec6-ttl small {
    font-size: 15px;
  }
  .sec6-ttl em {
    font-size: 32px;
  }
  .sec6-cmt-box {
    flex-direction: column;
    row-gap: 24px;
  }
  .sec6-img-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    order: 1;
  }
  .pink-back::before,
  .blue-back::before {
    position: absolute;
    top: auto;
    bottom: -12px;
    inset-inline: 0;
    content: "";
    width: 32px;
    height: 18px;
    margin-inline: auto;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
  }
  .pink-back::before {
    background: #ffe8ed;
  }
  .blue-back::before {
    background: #F0F6FF;
  }
  .sec6-under {
    padding-block: 48px 228px;
  }
  .sec6-under::after {
    background-image: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0) 100%), url(img_2025/sec6-back-bottom-sp.jpg);
  }
  .sec6-txt-box .base-p {
    line-height: 1.75;
    font-size: 16px;
  }
  /* セクション7 */
  .sec7 {
    padding-bottom: 57px;
  }
  .sec7::after {
    background-position-x: 0, -47px;
  }
  .sec7-top {
    margin-bottom: 10px;
  }
  .sec7-under.happa {
    margin-top: 124px;
  }
  .sec7-under.happa::after {
    top: -151px;
  }
  /* セクション8 */
  .sec8 {
    padding-bottom: 40px;
  }
  .sec8 .panel-back-img + .panel {
    margin-top: -75px;
  }
  .ques {
    margin-block: 40px;
  }
  .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table {
    min-width: 600px;
  }
  /* セクション9 */
  .sec9 {
    padding-bottom: 0;
  }
  .sec9 .panel-ttl {
    font-size: 18px;
  }
  /* セクション10 */
  .article-card-ttl {
    margin-bottom: 0;
  }
  .article-card-thumb {
    aspect-ratio: 281/144;
    margin-bottom: 12px;
  }
  .footer {
    margin-bottom: 112px;
  }
  .fixed {
    position: fixed;
    bottom: 0;
    inset-inline: 0;
    display: block;
    padding: 6px;
    background-color: white;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
    z-index: 200;
  }
  .fixed .btn-cta {
    position: relative;
    width: min(100%, 360px);
    min-height: 80px;
    background: #fdf4b5;
    color: #704E40;
    font-size: 20px;
  }
  .fixed .btn-cta::before, .fixed .btn-cta::after {
    content: "";
    position: absolute;
    width: 52px;
    aspect-ratio: 70/88;
    background: url(img_2025/tkn-btn-back-leaf.png) no-repeat 50% 50%/contain;
  }
  .fixed .btn-cta::before {
    left: 14px;
    scale: -1 1;
  }
  .fixed .btn-cta::after {
    right: 14px;
  }
}
/* パーツスタイル */
.logo-banner {
  position: relative;
}

.logo-banner-link {
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  -moz-column-gap: 17px;
       column-gap: 17px;
  padding-right: 80px;
  text-decoration: none;
}
.logo-banner-link::after {
  content: "";
  position: absolute;
  inset-block: 0;
  right: 0;
  display: block;
  width: 64px;
  margin-block: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--col-back-green) url(img_2025/icon-arrow.svg) no-repeat 50% 50%/13px;
  overflow: hidden;
}
.logo-banner-link:hover {
  opacity: 0.7;
}

.logo-banner-caption {
  color: var(--col-dark-green);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
}

@media screen and (max-width: 600px) {
  .logo-banner-link {
    grid-template-columns: 1fr;
  }
  .logo-banner-caption {
    font-size: 18px;
  }
}
.list-checked {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding-left: 0;
  list-style-type: none;
}

.list-checked-item {
  padding-bottom: 24px;
  padding-left: 32px;
  background: url(img_2025/check-green3.png) no-repeat 0 3px/28px;
  border-bottom: 2px dashed #C4DBCC;
  font-size: 18px;
  line-height: 1.2222222222;
}
.list-checked-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

@media screen and (max-width: 600px) {
  .list-checked-item {
    padding-bottom: 16px;
  }
}
.panel {
  position: relative;
  background-color: white;
  padding: 40px 32px;
  z-index: 0;
}
.panel + .panel {
  margin-top: 32px;
}
.panel-back-img + .panel {
  margin-top: -120px;
}
.panel:has(.panel-main-img) {
  margin-top: 48px;
  padding-top: 0;
}

.panel-shadow {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
}

.panel-back-img {
  position: relative;
  overflow: hidden;
  margin: 0;
}
.panel-back-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0) 50%, white 100%);
}
.panel-back-img img {
  width: 100%;
  height: auto;
}

.panel-main-img {
  margin: 0;
  text-align: center;
}
.panel-main-img img {
  position: relative;
  top: -48px;
  width: 100%;
  height: auto;
}

.panel-head {
  margin-bottom: 24px;
  text-align: center;
}
.panel-head .txt-back {
  margin-bottom: 10px;
  margin-inline: auto;
}

.panel-ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 10px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1923076923;
  text-align: center;
}
.panel-ttl.dash-bar-btm {
  padding-bottom: 20px;
}

.panel-ttl-em {
  font-size: 26px;
  font-style: normal;
}

.panel-ttl-small {
  font-size: 18px;
}

.panel-txt-box {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  font-size: 15px;
  line-height: 1.6;
}

.panel-hr {
  margin-block: 40px;
  border: dashed var(--col-dark-green);
  border-width: 0 0 1px;
}

@media screen and (max-width: 768px) {
  .sp-panel-wide {
    width: calc(100% - 40px);
  }
}
@media screen and (min-width: 601px) {
  .base-width .panel-back-img {
    margin-inline: -84px;
  }
}
@media screen and (max-width: 600px) {
  .panel {
    padding: 40px 20px;
  }
  .panel:has(.panel-main-img) {
    margin-top: 32px;
  }
  .panel-main-img img {
    top: -32px;
  }
  .panel-ttl.dash-bar-btm {
    padding-bottom: 0;
  }
  .panel-ttl.dash-bar-btm > span {
    padding-bottom: 20px;
  }
  .panel-ttl-small {
    font-size: 15px;
  }
  .panel-hr {
    margin-block: 32px;
  }
}