@charset "utf-8";
/* Google Fontsの正しいインポート */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');

:root {
  --easing: cubic-bezier(0.2, 1, 0.2, 1);
  --transition: 0.8s var(--easing);
  --color-base: #ece6dc;
  --color-gray: #ccc;
  --color-gray-light: #f5f5f5;
  --color-gray-darken: #535353;
  --color-theme: #59493f;
  --color-theme-light: #e4dac9;
  --color-theme-light-second: #f5f1ea;
  --color-accent: rgb(186, 81, 30);
  --color-red: #cc0000;
  --color-blue: #3296e6;
  --color-green: #5ec618;
  --color-green-dark: #4aa012;
  --color-green-light: #b6e597;
  --color-line: #06c755;
  --color-orange: #ff7415;
  --color-yellow: #fec601;
  --color-cream: #ffef8f;
  --color-cream-light: #fff2cb;
  --color-insta: #ff0069;
  --color-insta-light: #ff96c1;
  --color-hotpepper: #8f3356;
  --font-base: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  --box-shadow: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05), -0.8rem -0.8rem 1.2rem #fff;
  --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, 0.08), -1rem -1rem 1.5rem #fff;
  --box-shadow-inset: inset 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05), inset -0.8rem -0.8rem 1.2rem #fff;
  --box-shadow-dark: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.1), -0.8rem -0.8rem 1.2rem rgba(#fff, 0.2);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: var(--font-base);
  min-height: 100%;
  height: 100%; /* 高さを100%に設定 */
  box-sizing: border-box;
  line-height: 1.5;
  font-size: 62.5%;
  color: var(--color-theme);
  background-color: var(--color-base);
  /* overflow-y: auto; スクロールを強制 */
}
@media only screen and (max-width: 599px) {
  html {
    overflow-x: hidden;
    overflow-y: auto; /* スクロールを有効化 */
    height: auto; /* 高さを自動調整 */
    min-height: 100%; /* 最小高さを100%に設定 */
  }
  body {
    overflow-x: hidden;
    overflow-y: auto; /* スクロールを有効化 */
    width: 100%;
    height: auto; /* 高さを自動調整 */
    min-height: 100%; /* 最小高さを100%に設定 */
  }
}

/* Reset for all elements */
/* prettier-ignore */
div,span,object,iframe,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,caption,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-style: normal;
}

a {
  color: var(--color-theme);
  text-decoration: none;
}

body.fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* MARK:レスポンシブ表示制御 */
@media only screen and (max-width: 1024px) {
  html {
    -webkit-text-size-adjust: 100%;
  }
}

/* スマホでは非表示（タブレット以上で表示）*/
@media only screen and (max-width: 599px) {
  .sp-hide {
    display: none !important;
  }
}

/* タブレットでは非表示（PC・スマホで表示）*/
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .tab-hide {
    display: none !important;
  }
}

/* PCでは非表示（モバイル・タブレットで表示）*/
@media only screen and (min-width: 1025px) {
  .pc-hide {
    display: none !important;
  }
}

/* スマホのみ表示 */
@media only screen and (min-width: 600px) {
  .smp {
    display: none !important;
  }
}

/* タブレット以下のみ表示 */
@media only screen and (min-width: 769px) {
  .tab {
    display: none !important;
  }
}

/* タブレットのみ表示 */
@media only screen and (max-width: 599px), only screen and (min-width: 1025px) {
  .tab-only {
    display: none !important;
  }
}

/* PCのみ表示 */
@media only screen and (max-width: 1024px) {
  .pc-only {
    display: none !important;
  }
}

/* Form Elements */
input[type='text'],
input[type='tel'],
input[type='email'],
input[type='number'],
textarea,
select {
  border-radius: 3px;
  border: solid 1px #bfbfbf;
  background-color: #f5f5f5;
  padding: 0.5rem;
  box-sizing: border-box;
  margin: 5px 0;
}

select {
  min-height: 40px;
}

@media only screen and (min-width: 1025px) {
  input[type='text'],
  input[type='tel'],
  input[type='email'],
  textarea {
    max-width: 100%;
  }
  textarea {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  /* 幅を制御したい特定のinput要素に対して */
  input[type='text'].full-width,
  input[type='tel'].full-width,
  input[type='email'].full-width,
  textarea.full-width {
    width: 100%;
  }
}
/* Input Styles */
input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s !important;
}

input:focus::placeholder {
  color: transparent;
}

