@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Baskervville:ital,wght@0,400..700;1,400..700&family=Dancing+Script:wght@400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
/* ボックスサイズ初期化 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* html / body 初期化 */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #000;
  background: #fff;
  margin: 0;
  padding: 0;
}

/* 各要素の余白をリセット */
body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, li,
figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

/* テキスト要素のフォント系リセット */
address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

/* リストのデフォルトスタイルを削除 */
ul, ol {
  list-style: none;
}

/* テーブルの見た目を初期化 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* フォーム要素をフラットに＆継承設定 */
input,
textarea,
select,
button {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

/* テキストエリアは縦リサイズ可 */
textarea {
  resize: vertical;
  display: block;
}

/* チェックボックスやラジオボタンはデザイン前提で非表示に */
input[type=checkbox],
input[type=radio] {
  display: none;
}

/* 操作可能な要素にカーソル */
button,
label,
select,
input[type=submit],
input[type=button] {
  cursor: pointer;
}

/* select の三角形を非表示（モダンブラウザ） */
select::-ms-expand {
  display: none;
}

/* aタグの初期スタイルを削除 */
a {
  text-decoration: none;
  color: inherit;
}

/* imgタグの余白・幅の制御 */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* SVGもblockで扱いやすく */
svg {
  display: block;
}

/* mainタグをblockに（IE対応不要なら削除してOK） */
main {
  display: block;
}

/* なめらかなフォント表示（Mac用） */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --color-black: #404040;
  --color-white: #F5F3EE;
  --color-red: #A44F4F;
  --color-red-light: #BC786F;
  --color-pink: #D7AAA2;
  --font-primary: "Inter", sans-serif;
  --font-noto: "Noto Sans JP", sans-serif;
  --font-bask: "Baskervville", serif;
  --font-dancing: "Dancing Script", cursive;
}

body {
  font-family: var(--font-primary);
  color: var(--color-black);
}

.button {
  display: grid;
  place-items: center;
  width: 100%;
  height: 75px;
  color: var(--color-white);
  background-color: var(--color-red);
  border-radius: 64px;
  text-align: center;
  font-family: var(--font-noto);
  font-size: 20px;
  line-height: 1;
  transition: all 0.4s;
}

.fixed-button {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  width: 100%;
  height: 65px;
  background: var(--color-red);
  color: var(--color-white);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.fixed-button::before, .fixed-button::after {
  content: "";
  display: block;
  width: 30px;
  aspect-ratio: 1/1;
  background: url("../images/fixed-button-icon.png") no-repeat center/contain;
}
.fixed-button.is-show {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 391px) {
  .fixed-button {
    left: 50%;
    transform: translateX(-50%);
    max-width: 390px;
  }
}
@media (min-width: 1024px) {
  .fixed-button {
    display: none;
  }
}

body.is-fixed .fixed-button {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-layout {
  display: block;
  width: 100%;
  min-height: 100vh;
  position: relative;
  inset: 0;
  background-color: #e7e1d5;
  overflow: hidden;
}

.page-layout__bg {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 80%;
  z-index: 0;
}
.page-layout__bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center right;
}
@media (min-width: 769px) {
  .page-layout__bg {
    max-width: 750px;
  }
}
@media (min-width: 1024px) {
  .page-layout__bg {
    max-width: 910px;
    width: 74%;
  }
}
@media (min-width: 1321px) {
  .page-layout__bg {
    max-width: 930px;
  }
}
@media (min-width: 1390px) {
  .page-layout__bg {
    max-width: 980px;
  }
}

.page-layout__left {
  position: fixed;
  top: 32px;
  left: 0;
  z-index: 5;
}

.page-layout__name {
  writing-mode: vertical-rl;
  font-family: var(--font-bask);
  font-size: 60px;
  color: rgba(0, 0, 0, 0.5);
}
@media (min-width: 769px) {
  .page-layout__name {
    font-size: 80px;
  }
}
@media (min-width: 1024px) {
  .page-layout__name {
    font-size: 101px;
  }
}

.page-layout__text {
  display: none;
}
@media (min-width: 1024px) {
  .page-layout__text {
    margin-top: 54px;
    margin-left: 27px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--color-white);
  }
  .page-layout__text span {
    font-family: var(--font-noto);
    font-size: 22px;
    font-weight: 500;
  }
}
@media (min-width: 1281px) {
  .page-layout__text span {
    font-size: 34px;
  }
}
@media (min-width: 1440px) {
  .page-layout__text span {
    font-size: 40px;
  }
}

