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

body {
  font-family: "Noto Sans JP", sans-serif;
}

/*  PCとSPの表示非表示の切り替え */
/*PCのみ表示*/
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

/*(md)px以下で表示*/
.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

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

img {
  object-fit: cover;
  height: 100%;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
}

a[href^="tel:"] {
  text-decoration: none;
}

/* マウスホバーがあるデバイスでのアニメーション */
@media (any-hover: hover) {
  a {
    transition: opacity, 0.5s 0s ease;
  }
  a:hover {
    opacity: 0.8;
  }
}
/* 画像のはみ出しを管理 */
main {
  overflow: hidden;
}

/* addressタグ リセット */
address {
  font-style: normal;
}

/* pc幅での電話発信しない */
@media (any-hover: hover) {
  a[href^="tel:"] {
    pointer-events: none;
    color: inherit;
  }
}
/* 横スクロール防止 */
html, body {
  overflow-x: clip;
}

.anker-link {
  scroll-margin-top: 9.375rem;
}
@media screen and (max-width: 767px) {
  .anker-link {
    scroll-margin-top: 3.125rem;
  }
}

/* `<fieldset>` の枠を非表示にする */
fieldset {
  border: none; /* ボーダー（枠線）を非表示にする */
  padding: 0; /* 不要な余白を削除 */
  margin: 0; /* 不要なマージンを削除 */
}

/* `<legend>` のテキストを非表示にする */
legend {
  display: none; /* テキスト自体を非表示にする */
}

/* 背景画像 */
body {
  background-image: url(../images/common/bg-black@2x.png);
  background-position: center;
  background-repeat: repeat;
}

