@charset "UTF-8";
.btn {
  display: inline-block;
  width: 160px;
  height: 40px;
  background-color: #949E33;
  border: 2px solid #949E33;
  border-radius: 35px;
  opacity: 1;
  color: #FFFFFF;
  font-family: 游明朝, Demibold;
  font-weight: 600;
  font-size: 16px;
  line-height: 40px;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: capitalize;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  /* --- SP用の上書き --- */
}
.btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .btn {
    display: block;
    position: static;
    margin: 40px auto;
  }
}
@media screen and (max-width: 767px) {
  .btn--download {
    margin: 0 auto;
  }
}

.container {
  margin-inline: auto;
  width: 70.2781844802vw;
}
@media screen and (max-width: 990px) {
  .container {
    width: auto;
    margin-inline: 30px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    margin-inline: 15px;
  }
}
.container-white {
  background-color: #fff;
  border-radius: 100px;
  -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1607843137);
}
@media screen and (max-width: 767px) {
  .container-white {
    border-radius: 50px;
  }
}
.container-second {
  width: 43.9238653001vw;
  min-width: 600px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .container-second {
    width: auto;
    min-width: auto;
    margin-inline: 20px;
  }
}

.footer__container {
  position: relative;
  z-index: 10;
  background-color: #fdfaf7;
  padding-top: 120px;
}

.shop-flow__container {
  margin-top: 120px;
}

@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  overflow-x: hidden;
  background-color: #f9f8f6;
}

main {
  overflow-x: hidden;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

picture {
  vertical-align: middle;
}

a {
  display: block;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.8;
}

button {
  cursor: pointer;
}

/* 動きの定義（下から上にふわっと） */
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* --- アニメーション共通設定 --- */
.js-fade {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out, -webkit-transform 1s ease-out;
  will-change: opacity, transform;
}
.js-fade.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* もし特定の要素だけ順番を遅らせたい場合（オプション） */
.u-delay-200 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.u-delay-400 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

/* --- パンくずリストエリア --- */
.breadcrumb__container__nav {
  max-width: 1200px;
  padding-top: 24px;
  padding-left: 36.5px;
}
@media screen and (max-width: 767px) {
  .breadcrumb__container__nav {
    padding-top: 12.5px;
    padding-left: 16px;
    padding-right: 15px;
  }
}

.breadcrumb__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  row-gap: 8px;
}
@media screen and (max-width: 767px) {
  .breadcrumb__nav-list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.breadcrumb__nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: 游ゴシック, Regular;
  font-size: 18px;
  line-height: 1.5;
  color: #CA7F13;
}
@media screen and (max-width: 767px) {
  .breadcrumb__nav-item {
    font-size: 14px;
  }
}
.breadcrumb__nav-item:not(:last-child)::after {
  content: "|";
  margin: 0 16px;
  font-size: 14px;
  opacity: 0.6;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.breadcrumb__nav-link {
  text-decoration: none;
  color: inherit;
  font-family: 游ゴシック, Regular;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.breadcrumb__nav-link:hover {
  opacity: 0.7;
}
.breadcrumb__nav-link--active {
  font-weight: 600;
  pointer-events: none;
}

/* --- 真ん中の線（PCは縦、SPは各要素の区切り） --- */
.breadcrumb__link::after {
  content: "";
  position: absolute;
  background-color: #CA7F13;
  top: 50%;
  right: 0;
  width: 1px;
  height: 250px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .breadcrumb__link::after {
    top: auto;
    bottom: 0;
    left: 50%;
    width: 80%;
    height: 1px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.breadcrumb__container__nav.breadcrumb__container__nav--reserve {
  max-width: 1200px;
  padding-top: 17px;
  padding-left: 120px;
}
@media screen and (max-width: 767px) {
  .breadcrumb__container__nav.breadcrumb__container__nav--reserve {
    padding-top: 12.5px;
    padding-left: 16px;
  }
}

.section__heading {
  position: relative;
  z-index: 1;
  /* コンテンツ表示の競合を防ぐ */
}
.section__heading--en {
  display: block;
  position: relative;
  font-family: Marcellus, Regular;
  font-size: 84px;
  line-height: 1.26;
  color: #CA7F13;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .section__heading--en {
    font-size: 48px;
  }
}
.section__heading--en::after {
  content: "";
  position: absolute;
  top: -37px;
  left: 137px;
  font-family: "Parisienne", cursive;
  font-size: 120px;
  line-height: 1.4;
  color: rgba(202, 127, 19, 0.08);
  white-space: nowrap;
  z-index: -1;
  pointer-events: none;
  text-transform: none;
}
@media screen and (max-width: 767px) {
  .section__heading--en::after {
    font-size: 72px;
    top: -30px;
    left: 55px;
  }
}
.section__heading--ja {
  display: block;
  font-family: "Yu Mincho", serif;
  font-size: 14px;
  color: #CA7F13;
}
@media screen and (max-width: 767px) {
  .section__heading h2.section-sns__heading--ja {
    font-size: 14px;
    color: #CA7F13;
    margin-top: 8px;
    letter-spacing: 0.1em;
  }
}
.section__heading.is-concept {
  text-align: left;
}
@media screen and (min-width: 992px) {
  .section__heading.is-concept {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
  }
}
@media screen and (max-width: 767px) {
  .section__heading.is-concept {
    position: absolute;
    top: 40PX;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
    margin-top: 0;
    text-align: left;
  }
}
.section__heading.is-concept .section__heading--en {
  display: inline-block;
  text-transform: uppercase;
  color: #CA7F13;
}
.section__heading.is-concept .section__heading--en::after {
  content: "Concept";
  left: 65%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -51px;
}
.section__heading.is-news .section__heading--en {
  text-transform: capitalize;
}
.section__heading.is-news .section__heading--en::after {
  content: "News";
  text-transform: capitalize;
}
.section__heading.is-feature {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  text-align: center;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 1.5s ease;
  transition: opacity 1.5s ease;
}
.feature__heading-group.is-show .section__heading.is-feature {
  opacity: 1 !important;
  visibility: visible !important;
}
@media screen and (min-width: 992px) {
  .section__heading.is-feature {
    top: 40px;
  }
}
.section__heading.is-feature .section__heading--en {
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  color: #CA7F13;
  font-family: Marcellus, Regular;
  font-size: 84px;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .section__heading.is-feature .section__heading--en {
    font-size: 48px;
    top: 60px;
  }
}
.section__heading.is-feature .section__heading--en::after {
  content: "Feature";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -60%);
          transform: translate(-50%, -60%);
  font-family: "Parisienne", cursive;
  font-size: 140px;
  color: rgba(202, 127, 19, 0.1);
  white-space: nowrap;
  text-transform: none;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .section__heading.is-feature .section__heading--en::after {
    font-size: 80px;
  }
}
.section__heading .feature__content {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.8s ease, visibility 0.8s ease;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.section__heading .feature__content.is-active {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 767px) {
  .section__heading .feature__content {
    opacity: 1;
    visibility: visible;
  }
}
.section__heading.is-price .section__heading--en {
  text-transform: uppercase;
}
.section__heading.is-price .section__heading--en::after {
  content: "Price menu";
  text-transform: none;
}
.section__heading.is-faq .section__heading--en {
  text-transform: uppercase;
}
.section__heading.is-faq .section__heading--en::after {
  content: "faq";
  text-transform: none;
}
.section__heading.is-reserve .section__heading--en {
  font-size: 84px;
  color: #CA7F13;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  letter-spacing: 0.2px;
}
@media screen and (max-width: 767px) {
  .section__heading.is-reserve .section__heading--en {
    font-size: 48px;
  }
}
.section__heading.is-reserve .section__heading--en::after {
  content: "reserve";
  text-transform: none;
}
.section__heading.is-reserve .section__heading--ja {
  font-size: 14px;
  color: #CA7F13;
  margin-top: 20px;
  letter-spacing: 0.1em;
}
.section__heading.is-salons .section__heading--en {
  text-transform: uppercase;
  color: #CA7F13;
}
.section__heading.is-salons .section__heading--ja {
  font-size: 14px;
  color: #CA7F13;
  margin-top: 8px;
  letter-spacing: 0.1em;
  margin-bottom: 65px;
}
.section__heading.is-sns .section__heading--en {
  text-transform: uppercase;
  color: #CA7F13;
}
.section__heading.is-sns .section__heading--ja {
  font-size: 14px;
  color: #CA7F13;
  margin-top: 8px;
  letter-spacing: 0.1em;
  margin-bottom: 65px;
}
.section__heading.is-salons .section__heading--en {
  text-transform: uppercase;
  color: #CA7F13;
}
.section__heading.is-salons .section__heading--ja {
  font-size: 14px;
  color: #CA7F13;
  margin-top: 8px;
  letter-spacing: 0.1em;
  margin-bottom: 65px;
}
.section__heading.is-sns .section__heading--en {
  text-transform: uppercase;
  color: #CA7F13;
  font-size: 72px;
}
@media screen and (max-width: 767px) {
  .section__heading.is-sns .section__heading--en {
    font-size: 48px;
  }
}
.section__heading.is-sns .section__heading--ja {
  font-size: 14px;
  color: #CA7F13;
  margin-top: 8px;
  letter-spacing: 0.1em;
  margin-bottom: 65px;
}
.section__heading.is-inst {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.section__heading.is-inst .section__heading--en {
  font-size: 80px;
  color: #CA7F13;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  letter-spacing: 2.6px;
  /* 背景の透かし文字（筆記体風） */
}
@media screen and (max-width: 767px) {
  .section__heading.is-inst .section__heading--en {
    font-size: 48px;
  }
}
.section__heading.is-inst .section__heading--en::after {
  content: "Instagram";
  position: absolute;
  top: -52px;
  left: 108px;
  font-family: "Parisienne", cursive;
  font-size: 120px;
  line-height: 1.4;
  color: rgba(202, 127, 19, 0.08);
  white-space: nowrap;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .section__heading.is-inst .section__heading--en::after {
    font-size: 72px;
    left: 79%;
    top: -27px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.section__heading.is-inst .section__heading--ja {
  font-size: 14px;
  color: #CA7F13;
  margin-top: 15px;
  letter-spacing: 0.1em;
  margin-bottom: 65px;
}
.section__heading.is-company-profile {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.section__heading.is-company-profile .section__heading--en {
  font-size: 84px;
  color: #CA7F13;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  letter-spacing: 4.2px;
  /* 背景の透かし文字（筆記体風） */
}
@media screen and (max-width: 767px) {
  .section__heading.is-company-profile .section__heading--en {
    font-size: 48px;
    line-height: 1.2;
  }
}
.section__heading.is-company-profile .section__heading--en::after {
  content: "company\aprofile";
  position: absolute;
  top: -60px;
  left: 90px;
  font-family: "Parisienne", cursive;
  font-size: 120px;
  line-height: 1.4;
  color: rgba(202, 127, 19, 0.08);
  white-space: nowrap;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .section__heading.is-company-profile .section__heading--en::after {
    font-size: 72px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    white-space: pre;
    top: -48px;
  }
}
.section__heading.is-company-profile .section__heading--ja {
  font-size: 14px;
  color: #CA7F13;
  margin-top: 20px;
  letter-spacing: 0.1em;
  margin-bottom: 65px;
}
@media screen and (max-width: 767px) {
  .section__heading.is-company-profile .section__heading--ja {
    margin-top: 6px;
  }
}

.section__heading.is-salon-shop {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  overflow: visible;
}
.section__heading.is-salon-shop .section__heading--en {
  font-size: 84px;
  font-family: Marcellus, Regular;
  color: #CA7F13;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  /* 背景の筆記体 */
}
@media screen and (max-width: 767px) {
  .section__heading.is-salon-shop .section__heading--en {
    font-size: 48px;
    letter-spacing: -3.8px;
  }
}
.section__heading.is-salon-shop .section__heading--en::after {
  content: "Prefectures";
  position: absolute;
  top: -54px;
  left: 104px;
  font-family: "Parisienne", cursive;
  font-size: 120px;
  color: rgba(202, 127, 19, 0.1);
  white-space: nowrap;
  text-transform: none;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .section__heading.is-salon-shop .section__heading--en::after {
    font-size: 72px;
    top: -37px;
    left: 64px;
  }
}
.section__heading.is-salon-shop .section__heading--ja {
  font-size: 14px;
  color: #CA7F13;
  margin-top: 18px;
  letter-spacing: 0.1em;
  margin-bottom: 65px;
}
@media screen and (max-width: 767px) {
  .section__heading.is-salon-shop .section__heading--ja {
    font-size: 12px;
    margin-top: 10px;
    margin-bottom: 0;
  }
}

.section__heading.is-flow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  overflow: visible;
}
.section__heading.is-flow .section__heading--en {
  font-size: 84px;
  font-family: Marcellus, Regular;
  color: #CA7F13;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  /* 背景の筆記体 */
}
@media screen and (max-width: 767px) {
  .section__heading.is-flow .section__heading--en {
    font-size: 48px;
  }
}
.section__heading.is-flow .section__heading--en::after {
  content: "Flow";
  position: absolute;
  top: 27%;
  left: 80%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "Parisienne", cursive;
  font-size: 140px;
  color: rgba(202, 127, 19, 0.1);
  white-space: nowrap;
  text-transform: none;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .section__heading.is-flow .section__heading--en::after {
    font-size: 80px;
  }
}
@media screen and (max-width: 767px) {
  .section__heading.is-flow .section__heading--ja {
    font-size: 12px;
    color: #CA7F13;
    margin-top: 8px;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 3;
  }
}

/* ==========================================================================
   Header Base
   ========================================================================== */
header.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  z-index: 1000;
  background-color: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* --- PC: 1440px Design --- */
  top: 48px;
  left: 48px;
  width: calc(100% - 96px); /* 左右に48pxずつの余白 */
  height: 70px;
  /* --- SP: 375px Design --- */
  /* --- 下層ページ（underpage）の設定 --- */
}
@media screen and (max-width: 767px) {
  header.header {
    top: 20px;
    left: 20px;
    width: calc(100% - 40px); /* 左右に20pxずつの余白 */
    height: 80px;
  }
}
.underpage header.header {
  background-color: #fff;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 173px;
  padding: 0 48px; /* 浮かさない代わりに内側に余白 */
}
@media screen and (max-width: 767px) {
  .underpage header.header {
    height: 80px;
    padding: 0 20px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  /* header本体で余白を制御しているため、ここは0でOK */
  padding: 0;
}

/* --- Logo --- */
a.header__logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  gap: 5px;
  z-index: 1002;
}
a.header__logo-link img {
  width: 64px;
  height: 64px;
}
@media screen and (max-width: 767px) {
  a.header__logo-link img {
    width: 32px;
    height: 32px;
  }
}

span.header__logo-text {
  font-family: "Marcellus", serif;
  font-size: 28px;
  line-height: 30px;
  letter-spacing: 3.5px;
  color: #54372D;
  white-space: nowrap;
  width: 187px;
  height: 70px;
}
@media screen and (max-width: 767px) {
  span.header__logo-text {
    display: none;
  }
}

/* ==========================================================================
   Navigation (Gnav)
   ========================================================================== */
nav#js-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  nav#js-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
    padding: 144px 60px; /* 右側の96pxを少し調整 */
    display: block;
  }
  nav#js-nav.is-active {
    right: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: #D4CEBE;
  }
}

.gnav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  gap: 36px;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .gnav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 40px;
  }
}