.page-layout__right {
  display: none;
}
@media (min-width: 1024px) {
  .page-layout__right {
    display: flex;
    justify-content: center;
    align-items: end;
    position: fixed;
    top: 0;
    right: 0;
    width: calc((100% - 390px) / 2);
    height: 100%;
    padding-block: 60px;
    padding-inline: 20px;
    z-index: 5;
  }
}

.page-layout__nav {
  width: 100%;
  max-width: 288px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (min-width: 1024px) {
  .page-layout__nav {
    gap: 64px;
  }
}

.page-layout__nav-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.page-layout__nav-item {
  font-family: var(--font-bask);
  font-size: 18px;
}
@media (min-width: 1281px) {
  .page-layout__nav-item {
    font-size: 20px;
  }
}

.page-layout__nav-button {
  width: 100%;
  height: 75px;
  border-radius: 75px;
  border: 1px solid;
  display: grid;
  place-items: center;
  font-family: var(--font-noto);
  font-size: 20px;
}
@media (min-width: 1281px) {
  .page-layout__nav-button {
    font-size: 22px;
  }
}

.page-main {
  margin-inline: auto;
  width: 100%;
  max-width: 390px;
  height: 100%;
  background-color: var(--color-pink);
  position: relative;
  z-index: 40;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background-color: var(--color-pink);
  z-index: 100;
}
@media (min-width: 391px) {
  .header {
    left: 50%;
    transform: translateX(-50%);
    max-width: 390px;
  }
}

.header__inner {
  height: 100%;
  padding-left: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  width: 40px;
}
.header__logo img {
  aspect-ratio: 40/49;
}

.header__button {
  padding: 0;
  width: 36px;
  height: 24px;
  position: relative;
}
.header__button.is-checked .header__button-bar:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}
.header__button.is-checked .header__button-bar:nth-child(2) {
  display: none;
}
.header__button.is-checked .header__button-bar:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}
@media (min-width: 1024px) {
  .header__button {
    display: none;
  }
}

.header__button-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-black);
  position: absolute;
  left: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.header__button-bar:nth-child(1) {
  top: 0;
}
.header__button-bar:nth-child(2) {
  top: 11px;
}
.header__button-bar:nth-child(3) {
  top: 22px;
}

.header__drawer {
  position: fixed;
  top: 64px;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 500px);
  height: calc(100vh - 64px);
  background-color: var(--color-pink);
  overflow: hidden;
  z-index: 99;
  visibility: hidden;
  pointer-events: none;
}
.header__drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.header__nav {
  position: absolute;
  inset: 0;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  margin-inline: auto;
  padding: 60px 40px;
  max-width: 368px;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  transition: transform 0.4s ease;
}
.header__nav.is-checked {
  transform: translateX(0);
}
@media (min-width: 1024px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}

.header__nav-link {
  font-family: var(--font-bask);
  line-height: 1;
  font-size: 18px;
}

.header__nav-button {
  margin-top: 40px;
  width: 288px;
  height: 77px;
  display: grid;
  place-items: center;
  background-color: transparent;
  border-radius: 65px;
  border: 1px solid var(--color-black);
  color: var(--color-black);
  font-size: 20px;
  line-height: 1;
}

.inner {
  width: 100%;
  padding-inline: 20px;
  margin: 0 auto;
}

.fv {
  padding-block: 78px 48px;
  background-color: var(--color-white);
  position: relative;
}

.fv__image {
  position: absolute;
  top: 97px;
  left: 0;
  z-index: 0;
  width: 100%;
  max-width: 390px;
  height: 400px;
}

.fv__content {
  position: relative;
  z-index: 5;
}

.fv__title {
  font-family: "IPAexMincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #44796E;
}