/* フォーカス時のスタイル */
.radio-group input[type='radio']:focus-visible {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

/* ラジオボタンのサイズ調整（必要に応じて） */
.radio-group input[type='radio'] {
  width: 1.2em;
  height: 1.2em;
}

/* アクセシビリティのための非表示クラス */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Utility Classes */
.center {
  text-align: center;
}
.center-img,
.center-img img {
  margin-inline: auto;
}
.bold {
  font-weight: 900;
}

/* Colors */
.red {
  color: var(--color-red);
}
.blue {
  color: var(--color-blue);
}
.green {
  color: var(--color-theme-second);
}
.orange {
  color: var(--color-orange);
}
.yellow {
  color: var(--color-yellow);
}
.pink {
  color: var(--color-theme);
}

/* Font Sizes */
.txt-10 {
  font-size: 1rem;
}
.txt-12 {
  font-size: 1.2rem;
}
.txt-14 {
  font-size: 1.4rem;
}
.txt-16 {
  font-size: 1.6rem;
}
.txt-18 {
  font-size: 1.8rem;
}
.txt-20 {
  font-size: 2rem;
}

.marker {
  background: linear-gradient(transparent 55%, #fff100 55%);
}

/* Font Families */

.noto_san {
  font-family: 'Noto Sans JP', sans-serif;
}

/* Opacity Animation */
.opa {
  transition: var(--transition);
  backface-visibility: hidden;
}

.opa:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  backface-visibility: hidden;
}

/* Header Styles */
.site-header {
  width: 100%;
  z-index: 999;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

@media only screen and (max-width: 1024px) {
  html,
  body {
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    min-height: 100%;
  }
  body {
    width: 100%;
  }
  .site-header {
    width: 100%;
    height: 70px;
    padding: 0;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    transform: translateZ(0);
    will-change: transform;
  }
  /* 
  .site-header.scroll,
  .site-header.scroll-mobile {
    background-color: #fff;
  } */
}

@media only screen and (max-width: 599px) {
  .site-header {
    height: 60px;
  }
}

.header-inner {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Header Responsive */

@media only screen and (max-width: 1024px) {
  .header-inner {
    width: 100%;
    position: relative;
  }
}

.h-txt {
  font-size: 1.4rem;
  padding: 1rem 0;
  width: 100%;
  color: var(--color-theme);
  font-weight: 400;
}

/* スマートフォンでh1要素を非表示にする（SEOには影響なし） */
@media only screen and (max-width: 1024px) {
  .h-txt {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }
}

.h-logo-tel-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.h-logo {
  padding: 1rem 0;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

@media only screen and (max-width: 1024px) {
  .h-logo {
    width: 260px;
    margin: 0 auto;
  }
}

.h-logo img {
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.h-logo .logo-sp {
  display: none;
}

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

.h_tel,
.h_tel_smp,
.tel-box {
  position: relative;
  padding-left: 5rem;
}

.h_tel_inner,
.tel-box-inner {
  display: flex;
  flex-wrap: wrap;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.h_tel .tel_no a,
.h_tel_smp .tel_no a,
.tel-box .tel-box-no a {
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3.4rem;
  color: var(--color-theme);
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  line-height: 1;
  letter-spacing: 0.3rem;
}

.tel-box .tel-box-no a {
  text-decoration: none;
  font-size: 4rem;
}

.h_tel::before,
.h_tel_smp::before,
.tel-box::before {
  content: '';
  display: inline-block;
  aspect-ratio: 40 / 40;
  width: 40px;
  background: url(../common/images/tel-icon.svg) no-repeat center center / cover;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.h_tel .tel_no a:hover,
.h_tel_smp .tel_no a:hover,
.tel-box .tel-box-no a:hover {
  color: var(--color-theme);
}

.tel-box .tel-box-no a:hover {
  color: var(--color-accent);
}

.h_tel .tel_txt,
.h_tel_smp .tel_txt,
.h_tel .tel_subtxt,
.h_tel_smp .tel_subtxt,
.tel-box .tel-box-subtxt {
  text-align: center;
  transition: all 0.3s ease;
}
.h_tel .tel_txt,
.h_tel_smp .tel_txt,
.tel-box .tel-box-txt {
  font-size: 1.2rem;
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-optical-sizing: auto;
}

.tel-box .tel-box-txt,
.tel-box .tel-box-no {
  margin: 0;
}

.h_tel .tel_subtxt,
.h_tel_smp .tel_subtxt,
.tel-box .tel-box-subtxt {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: 1.4rem;
}

@media only screen and (max-width: 1024px) {
  .h_tel {
    display: none;
  }
}

/* Navigation */
.g-nav {
  background: url(../common/images/nav-bg.png);
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.g-nav > ul {
  width: 1200px;
  min-height: 100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

@media only screen and (min-width: 1368px) {
  .g-nav > ul {
    gap: 15px;
  }
}

.g-nav > ul > li {
  position: relative;
}

.g-nav > ul > li > a {
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  display: block;
  position: relative;
  color: #fff;
  font-size: clamp(1.2rem, 1.018rem + 0.78vw, 1.8rem);
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  white-space: nowrap;
  padding: 1.5rem;
}

.yoyaku-bt {
  font-family: var(--font-base) !important;
  font-size: 1.4rem !important;
  font-weight: 400 !important;
  display: inline-flex !important;
  position: relative;
  color: var(--color-hotpepper) !important;
  background-color: #fff;
  border: solid 1px var(--color-hotpepper);
  padding: 1rem;
  border-radius: 5px;
  align-items: center;
  transition: all 0.3s ease;
}
/* 
.yoyaku-bt::before {
  content: '';
  display: inline-block;
  aspect-ratio: 30 / 30;
  width: 30px;
  background-image: url(../common/images/hotpepper_icon.png);
  background-size: cover;
  margin-right: 1rem;
} */

.yoyaku-bt:hover {
  color: var(--color-hotpepper) !important;
  text-decoration: none;
  transform: translateY(-5px);
}

.g-nav > ul > li > a:hover {
  color: var(--color-accent);
}

@media only screen and (max-width: 599px) {
  .g-nav > ul > li > a {
    display: block;
    position: relative;
    color: #333;
    font-size: clamp(1.2rem, 1.018rem + 0.78vw, 1.6rem);
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    white-space: nowrap;
    padding: 1.5rem;
  }
}

/* サブメニューがあるメインメニュー項目に下向き矢印を追加 */
.g-nav > ul > li:has(.sub-menu) > a::after {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 0.8em;
  margin-left: 0.5em;
  transition: transform 0.3s ease;
}

.g-nav > ul > li:has(.sub-menu):hover > a::after {
  transform: rotate(180deg);
}

/* Submenu */
.sub-menu {
  position: absolute;
  min-width: 200px;
  /* top: calc(100% + 1rem); */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overflow: hidden;
  width: max-content;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1000;
}

.g-nav > ul > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.sub-menu li {
  width: 100%;
  position: relative;
}

.sub-menu li a {
  background-color: var(--color-accent);
  color: #fff;
  font-size: 1.4rem;
  padding: 1rem 30px 1rem 15px;
  white-space: nowrap;
  display: block;
  transition: background-color 0.3s ease;
}

.sub-menu li:not(:last-child) a {
  border-bottom: solid 1px var(--color-theme-second);
}

/*サブメニュー矢印*/
.sub-menu li a::after {
  content: '\f138';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8em;
  color: var(--color-theme-second);
}

.sub-menu li a:hover {
  background-color: var(--color-gray-light);
  color: var(--color-accent);
  font-weight: bold;
}

/* スマートフォン用のサブメニュースタイル */
@media only screen and (max-width: 1024px) {
  .sub-menu {
    position: static;
    background: none;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 100%;
    min-width: auto;
    border-radius: 0;
    background-color: #f8f8f8;
    padding-left: 20px;
    border-top: 1px solid #e0e0e0;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .g-nav > ul > li > .sub-menu {
    padding: 0;
  }
  .g-nav > ul > li.open > .sub-menu {
    max-height: 1000px;

    border-bottom: solid 1px var(--color-theme-second);
  }

  .sub-menu > li > a {
    font-size: 1.4rem;
    padding: 12px 15px;
    color: #fff !important;
    background-color: var(--color-theme);
  }
  .sub-menu > li {
    border-bottom: solid 1px #fff;
  }
  .sub-menu > li:last-child {
    border-bottom: solid 1px #666;
  }
}

/* スマホナビボタン */
.navbtn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
  z-index: 1001;
  position: relative;
  width: 30px;
  height: 30px;
}

/*アクセシビリティ対策*/
.navbtn .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ハンバーガーメニュー */
.navbtn .hamburger,
.navbtn .hamburger::before,
.navbtn .hamburger::after {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  position: absolute;
  transition: all 0.3s ease-in-out;
}

.navbtn .hamburger {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.navbtn .hamburger::before,
.navbtn .hamburger::after {
  content: '';
  width: 100%;
}

.navbtn .hamburger::before {
  top: -8px;
}

.navbtn .hamburger::after {
  bottom: -8px;
}

/* アクティブ時 */
.navbtn.active .hamburger {
  background: transparent;
}

.navbtn.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.navbtn.active .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* Responsive Layout */
@media only screen and (min-width: 1025px) {
  .navbtn {
    display: none;
  }
}

@media only screen and (max-width: 1024px) {
  .h_tool_smp {
    background-color: var(--color-theme);
    padding: 15px;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 20px;
    right: 10px;
    border-radius: 100px;
  }
}

@media only screen and (max-width: 599px) {
  .h_tool_smp {
    width: 60px;
    height: 60px;
  }
}

/* スマホグローバルナビ */
@media only screen and (max-width: 1024px) {
  .navbtn {
    display: block;
  }

  .g-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.85);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.2s ease,
      visibility 0.2s ease;
    z-index: 900;
    justify-content: center;
    justify-items: center;
  }

  .g-nav.show {
    opacity: 1;
    visibility: visible;
    overflow: auto;
  }

  .g-nav > ul:first-child {
    margin-top: 20vh;
    margin-bottom: 2.5rem;
  }
  .g-nav > ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100vw;
    margin: 0;
    gap: 2rem;
  }

  .g-nav > ul > li {
    opacity: 0;
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
    overflow: hidden;
  }

  .g-nav > ul > li > a {
    position: relative;
    display: block;
    padding: 15px 20px;
    color: var(--color-theme);
    font-size: 2rem;
    /* border-bottom: 1px solid #666; */
  }

  .g-nav.show > ul > li {
    opacity: 1;
    padding: 0;
  }

  .sub-menu {
    position: static;
    background: none;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 100%;
    min-width: auto;
    border-radius: 0;
    background-color: #f8f8f8;
    padding-left: 20px;
    border-top: 0px solid #e0e0e0;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .g-nav > ul > li.open > .sub-menu {
    max-height: 1000px;
  }

  .sub-menu > li > a {
    font-size: 1.4rem;
    padding: 15px 20px;
    color: #333;
  }

  /* Submenu Toggle */
  .g-nav > ul > li > a .submenu-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
  }

  .g-nav > ul > li > a .submenu-toggle::before,
  .g-nav > ul > li > a .submenu-toggle::after {
    content: '';
    position: absolute;
    background-color: #333;
    transition: transform 0.3s ease;
  }

  .g-nav > ul > li > a .submenu-toggle::before {
    width: 2px;
    height: 20px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }

  .g-nav > ul > li > a .submenu-toggle::after {
    width: 20px;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .g-nav > ul > li.open > a .submenu-toggle::before {
    transform: translateX(-50%) rotate(90deg);
  }
  .g-nav > ul > li > a .submenu-toggle {
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
    position: absolute;
    right: 0;
  }

  .g-nav > ul > li > a .submenu-toggle::before,
  .g-nav > ul > li > a .submenu-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background-color: #333;
    transition: transform 0.3s;
  }

  .g-nav > ul > li > a .submenu-toggle::before {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .g-nav > ul > li > a .submenu-toggle::after {
    transform: translate(-50%, -50%);
  }

  .g-nav > ul > li.open > a .submenu-toggle::before {
    transform: translate(-50%, -50%) rotate(0);
  }
}

/*パンくず*/
.breadcrumb-nav {
  padding: 1.5rem 0;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.breadcrumb li {
  font-size: 1.6rem;
}
.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin: 0 0.5em;
}

/* Main Content */
main {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.main-content {
  width: 1200px;
  margin: 0 auto;
  padding: 10rem 0;
  line-height: 1.5;
  font-size: 1.6rem;
}

.main-content p,
.main-content > dl > dd {
  margin-bottom: 1.5rem;
}

.main-content > ol {
  margin-left: 3.5rem;
}

.main-content > ol > li {
  list-style-type: decimal;
  margin-bottom: 1.5rem;
}
.main-content p a {
  text-decoration: underline;
}

/* Main Content Responsive */

@media only screen and (max-width: 1024px) {
  .main-content {
    width: 100%;
    padding: 2rem;
  }
}

@media only screen and (max-width: 599px) {
  .main-content {
    padding: 3rem;
  }
}

/*MARK:mainimage*/

.mainimage {
  background: url(../common/images/mainimage.jpg) no-repeat center center / cover;
  min-height: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mainimage-sub {
  background: url(../common/images/mainimage.jpg) no-repeat center center / cover;
  min-height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 1024px) {
  .mainimage {
    background: url(../common/images/mainimage-tab.jpg) no-repeat center center / cover;
    align-items: flex-end;
    min-height: 750px;
  }
}

@media only screen and (max-width: 599px) {
  .mainimage {
    background: url(../common/images/mainimage-smp.jpg) no-repeat center center / cover;
    align-items: flex-end;
  }
}

.mainimage-title {
  font-family: 'Noto Serif JP', serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 4.8rem;
  color: var(--color-theme);
  text-align: center;
  /* text-shadow:
    1px 1px 2px rgba(0, 0, 0, 0.7),
    0px 0px 3px rgba(0, 0, 0, 0.5); */
  margin-bottom: 3rem;
}

@media only screen and (max-width: 1024px) {
  .mainimage-title {
    font-size: 3.2rem;
    line-height: 2;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .mainimage-title {
    margin-bottom: 6rem;
  }
}

.mainimage-subtitle {
  font-family: 'Noto Serif JP', serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 2.4rem;
  color: var(--color-theme);
  text-align: center;
  /* text-shadow:
    1px 1px 2px rgba(0, 0, 0, 0.7),
    0px 0px 3px rgba(0, 0, 0, 0.5); */
}

@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .mainimage-subtitle {
    font-size: 1.8rem;
    margin-bottom: 6rem;
    padding: 0 3rem;
  }
}

@media only screen and (max-width: 767px) {
  .mainimage-subtitle {
    display: none;
  }
}

@media only screen and (max-width: 1024px) and (max-height: 375px) {
  .tab {
    display: inline-block !important;
  }
  .submenu-toggle {
    display: none;
  }
}

/* Footer */
#footer {
  width: 100%;
  margin: 0;
}

.footer-inner {
  font-size: 1.6rem;
  width: 1200px;
  margin: 0 auto;
  padding: 4rem 0;
  gap: 30px;
}

.f_logo {
  display: block;
  text-align: center;
}

.f_logo img {
  width: 260px;
  display: block;
  margin: 0 auto 2rem auto;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 1024px) {
  .footer-inner {
    width: 100%;
    padding: 3rem;
  }
}

.footer-inner nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.footer-inner nav ul li a {
  position: relative;
  text-decoration: none;
  color: var(--color-theme); /* リンクのを適宜調整 */
  display: inline-block;
  transition: color 0.3s ease; /* テキストの色変化のアニメーション */
  font-size: 1.4rem;
  padding: 1rem 0;
}

.footer-inner nav ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px; /* 下線の太さ */
  background-color: var(--color-theme); /* 下線の色 */
  transition: width 0.3s ease;
}

.footer-inner nav ul li a:hover {
  color: var(--color-accent); /* ホバー時テキスト色 */
}

.footer-inner nav ul li a:hover::after {
  width: 100%; /* ホバー時に下線を100%の幅 */
}

.address_txt {
  text-align: center;
  padding: 5px;
  min-height: 42px;
  font-style: normal;
  font-size: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: var(--color-theme);
  color: #fff;
}

@media only screen and (max-width: 1024px) {
  .footer-inner nav ul li a {
    font-size: 1.3rem;
  }
}

@media only screen and (max-width: 599px) {
  #footer {
    padding-bottom: 0;
  }
  .footer-inner {
    width: 100%;
    padding: 3rem;
  }
}

/*MARK:サブコンテンツ*/
.section-title {
  position: relative;
  margin-bottom: 4rem;
  padding-left: 4rem;
  padding-top: 2rem;
}

@media only screen and (max-width: 1024px) {
  .section-title {
    padding-left: 0;
  }
}

.section-title .ja {
  font-family: 'Noto Serif JP', serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 3.6rem;
  color: var(--color-theme);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.section-title .en {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Noto Serif JP', serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 6.4rem;
  color: #fff;
  z-index: 0;
}

.section-subtitle {
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-theme);
  font-family: 'Noto Serif JP', serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 3rem;
}

.section-subtitle::before {
  content: '';
  display: inline-block;
  aspect-ratio: 54 / 42;
  width: 54px;
  background-image: url(../common/images/menu_icon.png);
  background-size: cover;
  margin-right: 1rem;
}

.section-subtitle2 {
  position: relative;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-theme);
  font-family: 'Noto Serif JP', serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 3rem;
}

#about .main-content {
  background-image: url(../common/images/about_bg.png);
  background-repeat: no-repeat;
  background-position: center 5rem;
}

.coupon-box {
  background-color: #fff;
  padding: 3rem;
  border-radius: 1rem;
  border: 2px dashed var(--color-theme);
  margin: 4rem 0;
}
.coupon-inner {
  background-image: url(../common/images/coupon_bg.png);
  background-repeat: no-repeat;
  background-position: center right;
}

.coupon-box h4 {
  margin-bottom: 2rem;
}

.coupon-box h4 .title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-theme);
  font-family: 'Noto Serif JP', serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.coupon-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-style: normal;
}
.coupon-box h4::before {
  content: '';
  display: inline-block;
  aspect-ratio: 42 / 31;
  width: 42px;
  background-image: url(../common/images/coupon_icon.png);
  background-size: cover;
  margin-right: 1rem;
}

.coupon-box small {
  font-size: 1.2rem;
}

.coupon-box p:last-child {
  margin-bottom: 0;
}

#news {
  background-color: var(--color-theme-light);
}