/* --- Menu Text --- */
.gnav__text-pc {
  font-family: "Marcellus", serif;
  font-size: 20px;
  color: #54372D;
  text-transform: capitalize;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.gnav__text-pc:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .gnav__text-pc {
    display: none;
  }
}
.gnav__text-pc.reserve-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 200px;
  height: 50px;
  background: #949E33;
  border-radius: 40px;
  color: #fff;
}
.gnav__text-pc.reserve-button i {
  margin-right: 26px;
  font-family: "Font Awesome 5 Free", "Font Awesome 6 Free", sans-serif;
  font-weight: 900;
}

.gnav__text-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .gnav__text-sp {
    display: block;
    font-family: "Marcellus", serif;
    font-size: 24px;
    color: #CA7F13;
    text-transform: uppercase;
    letter-spacing: 2.4px;
  }
}

/* --- SP専用アイテムをPCで完全に消去する --- */
.gnav__item--sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .gnav__item--sp-only {
    display: block;
  }
}

/* --- 予約ボタンの制御（こちらは今のままでOK） --- */
@media screen and (max-width: 767px) {
  li.gnav__item.gnav__item--reserve {
    display: none;
  }
}

/* ==========================================================================
   Hamburger Button
   ========================================================================== */
.hamburger-btn {
  display: none;
}
@media screen and (max-width: 767px) {
  .hamburger-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
    z-index: 1001;
    width: 100px;
    height: 31px;
    background: #949E33;
    border-radius: 40px;
    border: none;
    cursor: pointer;
  }
  .hamburger-btn.is-active {
    position: fixed;
    top: 25px; /* headerのtop:20pxに合わせて微調整 */
    right: 25px;
    width: 40px;
    height: 40px;
  }
  .hamburger-btn.is-active .hamburger-btn__text {
    display: none;
  }
  .hamburger-btn.is-active .hamburger-btn__line:nth-child(1) {
    -webkit-transform: translateY(6px) rotate(45deg);
            transform: translateY(6px) rotate(45deg);
  }
  .hamburger-btn.is-active .hamburger-btn__line:nth-child(2) {
    opacity: 0;
  }
  .hamburger-btn.is-active .hamburger-btn__line:nth-child(3) {
    -webkit-transform: translateY(-6px) rotate(-45deg);
            transform: translateY(-6px) rotate(-45deg);
  }
}
.hamburger-btn__text {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}
.hamburger-btn__lines {
  position: relative;
  width: 20px;
  height: 14px;
}
.hamburger-btn__line {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hamburger-btn__line:nth-child(1) {
  top: 0;
}
.hamburger-btn__line:nth-child(2) {
  top: 6px;
}
.hamburger-btn__line:nth-child(3) {
  top: 12px;
}

.fv {
  position: relative;
  width: 100%;
  height: 900px;
  background: url("../img/fv_bg-pc.jpg") center/cover no-repeat;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .fv {
    height: 809px;
    background-image: url("../img/fv_bg-sp.jpg");
  }
}
.fv__catchcopy {
  position: absolute;
  top: 356px;
  left: 36px;
  width: 100%;
  max-width: 693px;
  color: #FFFFFF;
  font-family: "Yu Mincho", serif;
  font-weight: 300;
  font-size: 64px;
  line-height: 1.5;
  letter-spacing: 3.1px;
  text-align: left;
  opacity: 1;
  opacity: 0;
  -webkit-animation: fadeInUp 1.5s ease-out forwards;
          animation: fadeInUp 1.5s ease-out forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.fv__catchcopy .u-pc-only {
  display: block;
}
.fv__catchcopy .u-sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .fv__catchcopy {
    top: 395px;
    left: 14px;
    max-width: calc(100% - 28px);
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: 3.2px;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.16);
  }
  .fv__catchcopy .u-sp-only {
    display: block;
  }
  .fv__catchcopy .u-pc-only {
    display: none;
  }
}

.fv-salons {
  width: 100%;
  margin-top: 173px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .fv-salons {
    margin-top: 80px;
  }
}
.fv-salons__text-area {
  background-color: #D4CEBE;
  padding: 160px 20px;
  text-align: center;
  z-index: 2;
  position: relative;
  height: 360px;
}
@media screen and (max-width: 767px) {
  .fv-salons__text-area {
    padding: 80px 20px;
    height: 200px;
  }
}
.fv-salons__title-en {
  color: #CA7F13;
  font-family: "Marcellus", serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 80px;
  line-height: 1.2;
  opacity: 0;
  -webkit-animation: fadeInOnly 1.8s ease-out forwards;
          animation: fadeInOnly 1.8s ease-out forwards;
}
@media screen and (max-width: 767px) {
  .fv-salons__title-en {
    font-size: 32px;
  }
}
.fv-salons__image-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  z-index: 1;
  clip-path: inset(0);
}
@media screen and (max-width: 767px) {
  .fv-salons__image-wrapper {
    height: 400px;
  }
}
.fv-salons__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fv-salons__image::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/page-concept_top-pc.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  -webkit-transform: none;
          transform: none;
}
@media screen and (max-width: 767px) {
  .fv-salons__image::before {
    background-image: url("../img/page-concept_top-sp.jpg");
  }
}

@-webkit-keyframes fadeInOnly {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInOnly {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fv-contact {
  width: 100%;
  margin-top: 173px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .fv-contact {
    margin-top: 80px;
  }
}
.fv-contact__text-area {
  background-color: #D4CEBE;
  padding: 160px 20px;
  text-align: center;
  z-index: 2;
  position: relative;
  height: 360px;
}
@media screen and (max-width: 767px) {
  .fv-contact__text-area {
    padding: 80px 20px;
    height: 200px;
  }
}
.fv-contact__title-en {
  color: #CA7F13;
  font-family: "Marcellus", serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 80px;
  line-height: 1.2;
  opacity: 0;
  -webkit-animation: fadeInOnly 1.8s ease-out forwards;
          animation: fadeInOnly 1.8s ease-out forwards;
}
@media screen and (max-width: 767px) {
  .fv-contact__title-en {
    font-size: 32px;
  }
}
.fv-contact__image-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  z-index: 1;
  clip-path: inset(0);
}
@media screen and (max-width: 767px) {
  .fv-contact__image-wrapper {
    height: 400px;
  }
}
.fv-contact__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fv-contact__image::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/reserve_top-pc.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  -webkit-transform: none;
          transform: none;
}
@media screen and (max-width: 767px) {
  .fv-contact__image::before {
    background-image: url("../img/reserve_top-sp.jpg");
  }
}

@keyframes fadeInOnly {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fv-price {
  width: 100%;
  margin-top: 173px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .fv-price {
    margin-top: 80px;
  }
}
.fv-price__text-area {
  background-color: #D4CEBE;
  padding: 160px 20px;
  text-align: center;
  z-index: 2;
  position: relative;
  height: 360px;
}
@media screen and (max-width: 767px) {
  .fv-price__text-area {
    padding: 80px 20px;
    height: 200px;
  }
}
.fv-price__title-en {
  color: #CA7F13;
  font-family: "Marcellus", serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 80px;
  line-height: 1.2;
  opacity: 0;
  -webkit-animation: fadeInOnly 1.8s ease-out forwards;
          animation: fadeInOnly 1.8s ease-out forwards;
}
@media screen and (max-width: 767px) {
  .fv-price__title-en {
    font-size: 32px;
  }
}
.fv-price__image-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  z-index: 1;
  clip-path: inset(0);
}
@media screen and (max-width: 767px) {
  .fv-price__image-wrapper {
    height: 400px;
  }
}
.fv-price__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fv-price__image::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/price-menu_top-pc.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  -webkit-transform: none;
          transform: none;
}
@media screen and (max-width: 767px) {
  .fv-price__image::before {
    background-image: url("../img/price-menu_top-sp.jpg");
  }
}