.fv__lead {
  margin-top: 188px;
  display: flex;
  flex-direction: column;
}
.fv__lead span {
  width: fit-content;
  padding: 4px 8px 6px 8px;
  background-color: var(--color-white);
  color: #44796e;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
}

.fv__message {
  margin-top: 12px;
  width: fit-content;
  padding: 4px;
  background-color: rgba(77, 43, 32, 0.5019607843);
  color: var(--color-white);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
}

.cta {
  padding-block: 32px;
  display: grid;
  place-items: center;
}

.problem {
  padding-top: 71px;
  position: relative;
}

.problem__bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 948px;
  width: 100%;
  overflow: hidden;
  border-radius: 300px;
}
.problem__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problem__head,
.problem__list,
.problem__bottom {
  position: relative;
  z-index: 5;
}

.problem__head {
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.05;
  text-align: center;
  color: var(--color-white);
}

.problem__list {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.problem__item {
  padding-block: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.problem__item-head {
  width: 60px;
  flex-shrink: 0;
}

.problem__item-body {
  flex-grow: 1;
  padding: 8px 20px 8px 32px;
  background-color: var(--color-white);
  border-radius: 20px;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
}
.problem__item-body::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -13px;
  width: 15px;
  height: 10px;
  background: var(--color-white);
  clip-path: polygon(100% 33%, 0 0%, 100% 100%);
}

.problem__bottom {
  margin-top: 276px;
}

.problem__bottom-head {
  display: flex;
  flex-direction: column;
}
.problem__bottom-head span {
  width: fit-content;
  padding: 4px 8px;
  background-color: var(--color-red);
  color: var(--color-white);
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
}

.problem__bottom-text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1;
}

.reason {
  overflow: hidden;
}

.reason__head {
  padding-top: 110px;
}

.reason__head-list {
  margin-left: auto;
  width: 290px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  position: relative;
}
.reason__head-list::before {
  content: "";
  position: absolute;
  left: -91px;
  top: -86px;
  width: 200px;
  aspect-ratio: 1/1;
  background: url("../images/reason-head-deco.webp") no-repeat center/contain;
}

.reason__head-item {
  background-color: var(--color-white);
  border-radius: 40px 0 0 40px;
  padding: 8px 10px 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.reason__head-num {
  font-family: var(--font-bask);
  font-style: Italic;
  font-size: 40px;
  line-height: 1;
}

.reason__head-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
}

.reason__cards {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.reason__card {
  padding-top: 87px;
  position: relative;
}

.reason__card-num {
  position: absolute;
  top: 0;
  left: -32px;
  width: 104px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  background-color: var(--color-red);
  padding-block: 32px 23px;
  display: grid;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-dancing);
  font-size: 40px;
}
.reason__card-num::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 14px;
  width: 56px;
  height: 34px;
  background: url("../images/reason-num-deco.webp") no-repeat center/contain;
}

.reason__card-title {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.reason__card-title span {
  width: fit-content;
  padding: 4px 6px;
  background-color: var(--color-white);
  font-weight: 700;
  font-size: 20px;
}

.reason__card-text {
  margin-top: 24px;
  font-size: 14px;
}

.reason__card-img {
  margin-top: 8px;
  border-radius: 10px;
  overflow: hidden;
}
.reason__card-img img {
  aspect-ratio: 350/200;
  object-fit: cover;
}

.reason__card-point-box {
  margin-top: 40px;
  display: grid;
  place-items: center;
  width: 100%;
  padding: 24px;
  border-radius: 0 40px 0 40px;
  background-color: var(--color-red-light);
  color: var(--color-white);
  position: relative;
}
.reason__card-point-box .label {
  position: absolute;
  top: -13px;
  left: 25px;
  padding: 4px 8px;
  border-radius: 24px;
  background-color: var(--color-red);
  font-family: var(--font-bask);
  font-style: italic;
  font-size: 14px;
}
.reason__card-point-box .text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.42;
}

.reason__card-point-disc {
  margin-top: 8px;
  font-size: 14px;
}

.reason__card-summary {
  margin-top: 40px;
}

.reason__card-points {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.reason__card-point {
  display: grid;
  place-items: center;
  width: calc((100% - 30px) / 2);
  padding: 15px;
  background-color: var(--color-white);
  border-radius: 84px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-red);
  text-align: center;
  position: relative;
  z-index: 5;
}

