@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  background: #fefefe;
  color: #694620;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 500;
  font-family: "Noto Serif JP", "YakuHanMP", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

a {
  color: #694620;
  text-decoration: none;
  transition: all 0.3s ease-in;
  cursor: pointer;
}
a:focus-visible {
  outline: 2px solid rgba(165, 150, 105, 0.35);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5 {
  line-height: 1.7;
  font-weight: 600;
}

h1 {
  font-size: 48px;
  font-size: 4.8rem;
}

h2 {
  font-size: 32px;
  font-size: 3.2rem;
}

h3 {
  font-size: 24px;
  font-size: 2.4rem;
}

h4 {
  font-size: 18px;
  font-size: 1.8rem;
}

h5 {
  font-size: 15px;
  font-size: 1.5rem;
}

.bigger {
  font-size: 4rem;
}

.bigger2 {
  font-size: 5.6rem;
}

h1.gold {
  font-size: 7.2rem;
  font-weight: 700;
  background: linear-gradient(88.39deg, #A48938 35.75%, #EBD48D 49.31%, #A48938 62.47%);
  background-clip: text;
  color: transparent;
  line-height: 1.2;
  margin-bottom: 48px;
}

.smaller {
  font-size: 0.7em;
}

#wrapper {
  position: relative;
  overflow: hidden;
}

hr {
  border: none;
  border-top: 1px solid #694620;
  margin: 0;
  opacity: 0.4;
}

#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
#header .inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 20px;
}
#header #logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
}

.head-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}

#header_nav ul {
  display: flex;
  gap: 24px;
  align-items: center;
}
#header_nav a {
  display: inline-block;
  padding: 8px 10px;
  color: #694620;
  text-decoration: none;
  position: relative;
  transition: opacity 0.2s;
}
#header_nav a:hover {
  opacity: 0.85;
}
#header_nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
#header_nav a:hover::after, #header_nav a.active::after {
  transform: scaleX(1);
}
#header_nav.hover-circle a::after {
  display: none;
}
#header_nav.hover-circle a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #694620;
  border-radius: 50%;
  width: 2em;
  height: 2em;
  opacity: 0;
  transition: all 0.5s ease;
}
#header_nav.hover-circle a:hover::before {
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 0.1;
}
#header_nav.hover-circle a.active::before {
  opacity: 0.1;
}

#nav-toggle,
#sp-nav {
  display: none;
}

#footer {
  position: relative;
  margin-top: -220px;
  padding-bottom: 0;
}
#footer::before {
  background: url(../img/footer-deco.png) no-repeat center top/100%;
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -230px;
  width: 120%;
  height: 100%;
  z-index: 2;
}
#footer .inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
#footer .inner .footer-left {
  width: 45%;
  padding-right: 5%;
}
#footer .inner .footer-right {
  width: 55%;
}

.copyright {
  border-top: 1px solid #694620;
  padding-top: 32px;
}

.flogo {
  width: 197px;
}

.footer_navi {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #694620;
}
.footer_navi ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  margin-inline: auto;
}
.footer_navi ul li {
  width: 20%;
  text-align: center;
}
.footer_navi ul li a {
  position: relative;
  display: inline-block;
  color: #694620;
  padding: 4px 0;
  font-size: 1.4rem;
}
.footer_navi ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #694620;
  transform: translateX(-50%) scaleX(0);
  transform-origin: 50% 50%;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s ease;
  opacity: 0.9;
}
.footer_navi ul li a:hover::after, .footer_navi ul li a:focus-visible::after, .footer_navi ul li a.is-current::after, .footer_navi ul li a[aria-current=page]::after {
  transform: translateX(-50%) scaleX(1);
}
.footer_navi ul li a:hover {
  opacity: 0.95;
}

#page-title .inner {
  max-width: 80%;
  margin: auto;
  padding: 100px 0;
}
#page-title .inner .title,
#page-title .inner .text {
  width: 50%;
  margin-bottom: 0;
}

.contact_btn {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact_btn a {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 4px;
  background: rgb(164, 137, 56);
  box-shadow: 0px 4px 0px 0px rgb(135, 111, 40);
  color: #fff;
  border-radius: 90px;
  padding: 8px 52px;
  font-weight: 700;
  border-radius: 10px;
}
.contact_btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #fff;
  opacity: 0.15;
  border-radius: 10px;
}
.contact_btn a:hover {
  opacity: 0.6;
}
.contact_btn a.icon_link {
  min-width: auto;
  border-radius: 50%;
  aspect-ratio: 1/1;
  padding: 8px;
}
.contact_btn img {
  inline-size: 24px;
  block-size: 24px;
  object-fit: contain;
}
.contact_btn.column {
  flex-direction: column;
  align-items: flex-start;
}
.contact_btn.big {
  gap: 16px;
}
.contact_btn.big a {
  padding: 32px 24px;
  min-width: 320px;
  font-size: 1.3em;
}
.contact_btn.dark a,
.contact_btn.dark p:nth-child(2) a {
  background: #fff;
  border: 1px solid #694620;
  color: #694620;
}
.contact_btn.dark a img,
.contact_btn.dark p:nth-child(2) a img {
  filter: invert(1);
}

.contact_icon {
  width: 30px;
}

.form__grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 18px 24px;
}
.form__row {
  display: contents;
}
.form__row--full {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: subgrid;
}
.form__label {
  align-self: start;
  padding-top: 10px;
  font-weight: 700;
  color: #694620;
}
.form__field {
  display: grid;
  gap: 8px;
}
.form__note {
  color: rgba(0, 0, 0, 0.6);
}
.form .req {
  display: inline-block;
  margin-left: 0.5em;
  padding: 0.1em 0.5em;
  border-radius: 4px;
  background: rgba(165, 150, 105, 0.12);
  color: #A59669;
  font-size: 0.8em;
  vertical-align: middle;
}
.form input[type=text],
.form input[type=email],
.form input[type=tel],
.form select,
.form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  background: #fff;
}
.form textarea {
  min-height: 160px;
}
.form .is-invalid {
  border-color: #e25c5c !important;
  box-shadow: 0 0 0 2px rgba(226, 92, 92, 0.15);
}
.form .policy-box {
  grid-column: 1/-1;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.02);
}
.form .policy-check {
  grid-column: 1/-1;
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
}
.form__actions {
  grid-column: 1/-1;
  display: grid;
  place-items: center;
  margin-top: 8px;
}

/* レスポンシブ */
@media (max-width: 900px) {
  .form__grid {
    grid-template-columns: 1fr;
  }
  .form__label {
    padding-top: 0;
  }
}
.container {
  --container-max: 1200px;
  --container-pb: 80px;
  --container-pi: 60px;
  position: relative;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-block: var(--container-pb);
  padding-inline: var(--container-pi);
}
.container--base {
  --container-max: 1200px;
}
.container--wide {
  --container-max: 1500px;
}
.container--full {
  --container-max: 100vw;
}
.container--p-2xl {
  --container-pb: 220px;
  --container-pi: 0;
}
.container--p-xl {
  --container-pb: 120px;
  --container-pi: 0;
}
.container--p-l {
  --container-pb: 80px;
  --container-pi: 0;
}
.container--p-m {
  --container-pb: 60px;
  --container-pi: 0;
}
.container--p-s {
  --container-pb: 40px;
  --container-pi: 0;
}
.container--full {
  padding-left: 0;
  padding-right: 0;
}
.container--top-only {
  padding-block-end: 0 !important;
}
.container--btm-only {
  padding-block-start: 0 !important;
}