.news-list {
  background-color: var(--color-theme-light-second);
  padding: 1rem 3rem;
  border-radius: 5px;
  margin: 3rem 0;
}

.news-list ul li {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.news-list ul li:not(:last-child) {
  border-bottom: 1px dashed var(--color-theme);
}

#menu {
  background-image: url(../common/images/menu_bg.png);
  background-repeat: no-repeat;
  background-position: center 8rem;
}

.top-menu-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 6rem 0;
}

@media only screen and (max-width: 1024px) {
  .top-menu-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.top-menu-list li {
  position: relative;
}
.top-menu-list li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  position: relative;
  gap: 1rem;
}
.top-menu-list li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.top-menu-list li a:hover img {
  transform: translateY(-5px);
}

#interior {
  background-color: var(--color-theme-light);
}

#interior .main-content {
  padding-bottom: 0;
}

.infiniteslide_wrap {
  overflow: visible !important;
  padding: 6rem 0;
}

.interior-list {
  display: flex;
  flex-wrap: wrap;
}

.access-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  border-top: 1px solid var(--color-theme);
  padding-top: 2rem;
}

.access-box div {
  border-bottom: 1px solid var(--color-theme);
  padding-bottom: 2rem;
}

#contact {
  background-image: url(../common/images/contact_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
}