.reason__card-result {
  margin-top: -9px;
  display: grid;
  place-items: center;
  width: 100%;
  padding: 35px;
  background-color: var(--color-red-light);
  border-radius: 45.5px;
  font-weight: 600;
  color: var(--color-white);
  text-align: center;
  position: relative;
  z-index: 0;
}

.reason__colors {
  margin-top: 40px;
  padding-block: 40px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 36px;
  position: relative;
  z-index: 5;
}
.reason__colors::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #cb8f84;
  border-radius: 300px 300px 0 0;
  z-index: 0;
}

.reason__color {
  margin-left: -20px;
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
}
.reason__color:nth-of-type(2n) {
  margin-left: 0;
  margin-right: -20px;
  flex-direction: row-reverse;
}

.reason__color-head {
  width: 41%;
  max-width: 163px;
  flex-shrink: 0;
}

.reason__color-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
}

.reason__color-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.reason__color-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.reason__color-circle-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  overflow: visible;
  transform: scale(1.55);
  transform-origin: center;
}
.reason__color-circle-text text {
  fill: var(--color-white);
  font-family: var(--font-bask);
  font-size: 24px;
}

.reason__color-body {
  max-width: 184px;
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.reason__features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reason__feature-label {
  width: fit-content;
  padding: 8px;
  background-color: var(--color-red-light);
  color: var(--color-white);
  font-weight: 600;
  font-size: 14px;
}

.reason__feature-img {
  margin-top: 8px;
  overflow: hidden;
  border-radius: 10px;
}
.reason__feature-img img {
  object-fit: cover;
  aspect-ratio: 350/240;
}

.reason__feature-text {
  margin-top: 8px;
  font-size: 14px;
}

.reason__feature-simple {
  width: 100%;
  padding: 37px 30px;
  border-radius: 10px;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.reason__feature-simple-title {
  font-size: 14px;
  font-weight: 600;
}

.reason__feature-simple-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.reason__feature-simple-item {
  width: 126px;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  font-size: 14px;
  position: relative;
  z-index: 5;
}
.reason__feature-simple-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  border: 16px solid #edc6bf;
  z-index: -1;
}

.reason__effects {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
}

.reason__effect {
  display: flex;
  align-items: center;
}
.reason__effect:nth-of-type(2n) {
  flex-direction: row-reverse;
}
.reason__effect:nth-of-type(2n) .reason__effect-text {
  margin-left: 0;
  margin-right: -4px;
}

.reason__effect-img {
  width: 40%;
  max-width: 156px;
  flex-shrink: 0;
}

.reason__effect-text {
  margin-left: -4px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  z-index: 5;
}

.reason__closing {
  margin-top: -8px;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 24px;
}

.reason__closing-text {
  margin-top: 18px;
  max-width: 185px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.reason__closing-deco {
  width: 118px;
  flex-shrink: 0;
}
.reason__closing-deco img {
  aspect-ratio: 118/183;
}

.mvv {
  padding-block: 64px;
  color: var(--color-white);
  position: relative;
}
.mvv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  height: 100%;
  background-color: var(--color-red-light);
  border-radius: 300px 300px 0 0;
  z-index: 0;
}

.mvv__title,
.mvv__cards {
  position: relative;
  z-index: 5;
}

.mvv__title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.mvv__cards {
  margin-top: 56px;
  padding-inline: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.mvv__card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mvv__card-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.mvv__card-head-en {
  font-family: var(--font-bask);
  font-size: 28px;
}

.mvv__card-head-jp {
  font-size: 10px;
}

.mvv__card-img {
  margin-top: 24px;
  display: grid;
  place-items: center;
}
.mvv__card-img--mission {
  width: 91px;
}
.mvv__card-img--mission img {
  aspect-ratio: 91/86;
}
.mvv__card-img--vision {
  width: 76px;
}
.mvv__card-img--vision img {
  aspect-ratio: 76/88;
}
.mvv__card-img--value {
  width: 110px;
}
.mvv__card-img--value img {
  aspect-ratio: 110/90;
}

.mvv__card-lead {
  margin-top: 24px;
  text-align: center;
}

.mvv__card-lead-text {
  margin-bottom: 8px;
  font-size: 14px;
}

.mvv__card-lead-highlight {
  font-weight: 700;
}

.mvv__card-text {
  margin-top: 16px;
  font-size: 14px;
}

.mvv__card-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}

.mvv__card-item {
  font-size: 14px;
}

.gallery {
  padding-top: 80px;
  color: var(--color-white);
  overflow: hidden;
}

.gallery__title {
  font-family: var(--font-bask);
  font-size: 40px;
  text-align: center;
}

.gallery__content {
  margin-top: 64px;
}

.gallery__compare {
  padding-bottom: 210px;
  position: relative;
}

.gallery__before {
  width: 44%;
  max-width: 173px;
  position: relative;
}

.gallery__before-circle-text {
  display: block;
  width: 150%;
  height: 150%;
  position: absolute;
  top: -36%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
  overflow: visible;
}
.gallery__before-circle-text text {
  fill: var(--color-white);
  font-family: var(--font-bask);
  font-size: 14px;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.25));
}