.box {
  position: relative;
  margin-inline: auto;
  z-index: 3;
  padding: clamp(16px, 4vw, 30px);
}
.box--bwidth {
  max-width: 1200px;
  margin-inline: auto;
}
.box--small {
  max-width: 1100px;
  margin-inline: auto;
}
.box--small2 {
  max-width: 1000px;
  margin-inline: auto;
}
.box--small3 {
  max-width: 900px;
  margin-inline: auto;
}
.box--small4 {
  max-width: 800px;
  margin-inline: auto;
}
.box--small5 {
  max-width: 700px;
  margin-inline: auto;
}
.box--content-fit {
  display: grid;
  place-items: center;
}
.box--content-fit > * {
  inline-size: min(100%, var(--inner-max, max-content));
}
.box--content-fit img {
  max-inline-size: 100%;
}
.box--pd60 {
  padding: clamp(30px, 4vw, 60px);
}
.box--pd-30-60 {
  padding: 30px 60px;
}
.box--bd {
  border: 1px solid #694620;
}
.box--more {
  --more-closed: 350px;
}
.box--more .more-content {
  max-height: var(--more-closed);
  overflow: hidden;
  transition: max-height 0.6s ease;
}
.box--more.is-open .more-content {
  max-height: 2000px;
}
.box--more .more-btn {
  display: block;
  width: fit-content;
  margin: 16px 0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #A59669;
  background: rgba(165, 150, 105, 0.06);
  color: #A59669;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.box--more .more-btn:hover {
  background: rgba(165, 150, 105, 0.12);
}
.box--more .more-btn:focus-visible {
  outline: 2px solid rgb(203.25, 194.625, 168.75);
  outline-offset: 2px;
}

.l-column {
  --gap: 40px;
  --cols: 3;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  align-items: stretch;
  justify-content: flex-start;
  /* 通常のカード構造との整合性を維持 */
}
.l-column > li,
.l-column .col-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 0 0 calc((100% - var(--gap) * (var(--cols) - 1)) / var(--cols));
}
.l-column > li > *:first-child,
.l-column .col-item > *:first-child {
  margin-top: 0;
}
.l-column > li > .card,
.l-column .col-item > .card {
  inline-size: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.l-column.col2 {
  --cols: 2;
}
.l-column.col3 {
  --cols: 3;
}
.l-column.col4 {
  --cols: 4;
}
.l-column.col5 {
  --cols: 5;
}

#mv {
  display: flex;
  align-items: flex-end;
  aspect-ratio: 1440/859;
  position: relative;
  padding-left: 120px;
  padding-bottom: 120px;
  overflow: hidden;
}
#mv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/mv_bg.jpg) no-repeat center/cover;
  z-index: -2;
  opacity: 0.6;
}
#mv #catch {
  width: 60%;
}
#mv #catch .inner {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-bottom: 35px;
}
#mv #catch .text01 {
  position: relative;
  width: fit-content;
  color: #fff;
  padding: 16px 24px;
  font-size: 2.6rem;
}
#mv #catch .text01::after {
  border-radius: 8px;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(4px);
  background: linear-gradient(90deg, #C9A169 0%, #C99446 23.56%, #BA9A5A 41.35%, #C39F5E 61.78%, #BB8D41 80.89%, #B18138 100%);
  z-index: -1;
}
#mv #catch .text02 {
  font-size: 8.4rem;
  font-weight: 700;
  background: linear-gradient(84.25deg, #A48938 26.38%, #EBD48D 49.39%, #A48938 71.93%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}
#mv #catch .text02 .big1 {
  font-size: 146px;
}
#mv #catch .text02 .big2 {
  font-size: 100px;
}
#mv #catch .text02 .mini {
  font-size: 6.8rem;
}
#mv #catch .text03 {
  font-size: 2.6rem;
  color: #A59669;
}
#mv #image {
  position: absolute;
  width: 40%;
  bottom: -120px;
  right: -230px;
  width: 780px;
}
#mv #image::before {
  content: "";
  position: absolute;
  left: 70px;
  top: 90px;
  width: 135px;
  height: 135px;
  background: url(../img/awa01.png) no-repeat center/contain;
}
#mv #image::after {
  content: "";
  position: absolute;
  left: -30px;
  top: 220px;
  width: 130px;
  height: 130px;
  background: url(../img/awa02.png) no-repeat center/contain;
}

.title {
  margin: 0 auto 60px;
  position: relative;
  background: linear-gradient(89.37deg, #694620 38.96%, #9B723D 49.47%, #694620 59.66%);
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}
.title .en {
  font-family: "Calligraffitti", cursive;
  font-weight: 400;
  display: block;
  color: #694620;
  font-size: 0.6em;
}
.title .ja {
  position: relative;
}
.title--m0 {
  margin-bottom: 0;
}
.title--slim {
  margin: 0 auto 30px;
}
.title--thick {
  margin: 0 auto 90px;
}
.title--left {
  margin-left: 0;
}
.title--slash {
  display: flex;
  justify-content: center;
  align-items: center;
}
.title--slash::before, .title--slash::after {
  width: 2px;
  height: 30px;
  background-color: #694620;
  content: "";
}
.title--slash::before {
  transform: rotate(-35deg);
  margin-right: 30px;
}
.title--slash::after {
  transform: rotate(35deg);
  margin-left: 30px;
}
.title--bgbar {
  display: flex;
  align-items: center;
  padding: 0.5em 0.7em;
  background-color: #f2f2f2;
}
.title--bgbar::before {
  display: inline-block;
  width: 5px;
  height: 1.5em;
  margin-right: 0.5em;
  background-color: #694620;
  content: "";
}
.title--num {
  position: relative;
  padding-top: 1.5em;
  padding-left: 1em;
}
.title--num::before {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  color: #A59669;
  font-size: 3em;
  line-height: 1;
  content: attr(data-number);
  pointer-events: none;
  font-family: "Calligraffitti", cursive;
  font-weight: 400;
  opacity: 0.5;
}
.title--border {
  border-top: 1px solid #694620;
  border-bottom: 1px solid #694620;
  padding: 10px;
  width: 100%;
}

.btn {
  text-align: center;
}
.btn a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 12px 64px;
  color: #fff;
  background: linear-gradient(89.37deg, #694620 38.96%, #9B723D 49.47%, #694620 59.66%);
  border-radius: 90px;
  transition: 0.3s;
  min-width: 240px;
  font-size: 3.2rem;
  text-align: center;
  justify-content: center;
  box-shadow: 4px 4px 6px 0px rgba(0, 0, 0, 0.25);
}
.btn a:hover {
  opacity: 0.6;
}
.btn a:hover::before {
  transform: translate(5px, -50%);
}
.btn.slim {
  margin-top: 20px;
}
.btn--left {
  text-align: left;
}
.btn--big a {
  min-width: 408px;
  font-size: 4rem;
}
.btn--mini a {
  font-size: 2.4rem;
}
.btn--primary a {
  background: #694620;
  color: #fff;
  border-color: #A59669;
}
.btn--outline a {
  background: #fff;
  color: #694620;
  border-color: #694620;
}
.btn--ghost a {
  background: transparent;
  border-color: transparent;
  color: #694620;
}

.card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  padding: 48px;
}
.card__img {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  line-height: 0;
}
.card__img::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.card__img img,
.card__img picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
}
.card__body {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
}
.card--ratio-4x3 .card__img::before {
  padding-top: 75%;
}
.card--ratio-3x2 .card__img::before {
  padding-top: 66.6667%;
}
.card--ratio-1x1 .card__img::before {
  padding-top: 100%;
}
.card--ratio-21x9 .card__img::before {
  padding-top: 42.8571%;
}

.l-column > li,
.l-column .col-item {
  display: flex;
}
.l-column > li > .card,
.l-column .col-item > .card {
  inline-size: 100%;
}

.news-list {
  display: grid;
  gap: 10px;
  max-width: 800px;
  margin-inline: auto;
}
.news-list li:first-child a {
  border-top: 1px solid #eee;
}
.news-list li a {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #eee;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}
.news-list li a:hover {
  background: #fafafa;
}
.news-list time {
  color: #666;
  font-size: 1.3rem;
}
.news-list .cat {
  color: #A59669;
  font-weight: 700;
  font-size: 1.3rem;
}
.news-list .ttl {
  font-size: 1.5rem;
}

.media {
  display: grid;
  grid-template-columns: var(--media-img, 120px) 1fr;
  gap: var(--media-gap, 100px);
}
.media__img {
  inline-size: 100%;
  block-size: 100%;
}
.media__img img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  display: block;
}
.media__body {
  line-height: 1.8;
}
.media--sm {
  --media-img: 80px;
}
.media--md {
  --media-img: 120px;
}
.media--lg {
  --media-img: 180px;
}
.media--xl {
  --media-img: 240px;
}
.media--2xl {
  --media-img: 360px;
}

