@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
body {
  color: #0f1519;
}

@font-face {
  font-family: "genjuu";
  src: url("../fonts/GenJyuuGothicX-Normal.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "honoka";
  src: url("../fonts/Honoka_Shin_Mincho_L.woff2") format("woff2");
  font-display: swap;
}
body {
  font-family: "genjuu", Sans-Serif;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}
@media screen and (min-width: 780px) {
  .pc-only {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 780px) {
  .sp-only {
    display: none;
  }
}

/*画像の縦横比設定*/
img {
  width: 100%;
  height: auto;
  display: block;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover {
  opacity: 0.8;
}

/* ふわっと表示させるために設定*/
body {
  -webkit-animation: fadein 2s forwards;
          animation: fadein 2s forwards;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 780px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

/* Set core html defaults */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* ヘッダーの高さ */
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  letter-spacing: 0.07em;
}

/* Set core body defaults */
/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* 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 {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* デフォルトの三角アイコンを消す */
summary {
  display: block;
}

/* Safariで表示されるデフォルトの三角形アイコンを消します */
summary::-webkit-details-marker {
  display: none;
}

.inner {
  max-width: 600px;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 780px) {
  .inner {
    max-width: 1250px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.header {
  height: 5rem;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 780px) {
  .header {
    height: 8.125rem;
  }
}

@media screen and (min-width: 780px) {
  .header__drawer {
    display: none;
  }
}

.header__inner {
  height: inherit;
  position: relative;
}

.header__logo-image {
  position: absolute;
  top: 0.625rem;
  left: 1.25rem;
  margin: 0;
  width: 6.25rem;
  max-width: 100%;
  z-index: 99999;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 780px) {
  .header__logo-image {
    width: 15rem;
    top: 0.625rem;
    left: 1.875rem;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 780px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: inherit;
    position: absolute;
    top: 0.625rem;
    right: 1.25rem;
    margin-left: auto;
    gap: 0.625rem;
  }
}

.header__nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 0.625rem;
}

@media screen and (min-width: 780px) {
  .header__nav-btn {
    padding-right: 1.5625rem;
  }
}

.header__nav-item {
  position: relative;
  padding-right: 1.875rem;
  height: inherit;
}

.header__nav-item:first-child {
  padding-left: 1.875rem;
}

.header__nav-item--menu {
  position: relative;
  margin-right: 1.0625rem;
}

.header__nav-item--menu::after {
  content: "";
  position: absolute;
  background-image: url(../images/common/header-icon2x.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.0625rem;
  height: 0.9375rem;
  top: 50%;
  left: 70%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header__nav-link {
  color: #0f1519;
  font-size: 0.875rem;
  height: inherit;
  display: -ms-grid;
  display: grid;
  place-items: center;
  grid-auto-flow: column;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header__nav-link a {
  font-size: 0.875rem;
  height: inherit;
}

.header__menu-items {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 8.875rem;
  background-color: white;
  background-color: rgba(255, 255, 255, 0.8);
  padding-top: 0.9375rem;
  left: -1.875rem;
  top: 5rem;
  text-align: center;
  -webkit-box-shadow: 0.25rem 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0.25rem 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.25);
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header__nav-item--menu:hover .header__menu-items {
  opacity: 1;
  visibility: visible;
}

.header__menu-item a:hover {
  background-color: #ebb0b6;
  color: #fff;
}

.header__menu-item a {
  padding: 0.8125rem 0;
}

.header__menu-item a {
  font-size: 0.875rem;
  display: block;
}

/* ハンバーガーメニュー */
.hamburger {
  position: absolute;
  top: 1.875rem;
  right: 1.875rem;
  z-index: 99999;
  width: 2.8125rem;
  height: 2.8125rem;
  padding: 0.9375rem 0.5rem;
  background: #432210;
  border-radius: 0.5rem;
}

.hamburger__line {
  width: 100%;
  height: 100%;
  position: relative;
}

/* 三本線の装飾 */
.hamburger span {
  background-color: #fff;
  display: block;
  position: absolute;
  height: 0.0625rem;
  -webkit-transition: all 0.4s 0s ease;
  transition: all 0.4s 0s ease;
  border-radius: 0.0625rem;
}

.hamburger span:nth-child(1) {
  width: 66%;
  top: 0;
  right: 0;
}

.hamburger span:nth-child(2) {
  width: 83%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}

.hamburger span:nth-child(3) {
  width: 100%;
  bottom: 0;
}

.hamburger.is-openSP span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 100%;
}

.hamburger.is-openSP span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-openSP span:nth-child(3) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* ドロワーメニュー表示時、後ろのページをスクロールさせない */
body.js-fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

.contact-btn {
  color: #fff;
  background: #ebb0b6;
  font-size: 0.875rem;
  display: block;
  padding: 0.9375rem;
  max-width: 31.25rem;
  width: 100%;
  height: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0.625rem;
  -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contact-btn:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translate3d(0, 4px, 0);
          transform: translate3d(0, 4px, 0);
  opacity: 1;
}

.fv {
  margin-top: 7.5rem;
}
@media screen and (min-width: 780px) {
  .fv {
    width: 80%;
    margin: 9.375rem 6.25rem 0 auto;
    position: relative;
  }
}

.fv__inner {
  position: relative;
  max-width: 600px;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 780px) {
  .fv__inner {
    max-width: initial;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    height: 100%;
  }
}

.fv__image {
  aspect-ratio: 363/494;
  max-height: 30.875rem;
}
@media screen and (min-width: 780px) {
  .fv__image {
    aspect-ratio: 961/536;
    max-height: 56.25rem;
  }
}

.fv__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  border-radius: 0.625rem;
}

.fv__lead {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (min-width: 780px) {
  .fv__lead {
    top: 70%;
    left: -6.25rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    bottom: -6.875rem;
  }
}

.fv__content {
  position: relative; /* 擬似要素の位置を決定するために必要 */
  border-radius: 37px;
  width: 21.25rem;
  padding: 3.125rem 0;
}
@media screen and (min-width: 780px) {
  .fv__content {
    width: 100%;
    max-width: 28.25rem;
  }
}

.fv__content::before {
  content: "";
  position: absolute;
  top: -0.625rem; /* ボーダーの外側までぼかしを適用 */
  left: -0.625rem;
  right: -0.625rem;
  bottom: -0.625rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: inherit;
  -webkit-filter: blur(0.625rem);
          filter: blur(0.625rem); /* 境界線をぼかすための設定 */
  z-index: -1; /* 重なり順序を一番下に設定 */
}

.fv__catch {
  font-family: "honoka", serif;
  font-weight: 400;
}

.fv__catch span {
  display: block;
  text-align: center;
}

.fv__catch-first {
  font-size: 1.25rem;
}
@media screen and (min-width: 780px) {
  .fv__catch-first {
    font-size: 2rem;
  }
}

.fv__catch-under {
  font-size: 1.625rem;
}
@media screen and (min-width: 780px) {
  .fv__catch-under {
    font-size: 2.375rem;
  }
}

.fv__text {
  font-size: 0.875rem;
  text-align: center;
  margin-top: 1.875rem;
}
@media screen and (min-width: 780px) {
  .fv__text {
    font-size: 1.125rem;
    margin-top: 1.625rem;
  }
}

/* スマホ時メニューの装飾 */
.sp-nav {
  background-color: #fff;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  padding: 2.125rem 1.375rem 1.25rem 1.375rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  visibility: hidden;
  overflow-y: auto;
}
@media screen and (min-width: 780px) {
  .sp-nav {
    display: none;
  }
}

.sp-nav__items {
  margin-top: 5.625rem;
}

.sp-nav__item {
  padding: 1.0625rem 0;
  border-bottom: 0.0625rem solid #432210;
}

.sp-nav__item:first-child {
  border-top: 0.0625rem solid #432210;
}

.sp-nav__item a {
  color: #0f1519;
  font-size: 1rem;
  font-weight: 400;
  display: block;
}

.sp-nav__btn {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sp-nav__head {
  padding-top: 1.0625rem;
}

.sp-nav__head-item:not(:first-child) {
  margin-top: 1.0625rem;
}

.sp-nav__head-item {
  padding-left: 2.375rem;
  position: relative;
}

.sp-nav__head-item::before {
  position: absolute;
  content: "";
  background-image: url(../images/common/kaede-item2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.4375rem;
  height: 1.5rem;
  top: 50%;
  left: 1%;
  -webkit-transform: translate(1%, -50%);
          transform: translate(1%, -50%);
  display: inline-block;
}

.is-openSP.sp-nav {
  opacity: 1;
  z-index: 9998;
  visibility: visible;
}

.top-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 6.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .top-title {
    margin-top: 12.5rem;
  }
}

.top-title__heading {
  font-size: 5rem;
  color: #ebb0b6;
  font-family: "honoka", serif;
  font-weight: 300;
  margin-inline: auto;
  text-transform: uppercase;
  text-shadow: 0.25rem 0.25rem 0.25rem rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 780px) {
  .top-title__heading {
    margin-inline: initial;
    font-size: 7.5rem;
  }
}

.top-title__sub-heading {
  font-size: 1rem;
  color: #ebb0b6;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* 文字と横線を横並び */
  font-family: "honoka", serif;
  text-shadow: 0.25rem 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
  margin-left: 0.3125rem;
  margin-top: -1.25rem;
}
@media screen and (min-width: 780px) {
  .top-title__sub-heading {
    font-size: 1.125rem;
    margin-top: -0.9375rem;
  }
}

.top-title__sub-heading--contrast {
  display: block;
  text-align: center;
  margin-top: auto;
  color: #fff;
}

.top-title__sub-heading::after {
  background-color: #ebb0b6;
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; /* 横幅いっぱい */
  height: 0.0625rem;
  margin-left: 2.5rem;
}

.top-title__sub-heading--contrast::after {
  content: none;
  text-align: center;
}

.top-title__heading--reservation {
  font-size: clamp(1rem, -0.574rem + 11.45vw, 5rem);
  color: #fff;
}
@media screen and (min-width: 780px) {
  .top-title__heading--reservation {
    font-size: 7.5rem;
  }
}

.about__inner {
  position: relative;
}

@media screen and (min-width: 780px) {
  .about__container {
    width: 60%;
  }
}

.about__texts {
  margin-top: 1.875rem;
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (min-width: 780px) {
  .about__texts {
    margin-top: 5rem;
    font-size: 1rem;
    max-width: 43.25rem;
  }
}

.about__text:not(:first-child) {
  margin-top: 2.1875rem;
}

.about__btn {
  margin-inline: auto;
  margin-top: 4.375rem;
}
@media screen and (min-width: 780px) {
  .about__btn {
    margin-top: 3.25rem;
  }
}

.about__image {
  aspect-ratio: 0.7731958763;
  margin-top: 4.0625rem;
  max-width: 31.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .about__image {
    margin: initial;
    aspect-ratio: 0.7733333333;
    position: absolute;
    top: 3.75rem;
    right: 0;
    width: 50vw;
    max-width: 29rem;
  }
}

.about__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}

.btn {
  color: #0f1519;
  background-color: #fce883;
  font-size: 0.875rem;
  font-weight: 400;
  max-width: 10.875rem;
  width: 100%;
  height: 3.375rem;
  padding: 1.0625rem 2.1875rem;
  border-radius: 0.625rem;
  -webkit-box-shadow: 0.25rem 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
          box-shadow: 0.25rem 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1.5625rem;
  margin: auto;
  width: 3.125rem;
  height: 0.0625rem;
  background: #0f1519;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1.5625rem;
  margin: auto;
  width: 0.5rem;
  height: 0.5rem;
  border-left: 0.0625rem solid #0f1519;
  border-bottom: 0.0625rem solid #0f1519;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translate3d(0, 4px, 0);
          transform: translate3d(0, 4px, 0);
  opacity: 1;
}

.btn:hover::before {
  right: -1.875rem;
}

.btn:hover::after {
  right: -1.875rem;
}

.main-menu__item {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 780px) {
  .main-menu__item {
    margin-top: 11.875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.125rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.main-menu__imeges {
  position: relative;
}
@media screen and (min-width: 780px) {
  .main-menu__imeges {
    width: 37.1875rem;
  }
}

.main-menu__image {
  aspect-ratio: 375/258;
}
@media screen and (min-width: 780px) {
  .main-menu__image {
    aspect-ratio: 595/410;
  }
}

.main-menu__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}

.main-menu__content {
  margin-top: 0.9375rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 780px) {
  .main-menu__content {
    width: 30rem;
    margin-top: 0;
  }
}

.main-menu__title {
  font-size: 2rem;
  font-family: "honoka", serif;
  font-weight: 400;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  border-bottom: 0.3125rem solid #ebb0b6;
}

.main-menu__lead {
  font-size: 0.9375rem;
  line-height: 1.4666666667;
  margin-top: 1.4375rem;
}

.main-menu__texts {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.main-menu__sub-title {
  font-size: 0.9375rem;
  line-height: 1.4666666667;
  font-weight: 400;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 0.125rem dashed #ebb0b6;
  margin-top: 1.4375rem;
}

.main-menu__text {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  margin-top: 0.9375rem;
}

.main-menu__btn {
  margin-inline: auto;
  margin-top: 1.875rem;
  margin-bottom: 0.625rem;
}

.main-menu__circle-animation {
  top: -6.25rem;
}
@media screen and (min-width: 780px) {
  .main-menu__circle-animation {
    right: -16%;
  }
}

.secondary-menu__items {
  margin-top: 9.375rem;
}

.secondary-menu__item {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 780px) {
  .secondary-menu__item {
    margin-top: 11.875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (min-width: 780px) {
  .secondary-menu__item:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.secondary-menu__item:nth-child(n+2) {
  margin-top: 12.5rem;
}
@media screen and (min-width: 780px) {
  .secondary-menu__item:nth-child(n+2) {
    margin-top: 14.375rem;
  }
}

.secondary-menu__imeges {
  position: relative;
}
@media screen and (min-width: 780px) {
  .secondary-menu__imeges {
    width: 37.1875rem;
  }
}

.secondary-menu__image {
  aspect-ratio: 375/258;
}
@media screen and (min-width: 780px) {
  .secondary-menu__image {
    aspect-ratio: 595/410;
  }
}

.secondary-menu__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}

.secondary-menu__content {
  margin-top: 0.9375rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 780px) {
  .secondary-menu__content {
    width: 30rem;
    margin-top: 0;
  }
}

.secondary-menu__title {
  font-size: 2rem;
  font-family: "honoka", serif;
  font-weight: 400;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration-line: underline;
  text-decoration-color: #ebb0b6;
  text-decoration-thickness: 0.3125rem;
  text-underline-offset: 0.4375rem;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

@media screen and (min-width: 780px) {
  .secondary-menu__title--option {
    margin-inline: auto;
  }
}

.secondary-menu__texts {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.secondary-menu__lead {
  font-size: 0.9375rem;
  line-height: 1.4666666667;
  margin-top: 0.9375rem;
}

.secondary-menu__price {
  font-size: 1.25rem;
  line-height: 1.2222222222;
  font-weight: 400;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 0.125rem dashed #ebb0b6;
  margin-top: 1.875rem;
}

.secondary-menu__price-texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.875rem;
  margin-top: 0.9375rem;
}

.secondary-menu__price-text {
  font-size: 1.125rem;
}

.secondary-menu__price-first {
  font-size: 0.875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}

.secondary-menu__price-first::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0.1875rem;
  background-color: #fce883;
  left: 0;
}

.secondary-menu__sub-title {
  font-size: 0.9375rem;
  line-height: 1.4666666667;
  font-weight: 400;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 0.125rem dashed #ebb0b6;
  margin-top: 1.4375rem;
}

.secondary-menu__text {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  margin-top: 0.9375rem;
}

.secondary-menu__circle {
  top: -6.25rem;
  left: -1.875rem;
}
@media screen and (min-width: 780px) {
  .secondary-menu__circle {
    left: auto;
    right: -5.625rem;
  }
}

@media screen and (min-width: 780px) {
  .secondary-menu__item:nth-child(2n) .secondary-menu__circle {
    right: auto;
    left: -5.625rem;
  }
}

.circle-animation {
  position: absolute;
}

.circle-animetion__image {
  width: 11.75rem;
  max-width: 100%;
  -webkit-animation: circleAnime 20s linear infinite forwards;
          animation: circleAnime 20s linear infinite forwards;
}

@-webkit-keyframes circleAnime {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes circleAnime {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.circle-animetion__text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2.5rem;
  color: #ebb0b6;
  font-weight: 300;
  font-family: "honoka", serif;
}

.menu-slider {
  position: relative;
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .menu-slider {
    margin-top: initial;
  }
}

.menu-slider__arrows {
  position: absolute;
  top: 3.125rem;
  right: 0;
  z-index: 9997;
}
@media screen and (min-width: 780px) {
  .menu-slider__arrows {
    top: 20%;
  }
}

.menu-slider__arrows img {
  width: 2.8125rem;
}
@media screen and (min-width: 780px) {
  .menu-slider__arrows img {
    width: 4.0625rem;
  }
}

.first__inner {
  position: relative;
}

.first__inner::after {
  position: absolute;
  content: "";
  background-image: url(../images/kaede-illustration.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 10rem;
  height: 8.5625rem;
  bottom: -3.125rem;
  right: 0;
  z-index: -1;
}
@media screen and (min-width: 780px) {
  .first__inner::after {
    right: 1.25rem;
  }
}

.first__texts {
  margin-top: 2.5rem;
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (min-width: 780px) {
  .first__texts {
    max-width: 55rem;
    margin-inline: auto;
    text-align: left;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1rem;
  }
}

.first__text {
  font-size: 0.875rem;
  line-height: 1.6428571429;
}
@media screen and (min-width: 780px) {
  .first__text {
    font-size: 1rem;
    line-height: 1.4375;
  }
}

.first__text:not(:first-child) {
  margin-top: 1.875rem;
}

.faq__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
  max-width: 100%;
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .faq__items {
    gap: 0.5rem;
  }
}

.faq__item {
  -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
          box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
  border-radius: 0.625rem;
  margin-top: 0.625rem;
}
@media screen and (min-width: 780px) {
  .faq__item {
    margin-top: 1.875rem;
  }
}

.faq__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.75rem 0.9375rem;
}
@media screen and (min-width: 780px) {
  .faq__item-head {
    padding: 1.625rem 3.625rem;
  }
}

.faq__item-text,
.faq__item-content-text {
  font-size: 0.875rem;
  line-height: 1.6428571429;
  font-weight: 400;
  position: relative;
  padding-left: 2.5rem;
  padding-right: 0.9375rem;
}
@media screen and (min-width: 780px) {
  .faq__item-text,
  .faq__item-content-text {
    font-size: 1rem;
    padding-left: 3.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.faq__item-text::before {
  background-image: url(../images/faq-q-icon.svg);
}

.faq__item-content-text::before {
  background-image: url(../images/faq-a-icon.svg);
}

.faq__item-text::before,
.faq__item-content-text::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.6875rem;
  height: 1.6875rem;
  left: 0;
  top: 0;
}
@media screen and (min-width: 780px) {
  .faq__item-text::before,
  .faq__item-content-text::before {
    width: 2.625rem;
    height: 2.625rem;
    top: initial;
  }
}

.faq__item-icon {
  width: 2rem;
  height: 1rem;
  max-width: 100%;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

/* アコーディオンが開いた時のスタイル */
.faq__item[open]:not([data-accordion-before-close]) .faq__item-icon {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.faq__item-content {
  padding: 0.625rem 3.125rem 1.75rem 0.9375rem;
}
@media screen and (min-width: 780px) {
  .faq__item-content {
    padding: 1.625rem 3.625rem;
  }
}

.js-faq-content {
  -webkit-animation: fadeIn 0.5s ease infinite;
          animation: fadeIn 0.5s ease infinite;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.access__container {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 780px) {
  .access__container {
    margin-top: 5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 6.125rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.access__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
}
@media screen and (min-width: 780px) {
  .access__logo {
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
}

.access__logo img {
  width: 4.125rem;
  max-width: 100%;
}
@media screen and (min-width: 780px) {
  .access__logo img {
    width: 6.875rem;
  }
}

.access__logo p {
  font-size: 0.875rem;
  font-family: "honoka", serif;
  line-height: 1.6428571429;
}
@media screen and (min-width: 780px) {
  .access__logo p {
    font-size: 1.125rem;
    line-height: 1.2777777778;
  }
}

.access__address {
  font-size: 0.875rem;
  text-align: center;
  line-height: 1.6428571429;
  margin-top: 1.25rem;
}
@media screen and (min-width: 780px) {
  .access__address {
    line-height: 1.4375;
    font-size: 1rem;
    text-align: left;
    margin-left: 1.25rem;
  }
}

.access__address span {
  font-size: 0.75rem;
  line-height: 1.9166666667;
}
@media screen and (min-width: 780px) {
  .access__address span {
    line-height: 1.6428571429;
    font-size: 0.875rem;
  }
}

.access__table {
  margin-inline: auto;
  margin-top: 1.25rem;
}
@media screen and (min-width: 780px) {
  .access__table {
    margin-inline: initial;
    width: 21.25rem;
    margin-left: 1.25rem;
  }
}

.access__table-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6428571429;
}
@media screen and (min-width: 780px) {
  .access__table-body {
    font-size: 1rem;
    line-height: 1.4375;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 26px;
  }
}

.access__table-body:not(:first-child) {
  margin-top: 0.9375rem;
}

.access__table-heading {
  font-weight: 400;
}
@media screen and (min-width: 780px) {
  .access__table-heading {
    width: 25%;
    text-align: left;
  }
}

.access__table-text {
  text-align: center;
}
@media screen and (min-width: 780px) {
  .access__table-text {
    width: 75%;
    text-align: left;
  }
}

.access__btn {
  margin-top: 2.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .access__btn {
    margin-inline: initial;
    margin-left: 1.25rem;
    margin-top: 1.875rem;
  }
}

@media screen and (min-width: 780px) {
  .access__map {
    width: 50%;
    max-width: 600px;
  }
}

.bg-image--top {
  position: relative;
}

.bg-image--top::before {
  content: "";
  position: absolute;
  bottom: -0.125rem;
  width: 100%;
  height: 16.6666666667vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../images/bg-wave-topSP.svg);
}
@media screen and (min-width: 780px) {
  .bg-image--top::before {
    background-image: url(../images/bg-wave-top.svg);
    bottom: -1.875rem;
    height: 12.7083333333vw;
    z-index: -1;
  }
}

.bg-image--bottom {
  position: relative;
}

.bg-image--bottom::after {
  content: "";
  position: absolute;
  top: -0.0625rem;
  width: 100%;
  height: 17.3333333333vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../images/bg-wave-bottomSP.svg);
}
@media screen and (min-width: 780px) {
  .bg-image--bottom::after {
    background-image: url(../images/bg-wave-bottom.svg);
    top: -2.5rem;
    height: 12.7083333333vw;
    z-index: -1;
  }
}

.reservation {
  margin: 0 calc((100vw - 100%) / -2);
  margin-top: 12.5rem;
  margin-bottom: 8.125rem;
}
@media screen and (min-width: 780px) {
  .reservation {
    margin-top: 21.875rem;
    margin-bottom: 15.625rem;
  }
}

.reservation__inner {
  background: #ebb0b6;
  padding-bottom: 3.125rem;
}

.reservation__text {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.6428571429;
}

.reservation__btns {
  margin-top: 4.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 780px) {
  .reservation__btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 5.625rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.reservation__btn {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 400;
  color: #0f1519;
  max-width: 15.3125rem;
  width: 100%;
  height: 4.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fce883;
  border-radius: 0.625rem;
  -webkit-box-shadow: 0.25rem 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
          box-shadow: 0.25rem 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
}

.reservation__btn-text {
  margin-right: 1.25rem;
}

.reservation__btn-arrow {
  width: 2.125rem;
  height: 2.125rem;
}
@media screen and (min-width: 780px) {
  .reservation__btn-arrow {
    width: 2.1875rem;
    height: 2.1875rem;
  }
}

.reservation__btn:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translate3d(0, 0.25rem, 0);
          transform: translate3d(0, 0.25rem, 0);
  opacity: 1;
}

@media screen and (min-width: 780px) {
  .footer {
    margin-top: 6.25rem;
  }
}

@media screen and (min-width: 780px) {
  .footer__inner {
    margin-right: 7.5rem;
  }
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  max-width: 8.125rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .footer__nav {
    gap: 3.125rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 26.875rem;
    margin-inline: initial;
    margin-left: auto;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.footer__item {
  font-size: 0.875rem;
  font-family: "honoka", serif;
  line-height: 1.6428571429;
}

.footer__item a {
  color: #0f1519;
}

.column02 .footer__item {
  margin-top: 0.625rem;
}

.column02 .footer__item:first-child {
  margin-left: 0.625rem;
}
@media screen and (min-width: 780px) {
  .column02 .footer__item:first-child {
    margin-top: 0;
    margin-left: 1.5625rem;
  }
}

.column02 .footer__item:nth-child(n+2) {
  margin-left: 1.25rem;
}
@media screen and (min-width: 780px) {
  .column02 .footer__item:nth-child(n+2) {
    margin-left: 1.875rem;
  }
}

.column03 .footer__item {
  margin-top: 0.625rem;
}

@media screen and (min-width: 780px) {
  .column03 .footer__item:first-child {
    margin-top: 0;
  }
}

.footer__item--menu {
  position: relative;
}

.footer__item--menu::before {
  content: "";
  position: absolute;
  background-image: url(../images/common/header-icon2x.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.0625rem;
  height: 0.9375rem;
  top: 50%;
  left: -1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer__copy {
  font-size: 0.5625rem;
  line-height: 2.5555555556;
  color: #432210;
  margin-top: 2.8125rem;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .footer__copy {
    font-size: 0.6875rem;
  }
}

.pagetop {
  position: fixed;
  z-index: 9998;
  right: 5%;
  bottom: 5%;
}
@media screen and (min-width: 780px) {
  .pagetop {
    right: 2%;
  }
}

.pagetop__link {
  position: relative;
  display: inline-block;
  width: 1.4375rem;
  height: 9.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.pagetop__link-icon::after {
  position: absolute;
  content: "";
  background-image: url(../images/common/pagetop-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 1.4375rem;
  height: 3.375rem;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
}

.pagetop__link-text {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-family: "honoka", serif;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  margin-top: 3.375rem;
  color: #432210;
}
@media screen and (min-width: 780px) {
  .pagetop__link-text {
    font-size: 0.875rem;
  }
}

@media screen and (min-width: 780px) {
  .header.is-fixed {
    height: 4.375rem;
  }
}

@media screen and (min-width: 780px) {
  .header.is-fixed .header__logo-image {
    width: 8.125rem;
  }
}

.header.is-fixed .header__nav-items {
  -webkit-box-shadow: 0.1875rem 0.1875rem 0.1875rem 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0.1875rem 0.1875rem 0.1875rem 0 rgba(0, 0, 0, 0.25);
}

.header.is-fixed .header__menu-items {
  top: 3.75rem;
}

.text-animation {
  background: -webkit-gradient(linear, left top, right top, from(rgba(235, 176, 182, 0.5)), to(rgba(235, 176, 182, 0.5)));
  background: linear-gradient(90deg, rgba(235, 176, 182, 0.5), rgba(235, 176, 182, 0.5)); /* 線の色 */
  background-position: left bottom; /* 線の起点を左・下に設定 */
  background-repeat: no-repeat;
  background-size: 0 0.5em; /* 線の横幅を0、縦幅を0.5emに */
  padding-bottom: 0; /* 下線を下にズラす */
  -webkit-transition: background-size 1.5s;
  transition: background-size 1.5s; /* 線を伸ばすアニメーション実行時間を指定 */
}

.text-animation.active {
  background-size: 100% 0.5em; /* 線の横幅を100%にする */
}

.sub-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: #ebb0b6;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: nowrap;
}
@media screen and (min-width: 780px) {
  .sub-title {
    font-size: 1.75rem;
  }
}

.sub-title::after {
  background-color: #ebb0b6;
  content: "";
  height: 0.0625rem;
  width: 17.25rem;
  margin-left: 0.9375rem;
}
@media screen and (min-width: 780px) {
  .sub-title::after {
    width: 27.625rem;
  }
}

.kaede-icon {
  position: relative;
}

.kaede-icon::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.5625rem;
  height: 1.6875rem;
  left: 0;
  background-image: url(../images/common/kaede-item2x.png);
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.125rem;
}
@media screen and (min-width: 780px) {
  .pagination {
    gap: 1.75rem;
  }
}

.pagination__link {
  line-height: 1.2;
  font-size: 1.25rem;
  font-weight: 400;
  color: #ebb0b6;
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 2.9375rem;
  height: 2.9375rem;
  border-radius: 0.625rem;
}
@media screen and (min-width: 780px) {
  .pagination__link {
    font-weight: 700;
    width: 3.3125rem;
    height: 3.3125rem;
  }
}

.pagination__item-image {
  width: 0.6875rem;
  height: 1.1875rem;
}
@media screen and (min-width: 780px) {
  .pagination__item-image {
    width: 0.75rem;
    height: 1.3125rem;
  }
}

.pagination__item {
  border-radius: 0.625rem;
  border: solid 0.0625rem #ebb0b6;
}

.pagination__item .active-item {
  pointer-events: none;
  background-color: #ebb0b6;
  border: none;
  width: 2.9375rem;
  height: 2.9375rem;
  color: #fff;
}
@media screen and (min-width: 780px) {
  .pagination__item .active-item {
    width: 3.3125rem;
    height: 3.3125rem;
  }
}

.pagination__prev {
  margin-right: 1.25rem;
}
@media screen and (min-width: 780px) {
  .pagination__prev {
    margin-right: 1.25rem;
  }
}

.pagination__next {
  margin-left: 1.25rem;
}
@media screen and (min-width: 780px) {
  .pagination__next {
    margin-left: 0.9375rem;
  }
}

.zoom-img {
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 780px) {
  .zoom-img {
    max-width: 23.375rem;
  }
}

.zoom-img img {
  height: auto;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  /* ゆっくり変化させる */
}

.school-reviews-page__link:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  /* 拡大 */
}

.map-btn {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4375;
  color: #0f1519;
  max-width: 9.375rem;
  width: 100%;
  height: 1.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 780px) {
  .map-btn {
    max-width: 9.625rem;
  }
}

.map-btn__arrow {
  width: 1.8125rem;
  height: 1.8125rem;
  display: inline-block;
}
@media screen and (min-width: 780px) {
  .map-btn__arrow {
    width: 2.1875rem;
    height: 2.1875rem;
  }
}

.map-btn__body {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 780px) {
  .map-btn__body {
    margin-top: initial;
  }
}

.map-btn__body iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.125rem;
}
@media screen and (min-width: 780px) {
  .wp-pagenavi {
    gap: 1.75rem;
  }
}

.wp-pagenavi span.current,
.wp-pagenavi a.page {
  line-height: 1.2;
  font-size: 1.25rem;
  font-weight: 400;
  color: #ebb0b6;
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 2.9375rem;
  height: 2.9375rem;
  border-radius: 0.625rem;
  border: solid 0.0625rem #ebb0b6;
}
@media screen and (min-width: 780px) {
  .wp-pagenavi span.current,
  .wp-pagenavi a.page {
    font-weight: 700;
    width: 3.3125rem;
    height: 3.3125rem;
  }
}

.wp-pagenavi span.current {
  pointer-events: none;
  background-color: #ebb0b6;
  border: none;
  color: #fff;
}

.previouspostslink {
  margin-right: 1.25rem;
}
@media screen and (min-width: 780px) {
  .previouspostslink {
    margin-right: 1.25rem;
  }
}

.nextpostslink {
  margin-left: 1.25rem;
}
@media screen and (min-width: 780px) {
  .nextpostslink {
    margin-left: 0.9375rem;
  }
}

.pagination__item-image {
  width: 0.6875rem;
  height: 1.1875rem;
}
@media screen and (min-width: 780px) {
  .pagination__item-image {
    width: 0.75rem;
    height: 1.3125rem;
  }
}

.under-page {
  margin-top: 7.5rem;
}
@media screen and (min-width: 780px) {
  .under-page {
    margin-top: 11.25rem;
  }
}

.under-page__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .under-page__title {
    margin-top: 12.5rem;
  }
}

.under-page__heading {
  font-size: 5rem;
  text-shadow: 0.125rem 0.125rem 0.125rem rgba(0, 0, 0, 0.15);
  font-family: "honoka", serif;
  font-weight: 300;
  text-transform: uppercase;
  color: #ebb0b6;
}
@media screen and (min-width: 780px) {
  .under-page__heading {
    font-size: 7.5rem;
  }
}

.under-page__sub-heading {
  font-size: 1rem;
  color: #ebb0b6;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* 文字と横線を横並び */
  font-family: "honoka", serif;
  text-shadow: 0.25rem 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
  margin-left: 0.3125rem;
  margin-top: -1.25rem;
}
@media screen and (min-width: 780px) {
  .under-page__sub-heading {
    font-size: 1.125rem;
    margin-top: -0.9375rem;
  }
}

.under-page__sub-heading::after {
  background-color: #ebb0b6;
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; /* 横幅いっぱい */
  height: 0.0625rem;
  margin-left: 2.5rem;
}

.under-page__sub-heading--decorated-both {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
}

.under-page__sub-heading--decorated-both::before,
.under-page__sub-heading--decorated-both::after {
  content: "";
  background-color: #ebb0b6;
  height: 0.0625rem;
  width: 30%;
  -webkit-box-flex: inherit;
      -ms-flex-positive: inherit;
          flex-grow: inherit;
}

.under-page__sub-heading--decorated-both::before {
  margin-right: 0.9375rem;
}

.under-page__sub-heading--decorated-both::after {
  margin-left: 0.9375rem;
}

.about-page__title {
  margin-inline: auto;
}

.about-page__sub-title {
  margin-inline: auto;
}

.about-page__sub-title--greeting {
  width: 15.9375rem;
}
@media screen and (min-width: 780px) {
  .about-page__sub-title--greeting {
    width: 25.875rem;
  }
}

.about-page__group02 {
  margin-top: 6.25rem;
}
@media screen and (min-width: 780px) {
  .about-page__group02 {
    margin-top: 10.625rem;
  }
}

.about-page__group03 {
  margin-top: 6.25rem;
}
@media screen and (min-width: 780px) {
  .about-page__group03 {
    margin-top: 10.625rem;
  }
}

.about-page__texts {
  margin-top: 3.75rem;
}
@media screen and (min-width: 780px) {
  .about-page__texts {
    margin-top: 4.6875rem;
    max-width: 50rem;
    margin-inline: auto;
  }
}

.about-page__texts p {
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (min-width: 780px) {
  .about-page__texts p {
    font-size: 1rem;
  }
}

.about-page__text:not(:first-child) {
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .about-page__text:not(:first-child) {
    margin-top: 2.8125rem;
  }
}

.about-page__list {
  margin-top: 3.125rem;
}
@media screen and (min-width: 780px) {
  .about-page__list {
    margin-top: 3.4375rem;
    max-width: 33.75rem;
    margin-inline: auto;
  }
}

.about-page__list-item {
  padding-left: 2rem;
}

.about-page__list-item:not(:first-child) {
  margin-top: 1.5625rem;
}
@media screen and (min-width: 780px) {
  .about-page__list-item:not(:first-child) {
    margin-top: 2.1875rem;
  }
}

.about-page__greeting-content {
  margin-top: 3.125rem;
}
@media screen and (min-width: 780px) {
  .about-page__greeting-content {
    margin-top: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 6.25rem;
  }
}

.about-page__greeting-image {
  aspect-ratio: 335/417;
}
@media screen and (min-width: 780px) {
  .about-page__greeting-image {
    aspect-ratio: 440/548;
  }
}

.about-page__greeting-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-page__greeting-texts {
  margin-top: 2.9375rem;
  font-size: 0.875rem;
  line-height: 1.6428571429;
  word-break: auto-phrase;
}
@media screen and (min-width: 780px) {
  .about-page__greeting-texts {
    margin-top: 0;
    font-size: 1rem;
  }
}

.about-page__greeting-text:not(:first-child) {
  margin-top: 1.875rem;
}
@media screen and (min-width: 780px) {
  .about-page__greeting-text:not(:first-child) {
    margin-top: 1.4375rem;
  }
}

.about-page__greeting-name {
  margin-top: 1.875rem;
  text-align: right;
}

.menu-page__title {
  margin-inline: auto;
}

.menu-page__text {
  font-size: 0.875rem;
  line-height: 2;
  margin-top: 3.75rem;
}
@media screen and (min-width: 780px) {
  .menu-page__text {
    font-size: 1rem;
    text-align: center;
  }
}

.menu-page__content {
  margin-top: 10.625rem;
}
@media screen and (min-width: 780px) {
  .menu-page__content {
    margin-top: 14.375rem;
  }
}

.menu-page__item {
  margin-top: 7.5rem;
}
@media screen and (min-width: 780px) {
  .menu-page__item {
    margin-top: 16.25rem;
  }
}

.menu-page__item:nth-child(n+2) {
  margin-top: 12.5rem;
}
@media screen and (min-width: 780px) {
  .menu-page__item:nth-child(n+2) {
    margin-top: 16.25rem;
  }
}

.menu-page__circle {
  left: -1.875rem;
}
@media screen and (min-width: 780px) {
  .menu-page__circle {
    left: auto;
  }
}

.menu-page__btn {
  max-width: 15.625rem;
  margin-inline: auto;
  margin-top: 5rem;
}

.chiropracti-page__title {
  margin-inline: auto;
}

.chiropracti-page__heading {
  font-size: 10vw;
}
@media screen and (min-width: 780px) {
  .chiropracti-page__heading {
    font-size: 6.25rem;
  }
}

.chiropracti-page__sub-heading {
  margin-top: auto;
}

.chiropracti-page__btn {
  max-width: 15.625rem;
  margin-inline: auto;
  margin-top: 9.375rem;
}
@media screen and (min-width: 780px) {
  .chiropracti-page__btn {
    margin-top: 12.5rem;
  }
}

.heat-therapy-page__title {
  margin-inline: auto;
  white-space: nowrap;
}
@media screen and (min-width: 780px) {
  .heat-therapy-page__title {
    max-width: 100%;
  }
}

.heat-therapy-page__heading {
  font-size: 10vw;
}
@media screen and (min-width: 780px) {
  .heat-therapy-page__heading {
    font-size: 6.25rem;
  }
}

.heat-therapy-page__sub-heading {
  margin-top: auto;
}

.heat-therapy-page__title::before,
.heat-therapy-page__title::after {
  width: 30%;
}
@media screen and (min-width: 780px) {
  .heat-therapy-page__title::before,
  .heat-therapy-page__title::after {
    width: 9.375rem;
  }
}

.heat-therapy-page__btn {
  max-width: 15.625rem;
  margin-inline: auto;
  margin-top: 9.375rem;
}
@media screen and (min-width: 780px) {
  .heat-therapy-page__btn {
    margin-top: 12.5rem;
  }
}

.esthetic-page__title {
  margin-inline: auto;
}

.esthetic-page__hading {
  font-size: 12vw;
}
@media screen and (min-width: 780px) {
  .esthetic-page__hading {
    font-size: 6.25rem;
  }
}

.esthetic-page__sub-heading {
  margin-top: auto;
}

.esthetic-page__title::before,
.esthetic-page__title::after {
  width: 30%;
}
@media screen and (min-width: 780px) {
  .esthetic-page__title::before,
  .esthetic-page__title::after {
    width: 9.375rem;
  }
}

.esthetic-page__options {
  margin-top: 5rem;
}
@media screen and (min-width: 780px) {
  .esthetic-page__options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5625rem;
    margin-top: 6.25rem;
  }
}

.esthetic-page__option-wrap {
  margin-top: 8.75rem;
}

.esthetic-page__option {
  border: 0.0625rem solid #b5b5b5;
  border-radius: 0.3125rem;
  padding: 1.875rem 0.9375rem 3.125rem 0.9375rem;
}
@media screen and (min-width: 780px) {
  .esthetic-page__option {
    padding: 1.875rem;
    margin-top: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 0.8125rem);
            flex: 0 0 calc(50% - 0.8125rem);
  }
}

@media screen and (min-width: 780px) {
  .esthetic-page__option:nth-child(2n) {
    padding-left: 3.125rem;
  }
}

.esthetic-page__option:nth-child(n+2) {
  margin-top: 6.25rem;
}
@media screen and (min-width: 780px) {
  .esthetic-page__option:nth-child(n+2) {
    margin-top: 0;
  }
}

@media screen and (min-width: 780px) {
  .esthetic-page__option:nth-child(n+3) {
    margin-top: 1.875rem;
  }
}

.esthetic-page__option-title {
  padding-left: 1.875rem;
  font-family: "honoka", serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.esthetic-page__option-lead {
  font-size: 0.9375rem;
  line-height: 1.4666666667;
  margin-top: 0.625rem;
}

.esthetic-page__option-price {
  font-size: 1.125rem;
  line-height: 1.2222222222;
  font-weight: 400;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 0.125rem dashed #ebb0b6;
  margin-top: 1.875rem;
}

.esthetic-page__option-price-texts {
  margin-top: 0.9375rem;
}

.esthetic-page__option-price-text {
  font-size: 0.875rem;
}
@media screen and (min-width: 780px) {
  .esthetic-page__option-price-text {
    font-size: 1rem;
  }
}

.esthetic-page__option-sub-title {
  font-size: 0.9375rem;
  line-height: 1.4666666667;
  font-weight: 400;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 0.125rem dashed #ebb0b6;
  margin-top: 1.4375rem;
}

.esthetic-page__option-text {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  margin-top: 0.9375rem;
}

.esthetic-page__btn {
  max-width: 15.625rem;
  margin-inline: auto;
  margin-top: 9.375rem;
}
@media screen and (min-width: 780px) {
  .esthetic-page__btn {
    margin-top: 12.5rem;
  }
}

.reviews-page__title {
  margin-inline: auto;
}

.reviews-page__content {
  margin-top: 6.25rem;
}

@media screen and (min-width: 780px) {
  .reviews-page__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.reviews-page__item:nth-child(n+2) {
  margin-top: 6.25rem;
}

@media screen and (min-width: 780px) {
  .reviews-page__item-texts {
    width: 60%;
  }
}

.reviews-page__item-title {
  padding-left: 1.875rem;
  font-size: 1.125rem;
}
@media screen and (min-width: 780px) {
  .reviews-page__item-title {
    font-size: 1.375rem;
  }
}

.reviews-page__item-text {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  margin-top: 1.25rem;
}
@media screen and (min-width: 780px) {
  .reviews-page__item-text {
    font-size: 1rem;
    line-height: 1.625;
  }
}

.reviews-page__item-image {
  margin-top: 2.8125rem;
  aspect-ratio: 335/335;
}
@media screen and (min-width: 780px) {
  .reviews-page__item-image {
    margin-top: 0;
    aspect-ratio: 350/350;
    max-width: 21.875rem;
  }
}

.reviews-page__item-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.reviews-page__pagination {
  margin-top: 4.125rem;
}
@media screen and (min-width: 780px) {
  .reviews-page__pagination {
    margin-top: 7.8125rem;
  }
}

.reviews-page__pagination-image {
  width: 2.8125rem;
  height: 2.8125rem;
}

.school-page__title {
  margin-inline: auto;
}

.school-page__heading {
  font-size: 19vw;
}
@media screen and (min-width: 780px) {
  .school-page__heading {
    font-size: 6.25rem;
  }
}

.school-page__feature {
  margin-top: 3.75rem;
}
@media screen and (min-width: 780px) {
  .school-page__feature {
    margin-top: 4.6875rem;
    margin-inline: auto;
  }
}

.school-page__list {
  margin-top: 3.125rem;
}
@media screen and (min-width: 780px) {
  .school-page__list {
    margin-top: 3.4375rem;
    max-width: 43.125rem;
    margin-inline: auto;
  }
}

.school-page__list-item {
  padding-left: 2rem;
}

.school-page__list-item:not(:first-child) {
  margin-top: 1.5625rem;
}
@media screen and (min-width: 780px) {
  .school-page__list-item:not(:first-child) {
    margin-top: 2.1875rem;
  }
}

.school-page__texts {
  margin-top: 3.75rem;
}
@media screen and (min-width: 780px) {
  .school-page__texts {
    margin-top: 6.25rem;
    max-width: 50rem;
    margin-inline: auto;
  }
}

.school-page__texts p {
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (min-width: 780px) {
  .school-page__texts p {
    font-size: 1rem;
  }
}

.school-page__text:not(:first-child) {
  margin-top: 1.5625rem;
}
@media screen and (min-width: 780px) {
  .school-page__text:not(:first-child) {
    margin-top: 2.1875rem;
  }
}

.school-page__images {
  margin-top: 4.6875rem;
}
@media screen and (min-width: 780px) {
  .school-page__images {
    margin-top: 9.375rem;
  }
}

@media screen and (min-width: 780px) {
  .school-page__image01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5625rem;
  }
}

.school-page__image-side {
  aspect-ratio: 290/218;
}
@media screen and (min-width: 780px) {
  .school-page__image-side {
    aspect-ratio: 382/287;
  }
}

.school-page__image-side:not(:first-child) {
  margin-top: 1.875rem;
}
@media screen and (min-width: 780px) {
  .school-page__image-side:not(:first-child) {
    margin-top: 0;
  }
}

.school-page__image-side:nth-child(2n+1) {
  margin-left: calc((100vw - 100%) / 2 * -1);
}
@media screen and (min-width: 780px) {
  .school-page__image-side:nth-child(2n+1) {
    margin-left: auto;
  }
}

.school-page__image-side:nth-child(2n) {
  margin-right: calc((100vw - 100%) / 2 * -1);
}
@media screen and (min-width: 780px) {
  .school-page__image-side:nth-child(2n) {
    margin-right: auto;
  }
}

.school-page__image-side img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.school-page__image02 {
  margin-top: 3.75rem;
}
@media screen and (min-width: 780px) {
  .school-page__image02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5rem;
    margin-top: 5.9375rem;
    max-width: 41.875rem;
    margin-inline: auto;
  }
}

.school-page__image-vertical {
  aspect-ratio: 170/212;
}
@media screen and (min-width: 780px) {
  .school-page__image-vertical {
    aspect-ratio: 280/350;
  }
}

.school-page__image-vertical img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.school-page__image-vertical:not(:first-child) {
  margin-top: 1.875rem;
}
@media screen and (min-width: 780px) {
  .school-page__image-vertical:not(:first-child) {
    margin-top: 0;
  }
}

.school-page__image-vertical:nth-child(2n+1) {
  margin-right: calc((100vw - 100%) / 2 * -1);
}
@media screen and (min-width: 780px) {
  .school-page__image-vertical:nth-child(2n+1) {
    margin-right: auto;
  }
}

.school-page__image-vertical:nth-child(2n) {
  margin-left: calc((100vw - 100%) / 2 * -1);
}
@media screen and (min-width: 780px) {
  .school-page__image-vertical:nth-child(2n) {
    margin-left: auto;
  }
}

.school-page__course {
  margin-top: 3.75rem;
}
@media screen and (min-width: 780px) {
  .school-page__course {
    margin-top: 11.25rem;
  }
}

.school-page__courses-items {
  max-width: 18.75rem;
  margin-inline: auto;
  margin-top: 3.125rem;
}
@media screen and (min-width: 780px) {
  .school-page__courses-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 6.25rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 62.1875rem;
  }
}

.school-page__course-item:not(:first-child) {
  margin-top: 3.75rem;
}
@media screen and (min-width: 780px) {
  .school-page__course-item:not(:first-child) {
    margin-top: 0;
  }
}

.school-page__course-title {
  padding-left: 2rem;
  font-size: 1.75rem;
  font-family: "honoka", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.school-page__course-times {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  margin-top: 1.875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.school-page__course-duration {
  width: 7.8125rem;
  background-color: #ebb0b6;
  border-radius: 0.1875rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.6428571429;
}

.school-page__course-hours {
  font-size: 1rem;
  line-height: 1.4375;
}

.school-page__courses-notice {
  margin-top: 5rem;
  font-size: 0.875rem;
  line-height: 1.6428571429;
}
@media screen and (min-width: 780px) {
  .school-page__courses-notice {
    margin-top: 4.375rem;
    max-width: 32.5rem;
    margin-inline: auto;
  }
}

.school-page__btn {
  margin-top: 5rem;
  max-width: 18.75rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .school-page__btn {
    margin-top: 8.125rem;
  }
}

@media screen and (min-width: 780px) {
  .school-reviews-page {
    margin-top: 15rem;
  }
}

.school-reviews-page__title {
  margin-inline: auto;
  text-align: center;
}

.school-reviews-page__heading {
  font-size: 13vw;
  max-width: 60vw;
}
@media screen and (min-width: 780px) {
  .school-reviews-page__heading {
    font-size: 6.25rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
  }
}

.school-reviews-page__sub-heading {
  margin-top: auto;
}
@media screen and (min-width: 780px) {
  .school-reviews-page__sub-heading {
    margin-top: -0.9375rem;
  }
}

.school-reviews-page__container {
  margin-top: 8.75rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  list-style-type: "";
}
@media screen and (min-width: 780px) {
  .school-reviews-page__container {
    -ms-grid-columns: 1fr 2.1875rem 1fr 2.1875rem 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    -webkit-column-gap: 2.1875rem;
       -moz-column-gap: 2.1875rem;
            column-gap: 2.1875rem;
    row-gap: 0.625rem;
    margin-top: 8.75rem;
  }
}

.school-reviews-page__link {
  width: 100%;
  color: #0f1519;
  -webkit-box-shadow: 0.25rem 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0.25rem 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.25);
  margin-inline: auto;
  padding-bottom: 1.875rem;
  display: block grid;
  /** 行方向のサイズを指定 **/
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  /** 4行分のサイズを使う **/
  -ms-grid-row-span: 3;
  grid-row: span 3;
  max-width: 28.125rem;
}

/* 2つ目の記事以降に余白を追加 */
.school-reviews-page__link:nth-child(n+2) {
  margin-top: 5.625rem;
}
@media screen and (min-width: 780px) {
  .school-reviews-page__link:nth-child(n+2) {
    margin-top: 0;
  }
}

/* 2行目以降に余白を追加 */
@media screen and (min-width: 780px) {
  .school-reviews-page__link:nth-child(n+4) {
    margin-top: 5.9375rem; /* 上部に余白を追加 */
  }
}

.school-reviews-page__image {
  aspect-ratio: 257/345;
  width: 77%;
  margin-top: 1.25rem;
  margin-inline: auto;
}

.school-reviews-page__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.school-reviews-page__item-title {
  font-size: 1.25rem;
  margin-top: 1.25rem;
  margin-right: 1.25rem;
  margin-left: 1.5625rem;
  font-weight: 400;
}

.school-reviews-page__course-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.school-reviews-page__course-content {
  font-size: 0.75rem;
  line-height: 1.9166666667;
  background-color: #ebb0b6;
  border-radius: 0.1875rem;
  padding: 0.125rem 0.8125rem;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.school-reviews-page__course-titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; /* 縦に並べる */
  gap: 0.3125rem; /* 講座間の隙間 */
}

.school-reviews-page__course-title {
  font-size: 0.75rem;
  line-height: 1.9166666667;
}

.school-reviews-page__wrap {
  -ms-flex-item-align: start;
      align-self: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 1.5625rem;
}

.school-reviews-page__arrow {
  position: relative;
  display: inline-block;
  width: 2rem;
  height: 0.9375rem;
  -webkit-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.school-reviews-page__arrow::before {
  position: absolute;
  content: "";
  background-color: #fce883;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 3.5625rem;
  height: 3.5625rem;
  border-radius: 100%;
  z-index: -1;
  -webkit-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}

.school-reviews-page__link:hover .school-reviews-page__arrow {
  -webkit-transform: translateX(17%);
          transform: translateX(17%);
}

.school-reviews-page__link:hover .school-reviews-page__arrow::before {
  left: 58%;
}

.school-reviews-page__link:hover {
  opacity: 1;
}

.schoool-reviews-page__pagination {
  margin-top: 4.125rem;
}
@media screen and (min-width: 780px) {
  .schoool-reviews-page__pagination {
    margin-top: 7.8125rem;
  }
}

.single-review-page__title {
  margin-inline: auto;
}

.single-review-page__heading {
  font-size: 13vw;
  max-width: 60vw;
}
@media screen and (min-width: 780px) {
  .single-review-page__heading {
    font-size: 6.25rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
  }
}

.single-review-page--sub-heading {
  margin-top: auto;
}
@media screen and (min-width: 780px) {
  .single-review-page--sub-heading {
    margin-top: -0.9375rem;
  }
}

.single-review-page__container {
  margin-top: 8.75rem;
}
@media screen and (min-width: 780px) {
  .single-review-page__container {
    max-width: 53.125rem;
    margin-inline: auto;
    margin-top: 7.5rem;
  }
}

.single-review-page__head {
  max-width: 34.375rem;
  margin-inline: auto;
  text-align: left;
}
@media screen and (min-width: 780px) {
  .single-review-page__head {
    max-width: 43.75rem;
  }
}

.single-review-page__course-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.single-review-page__course-content {
  font-size: 0.75rem;
  line-height: 1.9166666667;
  background-color: #ebb0b6;
  border-radius: 0.1875rem;
  padding: 0.125rem 0.8125rem;
}

.single-review-page__course-title {
  font-size: 0.75rem;
  line-height: 1.9166666667;
}
@media screen and (min-width: 780px) {
  .single-review-page__course-title {
    font-size: 0.875rem;
  }
}

.single-review-page__article-title {
  font-size: 1.5625rem;
  margin-top: 1.25rem;
  font-weight: 400;
}
@media screen and (min-width: 780px) {
  .single-review-page__article-title {
    font-size: 2.1875rem;
  }
}

.single-review-page__image {
  aspect-ratio: 257/345;
  max-width: 28.125rem;
  margin-inline: auto;
  margin-top: 3.125rem;
}
@media screen and (min-width: 780px) {
  .single-review-page__image {
    max-width: 34.375rem;
  }
}

.single-review-page__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-review-page__content {
  margin-top: 6.25rem;
}
@media screen and (min-width: 780px) {
  .single-review-page__content {
    margin-top: 11.25rem;
  }
}

.single-review-page__article:nth-child(n+2) {
  margin-top: 3.125rem;
}
@media screen and (min-width: 780px) {
  .single-review-page__article:nth-child(n+2) {
    margin-top: 5.625rem;
  }
}

.single-review-page__article-heading {
  font-size: 1.125rem;
  line-height: 1.2777777778;
  font-weight: 400;
  padding-left: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (min-width: 780px) {
  .single-review-page__article-heading {
    font-size: 1.375rem;
  }
}

.single-review-page__article-heading::after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 0.0625rem #ebb0b6;
  bottom: -0.1875rem;
  width: 100%;
  height: 0.0625rem;
}

.single-review-page__article-text {
  padding-left: 1.875rem;
  margin-top: 1.875rem;
  font-size: 1rem;
  word-break: auto-phrase;
}
@media screen and (min-width: 780px) {
  .single-review-page__article-text {
    margin-top: 1.25rem;
    font-size: 1.125rem;
  }
}

.single-review-page__btn {
  margin-top: 5rem;
  max-width: 15.625rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .single-review-page__btn {
    margin-top: 8.125rem;
  }
}

.error-page {
  padding-bottom: 6.25rem;
}
@media screen and (min-width: 780px) {
  .error-page {
    padding-bottom: 3.125rem;
  }
}

.error-page__wrap {
  margin-top: 9.375rem;
}
@media screen and (min-width: 780px) {
  .error-page__wrap {
    margin-top: 15.625rem;
  }
}

.error-page__image {
  aspect-ratio: 285/114;
  max-width: 25rem;
  margin-inline: auto;
}

.error-page__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.error-page__btn {
  margin-inline: auto;
  margin-top: 3.125rem;
}
/*# sourceMappingURL=styles.css.map */