/* リキッドレイアウト対応のための設定 */
html {
  font-size: 16px;
}
@media (max-width: 1000px) {
  html {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

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

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

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

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

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

/* 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]) {
  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]) {
  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;
}

/*インナー幅用の基本CSS*/
.inner {
  width: 100%;
  max-width: 1050px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 37.5rem;
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* セクションタイトル
========================================*/
.section-title {
  color: #BA972A;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  line-height: 1.35;
  font-weight: 300;
  letter-spacing: 2.24px;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 1.92px;
  }
}

.section-title--big {
  color: #BA972A;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.75rem;
  line-height: 2.1214285714;
  font-weight: 300;
  letter-spacing: 3.52px;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .section-title--big {
    font-size: 2rem;
    line-height: 1.3;
    letter-spacing: 2.56px;
  }
}

/* セクションサブタイトル
========================================*/
.section-subtitle, .section-subtitle--black, .section-subtitle--white {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  text-transform: capitalize;
}

.section-subtitle--white {
  color: #FFF;
}

.section-subtitle--black {
  color: #150D07;
}

/* 下層ページタイトル
========================================*/
.under-section__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.under-section__heading img {
  aspect-ratio: 168/24;
  max-width: 10.5rem;
  width: 100%;
}

.under-section__title {
  margin-top: 1rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.75rem;
  line-height: 1.35;
}
@media screen and (max-width: 767px) {
  .under-section__title {
    margin-top: 0.625rem;
    font-size: 1.5rem;
  }
}

.under-section__heading .section-subtitle--black {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .under-section__heading .section-subtitle--black {
    margin-top: 1.25rem;
  }
}

.under-section__bland {
  color: #BA972A;
  font-family: "Noto Serif JP", serif;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 500;
}

.js-fade {
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.fade-up {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* header
========================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8.75rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 80%);
  z-index: 9999;
}
@media screen and (max-width: 767px) {
  .header {
    height: auto;
    height: 5.625rem;
  }
}

.header__inner,
.header__inner nav,
.header__nav,
.header__nav-item,
.header__nav-item a {
  height: inherit;
}

.header__inner {
  max-width: 89.125rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header__inner {
    max-width: 37.5rem;
  }
}

.header__logo {
  aspect-ratio: 1/1;
  max-width: 6.25rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header__logo {
    max-width: 4.375rem;
  }
}

.header__logo img {
  height: 100%;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.header__nav-item a {
  color: #FFF;
  font-family: "Shippori Mincho", serif;
  font-size: 0.875rem;
  line-height: 1.2;
  display: grid;
  place-items: center;
  margin-block: auto;
  position: relative;
}

.header__nav-item a::after {
  content: "";
  position: absolute;
  bottom: 2.5rem;
  width: 0%;
  left: 0;
  height: 2px;
  background: #BA972A;
  transition: width 0.5s;
}

.header__nav-item a:hover::after {
  width: 100%;
}

/* Contactボタン */
.header__nav-item--contact {
  width: 8.5rem;
  flex-shrink: 0;
  display: grid;
  place-content: center;
  place-items: center;
}

.header__nav-item--contact a {
  text-transform: capitalize;
  display: grid;
  width: inherit;
  height: 2rem;
  border-radius: 1rem;
}

.header__nav-item.header__nav-item--contact a::after {
  content: none;
}

/* ヘッダーの色を変更する */
.header.change-color {
  background: rgba(0, 0, 0, 0.8);
  transition: opacity, 0.8s 0s ease;
}
/* hamburger ハンバーガーメニュー
========================================*/
@media screen and (max-width: 767px) {
  .hamburger {
    background: rgba(217, 217, 217, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    padding: 0;
    position: relative;
    border-radius: 50%;
    z-index: 9999;
  }
}

@media screen and (max-width: 767px) {
  .hamburger .line {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #FFF;
    transition: rotate 0.3s 0s ease;
    position: relative;
  }
}

.hamburger .line:nth-child(2) {
  margin-block: 6px;
}

/* ハンバーガーメニューが開いた時 ボタン */
@media screen and (max-width: 767px) {
  .hamburger.is-openSP .line:nth-child(1) {
    rotate: 45deg;
    top: 0.4375rem;
  }
}

@media screen and (max-width: 767px) {
  .hamburger.is-openSP .line:nth-child(2) {
    opacity: 0;
  }
}

@media screen and (max-width: 767px) {
  .hamburger.is-openSP .line:nth-child(3) {
    rotate: -45deg;
    top: -0.5625rem;
  }
}

/* SPメニュー
========================================*/
@media screen and (max-width: 767px) {
  .sp-nav {
    background-color: #FFF;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    transform: translateX(100%);
    transition: transform 0.3s 0s ease;
  }
}

/* SPメニューが開いた時 */
@media screen and (max-width: 767px) {
  .sp-nav.is-openSP {
    transform: translateX(0);
  }
}

@media screen and (max-width: 767px) {
  .sp-nav__logo-wrap {
    margin-top: 4.375rem;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .sp-nav__logo {
    display: inline-block;
    aspect-ratio: 366/263;
    max-width: 11.4375rem;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .sp-nav__items {
    margin-top: 2rem;
    margin-inline: auto;
    max-width: 25rem;
    display: grid;
  }
}

@media screen and (max-width: 767px) {
  .sp-nav__item {
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .sp-nav__item a {
    padding-block: 1.25rem;
    display: block;
    color: #150D07;
    font-family: "Noto Serif JP", serif;
    font-size: 1.5rem;
    line-height: 1.2;
    border-bottom: 1px solid #DDD;
  }
}

@media screen and (max-width: 767px) {
  .sp-nav__btn-wrap {
    margin-top: 1.25rem;
    display: grid;
    gap: 1.25rem;
    padding-bottom: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .sp-nav__btn--contact a {
    width: 90%;
    max-width: 18.75rem;
    margin-inline: auto;
    display: block;
    padding-block: 0.375rem;
    background: rgba(221, 221, 221, 0.4);
    border-radius: 16px;
    color: #150D07;
    text-transform: capitalize;
    letter-spacing: 2.88px;
    line-height: 1;
    border-bottom: initial;
  }
}

@media screen and (max-width: 767px) {
  .sp-nav__item--line a {
    border-bottom: initial;
    padding-block: initial;
    margin-inline: auto;
  }
}

@media screen and (max-width: 767px) {
  .sp-nav__line {
    display: block;
    aspect-ratio: 1/1;
    max-width: 2.25rem;
    width: 100%;
  }
}

/* ファーストビュー fv
========================================*/
.fv {
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .fv {
    height: 100svh;
  }
}

.fv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.fv__inner {
  max-width: 86rem;
  position: relative;
}

.fv__inner .fixed_video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .fv__inner .fixed_video {
    height: 100svh;
  }
}

.fv-catch {
  position: absolute;
  bottom: 5.5rem;
  left: 1.875rem;
  z-index: 2;
  aspect-ratio: 525/235;
  max-width: 32.8125rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .fv-catch {
    max-width: 18.75rem;
  }
}

/* topページ about
========================================*/
.top-about {
  background-color: #FFF;
  padding-top: 9.375rem;
  padding-bottom: 11.0625rem;
}
@media screen and (max-width: 767px) {
  .top-about {
    padding-block: 5.625rem;
  }
}

.top-about__inner {
  position: relative;
}

.top-about__inner::before {
  content: "";
  position: absolute;
  top: 5.1875rem;
  left: calc(100% - 34rem);
  width: 51.875rem;
  height: 100%;
  background-image: url(../images/top/about-bg@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .top-about__inner::before {
    width: 18.75rem;
    left: calc(100% - 13.75rem);
  }
}

.top-about__welcome {
  margin-top: 0.75rem;
  color: #150D07;
  font-family: "Shippori Mincho", serif;
  font-size: 2.125rem;
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: 2.72px;
}
@media screen and (max-width: 767px) {
  .top-about__welcome {
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: initial;
  }
}

.top-about__container {
  margin-top: 2.25rem;
}
@media screen and (max-width: 767px) {
  .top-about__container {
    margin-top: 1.5rem;
  }
}

.top-about__description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 2.4;
  font-weight: 500;
  letter-spacing: 1.28px;
}
@media screen and (max-width: 767px) {
  .top-about__description {
    font-size: 1rem;
    line-height: 1.75;
    letter-spacing: 1px;
    text-align: justify;
  }
}

.top-about__description + .top-about__description {
  margin-top: 2.1875rem;
}

/* topページ intro
========================================*/
.top-intro {
  padding-top: 10.375rem;
  padding-bottom: 7.125rem;
  background-image: url(../images/top/intro-bg@2x.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  aspect-ratio: 1440/840;
}
@media screen and (max-width: 767px) {
  .top-intro {
    padding-block: 5.625rem;
  }
}

.top-intro__inner {
  text-align: center;
}

.top-intro__title {
  color: #BA972A;
  font-family: "Shippori Mincho", serif;
  font-size: 2.875rem;
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: 3.68px;
}
@media screen and (max-width: 767px) {
  .top-intro__title {
    font-size: 1.875rem;
    line-height: 1.2;
    letter-spacing: 2.4px;
  }
}

.top-intro__logo {
  aspect-ratio: 340/345;
  width: 21.25rem;
  margin-inline: auto;
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .top-intro__logo {
    width: 15.625rem;
  }
}

.top-intro__logo img {
  height: 100%;
}

.top-intro__tagline {
  margin-top: 1.125rem;
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 2.88px;
}
@media screen and (max-width: 767px) {
  .top-intro__tagline {
    font-size: 1.125rem;
    line-height: 1.2;
    letter-spacing: 2.16px;
  }
}

/* topページ profile
========================================*/
.top-profile {
  padding-top: 7.5rem;
  padding-bottom: 9.9375rem;
  background-image: url(../images/top/profile-bg@2x.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  aspect-ratio: 1440/800;
}
@media screen and (max-width: 767px) {
  .top-profile {
    padding-block: 5.625rem;
  }
}

.top-profile__inner {
  max-width: 55.625rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-profile__inner {
    max-width: 37.5rem;
  }
}

.top-profile__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top-profile__title {
    text-align: center;
  }
}

.top-profile__container {
  margin-top: 1.7rem;
  display: flex;
  gap: 8.75rem;
}
@media screen and (max-width: 767px) {
  .top-profile__container {
    margin-top: 1.5625rem;
    flex-direction: column-reverse;
    gap: 1.875rem;
    align-items: center;
  }
}

.top-profile__heading {
  font-family: "Shippori Mincho", serif;
  font-size: 1.375rem;
  line-height: 1.35;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .top-profile__heading {
    text-align: center;
    font-size: 1.25rem;
  }
}

.top-profile__message-wrap {
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .top-profile__message-wrap {
    margin-top: 0.9375rem;
  }
}

.top-profile__message {
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 500;
}

.top-profile__message + .top-profile__message {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .top-profile__message + .top-profile__message {
    margin-top: 0.9375rem;
  }
}

.top-profile__name {
  aspect-ratio: 165/32;
  width: 10.3125rem;
  margin-left: auto;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .top-profile__name {
    margin-top: 0.9375rem;
  }
}

.top-profile__name img {
  height: 100%;
}

.top-profile__image {
  aspect-ratio: 326/400;
  width: 20.375rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .top-profile__image {
    width: 15.625rem;
  }
}

.top-profile__image img {
  height: 25rem;
}
@media screen and (max-width: 767px) {
  .top-profile__image img {
    height: auto;
  }
}

/* topページ service
========================================*/
.top-service__inner {
  max-width: 90rem;
  padding-inline: initial;
}
@media screen and (max-width: 767px) {
  .top-service__inner {
    max-width: 47.9375rem;
  }
}

.top-service__header {
  position: relative;
}

.top-service__header-bg {
  aspect-ratio: 1440/550;
  width: 100%;
}

.top-service__header-bg img {
  height: 100%;
}

.top-service__header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.top-service__logo {
  aspect-ratio: 340/345;
  max-width: 21.25rem;
  width: clamp(11.25rem, -0.179rem + 23.81vw, 21.25rem);
}
@media screen and (max-width: 767px) {
  .top-service__logo {
    max-width: clamp(5.313rem, 1.062rem + 21.25vw, 11.25rem);
  }
}

.top-service__logo img {
  height: 100%;
}

.top-service__title {
  font-size: 2.75rem;
  line-height: 1.35;
  font-weight: 300;
  letter-spacing: 3.52px;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .top-service__title {
    font-size: clamp(0.938rem, -0.181rem + 5.59vw, 2.5rem);
    line-height: 1;
  }
}

.top-service__subtitle {
  color: #FFF;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.25rem;
  line-height: 1.35;
  font-weight: 300;
  letter-spacing: 2.88px;
}
@media screen and (max-width: 767px) {
  .top-service__subtitle {
    font-size: clamp(1.063rem, 0.481rem + 2.91vw, 1.875rem);
    line-height: 1;
  }
}

.top-service__content {
  display: flex;
}
@media screen and (max-width: 767px) {
  .top-service__content {
    flex-direction: column;
  }
}

.top-service__item {
  position: relative;
}

.top-service__overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.top-service__image {
  aspect-ratio: 720/840;
  max-width: 45rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-service__image {
    margin-inline: auto;
  }
}

.top-service__image img {
  height: 100%;
}

.top-service__name {
  color: #FFF;
  font-family: "Noto Serif JP", serif;
  font-size: 2.5rem;
  line-height: 1.35;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .top-service__name {
    font-size: 1.875rem;
  }
}

.top-service__btn {
  margin-top: 6.25rem;
  padding-top: 0.875rem;
  padding-bottom: 0.9375rem;
  width: 15rem;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-service__btn {
    margin-top: 1.875rem;
    width: 12.5rem;
  }
}

/* topページ review
========================================*/
.top-review {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .top-review {
    padding-block: 5.625rem;
  }
}

.top-review__title {
  text-align: center;
}

.top-review__subtitle {
  text-align: center;
}

/* スライドショー */
.top-review__slider {
  margin-top: 2.0625rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .top-review__slider {
    margin-top: 1.25rem;
  }
}

.top-review__track {
  margin-left: -128px; /* 左にはみ出させる */
}
@media screen and (max-width: 767px) {
  .top-review__track {
    margin-left: initial;
  }
}

/* カードのレイアウト */
.top-review__item {
  padding: 2rem 2.5rem;
  background-color: #FFF;
  max-width: 25rem;
}
@media screen and (max-width: 767px) {
  .top-review__item {
    padding: 0.9375rem;
    max-width: 18.75rem;
  }
}

.top-review__top {
  display: flex;
  gap: 0.75rem;
}

.top-review__image {
  aspect-ratio: 1/1;
  max-width: 3rem;
  width: 100%;
}

.top-review__name {
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 700;
}

.review-card__date {
  color: #808080;
  font-size: 0.8125rem;
  line-height: 1.35;
  font-weight: 500;
}

.review-card__content {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .review-card__content {
    margin-top: 0.625rem;
  }
}

/* topページ contact
========================================*/
.contact {
  padding-block: 6rem;
}
@media screen and (max-width: 767px) {
  .contact {
    padding-block: 3.75rem;
  }
}

.contact__inner {
  max-width: 43.4375rem;
}

.contact__title,
.contact__subtitle {
  text-align: center;
}

.contact__container {
  margin-top: 3rem;
  display: flex;
  gap: 7.5625rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact__container {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.875rem;
  }
}

.contact__info {
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .contact__info {
    display: contents;
  }
}

.contact__heading {
  margin-top: 2.0625rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.75rem;
  line-height: 1.35;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .contact__heading {
    margin-top: initial;
    font-size: 1.25rem;
  }
}

.contact__description {
  margin-top: 2rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .contact__description {
    order: 1;
    margin-top: 0.625rem;
    text-align: center;
    font-size: 0.875rem;
    font-feature-settings: "palt";
  }
}

.contact__btn {
  margin-top: 1.125rem;
  padding-top: 1.375rem;
  padding-bottom: 1.4375rem;
  width: 17rem;
  border-radius: 1.75rem;
}
@media screen and (max-width: 767px) {
  .contact__btn {
    margin-top: initial;
    order: 2;
  }
}

.contact__image {
  aspect-ratio: 252/321;
  max-width: 15.75rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contact__image {
    max-width: 11.25rem;
  }
}

.contact__image img {
  height: 100%;
}

/* footer
========================================*/
.footer {
  padding-top: 1.25rem;
  padding-bottom: 3rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 1.25rem;
  }
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/common/footer-bg@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  aspect-ratio: 1440/504;
}
@media screen and (max-width: 767px) {
  .footer::before {
    background-position: bottom;
  }
}

.footer__inner {
  max-width: 22.1875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer__logo {
  aspect-ratio: 1/1;
  max-width: 11.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    max-width: 6.25rem;
  }
}

.footer__info {
  color: #FFF;
  text-align: center;
}

.footer__name {
  margin-top: 1.5rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.35;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .footer__name {
    margin-top: 0.5rem;
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

.footer__tagline {
  margin-top: 0.75rem;
  font-family: "Noto Serif JP", serif;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .footer__tagline {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.footer__tell span {
  margin-top: 2.1875rem;
  display: inline-block;
  color: #FFF;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  padding-left: 1.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer__tell span {
    margin-top: 0.625rem;
  }
}

.footer__tell span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../images/common/icon-tel.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
}

.footer__details {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .footer__details {
    margin-top: 0.625rem;
  }
}

.footer__copyright {
  margin-top: 4.4375rem;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    margin-top: 1.25rem;
  }
}

.footer__copyright small {
  color: #FFF;
  font-size: 0.6875rem;
  line-height: 1.35;
  font-weight: 500;
}

/* カードリスト全体のスタイル
========================================*/
.card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2.75rem;
}
.card-flex{
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .card-flex{
    display: block;
  }
  .card {
    /* display: block; */
    grid-template-columns: repeat(1, 1fr);
    place-items: center;
    max-width: 31.25rem;
    margin-inline: auto;
  }
}

.card-list__image {
  position: relative;
}
@media screen and (max-width: 767px) {
  .card-list__image {
    margin-inline: auto;
  }
}

.card-list__image img {
  height: 100%;
  border-radius: 1.5rem;
}

.card-list__caption {
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #FFF;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.125rem;
  line-height: 1.35;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .card-list__caption {
    font-size: 1.5rem;
  }
}

.card-list__body {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .card-list__body {
    padding-top: 0.625rem;
    gap: 0.625rem;
  }
}

.card-list__title {
  text-align: center;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .card-list__title {
    line-height: 1.5;
  }
}

.card-list__duration {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 2.125rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2.72px;
}
@media screen and (max-width: 767px) {
  .card-list__duration {
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }
}

.card-list__duration .small {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .card-list__duration .small {
    font-size: 0.875rem;
  }
}

.card-list__duration .vertical-line {
  display: inline-block;
  width: 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .card-list__duration .vertical-line {
    width: 1.5rem;
  }
}

.card-list__duration .vertical-line::before {
  content: "｜";
}

.card-list__note {
  font-size: 0.8125rem;
  line-height: 1.35;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .card-list__note {
    font-size: 0.75rem;
    line-height: 1.4;
  }
}

@media screen and (max-width: 767px) {
  .card-list__description {
    font-feature-settings: "palt";
  }
}

/* schoolページ・基本コース・カード */
/* .card-list__ordered-list {
  counter-reset: list-counter;
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 500;
}

.card-list__ordered-list li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 1rem;
} */

/* .card-list__ordered-list li::before {
  content: counter(list-counter) ".";
  position: absolute;
  left: 0;
} */

/* 4からスタートするために3にリセット */
/* .card-list__ordered-list.start4 {
  counter-reset: list-counter 3;
} */

/* 7からスタートするために6にリセット */
/* .card-list__ordered-list.start7 {
  counter-reset: list-counter 6;
} */

.card-list__ordered-list li{
  list-style: square;
}

.card-list__session {
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 500;
  text-align: center;
}

.card-list__ordered-item .small {
  font-size: 0.6875rem;
}

/* btn ボタン
========================================*/
.btn {
  display: inline-block;
  color: #FFF;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.btn--white02 {
  background: rgba(255, 255, 255, 0.2);
}

.btn--white03 {
  background: rgba(255, 255, 255, 0.3);
}

.btn--gray04 {
  background: rgba(255, 255, 255, 0.4);
}

.btn--green {
  background: rgb(0, 195, 0);
}

.btn--white03:hover,
.btn--gray04:hover {
  background: rgb(186, 151, 42);
  opacity: 1;
}

.btn--white02:hover {
  background: #00C300;
  opacity: 1;
}

/* 下層ページのファーストビュー under-fv
========================================*/
.under-fv {
  position: relative;
}

.under-fv__inner {
  position: relative;
}

.under-fv__image {
  aspect-ratio: 1440/840;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .under-fv__image {
    height: 100svh;
  }
}

.under-fv__image img {
  height: 100%;
}

.under-fv__content {
  max-width: 62.5rem;
  width: clamp(37.5rem, 8.929rem + 59.52vw, 62.5rem);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0) 100%);
  text-align: center;
  padding-top: 2.6875rem;
  padding-bottom: 2.25rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .under-fv__content {
    max-width: 37.5rem;
    width: clamp(18.75rem, 5.357rem + 66.96vw, 37.5rem);
    padding-block: 0.9375rem;
  }
}

.under-fv__subtitle {
  color: #BA972A;
  font-family: "Shippori Mincho", serif;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.35;
}
@media screen and (max-width: 767px) {
  .under-fv__subtitle {
    font-size: 1rem;
    line-height: 1.33125;
  }
}

.under-fv__title {
  text-transform: capitalize;
  color: #FFF;
  font-family: "Shippori Mincho", serif;
  font-size: 2.875rem;
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: 3.68px;
}
@media screen and (max-width: 767px) {
  .under-fv__title {
    font-size: 1.5rem;
    line-height: 1.2;
  }
}

/* 下層ページ consultation-info 削除
========================================*/
/* 下層ページ courseセクション
========================================*/
.course {
  background-color: #FFF;
  padding-block: 7.5rem;
}
@media screen and (max-width: 767px) {
  .course {
    padding-block: 5.625rem;
  }
}

.course__content {
  margin-top: 5.875rem;
}
@media screen and (max-width: 767px) {
  .course__content {
    margin-top: 1.875rem;
    margin-inline: auto;
  }
}

.course__list {
  grid-template-columns: repeat(2, 1fr);
  row-gap: 4.5rem;
}
@media screen and (max-width: 767px) {
  .course__list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 1.875rem;
  }
}

.course__item .card-list__image {
  aspect-ratio: 480/240;
  max-width: 30rem;
  width: 100%;
}

/* 下層ページ courseセクション
========================================*/
.repeat-course {
  background-color: #FFF;
  padding-block: 7.5rem;
}
@media screen and (max-width: 767px) {
  .repeat-course {
    padding-block: 5.625rem;
  }
}

@media screen and (max-width: 767px) {
  .repeat-course__subtitle {
    text-align: center;
  }
}

.repeat-course__content {
  margin-top: 5.875rem;
}
@media screen and (max-width: 767px) {
  .repeat-course__content {
    margin-top: 1.875rem;
    margin-inline: auto;
  }
}

@media screen and (max-width: 767px) {
  .repeat-course__list {
    row-gap: 1.875rem;
  }
}

.repeat-course__item .card-list__image {
  aspect-ratio: 304/240;
  max-width: 19rem;
  width: 100%;
}

/* schoolページ lessonセクション
========================================*/
.lesson {
  background-color: #FFF;
  padding-top: 7.5rem;
  padding-bottom: 6.0625rem;
}
@media screen and (max-width: 767px) {
  .lesson {
    padding-block: 5.625rem;
  }
}

.lesson__brand {
  margin-top: initial;
}

.lesson__title {
  margin-top: 1.625rem;
}
@media screen and (max-width: 767px) {
  .lesson__title {
    margin-top: 0.625rem;
  }
}

.lesson__details {
  margin-top: 1.625rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .lesson__details {
    flex-direction: column;
    margin-top: 1rem;
    gap: 0.3125rem;
  }
}

@media screen and (max-width: 767px) {
  .lesson__details + .lesson__details {
    margin-top: 1.5625rem;
  }
}

/* schoolページ basic-courseセクション
========================================*/
.basic-course {
  background-color: #FFF;
  padding-top: 7.5rem;
  padding-bottom: 4.5625rem;
}
@media screen and (max-width: 767px) {
  .basic-course {
    padding-block: 5.625rem;
  }
}

.basic-course__content {
  margin-top: 5.875rem;
}
@media screen and (max-width: 767px) {
  .basic-course__content {
    margin-top: 1.875rem;
    margin-inline: auto;
  }
}

@media screen and (max-width: 767px) {
  .basic-course__list {
    row-gap: 1.875rem;
  }
}
.card-flex .basic-course__item{
  width: 33%;
}
@media screen and (max-width: 767px){
  .card-flex .basic-course__item{
    width: 100%;
  }
}

.basic-course__item .card-list__image {
  aspect-ratio: 304/240;
  /* max-width: 19rem; */
  width: 100%;
}

@media screen and (max-width: 767px){
  .card-flex .basic-course__item .card-list__image{
    max-width: 100%;
  }
}

.basic-course__item .card-list__title {
  font-family: "Shippori Mincho", serif;
  font-size: 1.375rem;
}


@media screen and (max-width: 767px){
  .card-flex .basic-course__item:nth-child(2){
    margin-top: 15px;
  }
}

/* schoolページ classセクション
========================================*/
.class {
  padding-block: 8.5rem;
}
@media screen and (max-width: 767px) {
  .class {
    padding-block: 5.625rem;
  }
}

.class__title {
  color: #FFF;
  font-family: "Shippori Mincho", serif;
  font-size: 1.375rem;
  line-height: 1.35;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .class__title {
    font-size: 1.125rem;
    line-height: 1.4;
  }
}

.class__list {
  margin-top: 3rem;
  max-width: 45rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .class__list {
    margin-top: 1.875rem;
    max-width: 31.25rem;
  }
}

.class__card {
  padding: 2.5rem;
  border-radius: 1.25rem;
  background: #FFF;
}
@media screen and (max-width: 767px) {
  .class__card {
    padding: 0.9375rem;
  }
}

.class__card + .class__card {
  margin-top: 1rem;
}

.class__card-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .class__card-title {
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
  }
}

.class__card-content {
  margin-top: 1rem;
}

.class__card-limited {
  font-family: "Noto Serif JP", serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .class__card-limited {
    font-size: 1rem;
    line-height: 1.6;
  }
}

.class__card-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .class__card-text {
    font-size: 0.875rem;
    line-height: 1.6;
    font-feature-settings: "palt";
  }
}

.class__card-text + .class__card-text {
  margin-top: 1.875rem;
}

/* contactページ fv
========================================*/
.contact-page__fv {
  margin-top: 8.75rem;
  padding-top: 9.1875rem;
  padding-bottom: 6.5rem;
}
@media screen and (max-width: 767px) {
  .contact-page__fv {
    margin-top: 5.625rem;
    padding-top: 2.8125rem;
    padding-bottom: 2.8125rem;
  }
}

.contact-page__fv-inner {
  max-width: 53.125rem;
}
@media screen and (max-width: 767px) {
  .contact-page__fv-inner {
    max-width: 37.5rem;
  }
}

.contact-page__fv-title {
  color: #FFF;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 2.875rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 3.68px;
}
@media screen and (max-width: 767px) {
  .contact-page__fv-title {
    font-size: 2rem;
    line-height: 1.33125;
    letter-spacing: 2.56px;
  }
}

.contact-page__fv-subtitle {
  margin-top: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-page__fv-subtitle {
    margin-top: 1.25rem;
  }
}

.contact-page__container {
  max-width: 40.3125rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .contact-page__container {
    margin-top: 1.25rem;
  }
}

.contact-page__note {
  margin-top: 4.125rem;
  padding: 2.5rem;
  border-radius: 1.25rem;
  background: #FFF;
}
@media screen and (max-width: 767px) {
  .contact-page__note {
    padding: 0.9375rem;
    margin-top: 1.875rem;
  }
}

.contact-page__note-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .contact-page__note-title {
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
  }
}

.contact-page__note-text {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .contact-page__note-text {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

/* contactページ QAセクション
========================================*/
.qa {
  padding-top: 10rem;
  padding-bottom: 9.875rem;
  background-color: #FFF;
}
@media screen and (max-width: 767px) {
  .qa {
    padding-block: 5.625rem;
  }
}

.qa__inner {
  max-width: 43.75rem;
  margin-inline: auto;
}

.qa__title {
  text-align: center;
}

.qa__wrap {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .qa__wrap {
    margin-top: 1.875rem;
  }
}

.qa-item + .qa-item {
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .qa-item + .qa-item {
    margin-top: 0.625rem;
  }
}

.qa-item__title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 1.28px;
  padding-left: 2.25rem;
  padding-right: 0.5rem;
  padding-block: 0.625rem;
  position: relative;
  background: #F6F6F6;
}

.qa-item__title::before {
  content: "Q";
  position: absolute;
  top: 1.1875rem;
  left: 8px;
  transform: translateY(-50%);
  width: 0.75rem;
  height: 0.875rem;
  color: #150D07;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
}

.qa-item__text {
  margin-top: 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.6px;
  padding-left: 1.625rem;
  padding-block: 0.625rem;
  position: relative;
}

.under-service .qa-item__text::before {
  content: "A";
  position: absolute;
  top: 1.25rem;
  left: 0;
  transform: translateY(-50%);
  width: 0.625rem;
  height: 0.75rem;
  color: #150D07;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
}/*# sourceMappingURL=styles.css.map */

.card-list__ordered-list{
  margin-left: 15px;
}

.repeat-course__kakko{
  text-decoration-line: underline;
    text-decoration-color: #B99629;
    text-decoration-thickness: .2em;
    text-decoration-skip-ink: none;
    font-weight: bold;
}