.alert {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #694620;
}
.alert--success {
  background: #f0faf2;
  border-color: #c9e7ce;
  color: #1a7f3a;
}
.alert--warning {
  background: #fff8e6;
  border-color: #ffe1a5;
  color: #8a5b00;
}
.alert--danger {
  background: #fff1f1;
  border-color: #ffc7c7;
  color: #a52b2b;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 700;
}

.badge--accent {
  background: #A59669;
  color: #fff;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: m #694620;
}

.tabs__nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.tabs__btn {
  width: 48%;
  padding: 16px 24px;
  border-radius: 8px 8px 0 0;
  background: #694620;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-size: 1.1em;
}
.tabs__btn.is-active {
  background: #fff;
  color: #694620;
  border: 2px solid #694620;
  border-bottom: none;
}
.tabs__panel {
  display: none;
  background: #fff;
  border-radius: 8px;
}
.tabs__panel.is-active {
  display: block;
  padding: 40px;
}

.contents-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 120px;
}
.contents-nav > li a {
  background: #A59669;
  color: #fff;
  border-radius: 60px;
  padding: 16px 40px;
  font-weight: 600;
  font-size: 1.2em;
  min-width: 240px;
  display: block;
  text-align: center;
  border: 1px solid #A59669;
}
.contents-nav > li a:hover {
  color: #A59669;
  background: #fff;
}
.contents-nav > li:nth-child(2) a {
  background: #A59669;
  border: 1px solid #A59669;
}
.contents-nav > li:nth-child(2) a:hover {
  color: #A59669;
  background: #fff;
}

.breadcrumb {
  max-width: 90%;
  margin: auto;
  padding: 30px;
  font-size: 12px;
}
.breadcrumb a {
  color: #333333;
  opacity: 0.6;
  text-decoration: underline;
}
.breadcrumb .kigou {
  font-size: 0.6em;
  padding: 0 0.5em;
}

.list li {
  text-indent: -1em;
  padding-left: 1em;
}
.list--disc li {
  position: relative;
}
.list--disc li:not(:last-of-type) {
  margin-bottom: 5px;
}
.list--disc li::before {
  content: "●";
  color: #A59669;
  font-size: 9px;
  margin-right: 5px;
}
.list--disc.sbc li::before {
  color: #694620;
}
.list--inline li {
  display: inline-block;
}
.list--inline li:not(:last-of-type) {
  margin-right: 5px;
}
.list--check {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list--check li {
  position: relative;
  padding-left: 45px;
  text-indent: initial;
  font-size: 2.4rem;
  font-weight: 500;
}
.list--check li:not(:last-of-type) {
  margin-bottom: 6px;
}
.list--check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url(../img/check.png) no-repeat center/contain;
}
.list--check.sbc li::before {
  border-color: #694620;
}
.list--num li figure {
  position: relative;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.list--num li figure::before {
  content: "";
  position: absolute;
  right: -1em;
  top: -1.5em;
  width: 5em;
  height: 5em;
}
.list--num li:nth-child(1) figure::before {
  background: url(../img/01.png) no-repeat center/contain;
}
.list--num li:nth-child(2) figure::before {
  background: url(../img/02.png) no-repeat center/contain;
}
.list--num li:nth-child(3) figure::before {
  background: url(../img/03.png) no-repeat center/contain;
}

.tbl {
  width: 100%;
  margin-inline: auto;
  border-collapse: separate;
  border-spacing: 4px 2px;
  /* 交互行 */
  /* ボーダー */
  /* ボーダー（背景交互） */
  /* 吹き出し型 */
  /* 診療時間表 */
}
.tbl tr th,
.tbl tr td {
  padding: 10px 15px;
}
.tbl tr th {
  font-weight: 600;
  width: 30%;
  text-align: center;
  background: #694620;
  color: #fff;
}
.tbl tr td {
  background: #fff;
}
.tbl:not(.tbl--hours) tr > th {
  width: 30%;
}
.tbl--alternating {
  border-collapse: collapse;
}
.tbl--alternating tr {
  background: #A59669;
}
.tbl--alternating tr:nth-child(odd) {
  background: #fff;
}
.tbl--alternating tr th,
.tbl--alternating tr td {
  background: transparent;
  color: #694620;
}
.tbl--border {
  border-collapse: collapse;
}
.tbl--border tr th,
.tbl--border tr td {
  border-bottom: 2px solid #ddd;
  background: transparent;
}
.tbl--border tr th {
  border-bottom: 2px solid #694620;
  color: #694620;
}
.tbl--border2 {
  border-collapse: collapse;
}
.tbl--border2 thead tr {
  background: transparent !important;
}
.tbl--border2 thead tr th,
.tbl--border2 thead tr td {
  border: none;
}
.tbl--border2 tbody tr th {
  font-weight: 400;
  text-align: left;
}
.tbl--border2 tbody tr h3.ja2 {
  color: rgb(155, 114, 61);
}
.tbl--border2 tr:nth-child(odd) {
  background: #fff;
}
.tbl--border2 tr th,
.tbl--border2 tr td {
  background: transparent;
  border: 0.2px solid #A59669;
  vertical-align: middle;
}
.tbl--border2 tr th {
  color: #694620;
  width: auto !important;
}
.tbl--border2 tr td {
  text-align: center;
}
.tbl--bubble {
  border-collapse: separate;
  border-spacing: 0 4px;
}
.tbl--bubble tr th,
.tbl--bubble tr td {
  background: #fff;
  border-radius: 0 8px 8px 0;
}
.tbl--bubble tr td {
  padding-left: 24px;
}
.tbl--bubble tr th {
  background-color: #694620;
  color: #fff;
  border-radius: 8px 0 0 8px;
  position: relative;
}
.tbl--bubble tr th::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 10px solid transparent;
  border-left: 10px solid #694620;
  z-index: 2;
}
.tbl--hours {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
}
.tbl--hours th,
.tbl--hours td {
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 14px 10px;
  text-align: center;
  vertical-align: middle;
  background: #fff;
}
.tbl--hours thead th {
  background: #694620;
  font-weight: 700;
  color: #fff;
}
.tbl--hours thead th:first-child {
  text-align: center;
}
.tbl--hours tbody th {
  text-align: center;
  white-space: nowrap;
  background: #fff;
  font-weight: 700;
  color: #694620;
  width: 26%;
}
.tbl--hours tbody td {
  position: relative;
  font-size: 0;
  /* 音声読み上げ用 */
}
.tbl--hours tbody td .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;
}
.tbl--hours tbody td[data-open=true]::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background: #694620;
}
.tbl--hours tbody td[data-open=false]::before {
  content: "—";
  font-size: 14px;
  line-height: 1;
  opacity: 0.45;
}

/* モバイルで詰まりそうなら */
@media (max-width: 480px) {
  .hours__row {
    grid-template-columns: 6em 1fr;
    gap: 8px;
  }
  .tbl--hours th,
  .tbl--hours td {
    padding: 12px 8px;
  }
}
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.accordion {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgb(153, 153, 153);
}
.accordion > .ttl {
  position: relative;
  padding: 24px 0;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}
