@charset "UTF-8";
/*
 * 参考
 * https: //github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https: //css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https: //webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 1050px) {
  html {
    font-size: 1.5238095238vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

html {
  scroll-behavior: smooth; /* 1行だけでスムーススクロールできる！ */
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #2F4858;
  background-color: #F9F6F2;
  overflow-x: hidden;
  height: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  a:hover {
    opacity: 1;
  }
}

.inner {
  margin: auto;
  padding: 0 20px;
  max-width: 640px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 25px;
    max-width: 1050px;
  }
}

.layout-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.section-title {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}

.section-title--contact {
  color: #fff;
}

.section-title::after {
  content: "";
  display: block;
  width: 4.375rem;
  height: 2px;
  background-color: #DA7D7D;
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
}

.section-title--contact::after {
  background-color: #fff;
}

.section-title__sub {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.15em;
  color: #DA7D7D;
  font-family: "Taviraj", serif;
}

.section-title__sub--contact {
  color: #fff;
}

.section-title__main {
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #2F4858;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .section-title__main {
    font-size: 1.875rem;
  }
}

.section-title__main--contact {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .section-title__main--privacy {
    font-size: 1.75rem;
  }
}

.comparison {
  margin-top: -1.875rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .comparison {
    margin-top: -1.25rem;
  }
}

.comparison__inner {
  max-width: 77.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .comparison__inner {
    max-width: 40.625rem;
    padding: 0 1.25rem;
  }
}

.comparison__header {
  text-align: center;
}

.comparison__title {
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.4;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  letter-spacing: 0.07em;
  display: inline-block;
  padding: 1.875rem 3.125rem;
  background-color: #fff;
  border-radius: 1.25rem;
  width: 100%;
  max-width: 44.375rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .comparison__title {
    padding: 1.25rem 0rem;
    font-size: 1.25rem;
  }
}

.comparison__title::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 40px solid transparent;
  border-left: 40px solid transparent;
  border-top: 35px solid #fff;
  border-bottom: 0;
}

.comparison__highlight {
  color: #DA7D7D;
}

.comparison__text {
  font-size: 2.125rem;
  font-weight: 600;
  display: block;
}
@media screen and (max-width: 768px) {
  .comparison__text {
    font-size: 1.625rem;
  }
}

.comparison__content-wrap {
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .comparison__content-wrap {
    margin-top: 2.375rem;
  }
}

.comparison__content__inner {
  max-width: 80rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .comparison__content__inner {
    max-width: 40.625rem;
    padding: 0 0.625rem;
  }
}

.comparison__content {
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .comparison__content {
    flex-direction: column;
  }
}

.comparison__image {
  width: 100%;
  max-width: 38.125rem;
}
@media screen and (max-width: 768px) {
  .comparison__image {
    max-width: 100%;
  }
}

.comparison__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 610/563;
}
@media screen and (max-width: 768px) {
  .comparison__image img {
    aspect-ratio: 355/327;
  }
}

.comparison__search {
  text-align: right;
  margin-top: 0.8125rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
  font-family: "Noto Serif JP", serif;
  color: #676767;
}

.conditions {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  background-color: #fff;
}

.conditions__inner {
  max-width: 69.375rem;
  margin: 0 auto;
}

.conditions__content {
  display: flex;
  align-items: center;
  margin-top: 6.625rem;
}
@media screen and (max-width: 768px) {
  .conditions__content {
    flex-direction: column;
  }
}

.conditions__content-item-wrap {
  padding: 2.5rem 5.625rem;
  padding-left: clamp(40px, 6.3vw, 90px);
  padding-right: clamp(40px, 6.3vw, 90px);
  background-color: #F9F6F2;
  border-radius: 3.125rem 0 0 3.125rem;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .conditions__content-item-wrap {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .conditions__content-item-wrap {
    padding: 1.25rem 1.25rem;
    border-radius: 0;
  }
}

.conditions__content-item + .conditions__content-item {
  margin-top: 1.25rem;
}

.conditions__content-title {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 2;
  letter-spacing: 0.15em;
}

.conditions__content-description {
  font-weight: 500;
  font-size: clamp(16px, 1.85vw, 20px);
  line-height: 2;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
  .conditions__content-description {
    font-size: 1rem;
  }
}

.conditions__content-description span {
  font-weight: 700;
  color: #DA7D7D;
}

.conditions__content-image {
  width: 100%;
  border-radius: 0 3.3125rem 3.3125rem 0;
  max-width: 16.6875rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .conditions__content-image {
    max-width: 100%;
    border-radius: 0;
  }
}

.conditions__content-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 267/360;
}

.consultant {
  padding-top: 5.625rem;
  padding-bottom: 9.0625rem;
}
@media screen and (max-width: 768px) {
  .consultant {
    padding-top: 3.75rem;
    padding-bottom: 6.25rem;
  }
}

.consultant__inner {
  max-width: 69.375rem;
}

.consultant__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 7.8125rem;
}
@media screen and (max-width: 768px) {
  .consultant__content {
    margin-top: 3.75rem;
    flex-direction: column;
  }
}

.consultant__content-image {
  width: 100%;
  max-width: 21.875rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .consultant__content-image {
    max-width: 100%;
  }
}

.consultant__content-image::before {
  content: "";
  position: absolute;
  bottom: -6.25rem;
  left: -6.25rem;
  width: 23.75rem;
  height: 23.75rem;
  background-color: rgba(255, 233, 227, 0.9);
  border-radius: 50%;
  z-index: -1;
  filter: blur(40px);
}

.consultant__content-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1000/1200;
}

.consultant__content-block {
  margin-left: 1.25rem;
  max-width: 37.1875rem;
}
@media screen and (max-width: 768px) {
  .consultant__content-block {
    margin-left: 0rem;
    max-width: 100%;
  }
}