#contact h3 {
  font-family: 'Noto Serif JP', serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 3.6rem;
  color: #fff;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 1024px) {
  #contact h3 {
    font-size: 2.4rem;
  }

  #contact .main-content {
    padding: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    min-height: 500px;
    align-items: center;
  }
}

#contact p {
  color: #fff;
}
.contact_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.contact_mail,
.contact_tel {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px;
}

@media only screen and (max-width: 1024px) {
  .contact_box {
    gap: 3rem;
  }

  .contact_mail,
  .contact_tel {
    padding: 0;
  }
}

.contact_mail a,
.contact_tel a {
  transition: all 0.3s ease;
}

.contact_mail a:hover,
.contact_tel a:hover {
  transform: translateY(-5px);
}

.contact_mail::before {
  content: '';
  width: 60px;
  height: 60px;
  display: inline-block;
  background-image: url(../common/images/mail_icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--color-accent);
  padding: 20px;
  border-radius: 100px;
  margin-right: 15px;
}
.contact_tel::before {
  content: '';
  width: 60px;
  height: 60px;
  display: inline-block;
  background-image: url(../common/images/tel_icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--color-accent);
  padding: 20px;
  border-radius: 100px;
  margin-right: 15px;
}
.contact_box h4 {
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4rem;
  color: #fff;
  line-height: 1;
}