.accordion > .ttl::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #A59669;
  font-size: 20px;
  font-weight: 700;
  transition: transform 0.25s ease, color 0.25s ease;
}
.accordion > .inner {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}
.accordion.is-open > .inner {
  max-height: 2000px;
  opacity: 1;
  padding: 24px 0;
}
.accordion.is-open > .ttl::after {
  content: "−";
  color: rgb(152.8125, 137.53125, 91.6875);
}
.accordion.faq {
  border-color: #A59669;
}
.accordion.faq > .ttl {
  position: relative;
  padding: 16px;
  padding-left: 4em;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #efefef;
}
.accordion.faq > .ttl::before {
  content: "Q";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  inline-size: 36px;
  block-size: 36px;
  border-radius: 50%;
  background: #A59669;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.accordion.faq > .ttl::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #A59669;
  font-size: 20px;
  font-weight: 700;
  transition: transform 0.25s ease, color 0.25s ease;
}
.accordion.faq > .ttl:hover {
  background: rgb(245.325, 243.7125, 238.875);
}
.accordion.faq > .inner {
  position: relative;
  margin-top: 4px;
}
.accordion.faq > .inner::before {
  content: "A";
  position: absolute;
  left: 16px;
  top: 1em;
  inline-size: 32px;
  block-size: 32px;
  border-radius: 50%;
  background: #A59669;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.accordion.faq > .inner p {
  margin: 0;
  padding-left: 3em;
  padding-right: 2em;
  line-height: 1.8;
}
.accordion.faq.is-open > .ttl::after {
  content: "−";
  color: rgb(152.8125, 137.53125, 91.6875);
}
.accordion.faq.is-open > .inner {
  padding: 8px 16px;
}
.accordion.faq.is-open > .inner::before {
  opacity: 1;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.gallery img {
  display: inline-block;
  width: calc((100% - 30px) / 3);
  border-radius: 8px;
  object-fit: cover;
}

.slider-wrap {
  width: min(1200px, 96vw);
  margin: 0 auto;
  position: relative;
}
.slider-wrap .swiper-navigation-icon {
  display: none;
}
.slider-wrap .mySlider {
  padding-bottom: 80px;
  /* === ナビボタン（丸はそのまま、中身だけ文字矢印） === */
  /* 左右それぞれの中身（特異性を上げて強制） */
}
.slider-wrap .mySlider .swiper-slide {
  aspect-ratio: 1/1;
}
.slider-wrap .mySlider .swiper-slide img {
  width: 405px;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slider-wrap .mySlider .swiper-pagination {
  bottom: 0;
}
.slider-wrap .mySlider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 6px !important;
  opacity: 1;
  background: rgba(105, 70, 32, 0.45);
  transition: background 0.3s;
}
.slider-wrap .mySlider .swiper-pagination-bullet-active {
  background: #694620;
}
.slider-wrap .mySlider .swiper-button-prev,
.slider-wrap .mySlider .swiper-button-next {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #333333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: #333333;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  z-index: 10;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  /* ▼ Swiperデフォルト（アイコンフォント）を上書きして文字を表示 */
}
.slider-wrap .mySlider .swiper-button-prev::after,
.slider-wrap .mySlider .swiper-button-next::after {
  font-family: inherit !important;
  /* ← これで swiper-icons を無効化 */
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  color: currentColor !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slider-wrap .mySlider .swiper-button-prev.swiper-button-prev::after {
  content: "←" !important;
  transform: none !important;
}
.slider-wrap .mySlider .swiper-button-next.swiper-button-next::after {
  content: "→" !important;
  transform: none !important;
}
.slider-wrap .mySlider .swiper-button-prev {
  left: 30px;
}
.slider-wrap .mySlider .swiper-button-next {
  right: 30px;
}

@media (max-width: 1024px) {
  .slider-wrap .mySlider .swiper-button-prev {
    left: 6px;
  }
  .slider-wrap .mySlider .swiper-button-next {
    right: 6px;
  }
}
@media (max-width: 640px) {
  .slider-wrap .mySlider .swiper-button-prev,
  .slider-wrap .mySlider .swiper-button-next {
    width: 44px;
    height: 44px;
  }
  .slider-wrap .mySlider .swiper-button-prev::after,
  .slider-wrap .mySlider .swiper-button-next::after {
    font-size: 16px;
  }
  .slider-wrap .mySlider .swiper-pagination {
    bottom: -20px;
  }
}
.ggmap iframe {
  height: 350px;
  width: 100%;
}

/* ==============================
  Voice（お客様の声）
============================== */
.voice {
  display: flex;
  flex-direction: row !important;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #ddd;
}
.voice:hover {
  transform: translateY(-3px);
}
.voice__img {
  width: 200px;
  text-align: center;
}
.voice__img img {
  margin: auto;
  width: 80%;
  height: auto;
  object-fit: cover;
}
.voice__body {
  width: calc(100% - 240px);
  padding: 20px;
  line-height: 1.8;
}
.voice__name {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: clamp(15px, 1.8vw, 17px);
  color: #694620;
}
.voice__comment {
  font-size: clamp(14px, 1.6vw, 16px);
}

.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-grid {
  display: grid;
}

.d-none {
  display: none !important;
}

.flex {
  display: flex;
}
.flex.fd-row {
  flex-direction: row;
}
.flex.fd-col {
  flex-direction: column;
}

.ai-start {
  align-items: flex-start;
}

.ai-center {
  align-items: center;
}

.ai-end {
  align-items: flex-end;
}

.ai-stretch {
  align-items: stretch;
}

.jc-start {
  justify-content: flex-start;
}

.jc-center {
  justify-content: center;
}

.jc-end {
  justify-content: flex-end;
}

.jc-between {
  justify-content: space-between;
}

.fw-wrap {
  flex-wrap: wrap;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid--cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid--cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid--cols-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid--cols-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gap-4 {
  gap: 4px;
}

.gap-8 {
  gap: 8px;
}

.gap-10 {
  gap: 10px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-20 {
  gap: 20px;
}

.gap-24 {
  gap: 24px;
}

.gap-32 {
  gap: 32px;
}

.gap-40 {
  gap: 40px;
}

.gap-60 {
  gap: 60px;
}

.gap-80 {
  gap: 80px;
}

.mt-0 {
  margin-top: 0px;
}

.mb-0 {
  margin-bottom: 0px;
}

.ml-0 {
  margin-left: 0px;
}

.mr-0 {
  margin-right: 0px;
}

.pt-0 {
  padding-top: 0px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pl-0 {
  padding-left: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mb-5 {
  margin-bottom: 5px;
}

.ml-5 {
  margin-left: 5px;
}

.mr-5 {
  margin-right: 5px;
}

.pt-5 {
  padding-top: 5px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pl-5 {
  padding-left: 5px;
}

.pr-5 {
  padding-right: 5px;
}

.mt-8 {
  margin-top: 8px;
}

.mb-8 {
  margin-bottom: 8px;
}

.ml-8 {
  margin-left: 8px;
}

.mr-8 {
  margin-right: 8px;
}

.pt-8 {
  padding-top: 8px;
}

.pb-8 {
  padding-bottom: 8px;
}

.pl-8 {
  padding-left: 8px;
}

.pr-8 {
  padding-right: 8px;
}

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

.mb-10 {
  margin-bottom: 10px;
}

.ml-10 {
  margin-left: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.pt-10 {
  padding-top: 10px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pl-10 {
  padding-left: 10px;
}

.pr-10 {
  padding-right: 10px;
}

.mt-12 {
  margin-top: 12px;
}

.mb-12 {
  margin-bottom: 12px;
}

.ml-12 {
  margin-left: 12px;
}

.mr-12 {
  margin-right: 12px;
}

.pt-12 {
  padding-top: 12px;
}

.pb-12 {
  padding-bottom: 12px;
}

.pl-12 {
  padding-left: 12px;
}

.pr-12 {
  padding-right: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.mb-16 {
  margin-bottom: 16px;
}

.ml-16 {
  margin-left: 16px;
}

.mr-16 {
  margin-right: 16px;
}

.pt-16 {
  padding-top: 16px;
}

.pb-16 {
  padding-bottom: 16px;
}

.pl-16 {
  padding-left: 16px;
}

.pr-16 {
  padding-right: 16px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.mt-24 {
  margin-top: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.ml-24 {
  margin-left: 24px;
}

.mr-24 {
  margin-right: 24px;
}

.pt-24 {
  padding-top: 24px;
}

.pb-24 {
  padding-bottom: 24px;
}

.pl-24 {
  padding-left: 24px;
}

.pr-24 {
  padding-right: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.ml-32 {
  margin-left: 32px;
}

.mr-32 {
  margin-right: 32px;
}

.pt-32 {
  padding-top: 32px;
}

.pb-32 {
  padding-bottom: 32px;
}

.pl-32 {
  padding-left: 32px;
}

.pr-32 {
  padding-right: 32px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.ml-40 {
  margin-left: 40px;
}

.mr-40 {
  margin-right: 40px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pl-40 {
  padding-left: 40px;
}

.pr-40 {
  padding-right: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}

.ml-60 {
  margin-left: 60px;
}

.mr-60 {
  margin-right: 60px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pl-60 {
  padding-left: 60px;
}

.pr-60 {
  padding-right: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.ml-80 {
  margin-left: 80px;
}

.mr-80 {
  margin-right: 80px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pl-80 {
  padding-left: 80px;
}

.pr-80 {
  padding-right: 80px;
}

.b-m5 {
  margin-bottom: 5px;
}

.b-m10 {
  margin-bottom: 10px;
}

.b-m20 {
  margin-bottom: 20px;
}

.b-m30 {
  margin-bottom: 30px;
}

.b-m40 {
  margin-bottom: 40px;
}

.b-m60 {
  margin-bottom: 60px;
}

.b-m80 {
  margin-bottom: 80px;
}

.t-m10 {
  margin-top: 10px;
}

.t-m20 {
  margin-top: 20px;
}

.t-m90 {
  margin-top: 90px;
}

.w-100pe {
  width: 100%;
}

.h-100pe {
  height: 100%;
}

.asp-1-1 {
  aspect-ratio: 1/1;
}

.img-cover {
  object-fit: cover;
}

.rounded-4 {
  border-radius: 4px;
}

.rounded-8 {
  border-radius: 8px;
}

.rounded-12 {
  border-radius: 12px;
}

.rounded-16 {
  border-radius: 16px;
}

.rounded-24 {
  border-radius: 24px;
}

.rounded-32 {
  border-radius: 32px;
}

.b-r8 {
  border-radius: 8px;
}

.b-r16 {
  border-radius: 16px;
}

.b-r24 {
  border-radius: 24px;
}

.b-r50pe {
  border-radius: 50%;
}

.line-h200 {
  line-height: 2;
}

.text-center,
.tcenter,
.tcenter_pc {
  text-align: center;
}

.text-right,
.tright {
  text-align: right;
}

.bold {
  font-weight: 700;
}

.bold2 {
  font-weight: 900;
}

.bigger {
  font-size: 1.2em;
  line-height: 2;
}

.smaller {
  font-size: 0.65em;
  letter-spacing: 0;
}

.en {
  font-family: "Calligraffitti", cursive;
  font-weight: 400;
}

.ja2 {
  font-family: "Noto Sans JP", "YakuHanJP", "Lato", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.nomal {
  font-weight: 400;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.color01 {
  color: #694620;
}

.color02 {
  color: #A59669;
}

.color-w {
  color: #fff !important;
}

.color-g {
  background: l linear-gradient(89.37deg, #694620 38.96%, #9B723D 49.47%, #694620 59.66%);
  background-clip: text;
  color: transparent;
}

.bg_line {
  background: #219d01 !important;
}

.bg_instagram {
  background: #e4405f !important;
}

.bg_line {
  background: #219d01 !important;
}

.bg_youtube {
  background: #ff0000 !important;
}

.bg {
  position: relative;
}
.bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.bg--img01::after {
  background: url(../img/bg-01.png) no-repeat center top/cover;
  z-index: 1;
  top: -75px;
  height: calc(100% + 75px);
}
.bg--img02::after {
  background: url(../img/bg-02.jpg) no-repeat center top/100%;
}
.bg--img02::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(0, 0, 0, 0.4);
}
.bg--img03 {
  padding-bottom: 200px;
}
.bg--img03::after {
  background: url(../img/bg-03.jpg) no-repeat center/cover;
  opacity: 0.5;
}
.bg--img03::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 14%;
  width: 450px;
  height: 450px;
  z-index: -1;
  background: url(../img/super_jection.png) no-repeat center/100%;
}
.bg--img03.type2 {
  padding-bottom: 50px;
}
.bg--img03.type2::before {
  display: none;
}
.bg--img03.type3 {
  padding-bottom: 50px;
  padding-top: 100px;
}
.bg--img03.type3::before {
  display: none;
}
.bg--img04 {
  margin-top: -145px;
  padding-top: 145px;
  padding-bottom: 120px;
}
.bg--img04 > div {
  position: relative;
  z-index: 10;
}
.bg--img04::after {
  background: url(../img/bg-04.png) no-repeat center top/100%;
  z-index: 1;
  top: 0;
}
.bg--img05 {
  margin-top: -145px;
  padding-top: 145px;
  padding-bottom: 200px;
}
.bg--img05 > div {
  position: relative;
  z-index: 10;
}
.bg--img05::after {
  background: url(../img/bg-05.png) no-repeat center top/100%;
  z-index: 1;
  top: 0;
}
.bg--img06 {
  margin-top: -95px;
  padding-top: 95px;
  padding-bottom: 145px;
  margin-bottom: -175px;
}
.bg--img06 > div {
  position: relative;
  z-index: 10;
}
.bg--img06::after {
  background: url(../img/bg-06.png) no-repeat center top/100%;
  z-index: 1;
  top: 0;
}
.bg--img06::before {
  background: url(../img/bg-06-2.png) no-repeat center top/100%;
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -180px;
  width: 120%;
  height: 100%;
  z-index: 2;
}
.bg--img07 {
  padding-top: 175px;
}
.bg--img07::after {
  background: url(../img/bg-07.jpg) no-repeat center right/cover;
}
.bg--img08 {
  margin-top: -90px;
  padding-top: 100px;
  padding-bottom: 130px;
}
.bg--img08::after {
  background: url(../img/bg-08.png) no-repeat center top/cover;
  z-index: 1;
}
.bg--img08 > div {
  position: relative;
  z-index: 10;
}
.bg--img09 {
  margin-top: -175px;
  margin-bottom: -105px;
}
.bg--img09::after {
  background: url(../img/bg-09.png) no-repeat center/100%;
  z-index: 1;
}
.bg--img09 > div {
  position: relative;
  z-index: 10;
}
.bg--img10::after {
  background: url(../img/bg-10.jpg) no-repeat center/cover;
}

.bg--w {
  background: #fff;
}

.bg--w2 {
  background: rgba(255, 255, 255, 0.5);
}

.bg--cream {
  background: #c9b6ab;
}

.bg--main {
  background: #694620;
}

.bg--sub {
  background: #A59669;
}

.bg--sub2 {
  background: #A59669;
}

.bg--gray {
  background: #f5f5f5;
}

.u-decor {
  position: absolute;
  bottom: 10%;
  inline-size: min(28vw, 320px);
  opacity: 0.9;
  pointer-events: none;
  width: fit-content;
}
.u-decor img {
  display: block;
  inline-size: 100%;
  height: auto;
}
.u-decor--left {
  left: clamp(8px, 4vw, 40px);
  top: 20%;
}
.u-decor--right {
  right: clamp(8px, 4vw, 40px);
  bottom: 20%;
}
.u-decor.w150 img {
  width: 150px;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.z--1 {
  z-index: -1;
}

.z-1 {
  z-index: 1;
}

.z-5 {
  z-index: 5;
}

.z-10 {
  z-index: 10;
}

.spbr {
  display: none;
}

.hidden {
  overflow: hidden;
}

.marker {
  display: inline;
  padding: 0 0.15em;
  background-image: linear-gradient(-90deg, #A48938 0%, #EBD48D 100%);
  background-repeat: no-repeat;
  background-size: 100% 0.2em;
  background-position: 0 95%;
  border-radius: 2px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.text-link a {
  color: #694620;
  text-decoration: underline;
}
.text-link.white a {
  color: #fff;
}

.shadow {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.shadow-md {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.shadow-lg {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

[data-ani] {
  --a-duration: 3.8s;
  --a-delay: 0s;
  --a-distance: 24px;
  --a-ease: cubic-bezier(.2, .7, .2, 1);
  --a-blur: 0px;
  opacity: 1;
  transform: none;
  filter: none;
  transition: opacity var(--a-duration) var(--a-ease) var(--a-delay), transform var(--a-duration) var(--a-ease) var(--a-delay), filter var(--a-duration) var(--a-ease) var(--a-delay);
  will-change: opacity, transform, filter;
}
[data-ani].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* フェード（指定がある時だけ透明スタート） */
[data-ani*=fade]:not(.is-visible) {
  opacity: 0;
}

[data-ani*=up]:not(.is-visible) {
  transform: translate3d(0, var(--a-distance), 0);
}

[data-ani*=down]:not(.is-visible) {
  transform: translate3d(0, calc(var(--a-distance) * -1), 0);
}

[data-ani*=left]:not(.is-visible) {
  transform: translate3d(var(--a-distance), 0, 0);
}

[data-ani*=right]:not(.is-visible) {
  transform: translate3d(calc(var(--a-distance) * -1), 0, 0);
}

[data-ani*=zoom-in]:not(.is-visible) {
  transform: scale(0.94);
}

[data-ani*=zoom-out]:not(.is-visible) {
  transform: scale(1.06);
}

[data-ani*=blur]:not(.is-visible) {
  filter: blur(var(--a-blur, 8px));
}

[data-ani*=rotate]:not(.is-visible) {
  transform: rotate(2.5deg);
}

.ani-stagger.is-visible > * {
  opacity: 1;
  transform: none;
}
.ani-stagger > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--a-ease) var(--a-delay), transform 0.6s var(--a-ease) var(--a-delay);
}

.ani-stagger.is-visible > *:nth-child(1) {
  transition-delay: calc(var(--a-delay, 0s) + 0s);
}

.ani-stagger.is-visible > *:nth-child(2) {
  transition-delay: calc(var(--a-delay, 0s) + 0.06s);
}

.ani-stagger.is-visible > *:nth-child(3) {
  transition-delay: calc(var(--a-delay, 0s) + 0.12s);
}

.ani-stagger.is-visible > *:nth-child(4) {
  transition-delay: calc(var(--a-delay, 0s) + 0.18s);
}

.ani-stagger.is-visible > *:nth-child(5) {
  transition-delay: calc(var(--a-delay, 0s) + 0.24s);
}

.ani-stagger.is-visible > *:nth-child(6) {
  transition-delay: calc(var(--a-delay, 0s) + 0.3s);
}

.ani-stagger.is-visible > *:nth-child(7) {
  transition-delay: calc(var(--a-delay, 0s) + 0.36s);
}

.ani-stagger.is-visible > *:nth-child(8) {
  transition-delay: calc(var(--a-delay, 0s) + 0.42s);
}

.ani-stagger.is-visible > *:nth-child(9) {
  transition-delay: calc(var(--a-delay, 0s) + 0.48s);
}

.ani-stagger.is-visible > *:nth-child(10) {
  transition-delay: calc(var(--a-delay, 0s) + 0.54s);
}

@media (prefers-reduced-motion: reduce) {
  [data-ani],
  .ani-stagger > * {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
[data-fx] {
  --fx-duration: 6s;
  --fx-delay: 0s;
  --fx-amp: 8px;
  /* 振幅(px) */
  --fx-rot: 3deg;
  /* 回転幅 */
  --fx-ease: ease-in-out;
  --fx-iter: infinite;
  --fx-dir: normal;
  --fx-fill: both;
  display: inline-block;
  will-change: transform, filter;
  animation-delay: var(--fx-delay);
  animation-iteration-count: var(--fx-iter);
  animation-direction: var(--fx-dir);
  animation-fill-mode: var(--fx-fill);
  animation-timing-function: var(--fx-ease);
}

/* ふわふわ(上下) */
[data-fx*=float] {
  animation-name: fx-float-y;
  animation-duration: var(--fx-duration);
}

@keyframes fx-float-y {
  0% {
    transform: translateY(calc(var(--fx-amp) * -1));
  }
  100% {
    transform: translateY(var(--fx-amp));
  }
}
/* 横ゆらゆら */
[data-fx*=float][data-fx*=x],
[data-fx*=sway][data-fx*=x] {
  animation-name: fx-float-x;
}

@keyframes fx-float-x {
  0% {
    transform: translateX(calc(var(--fx-amp) * -1));
  }
  100% {
    transform: translateX(var(--fx-amp));
  }
}
/* なめらかスウェイ（回転＋上下少し） */
[data-fx*=sway] {
  animation-name: fx-sway;
  transform-origin: center;
  animation-duration: var(--fx-duration);
}

@keyframes fx-sway {
  0% {
    transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(calc(var(--fx-rot) * -1));
  }
  50% {
    transform: translateY(calc(var(--fx-amp) * 0.35)) rotate(var(--fx-rot));
  }
  100% {
    transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(calc(var(--fx-rot) * -1));
  }
}
/* なめらかスウェイ反転（回転＋上下少し） */
[data-fx*=sway-rev] {
  animation-name: fx-sway-rev;
}

@keyframes fx-sway-rev {
  0% {
    transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(var(--fx-rot));
  }
  50% {
    transform: translateY(calc(var(--fx-amp) * 0.35)) rotate(calc(var(--fx-rot) * -1));
  }
  100% {
    transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(var(--fx-rot));
  }
}
/* 振り子（支点を上に） */
[data-fx*=pendulum] {
  transform-origin: top center;
  animation-name: fx-pendulum;
}

@keyframes fx-pendulum {
  0% {
    transform: rotate(calc(var(--fx-rot) * -1));
  }
  50% {
    transform: rotate(var(--fx-rot));
  }
  100% {
    transform: rotate(calc(var(--fx-rot) * -1));
  }
}
/* くるくる（連続回転） */
[data-fx*=spin] {
  animation-name: fx-spin;
  animation-duration: calc(var(--fx-duration) * 1.2);
  animation-timing-function: linear;
}

@keyframes fx-spin {
  to {
    transform: rotate(360deg);
  }
}
/* ぷかぷか + ちょい拡縮 */
[data-fx*=float][data-fx*=soft],
[data-fx*=float][data-fx*=gentle] {
  animation-name: fx-float-soft;
}

@keyframes fx-float-soft {
  0% {
    transform: translateY(calc(var(--fx-amp) * -1)) scale(0.995);
  }
  100% {
    transform: translateY(var(--fx-amp)) scale(1.005);
  }
}
/* 小刻みゆれ（やわらか） */
[data-fx*=wiggle] {
  animation-name: fx-wiggle;
  animation-duration: calc(var(--fx-duration) * 0.6);
}

@keyframes fx-wiggle {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(calc(var(--fx-rot) * 0.6));
  }
  50% {
    transform: rotate(calc(var(--fx-rot) * -0.6));
  }
  75% {
    transform: rotate(calc(var(--fx-rot) * 0.4));
  }
  100% {
    transform: rotate(0deg);
  }
}
/* 速さ */
[data-fx*=fast] {
  animation-duration: calc(var(--fx-duration) * 0.3);
}

[data-fx*=slow] {
  animation-duration: calc(var(--fx-duration) * 1.6);
}

[data-fx*=slower] {
  animation-duration: calc(var(--fx-duration) * 2.2);
}

/* 振幅 */
[data-fx*=sm] {
  --fx-amp: 6px;
  --fx-rot: 2deg;
}

[data-fx*=md] {
  --fx-amp: 10px;
  --fx-rot: 3deg;
}

[data-fx*=lg] {
  --fx-amp: 16px;
  --fx-rot: 5deg;
}

/* 方向／挙動 */
[data-fx*=alternate] {
  animation-direction: alternate;
}

/* デフォの往復を明示したい時 */
[data-fx*=reverse] {
  --fx-dir: reverse;
}

/* 回転の反転などに */
[data-fx*=pause-hover]:hover {
  animation-play-state: paused;
}

/* 親が見えたら動かす（入場後に発動させたい場合） */
.is-visible [data-fx-start=visible] {
  animation-play-state: running;
}

[data-fx-start=visible] {
  animation-play-state: paused;
}

/* アクセシビリティ：動きを抑制 */
@media (prefers-reduced-motion: reduce) {
  [data-fx] {
    animation: none !important;
    transform: none !important;
  }
}
.img-flex p img {
  aspect-ratio: 1/1;
  object-fit: cover;
}
.img-flex p:nth-child(1) img {
  width: 352px;
  border-radius: 70px;
}
.img-flex p:nth-child(2) img {
  width: 227px;
  border-radius: 55px;
}
.img-flex p:nth-child(3) img {
  width: 358px;
  border-radius: 40px;
}

.eng_big {
  position: absolute;
  top: -47px;
  left: -10px;
  font-size: 140px;
  font-weight: 700;
  background: linear-gradient(90deg, #A48938 0%, #EBD48D 47.6%, #A48938 93.75%);
  background-clip: text;
  color: transparent;
  line-height: 1.3;
  white-space: nowrap;
  opacity: 0.4;
}

.reason {
  display: flex;
  justify-content: center;
  padding-bottom: 200px;
  margin-bottom: 80px;
}
.reason .item {
  width: 343px;
  height: 343px;
  min-width: 343px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 35px;
}
.reason .item:nth-child(2n) {
  transform: translateY(200px);
}
.reason .item:not(:first-child) {
  margin-left: -50px;
}
.reason .item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background: url(../img/circle01.png) no-repeat center/contain;
  z-index: -1;
}

.step {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  margin-top: -300px;
}
.step .item {
  width: 320px;
  height: 320px;
  min-width: 320px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 15px;
  color: #fff;
  text-align: center;
}
.step .item:nth-child(4) {
  margin-right: 150px;
}
.step .item:nth-child(3) {
  margin-right: 350px;
  margin-top: -60px;
}
.step .item:nth-child(2) {
  margin-right: 620px;
  margin-top: -130px;
}
.step .item:nth-child(1) {
  margin-right: 925px;
  margin-top: -190px;
}
.step .item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background: url(../img/circle02.png) no-repeat center/contain;
  z-index: -1;
}
.step .item .num {
  font-family: "Calligraffitti", cursive;
  font-weight: 400;
  line-height: 1.3;
}
.step .item .ttl {
  margin-bottom: 20px;
}

.component {
  display: flex;
  justify-content: center;
}
.component .item {
  width: 363px;
  height: 363px;
  min-width: 363px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 80px 68px;
  text-align: center;
}
.component .item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background: url(../img/circle03.png) no-repeat center/contain;
  z-index: -1;
}
.component .item h2 {
  margin-bottom: 5px;
}

.bg-area {
  height: 600px;
}

.voice-slider img {
  object-fit: contain !important;
}

.ba-slider .swiper-slide {
  position: relative;
  display: block;
}
.ba-slider .swiper-slide::before, .ba-slider .swiper-slide::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 6em;
  height: 1.5em;
  background: #fff;
  z-index: 2;
  text-align: center;
  font-family: "Noto Sans JP", "YakuHanJP", "Lato", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.ba-slider .swiper-slide::before {
  content: "BEFORE";
  border-bottom-left-radius: 10px;
}
.ba-slider .swiper-slide::after {
  top: auto;
  bottom: 0;
  content: "AFTER";
  border-top-left-radius: 10px;
}

.video-embed {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
  z-index: 9999;
}

.video-embed__video {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 920px) {
  #footer .inner {
    flex-direction: column;
    gap: 20px;
  }
  #footer .inner .footer-left,
  #footer .inner .footer-right {
    width: 100%;
    padding-left: 0;
  }
  #mv {
    aspect-ratio: 16/14;
    padding-left: 40px;
  }
  #mv #catch .text01 {
    font-size: 2rem;
  }
  #mv #catch .text02 {
    font-size: 4.4rem;
  }
  #mv #catch .text02 .big1 {
    font-size: 90px;
  }
  #mv #catch .text02 .big2 {
    font-size: 60px;
  }
  #mv #catch .text02 .mini {
    font-size: 4.2rem;
  }
  .reason {
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 0;
  }
  .reason .item:nth-child(2n) {
    transform: none;
  }
  .reason .item:not(:first-child) {
    margin-left: 0;
  }
  .step {
    margin-top: -100px;
  }
  .step .item:nth-child(1) {
    margin-right: 600px;
    margin-top: -90px;
  }
  .step .item:nth-child(2) {
    margin-right: 370px;
    margin-top: -65px;
  }
  .step .item:nth-child(3) {
    margin-right: 180px;
  }
  .step .item:nth-child(4) {
    margin-right: 0px;
  }
  .bg--img05::after {
    background: url(../img/bg-05.png) no-repeat center top/cover;
  }
  .bg--img06::after {
    background: url(../img/bg-06.png) no-repeat center top/cover;
  }
  .bg--img07::after {
    background: url(../img/bg-07.jpg) no-repeat 78% 0%/cover;
  }
  #footer .inner .footer-left {
    padding-right: 0;
  }
  .flogo {
    margin: auto;
  }
  .component {
    align-items: center;
  }
}
@media (max-width: 720px) {
  .tcenter_sp {
    text-align: center;
  }
  .step {
    flex-direction: column;
    margin-top: 0;
  }
  .step .item {
    width: 100%;
  }
  .step .item:nth-child(4) {
    margin-right: 0;
  }
  .step .item:nth-child(3) {
    margin-right: 0;
    margin-top: 0;
  }
  .step .item:nth-child(2) {
    margin-right: 0;
    margin-top: 0;
  }
  .step .item:nth-child(1) {
    margin-right: 0;
    margin-top: 0;
  }
  .step .item .num {
    font-family: "Calligraffitti", cursive;
    font-weight: 400;
    line-height: 1.3;
  }
  .step .item .ttl {
    margin-bottom: 20px;
  }
  .eng_big {
    font-size: 44px;
    top: -15px;
  }
  .flogo img {
    margin-left: auto;
    margin-right: auto;
  }
  .contact_btn {
    justify-content: center;
  }
  .bg--img01::after {
    top: -45px;
    height: calc(100% + 45px);
  }
  .bg--img02::after {
    background: url(../img/bg-02.jpg) no-repeat center top/cover;
  }
  .bg--img07::after {
    background: url(../img/bg-07.jpg) no-repeat 80% 100%/cover;
  }
  .tbl_scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .tbl_scroll > table {
    width: max-content;
    min-width: 720px;
    border-collapse: collapse;
  }
  .component {
    flex-direction: column;
  }
  .component .item {
    justify-content: center;
  }
  #header {
    padding-top: 0;
  }
  #header .inner {
    max-width: 100%;
    justify-content: flex-end;
    padding: 8px;
    padding-right: 20px;
  }
  #header #logo {
    width: 70px;
    padding-bottom: 60px;
    left: 20px;
    transform: none;
  }
  #header .contact_btn p:nth-child(2) {
    display: none;
  }
  .head-right {
    justify-content: flex-end;
  }
  #header_nav {
    display: none;
  }
  #nav-toggle {
    position: absolute;
    right: 16px;
    top: 24px;
    inline-size: 44px;
    block-size: 44px;
    display: grid;
    place-items: center;
    background: transparent;
    border: 0;
    cursor: pointer;
    z-index: 120;
  }
  #nav-toggle .bars {
    position: relative;
    inline-size: 26px;
    block-size: 18px;
    display: grid;
    align-content: space-between;
  }
  #nav-toggle .bars i {
    display: block;
    inline-size: 100%;
    block-size: 3px;
    border-radius: 2px;
    background: #333;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }
  #nav-toggle.is-active .bars i:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  #nav-toggle.is-active .bars i:nth-child(2) {
    opacity: 0;
  }
  #nav-toggle.is-active .bars i:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }
  #sp-nav {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.96);
    opacity: 0;
    pointer-events: none;
    display: grid;
    place-items: center;
    transition: opacity 0.25s ease;
    z-index: 110;
  }
  #sp-nav.open {
    opacity: 1;
    pointer-events: auto;
  }
  #sp-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }
  #sp-nav li {
    margin: 1em 0;
  }
  #sp-nav a {
    font-size: 18px;
    color: #222;
    text-decoration: none;
  }
  .btn--big a {
    min-width: 308px;
    font-size: 2.53rem;
  }
  .btn a {
    font-size: 2.4rem;
  }
  #mv {
    aspect-ratio: auto;
    flex-direction: column;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 80px;
    padding-bottom: 60px;
  }
  #mv #catch {
    width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #mv #catch .btn {
    display: none;
  }
  #mv #catch .text01 {
    padding: 8px 16px;
    font-size: 16px;
  }
  #mv #catch .text01::after {
    border-radius: 30px;
  }
  #mv #catch .text02 {
    font-size: 46px;
  }
  #mv #catch .text02 .big1 {
    font-size: 78px;
  }
  #mv #catch .text02 .big2 {
    font-size: 60px;
  }
  #mv #catch .text02 .mini {
    font-size: 32px;
  }
  #mv #catch .text03 {
    font-size: 16px;
  }
  #mv #image {
    position: relative;
    bottom: auto;
    right: auto;
    width: 320px;
    margin-right: -130px;
    margin-top: -50px;
    margin-bottom: -100px;
  }
  #mv #image::before {
    left: 0;
    top: 20px;
    width: 80px;
    height: 80px;
  }
  #mv #image::after {
    top: 80px;
    width: 70px;
    height: 70px;
  }
  .media {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--media-gap, 20px);
  }
  .box {
    padding: 15px;
  }
  .box--pd60 {
    padding: 30px;
  }
  body.fixed {
    overflow: hidden;
  }
  .u-decor-spflex {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  .u-decor {
    position: initial;
  }
  .u-decor.w150 img {
    width: 100px;
  }
  .hero--single .hero__content {
    inset: auto 0 8% 0;
  }
  .hero--slider .hero__overlay {
    padding: 14px;
  }
  .hero--slider .hero__overlay h1 {
    font-size: 28px;
    font-size: 2.8rem;
  }
  .hero--slider .hero-prev,
  .hero--slider .hero-next {
    inline-size: 40px;
    block-size: 40px;
  }
  #page-title .inner {
    flex-direction: column;
    gap: 40px;
    padding: 40px 0;
  }
  #page-title .inner .title,
  #page-title .inner .text {
    width: 100%;
  }
  .container--p-xl {
    padding: 60px 15px;
  }
  .container--p-l {
    padding: 40px 15px;
  }
  .container--p-m {
    padding: 30px 15px;
  }
  .container--p-s {
    padding: 20px 15px;
  }
  .container--p-2xl {
    padding: 60px 15px;
  }
  .l-column {
    row-gap: 20px;
  }
  .l-column.reverse {
    flex-direction: column-reverse;
  }
  .l-column.col2 {
    --cols: 1;
  }
  .l-column.col3 {
    --cols: 1;
  }
  .l-column.col4 {
    --cols: 2;
  }
  .l-column.col5 {
    --cols: 3;
  }
  .sp-contents {
    display: block !important;
  }
  .pc-contents {
    display: none !important;
  }
  .spbr {
    display: block;
  }
  .pcbr {
    display: none;
  }
  .btn {
    margin-top: 20px;
    width: 100%;
  }
  .btn a {
    width: 100%;
    justify-content: center;
  }
  .btn--left {
    text-align: center;
  }
  .btn--left a {
    margin-left: auto;
  }
  #footer {
    margin-top: 0;
    padding-top: 0;
  }
  #footer::before {
    top: -90px;
  }
  #footer .inner .footer-left {
    padding-right: 0;
  }
  .flogo {
    width: 100px;
    margin: auto;
  }
  .footer_navi ul li {
    width: 50%;
    text-align: left;
  }
  .footer_navi ul li a {
    text-align: center;
  }
  .grid {
    gap: 12px;
  }
}
@media (max-width: 393px) {
  body#top::after {
    width: 24rem;
    height: 7rem;
  }
  .hero::after {
    width: 250px;
    height: 140px;
    bottom: -50px;
  }
  .hero--marquee .hero__overlay h1 {
    font-size: 2.5rem;
  }
  .hero--marquee .hero__overlay {
    padding: 20px 15px;
  }
  h1,
  h2,
  h3,
  h4,
  h5 {
    font-weight: 700;
  }
  h1 {
    font-size: 24px;
    font-size: 2.4rem;
  }
  h2 {
    font-size: 22px;
    font-size: 2.2rem;
  }
  h3 {
    font-size: 18px;
    font-size: 1.8rem;
  }
  h4 {
    font-size: 15px;
    font-size: 1.5rem;
  }
  h5 {
    font-size: 13px;
    font-size: 1.3rem;
  }
  h1.gold {
    font-size: 24px;
  }
  .list--check li {
    font-size: 16px;
    padding-left: 35px;
  }
  .list--check li::before {
    width: 24px;
    height: 24px;
  }
  .tcenter_pc {
    text-align: left;
  }
  .card {
    padding: 24px;
  }
  .title {
    margin-bottom: 30px;
  }
  .contact_btn.big {
    flex-direction: column;
  }
  .contact_btn.big a {
    padding: 16px 24px;
  }
  .reason {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 0;
    margin-bottom: 40px;
  }
  .reason .item {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .reason .item h2 {
    margin-bottom: 20px;
  }
  .reason .item:nth-child(2n) {
    transform: none;
  }
  .reason .item:not(:first-child) {
    margin-left: 0;
  }
  .slider-wrap {
    width: 100%;
  }
  .slider-wrap .mySlider .swiper-slide img {
    width: 100%;
  }
  .slider-wrap .mySlider .swiper-pagination {
    bottom: 0;
  }
  .slider-wrap .mySlider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 6px !important;
    opacity: 1;
    background: rgba(105, 70, 32, 0.45);
    transition: background 0.3s;
  }
  .slider-wrap .mySlider .swiper-pagination-bullet-active {
    background: #694620;
  }
  .bg--img03 {
    padding-bottom: 150px;
  }
  .bg--img03::before {
    bottom: 29%;
    width: 205px;
    height: 205px;
  }
  .bg--img03.type3 {
    padding-top: 0;
  }
  .bg--img05 {
    padding-top: 50px;
    padding-bottom: 150px;
  }
  .bg--img05::after {
    background: url(../img/bg-05.png) no-repeat 70% top/cover;
  }
  .bg--img06::after {
    background: url(../img/bg-06.png) no-repeat center top/cover;
  }
  .bg--img06::before {
    top: -50px;
    width: 130%;
  }
  .bg--img08 {
    padding-bottom: 60px;
  }
  .bg--img09 {
    margin-top: -130px;
    margin-bottom: -80px;
  }
  .bg--img09 .bg-area {
    height: 300px;
  }
  .bigger2 {
    font-size: 3.2rem;
  }
  .bg-chosei {
    padding-bottom: 50px;
  }
  #page-title .inner {
    max-width: 90%;
    gap: 20px;
  }
  .gallery img {
    width: 100%;
  }
  .tabs__panel.is-active {
    padding: 20px 10px;
  }
  .accordion.faq > .ttl {
    padding-left: 3em;
    padding-right: 2.5em;
  }
  .accordion.faq > .ttl::before {
    left: 8px;
    inline-size: 32px;
    block-size: 32px;
  }
  .accordion.faq > .ttl::after {
    right: 10px;
    inline-size: 7px;
    block-size: 7px;
  }
  .accordion.faq > .inner::before {
    left: 8px;
  }
  .accordion.faq > .inner p {
    padding-right: 0;
    padding-left: 2em;
  }
  .contents-nav {
    flex-direction: column;
    margin-bottom: 60px;
  }
  .voice {
    flex-direction: column !important;
    padding: 20px;
  }
  .voice__img {
    width: 100%;
  }
  .voice__img img {
    max-width: 120px;
  }
  .voice__body {
    width: 100%;
    padding: 0;
  }
}
@media print {
  a {
    text-decoration: underline;
  }
  .btn,
  .chip,
  .badge,
  .alert {
    box-shadow: none;
    background: transparent;
  }
}