@keyframes fadeInOnly {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fv-shop {
  width: 100%;
  margin-top: 173px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .fv-shop {
    margin-top: 80px;
  }
}
.fv-shop__text-area {
  background-color: #D4CEBE;
  padding: 160px 20px;
  text-align: center;
  z-index: 2;
  position: relative;
  height: 360px;
}
@media screen and (max-width: 767px) {
  .fv-shop__text-area {
    padding: 80px 20px;
    height: 200px;
  }
}
.fv-shop__title-en {
  color: #CA7F13;
  font-family: "Marcellus", serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 80px;
  line-height: 1.2;
  opacity: 0;
  -webkit-animation: fadeInOnly 1.8s ease-out forwards;
          animation: fadeInOnly 1.8s ease-out forwards;
}
@media screen and (max-width: 767px) {
  .fv-shop__title-en {
    font-size: 32px;
  }
}
.fv-shop__image-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  z-index: 1;
  clip-path: inset(0);
}
@media screen and (max-width: 767px) {
  .fv-shop__image-wrapper {
    height: 400px;
  }
}
.fv-shop__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fv-shop__image::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/archive-salons_top-pc.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  -webkit-transform: none;
          transform: none;
}
@media screen and (max-width: 767px) {
  .fv-shop__image::before {
    background-image: url("../img/archive-salons_top-sp.jpg");
  }
}

@keyframes fadeInOnly {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fv-shop-details {
  width: 100%;
  margin-top: 173px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .fv-shop-details {
    margin-top: 80px;
  }
}
.fv-shop-details__text-area {
  background-color: #D4CEBE;
  padding: 160px 20px;
  text-align: center;
  z-index: 2;
  position: relative;
  height: 360px;
}
@media screen and (max-width: 767px) {
  .fv-shop-details__text-area {
    padding: 80px 20px;
    height: 200px;
  }
}
.fv-shop-details__title-en {
  color: #CA7F13;
  font-family: "Marcellus", Regular;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 48px;
  line-height: 1.2;
  opacity: 0;
  -webkit-animation: fadeInOnly 1.8s ease-out forwards;
          animation: fadeInOnly 1.8s ease-out forwards;
}
@media screen and (max-width: 767px) {
  .fv-shop-details__title-en {
    font-size: 24px;
  }
}
.fv-shop-details__title-ja {
  color: #CA7F13;
  font-family: 游明朝, Regular;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 80px;
  line-height: 1.2;
  opacity: 0;
  -webkit-animation: fadeInOnly 1.8s ease-out forwards;
          animation: fadeInOnly 1.8s ease-out forwards;
}
@media screen and (max-width: 767px) {
  .fv-shop-details__title-ja {
    font-size: 32px;
  }
}
.fv-shop-details__image-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  z-index: 1;
  clip-path: inset(0);
}
@media screen and (max-width: 767px) {
  .fv-shop-details__image-wrapper {
    height: 400px;
  }
}
.fv-shop-details__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fv-shop-details__image::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/single-salons_top-pc.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  -webkit-transform: none;
          transform: none;
}
@media screen and (max-width: 767px) {
  .fv-shop-details__image::before {
    background-image: url("../img/single-salons_top-sp.jpg");
  }
}

@keyframes fadeInOnly {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fv-news {
  width: 100%;
  margin-top: 173px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .fv-news {
    margin-top: 80px;
  }
}
.fv-news__text-area {
  background-color: #D4CEBE;
  padding: 160px 20px;
  text-align: center;
  z-index: 2;
  position: relative;
  height: 360px;
}
@media screen and (max-width: 767px) {
  .fv-news__text-area {
    padding: 80px 20px;
    height: 200px;
  }
}
.fv-news__title-en {
  color: #CA7F13;
  font-family: "Marcellus", serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 80px;
  line-height: 1.2;
  opacity: 0;
  -webkit-animation: fadeInOnly 1.8s ease-out forwards;
          animation: fadeInOnly 1.8s ease-out forwards;
}
@media screen and (max-width: 767px) {
  .fv-news__title-en {
    font-size: 32px;
  }
}
.fv-news__image-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  z-index: 1;
  clip-path: inset(0);
}
@media screen and (max-width: 767px) {
  .fv-news__image-wrapper {
    height: 400px;
  }
}
.fv-news__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fv-news__image::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/news_top-pc.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  -webkit-transform: none;
          transform: none;
}
@media screen and (max-width: 767px) {
  .fv-news__image::before {
    background-image: url("../img/news_top-sp.jpg");
  }
}

@keyframes fadeInOnly {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ==========================================================================
   Common Animations (Fade Up)
   ========================================================================== */
.section__heading.is-news,
.top-news__btn,
.top-news__items,
.news__item {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out, -webkit-transform 1s ease-out;
}
.section__heading.is-news.is-show,
.top-news__btn.is-show,
.top-news__items.is-show,
.news__item.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ==========================================================================
   Top News Section
   ========================================================================== */
#top-news {
  margin: 132px 180px 0;
}
@media screen and (max-width: 767px) {
  #top-news {
    margin: 60px 30px 0;
  }
}

.top-news__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .top-news__intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
}
.top-news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 38.5px 0 0;
}
@media screen and (max-width: 767px) {
  .top-news__list {
    display: block;
  }
}
.top-news__items {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding: 16.5px 20.5px 19.5px 19.5px;
  border-left: 1px solid #333333;
}
.top-news__items:nth-child(1) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.top-news__items:nth-child(2) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.top-news__items:nth-child(3) {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}
.top-news__items:last-child {
  border-right: 1px solid #333333;
}
@media screen and (max-width: 767px) {
  .top-news__items {
    border-left: none;
    border-top: 1px solid #333333;
    padding: 20px 0;
  }
  .top-news__items:last-child {
    border-right: none;
    border-bottom: 1px solid #333333;
  }
}
.top-news__article-info {
  font: normal normal bold 14px/22px "Yu Gothic", sans-serif;
  color: #54372D;
}
.top-news__article-title {
  font: normal normal bold 18px/27px "Yu Gothic", sans-serif;
  letter-spacing: 1.8px;
  color: #54372D;
  margin-top: 12px;
  margin-bottom: 16px;
}
.top-news__article-cats {
  font: normal normal normal 14px/18px "Marcellus", serif;
  letter-spacing: 1.4px;
  color: #54372D;
}

/* ==========================================================================
   News List Section (Archive Page)
   ========================================================================== */
.news {
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .news {
    padding-bottom: 80px;
  }
}
.news__inner {
  margin-top: 110px;
}
@media screen and (max-width: 767px) {
  .news__inner {
    margin-top: 80px;
  }
}
.news__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 180px;
  padding-left: 84px;
  gap: 43px;
}
@media screen and (max-width: 767px) {
  .news__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 40px auto 0;
    padding: 0 14px;
    gap: 36px;
  }
}
.news__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.news__item {
  background-color: #D4CEBE;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 72px;
  padding: 26px 24px;
}
@media screen and (max-width: 767px) {
  .news__item {
    height: 89px;
    padding: 12px;
    margin-bottom: 12px;
  }
}
.news__item:hover {
  opacity: 0.7;
}
.news__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #54372D;
  text-decoration: none;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 767px) {
  .news__item-link {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.news__item-date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: Marcellus, Regular;
  font-size: 16px;
  color: #CA7F13;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 767px) {
  .news__item-date {
    font-size: 14px;
  }
}
.news__item-title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 16px;
  font-size: 16px;
  color: #CA7F13;
}
@media screen and (max-width: 767px) {
  .news__item-title {
    width: 100%;
    padding: 8px 0 15px;
    font-size: 14px;
    letter-spacing: 1.4px;
    line-height: 1.4;
  }
}
.news__item-category {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
  font-family: Marcellus, Regular;
  font-size: 32px;
  line-height: 1;
  text-align: right;
  color: rgba(84, 55, 45, 0.2);
}
@media screen and (max-width: 767px) {
  .news__item-category {
    position: absolute;
    right: -12px;
    bottom: 0px;
    font-size: 20px;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .news__sidebar {
    width: 100%;
  }
}
.news__category {
  position: relative;
  padding-left: 15px;
  font-family: Marcellus, Regular;
}
.news__category::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 0;
  left: 0;
  width: 2px;
  background-color: #CA7F13;
}
@media screen and (max-width: 767px) {
  .news__category {
    padding-left: 0;
    margin-right: 0;
  }
  .news__category::before {
    display: none;
  }
}
.news__category-title {
  margin-bottom: 30px;
  color: #CA7F13;
  font-family: Marcellus, Regular;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 2.3px;
}
@media screen and (max-width: 767px) {
  .news__category-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 767px) {
  .news__category-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 60px;
    gap: 10px;
  }
}
.news__category-list li {
  margin-bottom: 7px;
}
@media screen and (max-width: 767px) {
  .news__category-list li {
    width: 150px;
    margin-bottom: 0;
  }
}
.news__category-list li:last-child {
  margin-bottom: 0;
}
.news__category-list li a {
  display: block;
  color: #CA7F13;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 1.6px;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  .news__category-list li a {
    font-size: 14px;
  }
}
.news__category-list li a:hover {
  color: #CA7F13;
  text-decoration: underline;
}

/* ==========================================================================
   News Pagination Style
   ========================================================================== */
.news__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin-top: 36px;
  font-family: "Marcellus", serif;
  color: #CA7F13;
}
@media screen and (max-width: 767px) {
  .news__pagination {
    margin-top: 16px;
    gap: 12px;
  }
}
.news__pagination a, .news__pagination span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 32px;
  font-weight: 400;
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .news__pagination a, .news__pagination span {
    font-size: 16px;
  }
}
.news__pagination a.current, .news__pagination span.current {
  border-bottom: 1px solid #CA7F13;
  pointer-events: none;
}
.news__pagination a:hover:not(.current), .news__pagination span:hover:not(.current) {
  opacity: 0.6;
}
.news__pagination a i, .news__pagination span i {
  font-size: 24px;
  line-height: 1;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .news__pagination a i, .news__pagination span i {
    font-size: 14px;
  }
}

/* ==========================================================================
   Article Detail
   ========================================================================== */
.article__header {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .article__header {
    margin-bottom: 20px;
  }
}
.article__title {
  font-size: 24px;
  color: #CA7F13;
  font-weight: 600;
  letter-spacing: 2.4px;
  line-height: 1.4;
  font-family: 游明朝, Regular;
}
@media screen and (max-width: 767px) {
  .article__title {
    font-size: 18px;
  }
}
.article__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-top: 10px;
  font-size: 14px;
  color: #CA7F13;
  letter-spacing: 2.4px;
  line-height: 1.4;
  font-family: "Yu Mincho", serif;
}
@media screen and (max-width: 767px) {
  .article__meta {
    font-size: 12px;
  }
}
.article__eye-catch {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .article__eye-catch {
    margin-bottom: 39px;
  }
}
.article__eye-catch img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.article__sub-title {
  font-family: 游明朝, Regular;
  font-size: 18px;
  color: #CA7F13;
  margin-bottom: 12px;
  letter-spacing: 1.8px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .article__sub-title {
    font-size: 16px;
  }
}
.article__text {
  color: #333333;
  margin-bottom: 24px;
  text-align: justify;
  font-size: 16px;
  font-family: 游ゴシック, Regular;
  letter-spacing: 3px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .article__text {
    font-size: 14px;
    line-height: 1.8;
  }
}
.article__footer {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .article__footer {
    margin-top: 24px;
  }
}
.article__footer .btn {
  background-color: #949E33;
  border-color: #949E33;
  width: 200px;
}
@media screen and (max-width: 767px) {
  .article__footer .btn {
    width: 100%;
    max-width: 240px;
  }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .article__footer .btn {
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
  }
}

