@charset "utf-8";

.header__logo {
  margin-top: 8px;
  width: 120px;
  height: auto;
}

.header__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.header {
  margin-bottom: 100px;

}



.reserveBtn {
  position: fixed;
  right: 0;
  top: 30%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  background-color: var(--primary-orange);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  padding: 30px 20px;
  border-radius: 25px 0 0 25px;
  transition: background-color 0.3s;
  z-index: 1000;
  text-orientation: upright;
  letter-spacing: 0.2em;

}

.reserveBtn:hover {
  background-color: #FF8769;
}

.reserveBtn__icon {
  width: 1.1em;
  height: auto;
  vertical-align: middle;
  transform: translateX(-0.2em);
  margin-top: -5px;
}

.reserveBtn:hover {
  background-color: #FF8769;
}

.section__title {
  z-index: 1000;
}


.plan__span {
  font-size: 4rem;
  font-weight: 700;
  margin: 0 0.3%;
}


.section__txt {
  margin-bottom: 120px;
}




@media (max-width: 767px) {

  .header__logo img {
    width: 100px;
    height: auto;
    margin-top: 5px;
    transition: none;
  }

  .header.shrink .header__logo img {
    display: none;

  }

  .reserveBtn {
    position: fixed;
    bottom: 0;
    top: auto;
    right: 0;
    left: 0;
    transform: none;
    margin: 0 auto;
    width: 55%;
    height: 50px;
    border-radius: 20px 20px 0 0;
    background-color: var(--primary-orange);
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    z-index: 9999;
    padding: 0;
    letter-spacing: 0.1em;
      max-width: 300px;
  }

  .reserveBtn__icon {
    width: 1em;
    height: auto;
    margin-left: 0.5em;
    transform: translateY(0.2em);
  }

  .section__txt {
    font-size: 1.6rem;
    padding-top: 20px;
    margin: 0 auto;
  }

  .plan__span {
    font-size: 30px;
    font-weight: 400;
  }


}

@media (max-width: 1110px) and (min-width: 768px) {
  .inner {
    padding-right: 30px;
  }
}



/* Plan&Price */

.section--plan {
  margin-top: 180px;
}

.plan__name {
  color: #E74B1A;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.8;
}

.plan__name-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 50px;

}

.plan__name-line {
  /* width: 30%; */
  height: auto;
  max-width: 430px;
}


.plan__img {
  width: 35%;
  max-width: 363px;
  height: auto;
}

.plan__txt {
  color: #4F4F4F;
  font-size: 2.0rem;
  line-height: 2.3;
}

.plan__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8%;

}

.plan__name {
  white-space: nowrap;   
}



@media (max-width: 1285px) and (min-width: 768px) {
  .plan__name-wrap {
    gap: 10px; 
  }

  .plan__name-line {
    max-width: 420px;    
    width: 32%;
  }

  .plan__name {
    font-size: 2.8rem;    
  }

  .section__txt {
  margin-bottom: 80px;
}
}

@media (max-width: 820px) {
  .br-820{
display: none;
}
}

@media (max-width: 1015px) {
.br-1015{
display: none;
}

}



/* 表 */

.table {
  display: flex;
  flex-direction: column;
  border-collapse: collapse;
  border: 5px solid #F8F1EE;
  font-size: 2rem;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  border-collapse: collapse;

}

/* 各行をグリッドにする */
.table__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 5px solid #F8F1EE;
}

/* 各セル */
.table__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-right: 5px solid #F8F1EE;
  min-height: 82px;
}

/* 最後のセルだけ右線を消す */
.table__cell:last-child {
  border-right: none;
}


@media (max-width: 767px) {

.table__row {
  border-bottom: 3px solid #F8F1EE;
}

/* 各セル */
.table__cell {
  border-right: 3px solid #F8F1EE;
}



}


/* ヘッダー行 */
.table__row--head {
  background-color: #F6F1EC;
  font-weight: 500;
}


.table__row:nth-child(1) {
  background-color: #A87A67;
  color: #FFF;
}

.table__row:nth-child(2) .table__cell:nth-child(1),
.table__row:nth-child(3) .table__cell:nth-child(1) {
  background-color: #EBE0DB;
}

.table__row:nth-child(2) .table__cell:nth-child(2),
.table__row:nth-child(2) .table__cell:nth-child(3),
.table__row:nth-child(3) .table__cell:nth-child(2),
.table__row:nth-child(3) .table__cell:nth-child(3),
.table__row:nth-child(4) {
  background-color: #FFF;
}