.contact_tel h4 {
  letter-spacing: 0.1em;
}
.contact_box p {
  margin: 0;
}

.fee-list {
  border-top: dashed 1px var(--color-theme);
}

.fee-list div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  border-bottom: dashed 1px var(--color-theme);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media only screen and (max-width: 1024px) {
  .fee-list div {
    grid-template-columns: 1fr;
  }
}

.fee-list dt {
  font-size: 1.8rem;
  font-weight: 700;
}
.fee-list dd {
  font-size: 1.8rem;
}

.btn-link,
.btn-link img {
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: var(--color-accent);
}
.btn-link:hover img {
  transform: translateY(-5px);
}

.btn-p-1 {
  padding: 1rem;
  background-color: #fff;
  border: solid 1px var(--color-theme);
}

.reservation-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
  margin: 4rem 0;
}

@media only screen and (max-width: 1024px) {
  .reservation-box {
    grid-template-columns: 1fr;
  }
}

.reservation-box-item {
  background-color: #fff;
  padding: 3rem;
  border-radius: 5px;
}

.reservation-box-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-theme);
  font-family: 'Noto Serif JP', serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3rem;
}
.reservation-box-title::before {
  content: '';
  display: inline-block;
  aspect-ratio: 54 / 55;
  width: 40px;
  background-image: url(../common/images/yoyaku-icon.svg);
  background-size: cover;
  margin-right: 1rem;
}