.u-pc-only {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
}

.u-sp-only {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .u-sp-only {
    display: block !important;
  }
}

section.salon-concept {
  position: relative;
  z-index: 10;
  margin-top: 0;
  background-color: #D4CEBE;
}

section.inst {
  position: relative;
  z-index: 10;
  background-color: #F9F8F6;
}
section.company-profile {
  position: relative;
  padding-top: 167px;
  padding-bottom: 144px;
  background-color: #F9F8F6;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  section.company-profile {
    padding-top: 150px;
    padding-bottom: 120px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

section.sns {
  position: relative;
  background-color: #F9F8F6;
  z-index: 10;
}

section.salons {
  position: relative;
  z-index: 10;
  margin-top: 0;
  background-color: #F9F8F6;
}

@-webkit-keyframes autoZoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes autoZoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
div#concept {
  padding: 83px 120px 80px 120px;
  position: relative;
}
@media screen and (max-width: 767px) {
  div#concept {
    padding: 60px 30px 60px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* --- パンくずリストエリア --- */
.concept__container__nav {
  max-width: 1200px;
  padding-top: 24px;
  padding-left: 36.5px;
}
@media screen and (max-width: 767px) {
  .concept__container__nav {
    padding-top: 12.5px;
    padding-left: 15px;
  }
}

.concept__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .concept__nav-list {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}

.concept__nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Yu Mincho", serif;
  font-size: 14px;
  line-height: 1;
  color: #CA7F13;
}
@media screen and (max-width: 767px) {
  .concept__nav-item {
    font-size: 12px;
  }
}
.concept__nav-item:not(:last-child)::after {
  content: "|";
  margin: 0 12px;
  font-size: 14px;
  opacity: 0.6;
}

.concept__nav-link {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.concept__nav-link:hover {
  opacity: 0.7;
}
.concept__nav-link--active {
  pointer-events: none;
  font-weight: 600;
}

/* --- アニメーションの共通設定（Concept内パーツ用） --- */
.concept__img-wrapper,
.concept__heading-group,
.concept__inner .concept,
.concept__text,
.concept__btn {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 1.2s ease-out, -webkit-transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, -webkit-transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, transform 1.2s ease-out, -webkit-transform 1.2s ease-out;
}
.concept__img-wrapper.is-show,
.concept__heading-group.is-show,
.concept__inner .concept.is-show,
.concept__text.is-show,
.concept__btn.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* --- 上段（施術画像・見出し） --- */
.concept__intro {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .concept__intro {
    display: contents;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.concept__img-wrapper {
  width: 865px;
  max-width: 80%;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
@media screen and (max-width: 767px) {
  .concept__img-wrapper {
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 40px;
  }
}
.concept__img-wrapper img.concept__container--img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.concept__heading-group {
  position: absolute;
  left: 0;
  top: 35%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  pointer-events: none;
  /* --- アニメーション .is-show 時の設定 --- */
  opacity: 0;
  -webkit-transform: translateY(calc(-50% + 30px));
          transform: translateY(calc(-50% + 30px));
  -webkit-transition: opacity 1.2s ease-out, -webkit-transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, -webkit-transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, transform 1.2s ease-out, -webkit-transform 1.2s ease-out;
}
.concept__heading-group.is-show {
  opacity: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .concept__heading-group {
    position: relative;
    top: auto;
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  .concept__heading-group.is-show {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.concept__catchcopy {
  font-family: "Yu Mincho", serif;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 2.8px;
  color: #CA7F13;
  text-align: left;
  margin-top: 147px;
}
@media screen and (max-width: 767px) {
  .concept__catchcopy {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: -129px;
  }
}

/* --- 下段（受付画像・本文・ボタン） --- */
.concept__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0 60px;
  margin-top: 80px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  /* --- アニメーション定義（ここは変更なし） --- */
}
@media screen and (max-width: 767px) {
  .concept__inner {
    display: contents;
  }
}
.concept__inner .concept {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
@media screen and (max-width: 767px) {
  .concept__inner .concept {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    margin-left: auto;
    padding-left: 10px;
    margin-top: -147px;
  }
}
.concept__inner .concept img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .concept__inner .concept img {
    height: auto;
  }
}
.concept__inner .concept__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  line-height: 2;
  font-size: 18px;
  font-family: "Yu Gothic", sans-serif;
  letter-spacing: 0.1em;
  color: #54372D;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
@media screen and (max-width: 767px) {
  .concept__inner .concept__text {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    font-size: 15px;
    margin-top: 30px;
  }
}
.concept__inner .concept__btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 55%;
          flex: 0 0 55%;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .concept__inner .concept__btn {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 30px;
  }
}
.concept__inner .concept__rine {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-animation: conceptBtnSlide 2.5s infinite;
          animation: conceptBtnSlide 2.5s infinite;
}
@media screen and (max-width: 767px) {
  .concept__inner .concept__rine {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    padding: 0 40px 8px 0;
    text-decoration: none;
    color: #54372D;
    font-size: 16px;
    font-weight: bold;
    text-transform: capitalize;
  }
}
.concept__inner .concept__rine::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
}
.concept__inner .concept__rine::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 12px;
  height: 1px;
  background-color: currentColor;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
}
@-webkit-keyframes conceptBtnSlide {
  0% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
    opacity: 0.3;
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    opacity: 0.3;
  }
}
@keyframes conceptBtnSlide {
  0% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
    opacity: 0.3;
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    opacity: 0.3;
  }
}

.sns .sns__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  position: relative;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .sns .sns__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 20px;
  }
}
.sns .sns__container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1px;
  height: 250px;
  background-color: #CA7F13;
}
@media screen and (max-width: 767px) {
  .sns .sns__container::before {
    /* SP：上下を区切る横線 */
    top: 50%;
    left: 50%;
    width: 80%;
    height: 1px;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.sns .sns__container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 80px;
  right: 80px;
  height: 1px;
  background-color: #CA7F13;
}
@media screen and (max-width: 767px) {
  .sns .sns__container::after {
    left: 50%;
    right: auto;
    width: 80%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.sns .salons__link,
.sns .sns__link {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  position: relative;
  padding-top: 82px;
  padding-bottom: 70px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .sns .salons__link,
  .sns .sns__link {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
.sns .salons__link:hover,
.sns .sns__link:hover {
  opacity: 0.7;
}
.sns .section-sns__heading--ja {
  font-size: 16px;
  color: #CA7F13;
  margin-top: 8px;
  letter-spacing: 0.1em;
  text-align: center;
}

.salons__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  position: relative;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .salons__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 20px;
  }
}
.salons__container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1px;
  height: 300px;
  background-color: #CA7F13;
}
@media screen and (max-width: 767px) {
  .salons__container::before {
    /* SPの設定：SALONSとSNSを区切る横線 */
    top: 50%;
    left: 50%;
    width: 80%;
    height: 1px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.salons__container::after {
  content: "";
  position: absolute;
  bottom: 0;
  background-color: #CA7F13;
  height: 1px;
  left: 100px;
  right: 100px;
}
@media screen and (max-width: 767px) {
  .salons__container::after {
    left: 50%;
    right: auto;
    width: 80%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.salons__link,
.sns__link {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  position: relative;
  padding-top: 73px;
  padding-bottom: 70px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.salons__link:hover,
.sns__link:hover {
  opacity: 0.7;
}

h4.concept__catchcopy-intro {
  font-family: "Yu Mincho", serif;
  font-size: 40px;
  line-height: 1.5;
  letter-spacing: 2.8px;
  color: #CA7F13;
  margin: 0;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  h4.concept__catchcopy-intro {
    font-size: 24px;
    line-height: 1.4;
  }
}

.concept__intro-group {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translateY(calc(-50% + 30px)) !important;
          transform: translateY(calc(-50% + 30px)) !important;
  -webkit-transition: opacity 1.2s ease-out, -webkit-transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, -webkit-transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, transform 1.2s ease-out, -webkit-transform 1.2s ease-out;
}
.concept__intro-group.is-show {
  opacity: 1;
  -webkit-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
}
@media screen and (max-width: 767px) {
  .concept__intro-group {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-transform: translateY(30px) !important;
            transform: translateY(30px) !important;
  }
  .concept__intro-group.is-show {
    -webkit-transform: translateY(0) !important;
            transform: translateY(0) !important;
  }
}

.concept__img-inner {
  width: 80%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .concept__img-inner {
    width: 100%;
  }
}
.concept__img-inner img.concept__container--img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.concept__inner--ttl {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  line-height: 1.9;
  font-size: 18px;
  font-family: "Yu Gothic", sans-serif;
  letter-spacing: 0.1em;
  color: #CA7F13;
}
@media screen and (max-width: 767px) {
  .concept__inner--ttl {
    font-size: 15px;
    line-height: 1.8;
    margin-top: 23px;
  }
}
.concept__inner--ttl .concept__text {
  font-size: 18px;
  line-height: 2;
  color: #54372D;
  font-family: "Yu Gothic", sans-serif;
  letter-spacing: 0.1em;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 1.2s ease-out 0.4s, -webkit-transform 1.2s ease-out 0.4s;
  transition: opacity 1.2s ease-out 0.4s, -webkit-transform 1.2s ease-out 0.4s;
  transition: opacity 1.2s ease-out 0.4s, transform 1.2s ease-out 0.4s;
  transition: opacity 1.2s ease-out 0.4s, transform 1.2s ease-out 0.4s, -webkit-transform 1.2s ease-out 0.4s;
}
.concept__inner--ttl .concept__text.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

h4.concept__catchcopy-intro {
  font-family: "Yu Mincho", serif;
  font-size: 40px;
  line-height: 1.5;
  letter-spacing: 2.8px;
  color: #CA7F13;
  margin: 0;
}
@media screen and (max-width: 767px) {
  h4.concept__catchcopy-intro {
    font-size: 24px;
  }
}

.concept__img-inner.js-fadeUp.is-show {
  width: 720px;
}

/* --- 上段（施術画像・見出し）エリア全体 --- */
.concept__intro {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .concept__intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

/* 1. 画像グループ */
.concept__img-inner {
  width: 865px;
  max-width: 80%;
  z-index: 1;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 1.2s ease-out, -webkit-transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, -webkit-transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, transform 1.2s ease-out, -webkit-transform 1.2s ease-out;
}
.concept__img-inner.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 768px) {
  .concept__img-inner.is-show {
    width: 720px;
  }
}
@media screen and (max-width: 767px) {
  .concept__img-inner {
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 24px;
  }
}
.concept__img-inner img.concept__container--img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 見出しのテキストスタイル */
h4.concept__catchcopy-intro {
  font-family: "Yu Mincho", serif;
  font-size: 40px;
  line-height: 1.5;
  letter-spacing: 2.8px;
  color: #CA7F13;
  margin: 0;
}
@media screen and (max-width: 767px) {
  h4.concept__catchcopy-intro {
    font-size: 18px;
    line-height: 1.4;
  }
}

/* ヘッダーエリア：PCでは左寄せ */
.inst__header {
  text-align: left;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .inst__header {
    text-align: center;
    margin-bottom: 40px;
  }
}

/* グリッド本体 */
.inst__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .inst__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 19px;
  }
}

.inst__item {
  background-color: #707070;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
.inst__item.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.inst__item:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.inst__item:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.inst__item:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.inst__item:nth-child(4) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.inst__item:nth-child(5) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.inst__item:nth-child(6) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

/* ボタン：デザイン画像に合わせて修正 */
/* ボタン：Font Awesome適用版 */
.inst__footer {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .inst__footer {
    margin-top: 30px;
  }
}

.inst__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #9BAE31;
  color: #fff;
  text-decoration: none;
  padding: 12px 48px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: background-color 0.3s, opacity 0.3s;
  transition: background-color 0.3s, opacity 0.3s;
}
.inst__btn:hover {
  opacity: 0.8;
}
.inst__btn .inst__btn-icon {
  margin-right: 13px;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.inst__btn .inst__intro--card {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .inst__btn .inst__intro--card {
    padding: 0 10px;
  }
}

div#inst {
  margin-top: 167px;
  max-width: 1000px;
  margin-left: 120px;
  margin-right: 120px;
}
@media screen and (max-width: 767px) {
  div#inst {
    margin: 0 16px;
    margin-right: 16px;
    padding-top: 110px;
  }
}

.inst__inner {
  padding-left: 200px;
}
@media screen and (max-width: 767px) {
  .inst__inner {
    padding-left: 0;
  }
}

p.inst__item-text {
  font-size: 29px;
  color: #FFFFFF;
  letter-spacing: 2.9px;
  line-height: 1.3;
  text-align: center;
  font-family: 游明朝, Demibold;
}
@media screen and (max-width: 767px) {
  p.inst__item-text {
    font-size: 16px;
  }
}

div#company-profile {
  margin: 0 95px;
}
@media screen and (max-width: 767px) {
  div#company-profile {
    margin: 0;
  }
}

.company-profile__visual {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .company-profile__visual {
    margin-bottom: 40px;
  }
}
.company-profile__visual .u-pc-only {
  display: block;
}
@media screen and (max-width: 767px) {
  .company-profile__visual .u-pc-only {
    display: none !important;
  }
}
.company-profile__visual .u-sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .company-profile__visual .u-sp-only {
    display: block !important;
  }
}
.company-profile__image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.company-profile__list {
  border-top: 1px solid #CA7F13;
}
.company-profile__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #CA7F13;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 767px) {
  .company-profile__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    border-bottom: none;
  }
}
.company-profile__visual.js-fadeUp, .company-profile__row.js-fadeUp {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 1.2s ease-out, -webkit-transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, -webkit-transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, transform 1.2s ease-out, -webkit-transform 1.2s ease-out;
}
.company-profile__visual.js-fadeUp.is-show, .company-profile__row.js-fadeUp.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.company-profile__row:nth-of-type(1).is-show {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.company-profile__row:nth-of-type(2).is-show {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.company-profile__row:nth-of-type(3).is-show {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}
.company-profile__row:nth-of-type(4).is-show {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.company-profile__row:nth-of-type(5).is-show {
  -webkit-transition-delay: 0.75s;
          transition-delay: 0.75s;
}
.company-profile__row:nth-of-type(6).is-show {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.company-profile__row:nth-of-type(7).is-show {
  -webkit-transition-delay: 1.05s;
          transition-delay: 1.05s;
}
.company-profile__row:nth-of-type(8).is-show {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.company-profile__row:nth-of-type(9).is-show {
  -webkit-transition-delay: 1.35s;
          transition-delay: 1.35s;
}
.company-profile__row:nth-of-type(10).is-show {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.company-profile__label {
  width: 10%;
  color: #CA7F13;
  font-weight: bold;
  padding: 20px 10px;
  font-size: 18px;
  font-family: 游明朝, Demibold;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .company-profile__label {
    float: left;
    width: 35%;
    padding: 26px 0 26px 13px;
    font-size: 14px;
    border-bottom: 1px solid #CA7F13;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.company-profile__data {
  width: 30%;
  color: #333333;
  margin-left: 0;
  padding: 20px 10px;
  font-size: 16px;
  font-family: 游ゴシック, Regular;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .company-profile__data {
    float: left;
    width: 65%;
    padding: 26px 13px 26px 0;
    font-size: 14px;
    border-bottom: 1px solid #CA7F13;
    margin-bottom: 0;
  }
  .company-profile__data:last-child {
    margin-bottom: 0;
  }
}
.company-profile__data:only-of-type {
  width: 85%;
}
@media screen and (max-width: 767px) {
  .company-profile__data:only-of-type {
    width: 65%;
  }
}

@media screen and (max-width: 767px) {
  .company-profile__row::after {
    content: "";
    display: block;
    clear: both;
  }
}
.feature__container {
  margin-top: 120px;
  background: #333333;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.feature__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 41px 47px 59px 88px;
}
@media screen and (max-width: 767px) {
  .feature__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px 30px;
    gap: 30px;
  }
}
.feature__subtitle {
  font-size: 18px;
  color: #CA7F13;
  letter-spacing: 1.8px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  line-height: 2.6;
  text-align: center;
  position: relative;
}
.feature__subtitle::before, .feature__subtitle::after {
  content: "";
  background-color: #CA7F13;
}
.feature__subtitle::before {
  position: absolute;
  bottom: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40px;
  height: 2px;
}
@media screen and (max-width: 767px) {
  .feature__subtitle::before {
    position: static;
    -webkit-transform: none;
            transform: none;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 1px;
  }
}
.feature__subtitle::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .feature__subtitle::after {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 1px;
  }
}
.feature__list, .feature__image, .feature__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #fff;
}
.feature__listItem {
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5em;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  cursor: pointer;
  opacity: 0.4;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.feature__listItem.is-active {
  opacity: 1;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .feature__listItem {
    display: none;
  }
}
.feature__image {
  text-align: center;
  margin-top: 0px;
}
.feature__image--img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  /* SP専用の画像制御を明示的に指定 */
}
@media screen and (max-width: 767px) {
  .feature__image--img.u-sp-only {
    height: 100%; /* 親の220pxいっぱいに広げる */
    -o-object-fit: cover;
       object-fit: cover; /* 縦横比を維持して枠を埋める */
  }
}
@media screen and (max-width: 767px) {
  .feature__image {
    margin-top: 0;
    width: 100%;
    /* 1画面に収めるため、画像エリアの高さを最大200〜220px程度に制限します */
    height: 220px;
    position: relative;
    overflow: hidden;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 60px;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .feature__list {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .feature__text {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    text-align: center;
  }
}

ul.feature__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) var(--unnamed-font-size-18)/var(--unnamed-line-spacing-36) var(--unnamed-font-family-yu-mincho);
  letter-spacing: var(--unnamed-character-spacing-1-8);
  color: var(--unnamed-color-ca7f13);
  text-align: left;
  font: normal normal normal 18px/36px Yu Mincho;
  letter-spacing: 1.8px;
  color: #CA7F13;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  ul.feature__list {
    display: none;
  }
}

.feature__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: auto;
  line-height: 3.6;
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) var(--unnamed-font-size-18)/var(--unnamed-line-spacing-36) var(--unnamed-font-family-yu-mincho);
  letter-spacing: var(--unnamed-character-spacing-1-8);
  color: var(--unnamed-color-ca7f13);
  text-align: left;
  font: normal normal normal 18px/36px Yu Mincho;
  letter-spacing: 1.8px;
  color: #CA7F13;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .feature__text {
    line-height: 1.5;
  }
}