.gallery__after {
  width: 75%;
  max-width: 294px;
  position: absolute;
  bottom: 0;
  right: -20px;
}

.gallery__after-circle-text {
  display: block;
  width: 150%;
  height: 150%;
  position: absolute;
  top: -36%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
  overflow: visible;
}
.gallery__after-circle-text text {
  fill: var(--color-white);
  font-family: var(--font-bask);
  font-size: 14px;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.25));
}

.gallery__layer {
  margin-top: 78px;
  position: relative;
}

.gallery__layer-img {
  margin-left: -20px;
  width: 75%;
  max-width: 294px;
}

.gallery__layer-circle-text {
  display: block;
  width: 150%;
  height: 150%;
  position: absolute;
  top: -36%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
  overflow: visible;
}
.gallery__layer-circle-text text {
  fill: var(--color-white);
  font-family: var(--font-bask);
  font-size: 14px;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.25));
}

.gallery__color {
  margin-top: 104px;
  position: relative;
}

.gallery__color-circle-text {
  display: block;
  width: 150%;
  height: 150%;
  position: absolute;
  top: -36%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
  overflow: visible;
}
.gallery__color-circle-text text {
  fill: var(--color-white);
  font-family: var(--font-bask);
  font-size: 14px;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.25));
}

.gallery__color-img {
  margin-left: auto;
  margin-right: -20px;
  width: 75%;
  max-width: 294px;
}

.staff {
  padding-top: 180px;
  position: relative;
}
.staff::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 240px;
  aspect-ratio: 1/1;
  background: url("../images/staff-deco.webp") no-repeat center/contain;
}

.staff__content {
  position: relative;
}

.staff__circle-text {
  display: block;
  width: 240px;
  height: 240px;
  position: absolute;
  top: -36%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
  overflow: visible;
}
.staff__circle-text text {
  fill: var(--color-white);
  font-family: var(--font-bask);
  font-size: 14px;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.25));
}

.staff__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 68px;
}

.staff__card {
  padding-block: 201px 106px;
  padding-inline: 20px;
  width: 100%;
  background-color: var(--color-red-light);
  border-radius: 175px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-white);
  position: relative;
}

.staff__card-img {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
}
.staff__card-img--chisato {
  width: 240px;
}
.staff__card-img--shinji {
  width: 204px;
}
.staff__card-img--aoi {
  width: 178px;
}

.staff__card-name {
  font-family: var(--font-bask);
  font-size: 32px;
  font-weight: 600;
}

.staff__card-text {
  margin-top: 16px;
  font-size: 14px;
}

.staff__card-lead {
  margin-top: 32px;
  font-size: 18px;
  font-weight: 500;
}

.staff__card-list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.staff__card-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.staff__card-item::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: url("../images/check-icon.svg") no-repeat center/contain;
}

.price {
  margin-top: 40px;
}

.price__box {
  padding-block: 40px 56px;
  padding-inline: 20px;
  background-color: var(--color-white);
  border-radius: 0px 90px 0 90px;
  color: var(--color-red);
}

.price__title {
  font-family: var(--font-bask);
  font-size: 34px;
  text-align: center;
}