.info-img-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 4rem 0;
}

@media only screen and (max-width: 1024px) {
  .info-img-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.info-img-list img {
  border-radius: 1rem;
}

.privacy-list,
.recruit-list {
  background-color: #fff;
  padding: 2rem;
  border-radius: 5px;
  margin: 4rem 0;
}

.privacy-list li,
.recruit-list li {
  position: relative;
  padding-left: 45px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.privacy-list li::before,
.recruit-list li::before {
  content: '';
  display: inline-block;
  aspect-ratio: 45 / 45;
  width: 30px;
  background-image: url(../common/images/list-icon01.png);
  background-size: cover;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* MARK:grid layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

@media only screen and (max-width: 1024px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.txt-img-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 6rem;
}

@media only screen and (max-width: 1024px) {
  .txt-img-grid {
    grid-template-columns: 1fr;
  }
}

.img-box img {
  border-radius: 1rem;
}

@media only screen and (max-width: 1024px) {
  .img-box img {
    margin-inline: auto;
  }
}

/* MARK:Tables */
.legal_notice {
  border-collapse: collapse;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  border-left: 0px solid #e3e3e3;
  border-top: 1px solid #ccc;
}

.legal_notice th {
  text-align: left;
  vertical-align: middle;
  padding: 13px 15px;
  border-right: 0px solid #e3e3e3;
  background: initial;
  color: #1f2e55;
  font-size: 1.6rem;
  border-bottom: 1px solid #ccc;
  width: 15%;
}

.legal_notice td {
  background: initial;
  padding: 13px 15px;
  border-right: 0px solid #e3e3e3;
  color: #000;
  font-size: 1.6rem;
  border-bottom: 1px solid #ccc;
}

.form {
  border-collapse: collapse;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  border-left: 0px solid #e3e3e3;
  border-top: 0px solid #ccc;
  margin-bottom: 20px;
}
.form th {
  text-align: left;
  vertical-align: middle;
  padding: 13px 15px;
  border-right: 0px solid #e3e3e3;
  background: initial;
  color: #000;
  font-size: 14px;
  border-bottom: 1px solid #ccc;
  width: 35%;
}

.form td {
  padding: 13px 15px;
  border-right: 0px solid #e3e3e3;
  color: #000;
  font-size: 14px;
  border-bottom: 1px solid #ccc;
}

@media only screen and (max-width: 1024px) {
  .legal_notice th {
    width: 20%;
  }
}

@media only screen and (max-width: 599px) {
  .legal_notice th,
  .form th {
    display: block;
    width: 100%;
    border-bottom: 0;
  }

  .legal_notice th {
    padding: 1rem 0 0 0;
  }

  .legal_notice td,
  .form td {
    display: block;
    width: 100%;
  }

  .legal_notice td {
    padding: 1rem 0;
  }

  .form th {
    padding-bottom: 0;
  }
}

@media only screen and (max-width: 599px) {
  .form td {
    padding: 10px;
  }

  .form th .red {
    margin-left: 5px;
  }
}

@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .form input[type='text'],
  .form input[type='tel'],
  .form input[type='email'] {
    width: 90%;
    max-width: 400px;
  }
}

/* Page Top Button */
#page-top {
  position: fixed;
  bottom: 0;
  right: 0;
  font-size: 1.2rem;
  z-index: 20;
  margin: 0 !important;
}

#page-top a {
  background: var(--color-theme);
  text-decoration: none;
  color: #fff;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

@media only screen and (min-width: 1281px) {
  #page-top a:hover {
    text-decoration: none;
    background: var(--color-theme-light);
    color: var(--color-theme);
  }
}