h3#featureTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 2.6;
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) 24px/var(--unnamed-line-spacing-36) var(--unnamed-font-family-yu-mincho);
  color: var(--unnamed-color-ca7f13);
  font: normal normal normal 24px/36px Yu Mincho;
  letter-spacing: 2.4px;
  color: #CA7F13;
  opacity: 1;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  h3#featureTitle {
    text-align: center;
    margin-bottom: 30px;
    font-size: 18px;
  }
}

p.featureDesc {
  display: block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.8;
  margin-top: 30px;
  text-align: center;
  letter-spacing: 1.8px;
  color: #CA7F13;
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  p.featureDesc {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
    padding: 0 30px;
    text-align: center;
    height: auto;
    overflow: visible;
  }
}

.feature__list--num {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35px;
          flex: 0 0 35px;
}

li.feature__listItem.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.feature__contents {
  position: relative;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  min-height: 600px;
  display: grid;
  grid-template-areas: "stack";
}
@media screen and (max-width: 767px) {
  .feature__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: auto;
    min-height: auto;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
    /* 縦方向には溢れさせる（テキストが長くても切れないようにする） */
    overflow-y: visible;
    margin: 0 -30px;
    padding: 0 30px;
  }
  .feature__contents::-webkit-scrollbar {
    display: none;
  }
}

.feature__content {
  grid-area: stack;
  position: relative;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.8s ease, visibility 0.8s ease;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.feature__content:not(.is-active) {
  position: absolute;
  top: 0;
  left: 0;
}
.feature__content.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .feature__content {
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    scroll-snap-align: center;
    opacity: 1;
    visibility: visible;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    height: auto;
  }
  .feature__content:not(.is-active) {
    position: relative;
  }
}

h3.feature__title {
  font-size: 18px;
  color: #CA7F13;
  letter-spacing: 1.8px;
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .feature__image {
    height: auto;
    position: relative;
    overflow: hidden;
  }
}
.feature__image--img {
  /* PC・SP共通の基本設定 */
  width: 100%;
  height: auto;
  display: block;
  /* SP専用の画像制御を明示的に指定 */
}
@media screen and (max-width: 767px) {
  .feature__image--img.u-sp-only {
    height: auto; /* 親の220pxいっぱいに広げる */
    -o-object-fit: cover;
       object-fit: cover; /* 縦横比を維持して枠を埋める */
  }
}

.menu {
  width: 100%;
  max-width: 1000px;
  margin: 0 120px 0 auto;
}
@media screen and (max-width: 767px) {
  .menu {
    margin: 0 auto;
    padding: 0 20px;
  }
}
.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu__item {
  width: 50%;
  border-bottom: 1px solid #CA7F13;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.menu__item:nth-child(odd) {
  border-right: 1px solid #CA7F13;
}
.menu__item:nth-child(5) {
  border-right: 1px solid #CA7F13;
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .menu__item {
    width: 100% !important;
    border-right: none !important;
    border-bottom: 1px solid #CA7F13;
  }
  .menu__item:nth-child(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .menu__item:nth-child(2) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .menu__item:nth-child(4) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .menu__item:nth-child(3) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .menu__item:nth-child(5) {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
}
.menu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 30px 40px;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.menu__link:hover {
  background-color: rgba(202, 127, 19, 0.05);
}
@media screen and (max-width: 767px) {
  .menu__link {
    padding: 20px 10px;
  }
}
.menu__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .menu__label {
    gap: 10px;
  }
}
.menu__main-text {
  font-size: 48px;
  font-family: "Yu Mincho", serif;
  color: #CA7F13;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .menu__main-text {
    font-size: 28px;
  }
}
.menu__sub-text {
  font-size: 14px;
  color: #CA7F13;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .menu__sub-text {
    font-size: 12px;
  }
}
.menu__icon {
  color: #CA7F13;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menu__icon .fas {
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .menu__icon {
    font-size: 17px;
  }
}

.price__intro {
  margin: 200px 120px 0px 120px;
  margin-left: 120px;
  margin-right: 120px;
}
@media screen and (max-width: 767px) {
  .price__intro {
    margin-top: 151px;
    margin-left: 30px;
  }
}

.price__inner {
  margin-top: 75.5px;
}

.price {
  background-color: #F9F8F6;
}
.price__content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 74px 120px 0 120px;
  gap: 47px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .price__content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin: 80px 30px 0 30px;
    gap: 40px;
  }
}

.price__lead-group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