.table__note {
  display: flex;
  padding: 20px 50px;
  background-color: #FFF;
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: start;
  min-height: 82px;
  align-items: center;
  justify-content: start;
}

.table__note p {
  margin: 0;
}

.num {
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.table--guide {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 100px;
}

.table--guide .table__row {
  grid-template-columns: 1fr 2fr;
}

.table--guide .table__row--head {
  grid-template-columns: 1fr;
}


.table--guide .table__row--head,
.table--guide .table__row .table__cell:first-child {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.table--guide .table__row .table__cell:nth-child(2) {
  justify-content: flex-start;
  align-items: center;
  text-align: left;
}

.table--oyako {
  margin-top: 50px;
  margin-bottom: 10px;
}



.table--dropincare {
  margin-top: 50px;
}

.section--plan {
  position: relative;
  padding-bottom: 100px;
}

.sample_price {
  font-size: 1.6rem;
  padding: 0 13px 100px;
}

.custom-shape-divider-bottom-1760285520 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: -1;
}

.custom-shape-divider-bottom-1760285520 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 118px;
}

.custom-shape-divider-bottom-1760285520 .shape-fill {
  fill: #FFFFFF;
}

.br-sp {
  display: none;

}

.table--guide .table__row:last-child {
  border-bottom: none; 
}

@media (max-width: 767px) {

  .section--plan {
  margin-top: 140px;
}


  .plan__content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .plan__img {
    width: 80%;
    max-width: 300px;
    height: auto;
  }

  .plan__txt {
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.8;
    text-align: left;
    width: 80%;
  }

  .plan__name-wrap {
    flex-direction: column;
    gap: 10px;
    margin-top: 50px;
  }

  .plan__name-line {
    width: 60%;
    max-width: 200px;
  }

  .plan__name-line:first-child {
    display: none;
  }

  .plan__name {
    font-size: 2.4rem;
  }

  /* 表 */
  .table {
    font-size: 1.6rem;
    max-width: 95%;
    margin: 0 auto;
  }

  .table__note {
    font-size: 1.6rem;
    padding: 10px 5px;
  }

  .table__cell {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-direction: row;
  }

  .table__row:not(.table__row--head) .table__cell:nth-child(2),
  .table__row:not(.table__row--head) .table__cell:nth-child(3) {
    flex-direction: column;
    gap: 2px;
  }

  .num {
    font-family: "Inter", sans-serif;
    font-weight: 500;
  }

  .tax {
    font-size: 1.4rem;
    color: #555;
  }

  .table__cell {
    align-items: center;
    justify-content: center;

  }

  .table--guide .table__row .table__cell:nth-child(2) {
    justify-content: center;
  }

  .table--guide {
    margin-top: 30px;
  }

  .table--dropincare {
    margin-top: 20px;
  }

  .table--oyako {
    margin-top: 20px;
  }

  .custom-shape-divider-bottom-1760285520 svg {
    height: 50px;
  }

  .table--guide .table__row .table__cell:nth-child(2) {
    align-items: flex-start !important;      
    text-align: left !important;
  }
}

/* steps */
.section--steps {
  background-color: #fff;
  padding-bottom: 50px;
  padding-top: 100px;
}

.footer {
  background-color: #F8F1EE;
}

.custom-shape-divider-top-1760021289 .shape-fill {
  fill: #FFF;
}

.steps__item {
  clip-path: url(#squircle);
  width: 150px;
  height: 150px;
  background-color: #A87A67;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
}

.steps__list {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* gap: 24px;  */
}

.steps__arrow {
  width: 24px;
  height: auto;
  position: relative;
  top: -50px;
}

.steps__item--first {
  background-color: #EBE0DB;
  color: #A87A67;

}

.steps__item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 250px;
  justify-content: flex-start;
  gap: 10px;
}

.steps__note {
  margin-top: 8px;
  font-size: 1.6rem;
  color: #333;
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 1003px) {
  .steps__list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    padding-left: 5%;
    margin-top: 20px;
  }

  .steps__item-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 90%;
    max-width: 360px;
    margin: 0 auto;
    height: 100px;
  }

  .steps__item {
    width: 120px;
    height: 120px;
    font-size: 1.4rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .steps__note {
    font-size: 1.4rem;
    text-align: left;
    line-height: 1.5;
    flex: 1;
  }

  .steps__arrow {
    transform: rotate(90deg);
    width: 15px;
    height: auto;
    margin: 0 auto;
    position: relative;
    left: -20px;
    top: 0;
  }

  /* 最後のarrowは非表示 */
  .steps__item-wrapper:last-of-type+.steps__arrow {
    display: none;
  }
}