@media only screen and (max-width: 599px) {
  #page-top {
    bottom: 57px;
  }
}

/*MARK:gmap*/
.gmap {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 75%; /* 4:3の比率 */
  overflow: hidden;
}

.gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media only screen and (max-width: 599px) {
  .gmap {
    padding-bottom: 56.25%; /* 16:9の比率 */
  }
}
/*MARK:Margin Padding*/
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}
.mt-4 {
  margin-top: 4rem;
}
.mt-6 {
  margin-top: 6rem;
}

.mt-10 {
  margin-top: 10rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

/* Button Style */

.arrow_list li {
  padding: 1rem;
  color: var(--color-green-dark);
  font-size: 1.6rem;
  position: relative;
}

.arrow_list li::before {
  font-family: 'Font Awesome 6 Free';
  content: '\f054';
  font-weight: 900;
  margin-right: 10px;
}

.link-list,
.link_list_center {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 3rem 0;
}

@media only screen and (max-width: 599px) {
  .link-list,
  .link_list_center {
    margin: 0;
  }
}

.link_list_center {
  justify-content: center;
}
.link-list li a::before,
.link_list_center li a::before {
  font-family: 'Font Awesome 6 Free';
  content: '\f138';
  font-weight: 900;
  margin-right: 10px;
  color: var(--color-theme);
  font-size: 1.8rem;
}
.link-list li a,
.link_list_center li a {
  display: inline-block;
  color: #000;
  font-size: 1.4rem;
  position: relative;
  text-decoration: none;
  padding-bottom: 2px;
  padding-left: 0;
}

.link-list li a::after,
.link_list_center li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-theme);
  transition: width 0.3s ease;
}

.link-list li a:hover::after,
.link_list_center li a:hover::after {
  width: 100%;
}

.link-bt-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
  margin: 1.5rem 0;
}

.bt-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin: 3rem 0;
}

.bt-list-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}

.bt-img img {
  transition: all 0.3s ease;
}
.bt-img:hover img {
  transform: translateY(-5px);
}

.bt01,
.bt02,
.bt-item,
.form_bt {
  display: inline-block;
  transition:
    var(--transition),
    transform 0.3s ease;
  text-decoration: none !important;
}

.bt01 {
  background-color: var(--color-accent);
  color: #fff;
  border-radius: 5px;
  font-size: 1.4rem;
  padding: 15px 30px;
  position: relative;
}

@media only screen and (max-width: 599px) {
  .bt01 {
    padding: 10px 30px;
  }
}

.bt01:hover {
  transform: translateY(-5px);
}