p.price__lead-text,
p.price__description {
  font-size: 18px;
  color: #CA7F13;
  line-height: 2;
  text-align: left;
  font-family: 游ゴシック, Regular;
}
@media screen and (max-width: 767px) {
  p.price__lead-text,
  p.price__description {
    font-size: 14px;
    line-height: 2;
  }
}

.sub__menu {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 55%;
          flex: 0 0 55%;
}
@media screen and (max-width: 767px) {
  .sub__menu {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}

.sub__menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sub__menu__item {
  width: 50%;
  border-bottom: 1px solid #CA7F13;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sub__menu__item:nth-child(odd) {
  border-right: 1px solid #CA7F13;
}
.sub__menu__item:nth-child(5) {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .sub__menu__item {
    width: 100% !important;
    border-right: none !important;
  }
  .sub__menu__item:nth-child(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .sub__menu__item:nth-child(2) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .sub__menu__item:nth-child(4) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .sub__menu__item:nth-child(3) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .sub__menu__item:nth-child(5) {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
}
.sub__menu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 10px;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.sub__menu__link:hover {
  background-color: rgba(202, 127, 19, 0.05);
}
@media screen and (max-width: 767px) {
  .sub__menu__link {
    padding: 10px 0;
  }
}
.sub__menu__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .sub__menu__label {
    gap: 10px;
  }
}
.sub__menu__main-text {
  font-size: 33px;
  font-family: Marcellus, Regular;
  color: #CA7F13;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .sub__menu__main-text {
    font-size: 20px;
  }
}
.sub__menu__sub-text {
  font-size: 9px;
  color: #CA7F13;
  font-family: Marcellus, Regular;
}
@media screen and (max-width: 767px) {
  .sub__menu__sub-text {
    font-size: 11px;
  }
}
.sub__menu__icon {
  color: #CA7F13;
  font-size: 9px;
}
@media screen and (max-width: 767px) {
  .sub__menu__icon {
    font-size: 7px;
  }
}

.price-page {
  color: #CA7F13;
  font-family: "Marcellus", serif;
}
.price-page__container {
  margin-top: 120px;
  padding: 57px 318px 63px 318px;
  background-color: #D4CEBE;
}
@media screen and (max-width: 767px) {
  .price-page__container {
    margin-top: 80px;
    padding: 56px 16px 48px 16px;
  }
}
.price-page__main-title {
  font-size: 84px;
  color: #CA7F13;
  font-family: Marcellus, Regular;
  text-align: center;
  font-weight: normal;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .price-page__main-title {
    font-size: 84px;
    margin-bottom: 58px;
  }
}
.price-page__main-title--large {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .price-page__main-title--large {
    margin-top: 60px;
  }
}

.price-group {
  margin-bottom: 40px;
}
.price-group--mt-medium {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .price-group--mt-medium {
    margin-top: 30px;
  }
}
.price-group__title {
  text-align: center;
  font-size: 24px;
  font-family: 游明朝, Regular;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .price-group__title {
    font-size: 18px;
  }
}
.price-group__description {
  text-align: center;
  font-size: 18px;
  font-family: 游明朝, Regular;
  color: #CA7F13;
  margin-bottom: 64px;
  padding: 0 56px;
  line-height: 2;
  letter-spacing: 5px;
}
@media screen and (max-width: 767px) {
  .price-group__description {
    padding: 0;
    text-align: left;
    margin-bottom: 0px;
    letter-spacing: 2px;
    font-size: 14px;
  }
}
.price-group__note {
  font-size: 12px;
  color: #CA7F13;
  text-align: right;
  margin-top: 10px;
  font-family: 游ゴシック, Regular;
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .price-group__note {
    margin-top: 12px;
    width: 203px;
    line-height: 1.8;
    letter-spacing: 0.2px;
    text-align: left;
  }
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table__sp-label-row {
  display: none;
}
@media screen and (max-width: 767px) {
  .price-table__sp-label-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 15px;
    padding: 25px 0;
    border-bottom: 1px solid #CA7F13;
    font-family: Marcellus, Regular;
    font-size: 14px;
    font-weight: normal;
    color: #CA7F13;
  }
  .price-table__sp-label-row span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
  .price-table__sp-label-row::after {
    content: "";
    -webkit-box-flex: 1.5;
        -ms-flex: 1.5;
            flex: 1.5;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .price-table__sp-label-row span:last-child {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.price-table__cell {
  padding: 20px 10px;
  font-family: 游明朝, Demibold;
  border-bottom: 1px solid #CA7F13;
  text-align: center;
}
.price-table__cell--header {
  font-weight: normal;
  font-size: 0.9rem;
  padding-bottom: 15px;
}
.price-table__cell--row-header {
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .price-table__cell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 15px 10px;
    border-bottom: none;
  }
  .price-table__cell--header {
    display: none;
  }
  .price-table__cell--label-sp, .price-table__cell--row-header {
    display: block;
    text-align: center;
    font-weight: bold;
    border-bottom: none !important;
    font-size: 18px;
    color: #CA7F13;
    margin-top: 20px;
    padding: 15px 0;
  }
  .price-table__cell--label-sp .price-table__sp-label-row, .price-table__cell--row-header .price-table__sp-label-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #CA7F13;
    padding-bottom: 25px;
  }
  .price-table__cell:not(.price-table__cell--label-sp):not(.price-table__cell--row-header) {
    border-bottom: 1px solid #CA7F13 !important;
  }
  .price-table__cell::before {
    content: attr(data-label);
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: 游ゴシック, Regular;
    font-size: 15px;
    color: #CA7F13;
  }
  .price-table__cell::after {
    content: "";
    -webkit-box-flex: 0.1;
        -ms-flex: 0.1;
            flex: 0.1;
  }
  .price-table__cell--label-sp::before, .price-table__cell--row-header::before, .price-table__cell--label-sp::after, .price-table__cell--row-header::after {
    content: none !important;
  }
}
.price-table__number {
  font-size: 1.5rem;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .price-table__number {
    font-size: 18px;
    margin-right: 5px;
  }
}

.menu__main-text {
  font-size: 48px;
  font-family: Marcellus, Regular;
  color: #CA7F13;
  line-height: 1;
}

.menu__sub-text {
  font-size: 14px;
  color: #CA7F13;
  white-space: nowrap;
  font-family: 游明朝, Regular;
}

.custom-info {
  margin: 80px 180px;
}
@media screen and (max-width: 767px) {
  .custom-info {
    margin: 0px;
  }
}
.custom-info__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .custom-info__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
    margin: 80px 30px;
  }
}
.custom-info__figure {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .custom-info__figure {
    width: 240px;
  }
}
.custom-info__image {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.custom-info__image:hover {
  opacity: 0.9;
}
.custom-info__body {
  -webkit-box-flex: 1.5;
      -ms-flex: 1.5;
          flex: 1.5;
}
.custom-info__title {
  font-size: 48px;
  font-family: 游明朝, Regular;
  color: #CA7F13;
  padding: 10px 0 54px;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .custom-info__title {
    font-size: 48px;
    text-align: left;
    padding-top: 0;
    padding-bottom: 12px;
  }
}
.custom-info__text {
  font-size: 18px;
  font-family: Marcellus, Regular;
  color: #CA7F13;
  line-height: 1.8;
  margin: 0;
  letter-spacing: 4px;
}
@media screen and (max-width: 767px) {
  .custom-info__text {
    font-size: 14px;
    letter-spacing: 4px;
    line-height: 2;
  }
}

.faq__intro {
  margin: 120px 120px 60px 120px;
}
@media screen and (max-width: 767px) {
  .faq__intro {
    margin: 150px 30px 40px 30px;
  }
}

.faq__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 180px;
  margin-right: 180px;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .faq__inner {
    margin-left: 30px;
    margin-right: 30px;
  }
}

.faq__item {
  position: relative;
  border: 2px solid #D4CEBE;
  overflow: hidden;
  width: 100%;
  margin: 16px 0px;
  background: #D4CEBE;
  -webkit-transition: opacity 0.8s ease, background-color 0.3s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, background-color 0.3s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, background-color 0.3s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, background-color 0.3s ease, -webkit-transform 0.8s ease;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.faq__item.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-fadeUp {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
.js-fadeUp.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

button.faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  position: relative;
}

.faq__icon {
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq__icon i {
  font-size: 1.2rem;
}

.faq__item.is-active .faq__icon {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

h3.faq__item--title {
  color: #CA7F13;
  letter-spacing: 0.72px;
  line-height: 1.6;
  font-size: 18px;
  font-family: 游明朝, Regular;
}
@media screen and (max-width: 767px) {
  h3.faq__item--title {
    font-size: 14px;
    padding-right: 25px;
  }
}

span.faq__item--question {
  font-size: 24px;
  text-transform: uppercase;
  margin-right: 20px;
  font-weight: bold;
  color: #CA7F13;
  font-family: 游明朝, Regular;
}
@media screen and (max-width: 767px) {
  span.faq__item--question {
    font-size: 18px;
  }
}

.faq__answer {
  display: none;
  width: 100%;
}

.faq__answer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 16px 20px;
  line-height: 1.6;
  color: #CA7F13;
}

span.faq__item--answer {
  font-size: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 20px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: 游明朝, Regular;
}
@media screen and (max-width: 767px) {
  span.faq__item--answer {
    font-size: 18px;
  }
}

p.faq__item--ttl {
  color: #CA7F13;
  letter-spacing: 0.72px;
  line-height: 1.6;
  font-size: 18px;
  font-family: 游明朝, Regular;
}

.reserve {
  position: relative;
  z-index: 1;
  width: 100%;
  background-image: url("/img/reserve-link-pc.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.reserve::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #464646;
  opacity: 0.8;
}

.reserve__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 400px;
  padding: 150px 0;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.reserve__link:hover {
  opacity: 0.9;
}
@media screen and (max-width: 767px) {
  .reserve__link {
    height: 200px;
    padding: 40px 0;
  }
}

.reserve__intro {
  text-align: center;
}
.reserve__intro .section__heading--en {
  display: block;
  color: #CA7F13;
  font-family: Marcellus, Regular;
  font-size: 80px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .reserve__intro .section__heading--en {
    font-size: 40px;
  }
}
.reserve__intro .section__heading--ja {
  display: block;
  color: #fff;
  font-size: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  .reserve__intro .section__heading--ja {
    font-size: 16px;
  }
}

div#salon-shop {
  margin-top: 120px;
  margin-left: 120px;
  margin-right: 120px;
}
@media screen and (max-width: 767px) {
  div#salon-shop {
    margin-top: 110px;
    margin-left: 16px;
    margin-right: 16px;
  }
}

/* 都道府県ナビゲーション */
.prefecture-nav {
  margin-top: 120px;
  margin-bottom: 80px;
  margin-left: 60px;
}
@media screen and (max-width: 767px) {
  .prefecture-nav {
    margin-top: 80px;
    margin-bottom: 80px;
    margin-left: 34px;
  }
}
.prefecture-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 30px 60px;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .prefecture-nav__list {
    gap: 15px 20px;
  }
}
.prefecture-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  text-decoration: none;
  color: #CA7F13;
  font-family: "Marcellus", serif;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 48px;
  line-height: 1.4;
  letter-spacing: 3px;
}
@media screen and (max-width: 767px) {
  .prefecture-nav__link {
    font-size: 20px;
    letter-spacing: 1px;
  }
}
.prefecture-nav__link::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 10px;
  border-color: transparent transparent transparent #54372D;
  margin-right: 15px;
  vertical-align: middle;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.prefecture-nav__link:hover {
  opacity: 0.6;
}
.prefecture-nav__link span {
  font-size: 14px;
  color: #CA7F13;
  margin-left: 16px;
  font-family: sans-serif;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .prefecture-nav__link span {
    font-size: 10px;
    margin-left: 8px;
  }
}