.price__list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.price__item {
  padding-inline: 5px 12px;
  padding-bottom: 4px;
  border-bottom: 3px dashed var(--color-red);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price__item-head {
  font-family: var(--font-bask);
}

.price__item-body {
  display: flex;
  align-items: end;
}

.price__item-yen {
  font-family: var(--font-bask);
}

.price__item-num {
  margin-left: 18px;
  min-width: 70px;
  font-family: var(--font-dancing);
  font-size: 24px;
}

.price__item-unit {
  margin-left: 9px;
  font-family: var(--font-bask);
  font-size: 24px;
}

.reserve {
  padding-top: 93px;
  position: relative;
}
.reserve::before {
  content: "";
  position: absolute;
  top: -30px;
  right: 20px;
  width: 240px;
  aspect-ratio: 1/1;
  background: url("../images/reserve-deco.webp") no-repeat center/contain;
}

.reserve__steps {
  display: flex;
  flex-direction: column;
}

.reserve__step {
  display: flex;
  align-items: center;
}
.reserve__step--1, .reserve__step--3 {
  margin-left: -20px;
  position: relative;
}
.reserve__step--1::after, .reserve__step--3::after {
  content: "";
  position: absolute;
  bottom: -21px;
  left: calc(50% + 20px);
  transform: translateX(-50%);
  width: 39px;
  height: 42px;
  background: url("../images/reserve-step-arrow-left.webp") no-repeat center/contain;
}
.reserve__step--2, .reserve__step--4 {
  flex-direction: row-reverse;
}
.reserve__step--2 .reserve__step-body, .reserve__step--4 .reserve__step-body {
  margin-right: -13px;
}
.reserve__step--2 {
  position: relative;
}
.reserve__step--2::after {
  content: "";
  position: absolute;
  bottom: -42px;
  left: calc(50% - 46px);
  transform: translateX(-50%);
  width: 39px;
  height: 42px;
  background: url("../images/reserve-step-arrow-right.webp") no-repeat center/contain;
}
.reserve__step--3 {
  margin-top: 38px;
}
.reserve__step--3::after {
  bottom: -34px;
}
.reserve__step--4 {
  margin-top: 34px;
}

.reserve__step-img {
  width: 163px;
  flex-shrink: 0;
}

.reserve__step-label {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 32px;
  background-color: var(--color-red-light);
  color: var(--color-white);
}

.reserve__step-text {
  margin-top: 8px;
}

.reserve__closing {
  margin-top: 8px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}

.reserve__closing-img {
  width: 140px;
  flex-shrink: 0;
}
.reserve__closing-img img {
  aspect-ratio: 140/218;
}

.reserve__closing-body {
  padding-bottom: 10px;
}

.reserve__closing-lead {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.reserve__closing-text {
  margin-top: 16px;
  font-size: 14px;
  letter-spacing: 0.01em;
}

.info {
  padding-block: 40px;
}

.info__box {
  padding: 64px 25px;
  border-radius: 300px 300px 0 0;
  background-color: var(--color-red-light);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.info__title {
  font-family: var(--font-bask);
  font-size: 34px;
  text-align: center;
}

.info__name {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-bask);
}

.info__name-jp {
  font-size: 12px;
}

.info__name-en {
  margin-top: -3px;
}

.info__list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.info__item {
  display: flex;
  align-items: start;
  gap: 16px;
}

.info__item-head {
  margin-top: 1.5px;
  min-width: 66px;
  font-family: var(--font-bask);
  font-size: 14px;
}

.info__item-body {
  font-family: var(--font-noto);
  font-size: 14px;
}

.info__item-add {
  display: block;
  margin-top: 8px;
}

.info__item-time {
  display: flex;
  align-items: center;
  gap: 12px;
}
.info__item-time:not(:first-child) {
  margin-top: 8px;
}

.info__item-time-label {
  min-width: 42px;
  flex-shrink: 0;
}

.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

.hidden-1280 {
  display: block;
}
@media (min-width: 1281px) {
  .hidden-1280 {
    display: none;
  }
}

.u-bold {
  font-weight: 700;
}

.u-scroll-mt {
  scroll-margin-top: 65px;
}