@charset "UTF-8";

/* ========================================
   LP hero
======================================== */
.p-LP-visual {
  background-color: #E5F6EC;
}

.p-LP-visual .l-inner {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: 0;
}

.p-LP-visual__image {
  margin: 0;
}

.p-LP-visual__image img {
  display: block;
  width: 100%;
  height: auto;
}

/* ========================================
   SP
======================================== */
@media (max-width: 767px) {
  .p-LP-visual {
    background-color: #dfe9e1;
  }

  .p-LP-visual .l-inner {
    width: 100%;
  }

  .p-LP-visual__image img {
    width: 100%;
    min-height: 240px;
    object-fit: cover;
    object-position: center;
  }
}

/* ========================================
   Tablet
======================================== */
@media (min-width: 768px) {
  .p-LP-visual .l-inner {
    width: min(100% - 40px, 800px);
  }

  .p-LP-visual__image {
    border-radius: 0;
    overflow: hidden;
  }

  .p-LP-visual__image img {
    width: 100%;
    height: auto;
  }
}

/* ========================================
   PC
======================================== */
@media (min-width: 1024px) {
  .p-LP-visual .l-inner {
    width: min(100% - 48px, 800px);
  }

  .p-LP-visual__image img {
    width: 100%;
    height: auto;
  }
}

/* ========================================
   LP features
======================================== */
.p-LP-features {
  padding: 0 0 56px;
}

.p-LP-features__lead {
  margin-inline: calc(50% - 50vw);
  padding: 18px 16px;
  background-color: #38b0a7;
  text-align: center;
}

.p-LP-features__lead p {
  margin: 0;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-LP-features__lead span {
  display: inline-block;
  padding: 0 6px;
  color: #f2bb3c;
  font-weight: 700;
  border: 1px solid rgba(242, 187, 60, 0.9);
}

.p-LP-features__text {
  padding: 36px 0 0;
  text-align: center;
}

.p-LP-features__text p {
  margin: 0;
  color: #5f5148;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2;
}

.p-LP-features__text p + p {
  margin-top: 2px;
}

.p-LP-features__title {
  padding-top: 48px;
  text-align: center;
}

.p-LP-features__title h2 {
  margin: 0;
  color: #5f5148;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-LP-features__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.p-LP-features__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 108px;
  padding: 18px 16px;
  background-color: #e7f2ec;
  border-radius: 6px;
  text-align: center;
}

.p-LP-features__sub {
  display: block;
  color: #6d6259;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-LP-features__main {
  margin: 4px 0 0;
  color: #5f5148;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.35;
}

/* ========================================
   tablet
======================================== */
@media screen and (min-width: 768px) {
  .p-LP-features {
    padding: 0 0 72px;
  }

  .p-LP-features__lead {
    padding: 22px 24px;
  }

  .p-LP-features__lead p {
    font-size: 2rem;
  }

  .p-LP-features__lead span {
    padding: 0 8px;
  }

  .p-LP-features__text {
    padding-top: 48px;
  }

  .p-LP-features__text p {
    font-size: 1rem;
    line-height: 1.9;
  }

  .p-LP-features__title {
    padding-top: 64px;
  }

  .p-LP-features__title h2 {
    font-size: 3rem;
  }

  .p-LP-features__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 36px;
  }

  .p-LP-features__item {
    min-height: 120px;
    padding: 20px 18px;
    border-radius: 8px;
  }

  .p-LP-features__sub {
    font-size: 1.5rem;
  }

  .p-LP-features__main {
    font-size: 2.5rem;
  }
}

/* ========================================
   pc
======================================== */
@media screen and (min-width: 1024px) {
  .p-LP-features {
    padding: 0 0 96px;
  }

  .p-LP-features__lead {
    padding: 26px 32px;
  }

  .p-LP-features__text {
    padding-top: 56px;
  }

  .p-LP-features__title {
    padding-top: 72px;
  }

  .p-LP-features__list {
    width: min(100%, 800px);
    margin: 40px auto 0;
    gap: 12px;
  }

  .p-LP-features__item {
    min-height: 118px;
    padding: 18px 20px;
  }

}