/* 店舗エリア（Tokyoバーなど） */
.shop-list {
  margin-bottom: 80px;
  padding-left: 14px;
  padding-right: 14px;
}
.shop-list__category-title {
  background-color: #CA7F13;
  color: #fff;
  text-align: center;
  padding: 30px 15px;
  font-family: "Marcellus", serif;
  font-size: 48px;
  letter-spacing: 0.1em;
  margin-bottom: 60px;
  line-height: 60px;
}
@media screen and (max-width: 767px) {
  .shop-list__category-title {
    font-size: 24px;
    margin-bottom: 40px;
    padding: 0 15px;
  }
}
.shop-list__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 60px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 767px) {
  .shop-list__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media screen and (max-width: 767px) {
  div#tokyo {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* 店舗カード */
.shop-card__map {
  aspect-ratio: 16/9;
  margin-bottom: 8px;
  overflow: hidden;
}
.shop-card__map iframe,
.shop-card__map img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.shop-card__map:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.shop-card__title-en {
  color: #CA7F13;
  font-family: "Marcellus", serif;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 8px;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .shop-card__title-en {
    font-size: 20px;
    margin-bottom: 5px;
  }
}
.shop-card__title-ja {
  font-size: 16px;
  font-weight: bold;
  color: #CA7F13;
  margin-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .shop-card__title-ja {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.8;
  }
}
.shop-card__address {
  font-size: 14px;
  color: #333333;
  line-height: 0.8;
  letter-spacing: 1.2px;
}

p.shop-card__title-ja {
  color: #CA7F13;
  font-family: 游明朝, Regular;
}

h4.shop-card__title-ja {
  color: #CA7F13;
  font-family: 游明朝, Regular;
  font-size: 32px;
}

/* ==========================================================================
   追加：店舗個別ページ用 (Shop Flow, Staff, Info)
   ========================================================================== */
.section.shop-details {
  position: absolute;
  z-index: 1;
  background-color: #F9F8F6;
}
.shop-concept__inner--ttl {
  letter-spacing: 2px;
  color: #333333;
  opacity: 1;
  font-size: 20px;
  line-height: 2;
  text-align: center;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .shop-concept__inner--ttl {
    text-align: left;
    font-size: 14px;
    letter-spacing: 1.4px;
    line-height: 2.2;
  }
}

/* ==========================================================================
   店舗個別ページ共通設定
   ========================================================================== */
#salon-shop {
  position: relative;
  z-index: 1;
  background-color: #F9F8F6;
  margin-top: 0;
}

/* ==========================================================================
   FLOWセクション (PCとSPでレイアウトを出し分け)
   ========================================================================== */
.shop-flow {
  background-color: #F9F8F6;
  padding: 120px 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .shop-flow {
    padding: 110px 0 80px 0;
  }
}
.shop-flow__container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .shop-flow__container {
    padding: 0 30px;
  }
}
.shop-flow .flow-list {
  margin: 0 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
}
@media screen and (max-width: 767px) {
  .shop-flow .flow-list {
    margin: 0;
    gap: 40px;
    margin-top: 60px;
  }
}
.shop-flow .flow-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
  /* --- PCとSPで画像の左右を出し分け --- */
}
@media screen and (max-width: 767px) {
  .shop-flow .flow-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}
.shop-flow .flow-item .flow-image-side {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 180px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .shop-flow .flow-item .flow-image-side {
    width: 100px;
    top: 0;
    -webkit-transform: none;
            transform: none;
  }
}
.shop-flow .flow-item:nth-of-type(1) .flow-image-side, .shop-flow .flow-item:nth-of-type(5) .flow-image-side {
  right: -240px;
  left: auto;
}
@media screen and (max-width: 767px) {
  .shop-flow .flow-item:nth-of-type(1) .flow-image-side, .shop-flow .flow-item:nth-of-type(5) .flow-image-side {
    left: -40px;
    right: auto;
  }
}
.shop-flow .flow-item:nth-of-type(3) .flow-image-side {
  left: -240px;
  right: auto;
}
@media screen and (max-width: 767px) {
  .shop-flow .flow-item:nth-of-type(3) .flow-image-side {
    right: -40px;
    left: auto;
  }
}
@media screen and (max-width: 767px) {
  .shop-flow .flow-content {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.shop-flow .flow-number {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #949E33;
  color: #fff;
  font-family: "Marcellus", serif;
  font-size: 32px;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .shop-flow .flow-number {
    font-size: 24px;
    margin-bottom: 15px;
  }
}
.shop-flow .flow-item-title {
  font-size: 24px;
  font-weight: bold;
  color: #CA7F13;
  margin-bottom: 15px;
  font-family: "Yu Mincho", serif;
}
.shop-flow .flow-item-ttl {
  font-size: 18px;
  line-height: 2;
  color: #CA7F13;
  text-align: left;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .shop-flow .flow-item-ttl {
    font-size: 14px;
    letter-spacing: 1.4px;
    text-align: left;
  }
}
.shop-flow .flow-image-side img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   Staff セクション (ダーク背景)
   ========================================================================== */
.shop-staff {
  background-color: #444444;
  padding: 80px 0;
  color: #CA7F13;
}
@media screen and (max-width: 767px) {
  .shop-staff {
    padding: 60px 0;
  }
}
.shop-staff__container {
  max-width: 1080px;
  margin: 0 180px;
}
@media screen and (max-width: 767px) {
  .shop-staff__container {
    padding: 0 30px;
    margin: 0;
  }
}
.shop-staff .staff-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .shop-staff .staff-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.shop-staff .staff-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 400px;
          flex: 0 0 400px;
}
@media screen and (max-width: 767px) {
  .shop-staff .staff-image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 300px;
  }
}
.shop-staff .staff-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.shop-staff .staff-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .shop-staff .staff-info {
    text-align: left;
  }
}
.shop-staff .staff-title {
  font-family: "Marcellus", serif;
  font-size: 48px;
  margin-bottom: 30px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .shop-staff .staff-title {
    font-size: 36px;
    margin-bottom: 20px;
  }
}
.shop-staff .staff-title-sub {
  font-size: 14px;
  margin-left: 15px;
  font-family: "Yu Mincho", serif;
  font-weight: normal;
  vertical-align: middle;
}
.shop-staff .staff-description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: justify;
  letter-spacing: 4.6px;
}
@media screen and (max-width: 767px) {
  .shop-staff .staff-description {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 1.7px;
  }
}
.shop-staff .staff-name {
  font-family: "Marcellus", serif;
  font-size: 24px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .shop-staff .staff-name {
    font-size: 20px;
  }
}
.shop-staff .staff-name .staff-role {
  font-size: 12px;
  font-family: "Yu Mincho", serif;
  margin-left: 10px;
}

/* ==========================================================================
   Info セクション (ベージュ背景)
   ========================================================================== */
.shop-info {
  background-color: #D6D2C4;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .shop-info {
    padding: 60px 0;
  }
}
.shop-info__container {
  max-width: 1080px;
  margin: 0 180px;
}
@media screen and (max-width: 767px) {
  .shop-info__container {
    padding: 0 30px;
    margin: 0;
  }
}
.shop-info .info-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 140px;
}
@media screen and (max-width: 767px) {
  .shop-info .info-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 40px;
  }
}
.shop-info .info-table-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
.shop-info .info-table {
  width: 100%;
  border-collapse: collapse;
}
.shop-info .info-table__row {
  border-bottom: 1px solid #CA7F13;
}
.shop-info .info-table__header {
  width: 100px;
  padding: 20px 0;
  text-align: left;
  font-weight: bold;
  color: #CA7F13;
  font-size: 20px;
  font-family: 游明朝, Demibold;
}
@media screen and (max-width: 767px) {
  .shop-info .info-table__header {
    padding: 15px 0;
    font-size: 15px;
  }
}
.shop-info .info-table__data {
  padding: 20px 0;
  color: #333;
  font-size: 14px;
  font-family: 游ゴシック, Regular;
}
@media screen and (max-width: 767px) {
  .shop-info .info-table__data {
    padding: 15px 0;
    font-size: 12px;
  }
}
.shop-info .info-map {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 450px;
          flex: 0 0 450px;
  aspect-ratio: 16/10;
  background-color: #eee;
}
@media screen and (max-width: 767px) {
  .shop-info .info-map {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    overflow: hidden;
  }
}
.shop-info .info-map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.shop-concept__intro {
  margin-top: 120PX;
}
@media screen and (max-width: 767px) {
  .shop-concept__intro {
    margin-top: 80PX;
  }
}

/* ==========================================================================
   アクション（ボタン）エリア
   ========================================================================== */
.shop-action {
  padding: 80px 0;
  text-align: center;
  background-color: #F9F8F6;
}
@media screen and (max-width: 767px) {
  .shop-action {
    padding: 80px 100px;
  }
}
.shop-action .btn-gold {
  display: inline-block;
  background-color: #949E33;
  color: #fff;
  padding: 15px 60px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.shop-action .btn-gold:hover {
  opacity: 0.8;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
@media screen and (max-width: 767px) {
  .shop-action .btn-gold {
    width: 80%;
    padding: 12px 0;
  }
}

@media screen and (max-width: 767px) {
  .shop-action .btn-gold {
    width: 100%;
    padding: 12px 0;
    font-family: 游明朝, Demibold;
    font-size: 14px;
  }
}

/* 施術の流れリストのベース */
.flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; /* 幅が足りなくなったら折り返す */
  gap: 30px; /* ステップ間の余白 */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 1〜2枚のときも中央寄せ */
  margin-top: 50px;
}

.flow-item {
  /* 3枚並びを基本としつつ、最低幅300pxを確保 */
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 20px);
          flex: 0 1 calc(33.333% - 20px);
  min-width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.flow-image {
  width: 100%;
  margin-bottom: 20px;
}
.flow-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

/* スマホ対応：768px以下は1枚ずつ縦並び */
@media (max-width: 768px) {
  .flow-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    min-width: 100%;
  }
}
.footer {
  background-color: #fdfaf7;
  color: #6d5b4b;
  text-align: center;
  padding: 0 430px;
  position: relative;
  z-index: 10;
}
.footer__container {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footer__container {
    padding-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding-left: 48px;
    padding-right: 48px;
  }
}
.footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
.footer__logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer__logo-link:hover {
  opacity: 0.7;
}
.footer__logo-link img {
  width: 54px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .footer__logo-link img {
    width: 44px;
  }
}
.footer__logo-text {
  font-size: 28px;
  font-family: "Marcellus", sans-serif;
  color: #54372D;
  letter-spacing: 0.18em;
  width: 180PX;
  text-align: left;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .footer__logo-text {
    font-size: 20px;
  }
}
.footer__menu--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px 0;
  list-style: none;
  padding: 0;
  max-width: 800px;
}
@media screen and (max-width: 767px) {
  .footer__menu--list {
    gap: 12px 0;
  }
}
.footer__menu--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  color: #54372D;
  letter-spacing: 2.2px;
}
@media screen and (max-width: 767px) {
  .footer__menu--item {
    font-size: 14px;
  }
}
.footer__menu--item:not(:last-child)::after {
  content: "|";
  margin: 0 15px;
  opacity: 0.4;
}
@media screen and (max-width: 767px) {
  .footer__menu--item:not(:last-child)::after {
    margin: 0 8px;
  }
}
.footer__link-item {
  text-decoration: none;
  color: inherit;
  text-transform: capitalize;
}
.footer__link-item:hover {
  text-decoration: underline;
}
.footer__copyright {
  margin-top: 50px;
  font-size: 12px;
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    margin-top: 40px;
  }
}