.consultant__content-name {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
  color: #DA7D7D;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .consultant__content-name {
    font-size: 2rem;
    flex-direction: column;
  }
}

.consultant__content-name span {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
  color: #2F4858;
  margin-left: 0.8125rem;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .consultant__content-name span {
    font-size: 1rem;
    margin-left: 0rem;
  }
}

.consultant__content-message {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.15em;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .consultant__content-message {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.consultant__content-description {
  font-weight: 400;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.15em;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .consultant__content-description {
    margin-top: 1.25rem;
    font-size: 0.875rem;
  }
}

.contact {
  padding-top: 4.6875rem;
  padding-bottom: 6.25rem;
  background-image: url(./../images/contact/contact__bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #4A687A;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}

.contact__campaign {
  width: 100%;
  position: absolute;
  top: -16.5625rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .contact__campaign {
    top: -15rem;
    max-width: 90%;
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
}
.contact__campaign-text-wrap {
  position: relative;
  text-align: center;
  padding: 2.5rem 0.9375rem 2.8125rem;
  background-color: #DA7D7D;
  border-radius: 2.8125rem;
  margin: 0 auto;
  max-width: 56.875rem;
  width: 100%;
}

.contact__campaign-text-wrap::before {
  content: "";
  position: absolute;
  top: -2.1875rem;
  left: 50%;
  transform: translateX(-213%);
  width: 14.8125rem;
  height: 6.0625rem;
  background-image: url(../images/campaign/campaign-ribbon.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .contact__campaign-text-wrap::before {
    left: -0.625rem;
    top: -1.25rem;
    width: 7.5rem;
    transform: translateX(0);
    height: 3.75rem;
  }
}
@media screen and (max-width: 375px) {
  .contact__campaign-text-wrap::before {
    left: 50%;
    top: -0.625rem;
    width: 7.5rem;
    transform: translateX(-145%);
    height: 2.5rem;
  }
}

.contact__campaign-text-wrap::after {
  content: "";
  position: absolute;
  bottom: -3.125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 80px solid transparent;
  border-left: 80px solid transparent;
  border-top: 60px solid #DA7D7D;
  border-bottom: 0;
}
@media screen and (max-width: 768px) {
  .contact__campaign-text-wrap::after {
    bottom: -2.4375rem;
    border-right: 60px solid transparent;
    border-left: 60px solid transparent;
    border-top: 40px solid #DA7D7D;
  }
}

.contact__campaign-subtext {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__campaign-subtext p {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
  position: relative;
  margin-left: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .contact__campaign-subtext p {
    font-size: clamp(10px, 1.25vw, 20px);
  }
}
@media screen and (max-width: 375px) {
  .contact__campaign-subtext p {
    font-size: 0.625rem;
  }
}

.contact__campaign-subtext img {
  width: 1.4375rem;
  height: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .contact__campaign-subtext img {
    width: 3.15vw;
    height: 3.5vw;
  }
}

.contact__campaign-maintext {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #FFF0B0;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: inline;
  background-image: linear-gradient(to right, #FFF0B0 3px, transparent 3px);
  background-size: 10px 3px;
  background-repeat: repeat-x;
  background-position: left bottom;
  padding-bottom: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .contact__campaign-maintext {
    font-size: clamp(15px, 4.25vw, 40px);
  }
}
@media screen and (max-width: 375px) {
  .contact__campaign-maintext {
    font-size: 0.875rem;
  }
}

.contact__campaign-description {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .contact__campaign-description {
    font-size: clamp(14px, 1.25vw, 20px);
  }
}
@media screen and (max-width: 375px) {
  .contact__campaign-description {
    font-size: 0.75rem;
  }
}

.contact__inner {
  max-width: 68.75rem;
  margin: 0 auto;
}

.contact__content {
  position: relative;
  text-align: center;
}

.contact__text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
  position: absolute;
  top: -4.375rem;
  left: 50%;
  transform: translateX(-120%);
}
@media screen and (max-width: 768px) {
  .contact__text {
    width: 100%;
    top: -5rem;
    transform: translateX(-50%);
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 375px) {
  .contact__text {
    font-size: 1.125rem;
  }
}

.contact__text span {
  display: block;
  font-size: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .contact__text span {
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 375px) {
  .contact__text span {
    font-size: 0.6875rem;
  }
}

.contact__button-wrap {
  margin-top: 7.5rem;
  display: flex;
  justify-content: center;
  gap: 3.75rem;
}
@media screen and (max-width: 768px) {
  .contact__button-wrap {
    flex-direction: column;
    align-items: center;
    margin-top: 10rem;
    gap: 1.875rem;
  }
}

.consultation-btn-wrap {
  display: flex;
  flex-direction: column;
}

.contact__button {
  display: inline-block;
  padding: 1.75rem 1.875rem;
  border-radius: 0.625rem;
  background-color: #fff;
  border-radius: 3.125rem;
  width: 100%;
  max-width: 31.25rem;
}

.contact__button-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.contact__button-icon {
  max-width: 1.625rem;
}

.contact__button-icon img {
  width: 100%;
  height: auto;
  aspect-ratio: 26/30;
}

.contact__button-text {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  color: #DA7D7D;
}
@media screen and (max-width: 768px) {
  .contact__button-text {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 375px) {
  .contact__button-text {
    font-size: 1.125rem;
  }
}

.effect {
  margin-top: 10.9375rem;
  background-image: url(./../images/effect/effect-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 6.25rem;
  padding-bottom: 11.875rem;
}
@media screen and (max-width: 768px) {
  .effect {
    margin-top: 0rem;
    padding-bottom: 6.25rem;
  }
}

.effect__inner {
  max-width: 74.375rem;
  margin: 0 auto;
}

.effect__header {
  text-align: center;
  position: relative;
}

.effect__header-bg {
  position: absolute;
  top: 0.625rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 32.9375rem;
  width: 100%;
}

.effect__header-bg img {
  width: 100%;
  height: auto;
  aspect-ratio: 527/113;
}

.effect__subtitle {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.15em;
  color: #2F4858;
  font-family: "Taviraj", serif;
  display: inline-block;
  background-color: #fff;
  padding: 0rem 0.3125rem;
  position: relative;
  z-index: 1;
}

.effect__title {
  font-weight: 500;
  font-size: 3.125rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #2F4858;
  font-family: "Noto Serif JP", serif;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .effect__title {
    font-size: clamp(30px, 7.5vw, 50px);
  }
}
@media screen and (max-width: 375px) {
  .effect__title {
    font-size: 1.875rem;
  }
}

.effect__title span {
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  .effect__title span {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 375px) {
  .effect__title span {
    font-size: 1.25rem;
  }
}

.effect__header-deco {
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 4.5rem;
}

.effect__header-deco img {
  width: 100%;
  height: auto;
  aspect-ratio: 72/27.55;
}

.effect__list {
  max-width: 71.25rem;
  margin: 0 auto;
  margin-top: 3.75rem;
}

.effect__item {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .effect__item {
    flex-direction: column;
    gap: 1.875rem;
  }
}

@media screen and (max-width: 768px) {
  .effect__item:nth-child(2) {
    flex-direction: column-reverse;
  }
}

.effect__item--01 {
  padding: 0 3.75rem 0 2.5rem;
}
@media screen and (max-width: 1160px) {
  .effect__item--01 {
    padding: 0;
  }
}

.effect__item--02 {
  padding-left: 2.5rem;
}
@media screen and (max-width: 1160px) {
  .effect__item--02 {
    padding-left: 0;
    gap: 0.625rem;
  }
}
@media screen and (max-width: 768px) {
  .effect__item--02 {
    gap: 1.875rem;
  }
}

.effect__item--03 {
  padding-left: 2.5rem;
  padding-right: 7.5rem;
}
@media screen and (max-width: 1160px) {
  .effect__item--03 {
    padding-left: 0;
    padding-right: 0;
  }
}

.effect__item + .effect__item {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .effect__item + .effect__item {
    margin-top: 3.75rem;
  }
}

@media screen and (max-width: 768px) {
  .effect__item-content {
    text-align: center;
  }
}

.effect__item-content--02 {
  padding-right: 1.25rem;
}
@media screen and (max-width: 1160px) {
  .effect__item-content--02 {
    padding-right: 0;
  }
}

.effect__item-title-wrap {
  display: flex;
  align-items: center;
  gap: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .effect__item-title-wrap {
    justify-content: center;
    gap: 1.25rem;
  }
}
@media screen and (max-width: 375px) {
  .effect__item-title-wrap {
    gap: 0.625rem;
  }
}

.effect__item-number {
  font-weight: 400;
  font-family: "Taviraj", serif;
  font-size: 5.625rem;
  line-height: 1.6;
  color: #2F4858;
}
@media screen and (max-width: 768px) {
  .effect__item-number {
    font-size: clamp(30px, 7.5vw, 90px);
  }
}

.effect__item-img--01 {
  width: 100%;
  max-width: 28.625rem;
}

.effect__item-img--01 img {
  width: 100%;
  height: auto;
  aspect-ratio: 458/280;
}

.effect__item-img--02 {
  width: 100%;
  max-width: 31.25rem;
}

.effect__item-img--02 img {
  width: 100%;
  height: auto;
  aspect-ratio: 500/227;
}

.effect__item-img--03 {
  width: 100%;
  max-width: 24.5rem;
}

.effect__item-img--03 img {
  width: 100%;
  height: auto;
  aspect-ratio: 392/306;
}

.effect__item-title {
  font-weight: 600;
  font-size: 1.875rem;
  line-height: 1.2;
  letter-spacing: 0.15em;
  color: #DA7D7D;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 1160px) {
  .effect__item-title {
    font-size: 1.6875rem;
  }
}
@media screen and (max-width: 768px) {
  .effect__item-title {
    font-size: clamp(17px, 4.5vw, 34px);
  }
}

.effect__item-title--01 {
  font-size: 2.125rem;
}
@media screen and (max-width: 768px) {
  .effect__item-title--01 {
    font-size: clamp(17px, 4.5vw, 34px);
  }
}

.effect__item-title::after {
  content: "";
  display: block;
  width: 5.625rem;
  height: 4.375rem;
  background-image: url(./../images/effect/effect__text-deco.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -0.75rem;
  right: -3.5rem;
}
@media screen and (max-width: 1160px) {
  .effect__item-title::after {
    width: 3.125rem;
    height: 3.75rem;
    top: -0.4375rem;
    right: -1.375rem;
  }
}
@media screen and (max-width: 768px) {
  .effect__item-title::after {
    width: 3.125rem;
    height: 3.75rem;
    top: -1rem;
    right: -2rem;
  }
}
@media screen and (max-width: 375px) {
  .effect__item-title::after {
    width: 1.875rem;
    height: 2.5rem;
    top: -1rem;
    right: -1.375rem;
  }
}

.effect__item-title--01::after {
  width: 5.625rem;
  height: 4.375rem;
  top: -0.75rem;
  right: -3.5rem;
}
@media screen and (max-width: 1160px) {
  .effect__item-title--01::after {
    width: 3.125rem;
    height: 3.75rem;
    top: -0.75rem;
    right: -1.375rem;
  }
}
@media screen and (max-width: 768px) {
  .effect__item-title--01::after {
    width: 3.125rem;
    height: 3.75rem;
    top: 0rem;
    right: -2rem;
  }
}
@media screen and (max-width: 375px) {
  .effect__item-title--01::after {
    width: 1.875rem;
    height: 2.5rem;
    top: 0.125rem;
    right: -1.375rem;
  }
}

.effect__item-title span {
  color: #2F4858;
  font-size: 1.375rem;
}
@media screen and (max-width: 768px) {
  .effect__item-title span {
    font-size: 1.125rem;
  }
}

.effect__item-description {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.15em;
  background-color: #2F4858;
  color: #fff;
  padding: 0.625rem 0.625rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .effect__item-description {
    margin-top: 0.625rem;
    padding: 0.3125rem 0.3125rem;
    font-size: clamp(14px, 3.5vw, 20px);
  }
}
@media screen and (max-width: 375px) {
  .effect__item-description {
    font-size: 0.875rem;
  }
}

.effect__item-description:nth-child(2n+1) {
  margin-top: -0.0625rem;
}

@media screen and (max-width: 768px) {
  .effect__item-description--01 {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .effect__item-description--02 {
    display: none;
  }
}

.effect__item-description--03 {
  display: none;
}
@media screen and (max-width: 768px) {
  .effect__item-description--03 {
    display: block;
  }
}

.effect__item-description--04 {
  display: none;
}
@media screen and (max-width: 768px) {
  .effect__item-description--04 {
    display: block;
  }
}

.flow {
  padding-top: 5.3125rem;
  padding-bottom: 6.25rem;
  background-color: #fff;
}

.flow__inner {
  max-width: 69.375rem;
  margin: 0 auto;
}

.flow__content {
  margin-top: 4.75rem;
  position: relative;
}

.flow__content:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1.25rem;
  height: 90%;
  background-color: #F4F0F0;
}

.flow__content-heading {
  font-size: 3.125rem;
  font-weight: 600;
  font-family: "Taviraj", serif;
  line-height: 1.8;
  letter-spacing: 0.15em;
  color: #DA7D7D;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .flow__content-heading {
    font-size: 2.1875rem;
  }
}

.flow__content-heading--sub {
  margin-top: 2.8125rem;
}

.flow__content-heading span {
  font-size: 1.75rem;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .flow__content-heading span {
    font-size: 1.25rem;
  }
}

.flow__content-sub-heading {
  font-size: 1.125rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .flow__content-sub-heading {
    font-size: 1rem;
  }
}

.flow__content-item {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 7.5rem;
  background-color: #F3EED9;
  padding-left: 3.75rem;
  padding-right: 4.375rem;
  border-radius: 1.875rem;
}
@media screen and (max-width: 768px) {
  .flow__content-item {
    padding-top: 0.625rem;
    height: 100%;
    padding-bottom: 0.625rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: 375px) {
  .flow__content-item {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.flow__content-item--sub {
  margin-top: 0.9375rem;
}

.flow__content-item + .flow__content-item {
  margin-top: 1.875rem;
}

.flow__content-item-number {
  font-size: 3.4375rem;
  font-weight: 500;
  font-family: "Taviraj", serif;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .flow__content-item-number {
    font-size: 2.1875rem;
  }
}
@media screen and (max-width: 375px) {
  .flow__content-item-number {
    font-size: 1.5625rem;
  }
}

.flow__content-item-text {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.15em;
  margin-left: 3rem;
}
@media screen and (max-width: 768px) {
  .flow__content-item-text {
    font-size: 1rem;
    margin-left: 1rem;
    max-width: 59%;
  }
}
@media screen and (max-width: 375px) {
  .flow__content-item-text {
    margin-left: 1rem;
    max-width: 62%;
  }
}

.flow__content-item-image {
  max-width: 8.125rem;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .flow__content-item-image {
    max-width: 6.25rem;
  }
}
@media screen and (max-width: 375px) {
  .flow__content-item-image {
    max-width: 5rem;
  }
}

.flow__content-item-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 130/130;
}

.footer {
  padding: 2.5rem 0 2.5rem;
  background-color: #2F4858;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 2.8125rem 0;
  }
}

.footer__inner {
  margin: auto;
  padding: 0 1.5625rem;
  max-width: 80.625rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding: 0 0.9375rem;
    max-width: 39.375rem;
  }
}

.footer__wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer__wrap {
    flex-direction: column;
  }
}

.footer__right {
  text-align: end;
}
@media screen and (max-width: 768px) {
  .footer__right {
    text-align: center;
    margin-top: 3.75rem;
  }
}

.footer__nav-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .footer__nav-items {
    flex-direction: column;
    align-items: center;
  }
}

.footer__nav-item a {
  padding: 0.9375rem 0.625rem;
  position: relative;
  display: block;
  font-size: 1rem;
  line-height: 1;
  width: -moz-max-content;
  width: max-content;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .footer__nav-item a {
    font-size: 1rem;
  }
}

.footer__left {
  max-width: 26.25rem;
}
@media screen and (max-width: 768px) {
  .footer__left {
    text-align: center;
  }
}

.footer__logo {
  max-width: 13.75rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    margin: 0 auto;
    max-width: 12.5rem;
  }
}

.footer__logo a {
  padding: 0.9375rem 0;
  font-size: 1.875rem;
  font-weight: 400;
  font-family: "Taviraj", serif;
  display: block;
}
@media screen and (max-width: 768px) {
  .footer__logo a {
    padding: 0.625rem 0;
  }
}

.footer__text {
  margin-top: 0.9375rem;
  font-size: 1.125rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
}

.footer__address {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 300;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .footer__address {
    margin-top: 0.625rem;
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 375px) {
  .footer__address {
    font-size: 0.625rem;
  }
}

.footer__policy {
  margin-top: 3.125rem;
  padding: 0.625rem 0;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .footer__policy {
    margin-top: 1.25rem;
    font-size: 0.75rem;
  }
}

.footer__copyright {
  margin-top: 1.125rem;
  display: block;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: right;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    margin-top: 3.75rem;
    text-align: center;
  }
}

.footer__copyright span {
  text-transform: uppercase;
}

.header {
  height: 5rem;
  background-color: #F9F6F2;
}
@media screen and (max-width: 768px) {
  .header {
    margin-top: 0rem;
    height: 4.0625rem;
  }
}

.header__inner {
  padding-right: 1.875rem;
  padding-left: 3.125rem;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding-left: 1.25rem;
    padding-right: 0rem;
  }
}

.header__logo {
  width: 100%;
  display: flex;
  align-items: center;
  height: inherit;
  font-family: "Taviraj", serif;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1;
  color: #333;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 100%;
    max-width: 100%;
  }
}

.header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__nav {
  display: block;
  height: inherit;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  height: inherit;
}

.header__nav-item {
  height: inherit;
  font-family: "Noto Sans JP", sans-serif;
}

.header__nav-item.header__nav-item--contact {
  margin-left: 0.9375rem;
  display: flex;
  align-items: center;
}

.header__nav-item a {
  padding: 0 1.0625rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  color: #2F4858;
  text-transform: uppercase;
  width: -moz-max-content;
  width: max-content;
  letter-spacing: 0.1em;
}

.header__nav-item.header__nav-item--contact a {
  padding: 1.0625rem 0.9375rem;
  position: relative;
  height: initial;
  color: #fff;
  background-color: #2F4858;
  min-width: 10.875rem;
  border-radius: 1.5625rem;
  font-weight: 700;
}

.header__nav-item--contact-icon {
  width: 1.0625rem;
  height: 1rem;
  margin-right: 0.625rem;
}

.header__drawer-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
}

.header__hamburger {
  display: none;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 4.0625rem;
  height: inherit;
  background-color: #DA7D7D;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 0 0 0 1.25rem;
}
@media screen and (max-width: 768px) {
  .header__hamburger {
    display: block;
  }
}

.header__hamburger.is-open {
  border-radius: 0 0 0 0rem;
}

.header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 1.625rem;
  height: 2px;
  background-color: #fff;
  transition: 0.5s;
}

.header__hamburger span:nth-of-type(1) {
  top: -0.25rem;
}

.header__hamburger span:nth-of-type(2) {
  top: 0.25rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  top: -0.125rem;
  transform: translateX(-50%) rotate(-45deg);
}

.header__drawer {
  padding: 3.125rem 2.5rem;
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #DA7D7D;
  overflow-y: scroll;
  scrollbar-width: none;
  margin-top: 4.0625rem;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-list {
  max-width: 18.4375rem;
  margin: 0 auto;
}

.header__drawer-item {
  position: relative;
}

.header__drawer-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.5625rem;
  transform: translateY(-50%);
  width: 0.25rem;
  height: 0.25rem;
  background-color: #fff;
  border-radius: 50%;
}

.header__drawer-item a {
  padding: 1.75rem 2.8125rem;
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: left;
  text-transform: uppercase;
  border-bottom: 1px solid #fff;
}

.header__drawer-contact {
  display: none;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 4.0625rem;
  height: 4.0625rem;
  background-color: #2F4858;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header__drawer-contact {
    display: block;
  }
}

.header__drawer-contact a {
  width: 100%;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__drawer-contact-icon {
  width: 1.6875rem;
}

.mv {
  margin-top: 10.875rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .mv {
    margin-top: 7.5rem;
  }
}

.mv__contents {
  width: 63.05vw;
  max-width: 56.75rem;
  position: absolute;
  top: -5.8125rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .mv__contents {
    width: 70%;
    top: -7.02vw;
  }
}
@media screen and (max-width: 375px) {
  .mv__contents {
    width: 100%;
    max-width: 19.5rem;
    top: -3.5625rem;
  }
}

.mv__contents img {
  width: 100%;
  height: auto;
  aspect-ratio: 908/442;
}
@media screen and (max-width: 768px) {
  .mv__contents img {
    aspect-ratio: 312/305;
  }
}

.price {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.price__inner {
  padding-top: 3.125rem;
  padding-bottom: 5rem;
  max-width: 70.625rem;
  padding-left: 6.25rem;
  padding-right: 5.9375rem;
  background-image: url(../images/price/price__bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .price__inner {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}
@media screen and (max-width: 375px) {
  .price__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.price__content {
  text-align: center;
  margin-top: 3.125rem;
}

.price__content-description {
  font-size: 0.875rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.price__plan-label {
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 700;
  padding: 0.625rem 1.25rem;
  color: #DA7D7D;
  border-radius: 2.8125rem;
  border: 2px solid #DA7D7D;
  display: inline-block;
}

.price__plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .price__plan-price {
    flex-direction: column;
    align-items: center;
    margin-top: 1.25rem;
  }
}

.price__plan-period {
  font-size: 1.875rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #DA7D7D;
  margin-left: 1rem;
}
@media screen and (max-width: 768px) {
  .price__plan-period {
    margin-left: 0;
  }
}

.price__plan-price-number {
  font-size: 3.125rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #DA7D7D;
  margin-left: 0.625rem;
}
@media screen and (max-width: 768px) {
  .price__plan-price-number {
    margin-left: 0;
    line-height: 1;
  }
}

.price__plan-price-number span {
  font-size: 2.125rem;
}

.price__plan-note {
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .price__plan-note {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}

.price__campaign {
  margin-top: 1.25rem;
}

.price__campaign-title {
  font-size: 1.875rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #DA7D7D;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .price__campaign-title {
    font-size: 1.25rem;
  }
}

.price__campaign-text-wrap {
  background-color: #DA7D7D;
  border-radius: 2.8125rem;
  box-shadow: 0 10px 0 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 2.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .price__campaign-text-wrap {
    padding-top: 1.875rem;
  }
}

.price__campaign-text-wrap::before {
  content: "";
  position: absolute;
  top: -1.5625rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 145px solid transparent;
  border-left: 145px solid transparent;
  border-top: 60px solid #FFF3F3;
  border-bottom: 0;
}
@media screen and (max-width: 768px) {
  .price__campaign-text-wrap::before {
    border-right: 100px solid transparent;
    border-left: 100px solid transparent;
    border-top: 40px solid #FFF3F3;
  }
}
@media screen and (max-width: 375px) {
  .price__campaign-text-wrap::before {
    top: -0.9375rem;
    border-right: 70px solid transparent;
    border-left: 70px solid transparent;
    border-top: 30px solid #FFF3F3;
  }
}

.price__campaign-text-wrap::after {
  content: "";
  position: absolute;
  top: -2.1875rem;
  left: 50%;
  transform: translateX(-213%);
  width: 14.8125rem;
  height: 6.0625rem;
  background-image: url(../images/campaign/campaign-ribbon.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .price__campaign-text-wrap::after {
    left: -0.625rem;
    top: -1.25rem;
    width: 7.5rem;
    transform: translateX(0);
    height: 3.75rem;
  }
}
@media screen and (max-width: 375px) {
  .price__campaign-text-wrap::after {
    left: 50%;
    top: -0.625rem;
    width: 7.5rem;
    transform: translateX(-145%);
    height: 2.5rem;
  }
}

.price__campaign-price-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .price__campaign-price-wrap {
    flex-direction: column;
  }
}

.price__campaign-price-wrap::before {
  content: "";
  position: absolute;
  top: -4.375rem;
  left: 50%;
  transform: translateX(295%);
  background-image: url(../images/price/price__text03.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 7rem;
  height: 8.5rem;
}
@media screen and (max-width: 768px) {
  .price__campaign-price-wrap::before {
    top: -0.1875rem;
    transform: translateX(147%);
    width: 4.5625rem;
    height: 5.625rem;
  }
}
@media screen and (max-width: 375px) {
  .price__campaign-price-wrap::before {
    top: 1.25rem;
    transform: translateX(245%);
    width: 2.8125rem;
    height: 3.4375rem;
  }
}

.price__campaign-price--01 {
  max-width: 24.4375rem;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .price__campaign-price--01 {
    max-width: 16.25rem;
  }
}

.price__campaign-price--01::before {
  content: "";
  position: absolute;
  bottom: 0.3125rem;
  left: 0;
  background-image: linear-gradient(to right, #fff 3px, transparent 3px);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
  width: 95%;
  height: 100%;
}

.price__campaign-price--02 {
  max-width: 26.875rem;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .price__campaign-price--02 {
    max-width: 16.25rem;
    margin-top: 1.25rem;
  }
}

.price__campaign-price--01 img {
  width: 100%;
  height: auto;
  aspect-ratio: 391/60;
}

.price__campaign-price--02 img {
  width: 100%;
  height: auto;
  aspect-ratio: 430/160;
  margin-top: -2.5rem;
}

.price__campaign-note {
  font-size: 1.125rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: #fff;
  border: 1px solid #fff;
  padding: 0.3125rem 1.25rem;
  max-width: 51.25rem;
  margin: 0rem auto;
  margin-top: -1.25rem;
}
@media screen and (max-width: 768px) {
  .price__campaign-note {
    margin-top: 0.625rem;
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 375px) {
  .price__campaign-note {
    font-size: 0.625rem;
  }
}

.price__additional {
  margin-top: 1.25rem;
}

.price__additional-info {
  font-size: 1.25rem;
  letter-spacing: 0.14em;
  line-height: 1.6;
  font-weight: 700;
  position: relative;
}

.price__additional-info::before {
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 50%;
  transform: translateX(-400%);
  width: 1.4375rem;
  height: 1.5625rem;
  background-image: url(../images/price/moreover-deco01.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.price__additional-info::after {
  content: "";
  position: absolute;
  bottom: 0rem;
  left: 50%;
  transform: translateX(322%);
  width: 1.4375rem;
  height: 1.5625rem;
  background-image: url(../images/price/moreover-deco02.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.price__additional-description {
  max-width: 35.75rem;
  width: 100%;
  margin: 0rem auto;
}

.price__additional-description img {
  width: 100%;
  height: auto;
  aspect-ratio: 572/108;
}

.privacy {
  padding-top: 12.5rem;
  padding-bottom: 12.5rem;
}

.privacy__inner {
  max-width: 56.25rem;
  margin: 0 auto;
}

.privacy__content {
  margin-top: 6.25rem;
}

.privacy__item {
  margin-top: 1.875rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

.privacy__text {
  margin-top: 3.75rem;
}

.privacy__text-name {
  margin-top: 1.875rem;
}

.privacy__text-mail {
  margin-top: 0.625rem;
}

.program-intro {
  margin-top: 36.25rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .program-intro {
    margin-top: 90.625rem;
    padding: 3.75rem 0;
    background-color: #F3EEE7;
  }
}

.program-intro__bg {
  background-color: #F3EEE7;
  width: 84.72%;
  height: 21.625rem;
  position: absolute;
  top: -3.4375rem;
  right: 0;
  z-index: -1;
  border-radius: 1.875rem 0 0 1.875rem;
}
@media screen and (max-width: 768px) {
  .program-intro__bg {
    display: none;
  }
}

.program-intro__inner {
  max-width: 77.5rem;
  width: 100%;
  margin: 0 auto;
}

.program-intro__content {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .program-intro__content {
    flex-direction: column;
  }
}

.program-intro__icon {
  max-width: 18.125rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .program-intro__icon {
    max-width: 21.875rem;
    margin: 0 auto;
  }
}

.program-intro__icon img {
  width: 100%;
  height: auto;
  aspect-ratio: 290/235;
}

.program-intro__text {
  margin-left: 2.1875rem;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .program-intro__text {
    margin-left: 0;
    margin-top: 1.875rem;
  }
}

.program-intro__title {
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 2;
  letter-spacing: 0.15em;
  font-family: "Noto Serif JP", serif;
  max-width: 52.5rem;
}
@media screen and (max-width: 768px) {
  .program-intro__title {
    font-size: clamp(20px, 5vw, 28px);
  }
}
@media screen and (max-width: 375px) {
  .program-intro__title {
    font-size: 1.25rem;
  }
}

.program-intro__title--highlight {
  font-size: 1.25rem;
}

.program-intro__highlight {
  color: #DA7D7D;
  position: relative;
  background-image: linear-gradient(to right, #DA7D7D 3px, transparent 3px);
  background-size: 10px 3px;
  background-repeat: repeat-x;
  background-position: left bottom;
  display: inline;
  padding-bottom: 0.3125rem;
}

.program-intro__description {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.15em;
  margin-top: 1.875rem;
  padding-left: 0.625rem;
}

.question {
  background-color: #fff;
  padding-top: 4.6875rem;
  padding-bottom: 27.5rem;
}
@media screen and (max-width: 768px) {
  .question {
    padding-top: 3.125rem;
    padding-bottom: 18.75rem;
  }
}

.question__inner {
  max-width: 68.75rem;
  margin: 0 auto;
}

.question__content {
  margin-top: 8.75rem;
}
@media screen and (max-width: 768px) {
  .question__content {
    margin-top: 5rem;
  }
}

.question-list__item {
  border-bottom: 0.0625rem solid #2F4858;
}

.question-list__item:first-child {
  border-top: 0.0625rem solid #2F4858;
}

.question-list__item-question {
  padding: 1.875rem 3.75rem 1.875rem 1.875rem;
  position: relative;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .question-list__item-question {
    padding: 1.25rem 3.75rem 1.25rem 1.25rem;
    font-size: 0.9375rem;
  }
}

.question-list__item-question::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.5rem;
  width: 0.8125rem;
  height: 0.8125rem;
  border-top: 0.1875rem solid #2F4858;
  border-right: 0.1875rem solid #2F4858;
  transform: translateY(-50%) rotate(135deg);
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .question-list__item-question::before {
    width: 0.625rem;
    height: 0.625rem;
    right: 1.25rem;
  }
}

.question-list__item-question.is-open::before {
  transform: translateY(-50%) rotate(315deg);
}

.question-list__item-question span {
  margin-right: 1.25rem;
  display: inline-block;
  color: #F6D970;
}

.question-list__item-answer {
  padding: 1.875rem 1.875rem;
  display: none;
  font-size: 1.25rem;
  background-color: #F3EED9;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 2;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .question-list__item-answer {
    padding: 0.9375rem 1.25rem 0.9375rem 1.25rem;
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
  }
}

.service {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

.service__inner {
  max-width: 80.625rem;
}

.service__content {
  margin-top: 6.25rem;
}

.service__content-item {
  display: flex;
  align-items: flex-start;
  gap: 2.1875rem;
  padding: 2.5rem 1.5625rem 2.5rem 5.625rem;
  background-color: #fff;
  border-radius: 2.5rem;
}
@media screen and (max-width: 768px) {
  .service__content-item {
    flex-direction: column;
    padding: 1.875rem 1.5625rem 1.875rem 1.5625rem;
    gap: 1.5625rem;
  }
}

.service__content-item + .service__content-item {
  margin-top: 3.75rem;
}

.service__content-item-number {
  font-size: 2.0625rem;
  font-weight: 400;
  font-family: "Taviraj", serif;
  line-height: 2;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  text-align: center;
  border: 1px solid #2F4858;
  min-width: 4rem;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 375px) {
  .service__content-item-number {
    margin-top: 0rem;
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    font-size: 1.25rem;
  }
}

.service__content-item-text-block {
  width: 100%;
  max-width: 43.125rem;
}

.service__content-item-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 3;
  letter-spacing: 0.15em;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  background-image: linear-gradient(to right, #2F4858 8px, transparent 3px);
  display: inline;
  background-size: 15px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .service__content-item-title {
    font-size: 1.25rem;
  }
}

.service__content-item-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #DA7D7D;
  margin-top: 1.25rem;
}

.service__content-item-text span {
  font-size: 1.125rem;
  color: #2F4858;
  display: block;
  font-weight: 500;
}

.service__content-item-description {
  font-size: 1.125rem;
  color: #2F4858;
  font-weight: 500;
  line-height: 2;
  margin-top: 1.875rem;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 768px) {
  .service__content-item-image {
    margin: 0 auto;
  }
}

.service__content-item-image--01 {
  width: 100%;
  max-width: 18.4375rem;
}

.service__content-item-image--01 img {
  aspect-ratio: 295/222;
}

.service__content-item-image img {
  width: 100%;
  height: auto;
}

.service__content-item-image--02 {
  width: 100%;
  max-width: 19.4375rem;
}

.service__content-item-image--02 img {
  aspect-ratio: 311/206;
}

.service__content-item-image--03 {
  width: 100%;
  max-width: 13.3125rem;
}

.service__content-item-image--03 img {
  aspect-ratio: 213/184;
}

.true-feelings {
  margin-top: 2.1875rem;
  position: relative;
}

.true-feelings__bg {
  position: absolute;
  top: 2.6875rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 55.1875rem;
  width: 100%;
  height: 37.1875rem;
  background-image: url(../images/true-feelings/true-feelings__bg.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .true-feelings__bg {
    display: none;
  }
}

.true-feelings__inner {
  max-width: 71.875rem;
}

.true-feelings__header {
  text-align: center;
  position: relative;
}

.true-feelings__sub-title {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 375px) {
  .true-feelings__sub-title {
    font-size: 0.75rem;
  }
}

.true-feelings__sub-title--highlight {
  color: #DA7D7D;
  font-weight: 700;
}

.true-feelings__title {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.07em;
  font-family: "Noto Serif JP", serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .true-feelings__title {
    margin-top: 1.875rem;
    font-size: clamp(30px, 2.08vw, 40px);
  }
}
@media screen and (max-width: 375px) {
  .true-feelings__title {
    font-size: 1.25rem;
  }
}

.true-feelings__title img {
  width: 5.625rem;
  height: 6rem;
}
@media screen and (max-width: 768px) {
  .true-feelings__title img {
    width: 6.25vw;
    height: 6.4vw;
  }
}

.true-feelings__title-text {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.07em;
  font-family: "Noto Serif JP", serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -1.25rem;
}
@media screen and (max-width: 768px) {
  .true-feelings__title-text {
    margin-top: 0.625rem;
    font-size: 1.875rem;
  }
}

.true-feelings__highlight {
  font-weight: 500;
  color: #DA7D7D;
  font-size: 3.125rem;
  line-height: 1.4;
  letter-spacing: 0.07em;
  font-family: "Noto Serif JP", serif;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 3.125rem;
  margin-right: 3.125rem;
}
@media screen and (max-width: 768px) {
  .true-feelings__highlight {
    font-size: clamp(30px, 8.5vw, 50px);
  }
}

.true-feelings__highlight::before {
  content: "";
  position: absolute;
  top: 0rem;
  left: -1.5625rem;
  width: 1.875rem;
  height: 1.875rem;
  border-top: 0.0625rem solid #DA7D7D;
  border-left: 0.0625rem solid #DA7D7D;
}

.true-feelings__highlight::after {
  content: "";
  position: absolute;
  bottom: 0.3125rem;
  right: -1.25rem;
  width: 1.875rem;
  height: 1.875rem;
  border-bottom: 0.0625rem solid #DA7D7D;
  border-right: 0.0625rem solid #DA7D7D;
}

.true-feelings__content {
  margin-top: 1.875rem;
  position: relative;
}

.true-feelings__images {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1160px) {
  .true-feelings__images {
    flex-direction: column;
    align-items: center;
  }
}

.true-feelings__image {
  position: relative;
}

.true-feelings__image img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.true-feelings__image01 {
  max-width: 19.75rem;
  width: 21.94vw;
  margin-top: 6.0625rem;
  position: absolute;
  top: 0.625rem;
  left: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .true-feelings__image01 {
    margin-top: 0.625rem;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    top: 0rem;
  }
}

.true-feelings__image01 img {
  width: 100%;
  height: auto;
  aspect-ratio: 316/250;
}

.true-feelings__image02 {
  max-width: 17.5625rem;
  width: 19.51vw;
  position: absolute;
  top: 0rem;
  left: 16.75rem;
}
@media screen and (max-width: 768px) {
  .true-feelings__image02 {
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    top: 18.125rem;
  }
}

.true-feelings__image02 img {
  width: 100%;
  height: auto;
  aspect-ratio: 281/385;
}

.true-feelings__image03 {
  max-width: 17.5625rem;
  width: 19.51vw;
  position: absolute;
  top: 0rem;
  left: 35.0625rem;
}
@media screen and (max-width: 768px) {
  .true-feelings__image03 {
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    top: 43.75rem;
  }
}

.true-feelings__image03 img {
  width: 100%;
  height: auto;
  aspect-ratio: 281/386;
}

.true-feelings__image04 {
  max-width: 19.9375rem;
  width: 22.15vw;
  margin-top: 1.875rem;
  position: absolute;
  top: 4.75rem;
  left: 50rem;
}
@media screen and (max-width: 1160px) {
  .true-feelings__image04 {
    left: 49.375rem;
  }
}
@media screen and (max-width: 768px) {
  .true-feelings__image04 {
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    top: 67.5rem;
  }
}

.true-feelings__image04 img {
  width: 100%;
  height: auto;
  aspect-ratio: 319/248;
}

.true-feelings__image-text--04 {
  position: absolute;
  top: -2.375rem;
  text-align: center;
  left: 1.4375rem;
  width: -moz-max-content;
  width: max-content;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.07em;
  font-family: "Noto Sans JP", sans-serif;
  color: #A14545;
  padding: 1.25rem 2rem;
  background-color: #FAD0D0;
  border-radius: 2.5rem;
}

.true-feelings__image-text--04::before {
  content: "";
  position: absolute;
  bottom: -2.1875rem;
  left: 8.125rem;
  width: 3.375rem;
  height: 3.75rem;
  background-image: url(../images/true-feelings/true-feelings-text-deco04.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.u-sm {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sm {
    display: none;
  }
}
@media screen and (max-width: 375px) {
  .u-sm {
    display: block;
  }
}

.u-md {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-md {
    display: block;
  }
}
@media screen and (max-width: 375px) {
  .u-md {
    display: block;
  }
}

.u-lg {
  display: none;
}
@media screen and (max-width: 1024px) {
  .u-lg {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.pc-only2 {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc-only2 {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