/* ========================================
   LP CTA
======================================== */
.p-LP-cta {
  padding: 48px 0 56px;
  background-color: #fff;
}

.p-LP-cta__label {
  margin: 0 0 20px;
  color: #6b5d52;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.04em;
}

.p-LP-cta__label::before,
.p-LP-cta__label::after {
  display: inline-block;
  color: inherit;
}

.p-LP-cta__label::before {
  content: "＼";
  margin-right: 0.5em;
}

.p-LP-cta__label::after {
  content: "／";
  margin-left: 0.5em;
}

.p-LP-cta__btn {
  display: block;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.p-LP-cta__image {
  margin: 0;
}

.p-LP-cta__image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-LP-cta__note {
    text-align: center;
    font-weight: 900;
    margin-top: 30px;
}

/* ========================================
   SP
======================================== */
@media screen and (max-width: 767px) {
  .p-LP-cta {
    padding: 40px 0 48px;
  }

  .p-LP-cta__label {
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .p-LP-cta__btn {
    max-width: 100%;
  }
}

/* ========================================
   Tablet
======================================== */
@media screen and (min-width: 768px) {
  .p-LP-cta {
    padding: 56px 0 64px;
  }

  .p-LP-cta__label {
    margin-bottom: 20px;
    font-size: 1rem;
  }

  .p-LP-cta__btn {
    max-width: 680px;
  }
}

/* ========================================
   PC
======================================== */
@media screen and (min-width: 1024px) {
  .p-LP-cta {
    padding: 64px 0 72px;
  }

  .p-LP-cta__label {
    margin-bottom: 24px;
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .p-LP-cta__btn {
    max-width: 700px;
  }
}

/* ========================================
   Hover
======================================== */
@media (hover: hover) and (pointer: fine) {
  .p-LP-cta__btn:hover {
    opacity: 0.9;
    transform: translateY(-4px);
  }
}

/* ========================================
   LP profile
======================================== */
.p-LP-profile {
  padding: 0 0 56px;
}

.p-LP-profile__lead {
  margin-inline: calc(50% - 50vw);
  padding: 18px 16px;
  background-color: #38b0a7;
  text-align: center;
}

.p-LP-profile__lead p {
  margin: 0;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
}

.p-LP-profile__lead span {
  display: inline-block;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #f2bb3c;
  font-weight: 700;
}

.p-LP-profile__image {
  margin: 0;
  overflow: hidden;
  border-radius: 0;
}

.p-LP-profile__image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-LP-profile__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.p-LP-profile__item {
  padding: 18px 16px;
  background-color: #e3efe8;
  text-align: center;
}

.p-LP-profile__label {
  margin: 0;
  color: #5f5148;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-LP-profile__text {
  margin: 4px 0 0;
  color: #5f5148;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: underline;
  text-decoration-color: #f2bb3c;
  text-decoration-thickness: 0.22em;
  text-underline-offset: -0.08em;
  text-decoration-skip-ink: none;
}

/* ========================================
   tablet
======================================== */
@media screen and (min-width: 768px) {
  .p-LP-profile {
    padding: 0 0 72px;
  }

  .p-LP-profile__lead {
    padding: 20px 24px;
  }

  .p-LP-profile__lead p {
    font-size: 2.5rem;
  }

  .p-LP-profile__content {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) 1fr;
    align-items: center;
  }

  .p-LP-profile__list {
    gap: 14px;
    background-color: #fff;
    margin-top: 0;
    padding: 20px;
  }

  .p-LP-profile__item {
    width: 100%;
    padding: 20px 16px;
  }

  .p-LP-profile__label {
    font-size: 1.5rem;
    line-height: 1.45;
  }

  .p-LP-profile__text {
    font-size: 1.5rem;
    line-height: 1.35;
  }
}

/* ========================================
   pc
======================================== */
@media screen and (min-width: 1024px) {
  .p-LP-profile {
    padding: 0 0 88px;
  }

  .p-LP-profile__lead {
    padding: 22px 32px;
  }


  .p-LP-profile__lead span {
    padding: 0 10px;
  }
  
  .p-LP-profile__image {
    width: auto;
  }

  .p-LP-profile__image img {
    width: min(100%, 820px);
    height: auto;
  }

  .p-LP-profile__list {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 340px;
    gap: 16px;
  }

  .p-LP-profile__item {
    padding: 24px 18px;
  }

  .p-LP-profile__label {
    font-size: 2rem;
    line-height: 1.45;
  }

  .p-LP-profile__text {
    font-size: 2rem;
    line-height: 1.35;
  }

}

/* ========================================
   LP price
======================================== */
.p-LP-price {
  padding: 48px 0 56px;
  background-color: #38b0a7;
}

.p-LP-price__title {
  text-align: center;
}

.p-LP-price__title h2 {
  margin: 0;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-LP-price__box {
  width: min(100%, 420px);
  margin: 24px auto 0;
  padding: 24px 20px 20px;
  background-color: #ffffff;
  text-align: center;
}

.p-LP-price__name {
  margin: 0;
  color: #5f5148;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-LP-price__price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 10px 0 0;
  color: #f57c00;
  line-height: 1;
}

.p-LP-price__num {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.p-LP-price__label {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.p-LP-price__unit {
  margin-left: 2px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.1;
}

.p-LP-price__tax {
  margin-left: 4px;
  font-size: 0.825rem;
  font-weight: 400;
  line-height: 1.4;
}

.p-LP-price__explain {
  width: fit-content;
  max-width: 100%;
  margin: 24px auto 0;
  padding-left: 1.2em;
  color: #ffffff;
}

.p-LP-price__item + .p-LP-price__item {
  margin-top: 10px;
}

.p-LP-price__text {
  font-size: 0.825rem;
  font-weight: 500;
  line-height: 1.6;
}

/* ========================================
   tablet
======================================== */
@media screen and (min-width: 768px) {
  .p-LP-price {
    padding: 64px 0 72px;
  }

  .p-LP-price__title h2 {
    font-size: 2rem;
  }

  .p-LP-price__box {
    width: min(100%, 520px);
    margin-top: 28px;
    padding: 28px 24px 24px;
  }

  .p-LP-price__name {
    font-size: 1.5rem;
  }

  .p-LP-price__price {
    margin-top: 12px;
  }

  .p-LP-price__num {
    font-size: 5rem;
  }

  .p-LP-price__unit {
    font-size: 2rem;
  }

  .p-LP-price__tax {
    font-size: 1.5rem;
  }

  .p-LP-price__explain {
    margin-top: 28px;
  }

  .p-LP-price__text {
    font-size: 1rem;
    line-height: 1.7;
  }
}

/* ========================================
   pc
======================================== */
@media screen and (min-width: 1024px) {
  .p-LP-price {
    padding: 72px 0 84px;
  }

  .p-LP-price__box {
    width: 560px;
    margin-top: 32px;
    padding: 30px 24px 24px;
  }

  .p-LP-price__explain {
    margin-top: 24px;
  }

}

/* ========================================
   LP qa
======================================== */
.p-LP-qa {
  padding: 48px 0 56px;
  background-color: #fff;
}

.p-LP-qa__title {
  margin: 0;
  color: #5f5148;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.p-LP-qa__list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px dashed #7f746c;
}

.p-LP-qa__item {
  padding: 18px 0;
}

.p-LP-qa__item + .p-LP-qa__item {
  border-top: 1px dashed rgba(95, 81, 72, 0.18);
}

/* question */
.p-LP-qa__question {
  display: grid;
  grid-template-columns: 48px 1fr 20px;
  align-items: center;
  column-gap: 14px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.p-LP-qa__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #ffffff;
  font-family: serif;
  font-size: 2rem;
  line-height: 1;
}

.p-LP-qa__icon--q {
  background-color: #4dc4bb;
}

.p-LP-qa__icon--a {
  background-color: #f2bb3c;
}

.p-LP-qa__text {
  color: #6a5d53;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

.p-LP-qa__toggle {
  position: relative;
  width: 20px;
  height: 20px;
  justify-self: end;
}

.p-LP-qa__toggle::before,
.p-LP-qa__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  background-color: #6a5d53;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.p-LP-qa__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* answer accordion */
.p-LP-qa__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.p-LP-qa__answer-inner {
  overflow: hidden;
}

.p-LP-qa__answer-head {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  column-gap: 14px;
  padding-top: 18px;
}

.p-LP-qa__answer-lead {
  margin: 0;
  color: #f2bb3c;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}

.p-LP-qa__answer-body {
  margin-left: 62px;
  padding-top: 14px;
}

.p-LP-qa__answer-body p {
  margin: 0;
  color: #4f666d;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9;
}

.p-LP-qa__answer-body p + p {
  margin-top: 2px;
}

/* open state */
.p-LP-qa__item.is-open .p-LP-qa__answer {
  grid-template-rows: 1fr;
}

.p-LP-qa__item.is-open .p-LP-qa__toggle::after {
  opacity: 0;
}

/* hover / focus */
@media (hover: hover) and (pointer: fine) {
  .p-LP-qa__question:hover .p-LP-qa__text {
    opacity: 0.75;
  }
}

.p-LP-qa__question:focus-visible {
  outline: 2px solid #38b0a7;
  outline-offset: 6px;
}

/* ========================================
   tablet
======================================== */
@media screen and (min-width: 768px) {
  .p-LP-qa {
    padding: 64px 0 72px;
  }

  .p-LP-qa__title {
    font-size: 2rem;
  }

  .p-LP-qa__list {
    margin-top: 36px;
  }

  .p-LP-qa__item {
    padding: 22px 0;
  }

  .p-LP-qa__question {
    grid-template-columns: 58px 1fr 24px;
    column-gap: 18px;
  }

  .p-LP-qa__icon {
    width: 58px;
    height: 58px;
    font-size: 2rem;
  }

  .p-LP-qa__text {
    font-size: 1.5rem;
    line-height: 1.55;
  }

  .p-LP-qa__toggle {
    width: 24px;
    height: 24px;
  }

  .p-LP-qa__toggle::before,
  .p-LP-qa__toggle::after {
    width: 16px;
  }

  .p-LP-qa__answer-head {
    grid-template-columns: 58px 1fr;
    column-gap: 18px;
    padding-top: 20px;
  }

  .p-LP-qa__answer-lead {
    font-size: 1.5rem;
  }

  .p-LP-qa__answer-body {
    margin-left: 76px;
    padding-top: 16px;
  }

  .p-LP-qa__answer-body p {
    font-size: 1rem;
    line-height: 1.85;
  }
}

/* ========================================
   pc
======================================== */
@media screen and (min-width: 1024px) {
  .p-LP-qa {
    padding: 72px 0 84px;
  }

  .p-LP-qa__list {
    width: min(100%, 1000px);
    margin: 40px auto 0;
  }

  .p-LP-qa__text {
    font-size: 2rem;
  }

  .p-LP-qa__answer-lead {
    font-size: 2rem;
  }

}

/* ========================================
   LP table
======================================== */
.p-LP-table {
  padding: 48px 0 56px;
  background-color: #f6f2eb;
}

.p-LP-table__heading {
  text-align: center;
}

.p-LP-table__sub {
  margin: 0;
  color: #5f5148;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.p-LP-table__title {
  margin: 8px 0 0;
  color: #5f5148;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.25;
}

.p-LP-table__image {
  width: min(100%, 680px);
  margin: 28px auto 0;
}

.p-LP-table__image img {
  display: block;
  width: 100%;
  height: auto;
}

/* ========================================
   SP
======================================== */
@media screen and (max-width: 767px) {
  .p-LP-table {
    padding: 40px 0 48px;
  }

  .p-LP-table__sub {
    font-size: 1rem;
  }

  .p-LP-table__title {
    margin-top: 6px;
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .p-LP-table__image {
    width: 100%;
    margin-top: 22px;
  }
}

/* ========================================
   tablet
======================================== */
@media screen and (min-width: 768px) {
  .p-LP-table {
    padding: 64px 0 72px;
  }

  .p-LP-table__sub {
    font-size: 2rem;
  }

  .p-LP-table__title {
    margin-top: 8px;
    font-size: 3rem;
    line-height: 1.2;
  }

  .p-LP-table__image {
    width: min(100%, 760px);
    margin-top: 32px;
  }
}

/* ========================================
   PC
======================================== */
@media screen and (min-width: 1024px) {
  .p-LP-table {
    padding: 72px 0 84px;
  }

  .p-LP-table__image {
    width: 640px;
    margin-top: 34px;
  }
}

/* ========================================
   LP director
======================================== */
.p-LP-director {
  padding: 48px 0 56px;
  background-color: #fff;
}

.p-LP-director__title {
  margin: 0;
  color: #5f5148;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.p-LP-director__grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 28px;
}

.p-LP-director__left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-LP-director__image {
  width: min(100%, 260px);
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
}

.p-LP-director__image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-LP-director__box {
  margin-top: 16px;
  text-align: center;
}

.p-LP-director__role,
.p-LP-director__name {
  margin: 0;
  color: #5f5148;
  font-weight: 700;
  line-height: 1.5;
}

.p-LP-director__role {
  font-size: 1rem;
}

.p-LP-director__name {
  margin-top: 2px;
  font-size: 2rem;
}

.p-LP-director__right {
  width: 100%;
}

.p-LP-director__heading {
  margin: 0 0 16px;
  color: #5f5148;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}

.p-LP-director__list {
  margin: 0;
}

.p-LP-director__row {
  display: grid;
  grid-template-columns: 5.5em 1fr;
  column-gap: 12px;
  align-items: start;
}

.p-LP-director__row + .p-LP-director__row {
  margin-top: 10px;
}

.p-LP-director__row dt,
.p-LP-director__row dd {
  margin: 0;
  color: #5f5148;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.p-LP-director__row dt {
  white-space: nowrap;
}

/* ========================================
   tablet
======================================== */
@media screen and (min-width: 768px) {
  .p-LP-director {
    padding: 64px 0 72px;
  }

  .p-LP-director__title {
    font-size: 2rem;
  }

  .p-LP-director__grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    margin-top: 36px;
  }

  .p-LP-director__left {
    width: 240px;
    flex-shrink: 0;
    align-items: flex-start;
  }

  .p-LP-director__image {
    width: 100%;
    border-radius: 20px;
  }

  .p-LP-director__box {
    width: 100%;
    margin-top: 18px;
    text-align: left;
  }

  .p-LP-director__role {
    font-size: 1.5rem;
  }

  .p-LP-director__name {
    font-size: 1.5rem;
  }

  .p-LP-director__right {
    flex: 1;
    min-width: 0;
  }

  .p-LP-director__heading {
    margin-bottom: 18px;
    font-size: 1.5rem;
  }

  .p-LP-director__row {
    grid-template-columns: 6em 1fr;
    column-gap: 18px;
  }

  .p-LP-director__row + .p-LP-director__row {
    margin-top: 12px;
  }

  .p-LP-director__row dt,
  .p-LP-director__row dd {
    font-size: 1rem;
    line-height: 1.65;
  }
}

/* ========================================
   pc
======================================== */
@media screen and (min-width: 1024px) {
  .p-LP-director {
    padding: 72px 0 84px;
  }

  .p-LP-director__grid {
    width: min(100%, 780px);
    margin: 40px auto 0;
    gap: 56px;
  }

  .p-LP-director__left {
    width: 220px;
  }

  .p-LP-director__image {
    width: 220px;
    border-radius: 18px;
  }

  .p-LP-director__box {
    margin-top: 20px;
  }

  .p-LP-director__row {
    grid-template-columns: 5.5em 1fr;
    column-gap: 18px;
  }

  .p-LP-director__row dt,
  .p-LP-director__row dd {
    font-size: 1.5rem;
    line-height: 1.6;
  }

  .p-LP-director__row + .p-LP-director__row {
    margin-top: 8px;
  }
}