.to-top {
  position: fixed;
  right: 40px;
  bottom: 15px;
  width: 80px;
  height: 80px;
  background-color: #94a444;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}
.to-top:hover {
  background-color: #7d8b3a;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.to-top__arrow {
  width: 26px;
  height: 26px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .to-top__arrow {
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 767px) {
  .to-top {
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
  }
}

/* ==========================================================================
   Reserve Section
   ========================================================================== */
.reserve-contact {
  background-color: #F9F8F6;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .reserve-contact {
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 767px) {
  .reserve__inner {
    padding: 0 30px;
    margin: 0;
  }
}

/* 未成年のお客様エリア */
.reserve__minor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 120px;
  gap: 100px;
}
@media screen and (max-width: 767px) {
  .reserve__minor {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-top: 60px;
    gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.reserve__minor-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .reserve__minor-text {
    text-align: left;
  }
}
.reserve__minor-title {
  font-size: 32px;
  color: #CA7F13;
  letter-spacing: 0.1em;
  line-height: 1.4;
  font-family: 游明朝, Regular;
  margin-bottom: 42px;
}
@media screen and (max-width: 767px) {
  .reserve__minor-title {
    font-size: 24px;
    margin-bottom: 16px;
    line-height: 1.6;
  }
}
.reserve__minor-desc {
  font-size: 16px;
  color: #CA7F13;
  letter-spacing: 0.05em;
  line-height: 2;
  font-family: 游ゴシック, Regular;
}
@media screen and (max-width: 767px) {
  .reserve__minor-desc {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 1.4px;
  }
}
.reserve__minor-download {
  background-color: #D4CEBE;
  padding: 30px;
  width: 240px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .reserve__minor-download {
    padding: 20px;
    height: 147px;
  }
}

.reserve__download-label {
  font-size: 18px;
  color: #CA7F13;
  margin-bottom: 15px;
  font-weight: bold;
  display: block;
  font-family: 游ゴシック, Medium;
}
@media screen and (max-width: 767px) {
  .reserve__download-label {
    font-size: 16px;
  }
}

/* TELエリア */
.reserve__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .reserve__tel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 32px;
    text-align: center;
  }
}
.reserve__tel-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 60px;
}
@media screen and (max-width: 767px) {
  .reserve__tel-info {
    padding-right: 0;
    width: 100% !important;
    margin-bottom: 40px;
  }
}
.reserve__tel-title {
  font-size: 48px;
  color: #CA7F13;
  font-family: Marcellus, Regular;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .reserve__tel-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
.reserve__tel-desc {
  font-size: 15px;
  color: #CA7F13;
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-family: 游ゴシック, Regular;
}
@media screen and (max-width: 767px) {
  .reserve__tel-desc {
    font-size: 14px;
    text-align: left;
  }
}
.reserve__tel-number-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  min-width: 400px;
}
.reserve__tel-number-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 140px;
  background-color: #CA7F13;
}
@media screen and (max-width: 767px) {
  .reserve__tel-number-block::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .reserve__tel-number-block {
    min-width: auto;
    width: 100%;
  }
}
.reserve__tel-number {
  font-size: 32px;
  color: #CA7F13;
  font-family: Marcellus, Regular;
  text-decoration: none;
  letter-spacing: 0.05em;
  line-height: 1.2;
  display: block;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .reserve__tel-number {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
.reserve__tel-time {
  font-size: 14px;
  color: #CA7F13;
  border: 1px solid #CA7F13;
  border-radius: 50px;
  padding: 6px 30px;
  letter-spacing: 0.1em;
  display: inline-block;
  white-space: nowrap;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .reserve__tel-time {
    font-size: 12px;
    padding: 6px 20px;
    width: 100%;
    max-width: 280px;
  }
}

/* ==========================================================================
   Mail Form Section
   ========================================================================== */
section.contact {
  background-color: #EDE9E4;
}

.mail-form__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 80px;
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .mail-form__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    margin-bottom: 60px;
    margin-left: 15px;
    margin-right: 15px;
  }
}
.mail-form__title-group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 96px;
}
@media screen and (max-width: 767px) {
  .mail-form__title-group {
    padding-right: 0;
    margin-bottom: 32px;
  }
}
.mail-form__title-en {
  font-size: 48px;
  color: #CA7F13;
  font-family: Marcellus, Regular;
  letter-spacing: 0.1em;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .mail-form__title-en {
    font-size: 32px;
    text-align: left;
  }
}
.mail-form__title-desc {
  font-size: 14px;
  font-family: 游ゴシック, Regular;
  color: #333333;
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .mail-form__title-desc {
    font-size: 14px;
  }
}
.mail-form__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 26px;
  height: 183px;
}
@media screen and (max-width: 767px) {
  .mail-form__steps {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10px;
    padding-top: 0;
    height: 130px;
  }
}
.mail-form__step {
  text-align: center;
  color: #BDBDBD;
  position: relative;
  width: 100px;
}
@media screen and (max-width: 767px) {
  .mail-form__step {
    width: 30%;
  }
}
.mail-form__step::before, .mail-form__step::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #707070;
}
.mail-form__step::before {
  top: 0px;
}
.mail-form__step::after {
  bottom: 0px;
}
.mail-form__step.is-active {
  color: #CA7F13;
}
.mail-form__step.is-active::before, .mail-form__step.is-active::after {
  background-color: #CA7F13;
}
.mail-form__step-num {
  display: block;
  font-family: Marcellus, Regular;
  margin-bottom: 16px;
  margin-top: 57px;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .mail-form__step-num {
    font-size: 14px;
    margin-top: 40px;
  }
}
.mail-form__step-txt {
  display: block;
  font-size: 24px;
  white-space: nowrap;
  font-family: 游明朝, Regular;
}
@media screen and (max-width: 767px) {
  .mail-form__step-txt {
    font-size: 16px;
  }
}
.mail-form__list {
  display: block;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .mail-form__list {
    padding-left: 30px;
    padding-right: 16px;
  }
}
.mail-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 32px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .mail-form__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .mail-form__item:last-child {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 767px) {
  .mail-form__item--wide {
    width: 309px;
  }
}
.mail-form__label {
  width: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 10px;
  font-size: 16px;
  color: #707070;
  font-family: 游明朝, Regular;
}
@media screen and (max-width: 767px) {
  .mail-form__label {
    width: 100%;
    margin-bottom: 12px;
    padding-top: 0;
  }
}
.mail-form__tag {
  display: inline-block;
  padding: 7px 0px;
  font-size: 12px;
  color: #fff;
  margin-right: 16px;
  border-radius: 12px;
  min-width: 60px;
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #B7B09E;
  font-family: 游明朝, Regular;
}
.mail-form__tag--required {
  background-color: #4B3E35;
}
.mail-form__input-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
.mail-form__input-area .mail-form__input,
.mail-form__input-area .mail-form__textarea {
  width: 100%;
  border: 1px solid #fff;
  background-color: #fff;
  font-size: 15px;
}
.mail-form__input-area .mail-form__input:focus,
.mail-form__input-area .mail-form__textarea:focus {
  outline: 1px solid #CA7F13;
}
.mail-form__input-area .mail-form__input {
  height: 50px;
  padding: 0 16px;
}
.mail-form__input-area .mail-form__textarea {
  height: 180px;
  padding: 16px;
  display: block;
}
.mail-form__input-area--date {
  position: relative;
  max-width: 400px;
}
.mail-form__input-area--date .mail-form__input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 60px;
  z-index: 1;
}
.mail-form__input-area--date .mail-form__input::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  cursor: pointer;
  opacity: 0;
  z-index: 5;
}
.mail-form__input-area--date::after {
  content: "\f073";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: #CA7F13;
  pointer-events: none;
  z-index: 2;
}
.mail-form__confirm-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 10px;
  font-size: 16px;
  color: #707070;
  font-family: 游ゴシック, Regular;
  width: 596px;
  letter-spacing: 1.4px;
}
@media screen and (max-width: 767px) {
  .mail-form__confirm-text {
    width: auto;
    font-size: 14px;
    letter-spacing: 1px;
  }
}
.mail-form__checkbox-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .mail-form__checkbox-grid {
    gap: 24px;
  }
}
.mail-form__checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .mail-form__checkbox-group {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 15px;
  }
}
.mail-form__group-label {
  font-size: 14px;
  color: #707070;
  width: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: 游ゴシック, Regular;
}
@media screen and (max-width: 767px) {
  .mail-form__group-label {
    width: 100%;
  }
}
.mail-form__checkbox-flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  color: #333333;
  font-family: 游ゴシック, Regular;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .mail-form__checkbox-flex {
    grid-template-columns: 1fr;
  }
}
.mail-form__check-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: #333333;
  font-family: 游ゴシック, Regular;
  cursor: pointer;
}
.mail-form__check-label input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 31px;
  height: 31px;
  background: #fff;
  margin-right: 13px;
  position: relative;
}
.mail-form__check-label input[type=checkbox]:checked {
  background-color: #CA7F13;
}
.mail-form__check-label input[type=checkbox]:checked::after {
  content: "✔";
  color: #fff;
  font-size: 14px;
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mail-form__note {
  font-size: 12px;
  color: #333333;
  font-family: 游ゴシック, Regular;
  margin-top: 10px;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.mail-form__submit {
  text-align: center;
  margin-top: 32px;
  padding-bottom: 80px;
}
.mail-form__submit .btn {
  width: 160px;
  height: 40px;
  background-color: #949E33;
  color: #fff;
  border-radius: 27px;
  font-weight: bold;
  font-size: 16px;
  border: none;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.mail-form__submit .btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .mail-form__submit .btn {
    margin: 0;
  }
}

h3.mail-form__completion-title {
  font-size: 36px;
  color: #CA7F13;
  font-family: 游明朝, Regular;
  text-align: center;
  margin-bottom: 32px;
  line-height: 2.6;
}
@media screen and (max-width: 767px) {
  h3.mail-form__completion-title {
    font-size: 24px;
    letter-spacing: 4.2px;
    line-height: 1.6;
    text-align: left;
  }
}

.mail-form__completion-link-wrap {
  font-size: 18px;
  color: #CA7F13;
  font-family: 游ゴシック;
  line-height: 1.6;
  text-decoration: underline;
  margin-left: 140px;
  padding-bottom: 95px;
}
@media screen and (max-width: 767px) {
  .mail-form__completion-link-wrap {
    padding: 0;
    font-size: 14px;
    line-height: 2.1;
    padding-bottom: 60px;
    margin-left: 0;
  }
}

p.mail-form__completion-text {
  font-size: 18px;
  color: #CA7F13;
  font-family: 游ゴシック, Regular;
  line-height: 1.6;
  text-align: left;
  margin-left: 140px;
}
@media screen and (max-width: 767px) {
  p.mail-form__completion-text {
    padding: 0;
    font-size: 14px;
    line-height: 2.1;
    margin-left: 0;
  }
}

.mail-form__completion-message {
  max-width: 662px;
  margin-inline: auto;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .mail-form__completion-message {
    max-width: 100%;
    padding: 0 15px;
  }
}

div#salons {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  div#salons {
    margin-top: 80px;
  }
}

.reserve__inner.container {
  margin-left: 180px;
  margin-right: 180px;
}
@media screen and (max-width: 767px) {
  .reserve__inner.container {
    margin-left: 0;
    margin-right: 0;
  }
}