.bt01::after {
  font-family: 'Font Awesome 5 Free';
  content: '\f0da';
  font-weight: 900;
  padding-left: 1rem;
  color: var(--color-white);
  font-size: 1.4rem;
  text-decoration: none !important;
  vertical-align: middle;
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.bt02 {
  border: solid 1px var(--color-theme-second);
  color: var(--color-theme-second);
  min-width: 250px;
  padding: 10px 20px;
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  position: relative;
  background-color: #fff;
  opacity: 1;
}

.bt02:hover {
  background-color: var(--color-theme-second);
  color: #fff;
  transform: translateY(-5px);
}

.bt02::after {
  font-family: 'Font Awesome 5 Free';
  content: '\f0da';
  font-weight: 900;
  padding-left: 1rem; /*文字との隙間*/
  color: var(--color-theme-second);
  font-size: 1.4rem;
  text-decoration: none;
  vertical-align: middle; /* 縦中央に配置 */
  display: inline-block; /* インラインブロック要素に変更 */
  transition:
    var(--transition),
    transform 0.3s ease;
}

.bt02:hover::after {
  color: #fff;
}

.bt-item {
  border: solid 1px var(--color-red);
  color: #fff;
  min-width: 250px;
  padding: 10px 20px;
  font-weight: 400;
  position: relative;
  background-color: var(--color-red);
  opacity: 1;
  text-align: center;
  border-radius: 100px;
}

.bt-item:hover {
  background-color: var(--color-red);
  color: #fff;
  transform: translateY(-5px);
}

.bt-item::after {
  font-family: 'Font Awesome 5 Free';
  content: '\f0da';
  font-weight: 900;
  padding-left: 1rem; /*文字との隙間*/
  color: var(--color-theme-second);
  font-size: 1.4rem;
  text-decoration: none;
  vertical-align: middle; /* 縦中央に配置 */
  display: inline-block; /* インラインブロック要素に変更 */
  transition:
    var(--transition),
    transform 0.3s ease;
}

.bt-item:hover::after {
  color: #fff;
}

.line_icon {
  transition:
    var(--transition),
    transform 0.3s ease;
}

.line_icon:hover {
  transform: translateY(-5px);
}

@media screen and (min-width: 1025px) {
  .bt01 {
    min-width: 260px;
  }
}

@media only screen and (max-width: 1024px) {
  .bt_list li a {
    width: 100%;
  }
}

@media only screen and (max-width: 599px) {
  .bt_list li {
    width: 100%;
  }
}

.disc-list {
  list-style: disc;
  margin-left: 3.5rem;
  margin-bottom: 3.5rem;
}
.disc-list li::marker {
  color: var(--color-theme);
  font-size: 2.4rem;
}

/* FAQ Section */
#faq {
  background-color: var(--color-theme-light);
  padding: 8rem 0;
}

.faq-title {
  font-size: 3.6rem;
  text-align: center;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 6rem;
}

.faq-item {
  background-color: #fff;
  border: 3px solid var(--color-theme);
  border-radius: 15px;
  margin-bottom: 3rem;
  padding: 2.5rem 3rem;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  padding-bottom: 2rem;
  gap: 2rem;
  border-bottom: 2px solid var(--color-theme);
  position: relative;
}

.faq-question::before {
  content: 'Q';
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--color-theme);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: bold;
  flex-shrink: 0;
}

.faq-answer {
  display: flex;
  align-items: flex-start;
  padding-top: 2rem;
  gap: 2rem;
  position: relative;
}

.faq-answer::before {
  content: 'A';
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--color-gray-darken);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: bold;
  flex-shrink: 0;
}

.faq-question {
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-theme);
  line-height: 1.8;
}

.faq-answer {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
}

@media only screen and (max-width: 1024px) {
  #faq {
    padding: 6rem 0;
  }

  .faq-container {
    margin-top: 4rem;
  }

  .faq-question {
    padding-bottom: 2rem;
    gap: 1.5rem;
  }

  .faq-answer {
    padding-top: 2rem;
    gap: 1.5rem;
  }

  .faq-question::before,
  .faq-answer::before {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 2rem;
  }

  .faq-question {
    font-size: 1.8rem;
  }

  .faq-answer {
    font-size: 1.4rem;
  }
}

@media only screen and (max-width: 599px) {
  #faq {
    padding: 4rem 0;
  }

  .faq-container {
    margin-top: 3rem;
  }

  .faq-question {
    padding-bottom: 1.5rem;
    gap: 1rem;
  }

  .faq-answer {
    padding-top: 1.5rem;
    gap: 1rem;
  }

  .faq-question::before,
  .faq-answer::before {
    width: 3rem;
    height: 3rem;
    font-size: 1.8rem;
  }

  .faq-question {
    font-size: 1.6rem;
  }

  .faq-answer {
    font-size: 1.3rem;
    line-height: 1.6;
  }

  .faq-item {
    margin-bottom: 2rem;
  }
}
