/*
Theme Name: VALENTINE ROSE
*/

@charset "UTF-8";

body {
  background-color: #F9F8F6;
  font-family: "Marcellus", serif, "Yu Gothic", "游ゴシック体", "Hiragino Kaku Gothic ProN", sans-serif;
  /* 最後の保険フォント */
  font-style: normal;
}

.en {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
}

.heading__title {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 84px;
  color: #CA7F13;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .heading__title {
    font-size: 48px;
    line-height: 1.25;
    letter-spacing: 0.04em;
  }
}

.heading__title::after {
  font-family: "annabelle-jf", "Parisienne", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 120px;
  letter-spacing: normal;
  line-height: 1.4;
  color: rgba(202, 127, 19, 0.0784313725);
  pointer-events: none;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .heading__title::after {
    font-size: 72px;
    line-height: 1.403;
  }
}

.heading__subtitle {
  font-family: "Yu Mincho", "游明朝", "YuMincho", serif;
  font-weight: 400;
  /* Regular（標準の太さ） */
  font-size: 14px;
  color: #CA7F13;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .heading__subtitle {
    font-size: 12px;
    line-height: 0.667;
  }
}

button:focus,
a:focus {
  outline: none;
}

.button {
  background-color: #949E33;
  border-radius: 40px;
  opacity: 1;
  color: #FFFFFF;
  text-decoration: none;
}

@media (hover: hover) {
  .button:hover {
    background-color: #a6b23a;
    transform: translateY(-1px);
  }
}
.page__title-area {
  background-color: #D4CEBE;
  height: 533px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page__title-area {
    height: 280px;
  }
}
.page__title-area .page-title {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 80px;
  color: #CA7F13;
  letter-spacing: 0.1em;
  transform: translateY(86px);
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .page__title-area .page-title {
    font-size: 32px;
  }
}

.breadcrumb__list {
  font-family: "Yu Gothic", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  color: #CA7F13;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .breadcrumb__list {
    font-size: 14px;
  }
}
.breadcrumb__list .breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  /* 長いテキストが折り返せるように */
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb__list .breadcrumb__list .breadcrumb__item {
  display: inline-flex;
  /* ←重要 */
  align-items: center;
  margin-right: 0.5em;
  white-space: normal;
  /* ←折り返しを許可 */
}
.breadcrumb__list .breadcrumb__list .breadcrumb__item .breadcrumb__separator {
  margin: 0 0.5em;
  /* 区切り記号の左右余白 */
}
.breadcrumb__list .breadcrumb__list .breadcrumb__item .breadcrumb__link {
  text-decoration: none;
  color: inherit;
}

/* hover 設定 */
@media (hover: hover) {
  .breadcrumb__link:hover {
    opacity: 0.5;
    transition: 0.3s;
    text-decoration: underline;
  }
}
.container--1080 {
  max-width: calc(1080px + 2vw);
  margin: 0 auto;
  padding: 0 1vw;
}

.container--1200 {
  max-width: calc(1200px + 2vw);
  margin: 0 auto;
  padding: 0 1vw;
}

.container--1305 {
  max-width: calc(1305px + 2vw);
  margin: 0 auto;
  padding: 0 1vw;
}

.js-fadeUp {
  opacity: 0;
  transform: translateY(50px);
  /* ← 少し大きめに動かすと印象がソフトに */
  transition: opacity 1.2s ease-out, transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  /* ← 柔らかいイーズで自然に */
  z-index: 10;
  position: relative;
}

.js-fadeUp.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.header.is-sub {
  background: #F9F8F6;
}

.header.is-top {
  background: transparent;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3000;
  background: transparent;
  height: 173px;
}
@media screen and (max-width: 768px) {
  .header {
    height: 80px;
  }
}
.header .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px 50px 0px 48px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .header .header__inner {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0 20px;
    z-index: 2000;
    justify-content: space-between;
  }
}
@media (hover: hover) {
  .header .header__inner .header__brand:hover .header__logo-image,
  .header .header__inner .header__brand:hover .header__logo-text {
    opacity: 0.5;
    /* 少し薄くする */
    transition: opacity 0.3s ease;
    /* なめらかに変化 */
  }
}
.header .header__inner .header__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.header .header__inner .header__brand img {
  width: 64px;
  height: 64px;
}
@media screen and (max-width: 950px) {
  .header .header__inner .header__brand img {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 2000;
  }
}
.header .header__inner .header__brand .header__logo-text {
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.2em;
  color: #54372D;
}
@media screen and (max-width: 950px) {
  .header .header__inner .header__brand .header__logo-text {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .header .header__inner .header__brand .header__logo-text {
    display: none;
  }
}
.header .header__inner .header__nav--pc .header__nav-list {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header .header__inner .header__nav--pc .header__nav-list {
    display: none;
  }
}
.header .header__inner .header__nav--pc .header__nav-list .header__nav-link {
  color: #54372D;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0.1em;
  display: inline-block;
}
@media screen and (max-width: 950px) {
  .header .header__inner .header__nav--pc .header__nav-list .header__nav-link {
    font-size: 14px;
  }
}
@media (hover: hover) {
  .header .header__inner .header__nav--pc .header__nav-list .header__nav-link:hover {
    color: #CA7F13;
    transform: translateY(-1px);
    /* ほんの少し浮く演出 */
  }
}
.header .header__inner .header__nav--pc .header__nav-list .button--reserve {
  position: relative;
  /* ← アイコンを自由に動かすため */
  display: flex;
  justify-content: center;
  /* テキストだけ中央に寄せる */
  align-items: center;
  width: 200px;
  height: 50px;
  color: #FFFFFF;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background 0.3s ease;
}
@media screen and (max-width: 950px) {
  .header .header__inner .header__nav--pc .header__nav-list .button--reserve {
    width: 160px;
    height: 40px;
  }
}
.header .header__inner .header__nav--pc .header__nav-list .button--reserve i {
  position: absolute;
  left: 24px;
  font-size: 18px;
  line-height: 1;
}
.header .header__inner .header__nav--sp {
  display: none;
  /* 開いた状態 */
}
@media screen and (max-width: 768px) {
  .header .header__inner .header__nav--sp {
    display: block;
  }
}
.header .header__inner .header__nav--sp .header__hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 9px;
  width: 100px;
  height: 30px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transform: translateY(-6px);
  /* ハンバーガーアイコン（三本線） */
}
.header .header__inner .header__nav--sp .header__hamburger .button__text {
  white-space: nowrap;
  /* 折り返さない */
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.571;
  letter-spacing: 0.1em;
}
.header .header__inner .header__nav--sp .header__hamburger .hamburger-lines {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 12px;
  /* 三本線の横幅を少し小さめに */
  height: 10px;
  /* 三本線全体の高さも少し縮める */
  flex-shrink: 0;
  /* 縮まないように固定 */
}
.header .header__inner .header__nav--sp .header__hamburger .hamburger-lines .hamburger-line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  border-radius: 2px;
}
.header .header__inner .header__nav--sp .header__hamburger.active {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  justify-content: center;
  padding: 0;
  position: relative;
  z-index: 2000;
  transform: translateY(-6px);
}
.header .header__inner .header__nav--sp .header__hamburger.active .button__text {
  opacity: 0;
  pointer-events: none;
}
.header .header__inner .header__nav--sp .header__hamburger.active .hamburger-lines {
  position: absolute;
  /* ← 丸ボタン内で絶対配置 */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 中央に配置 */
  width: 16px;
  height: 16px;
}
.header .header__inner .header__nav--sp .header__hamburger.active .hamburger-lines .hamburger-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}
.header .header__inner .header__nav--sp .header__hamburger.active .hamburger-lines .hamburger-line:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.header .header__inner .header__nav--sp .header__hamburger.active .hamburger-lines .hamburger-line:nth-child(2) {
  opacity: 0;
}
.header .header__inner .header__nav--sp .header__hamburger.active .hamburger-lines .hamburger-line:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#js-nav.active {
  transform: translateX(0);
  opacity: 1;
}

#js-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #D4CEBE;
  z-index: 1001;
  /* 初期状態は右に隠す ＋ 透明 */
  transform: translateX(100%);
  opacity: 0;
  /* 開閉の両方をふんわり動かす */
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
}
#js-nav .header__nav-list {
  padding-left: 60px;
  padding-top: 144px;
}
#js-nav .header__nav-list .header__nav-item {
  margin-bottom: 12px;
}
#js-nav .header__nav-list .header__nav-item .header__nav-link {
  font-size: 24px;
  color: #CA7F13;
  line-height: 1.25;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (hover: hover) {
  #js-nav .header__nav-list .header__nav-item .header__nav-link:hover {
    color: #ce9950;
    transform: translateY(-1px);
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}

/* オーバーレイも同様にフェード */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
  z-index: 1000;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.fv {
  width: 100%;
  height: auto;
  position: relative;
}
.fv picture,
.fv img {
  display: block;
  width: 100%;
  height: auto;
}
.fv .fv__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fv .fv__inner .fv-content {
  position: absolute;
  top: 46%;
  left: 3%;
  transform: translateY(-30%);
  /* ↑中央よりちょっと上に調整 */
}
@media screen and (max-width: 768px) {
  .fv .fv__inner .fv-content {
    top: 54%;
  }
}
.fv .fv__inner .fv-content .fv__title {
  font-size: 64px;
  color: #FFFFFF;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 300;
}
@media screen and (max-width: 1200px) {
  .fv .fv__inner .fv-content .fv__title {
    font-size: 48px;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1607843137);
  }
}
@media screen and (max-width: 768px) {
  .fv .fv__inner .fv-content .fv__title {
    font-size: 32px;
  }
}
.fv .fv__inner .fv-content .sp-only {
  display: none;
}
@media screen and (max-width: 1200px) {
  .fv .fv__inner .fv-content .sp-only {
    display: inline;
  }
}

/*  NEWSセクション */
.news {
  padding: 190px 0px 200px 0px;
  /* View Allボタンは単独で定義する */
}
@media screen and (max-width: 768px) {
  .news {
    padding: 60px 30px 120px 30px;
  }
}
@media (max-width: 1250px) {
  .news {
    padding: 190px 20px 200px 20px;
  }
}
.news .news__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .news .news__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.news .news__header .news__heading .news__title {
  position: relative;
  line-height: 1.262;
  z-index: 1;
  /* 飾り文字より手前に */
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .news .news__header .news__heading .news__title {
    left: 10px;
  }
}
.news .news__header .news__heading .news__title::after {
  content: "News";
  top: 30%;
  left: 90px;
  transform: translateY(-50%);
  position: absolute;
  z-index: -1;
  text-transform: none;
}
@media screen and (max-width: 768px) {
  .news .news__header .news__heading .news__title::after {
    left: 55px;
  }
}
@media screen and (max-width: 768px) {
  .news .news__header .news__heading .news__subtitle {
    position: absolute;
    left: 10px;
  }
}
.news .news__viewall {
  width: 160px;
  height: 40px;
  font-family: "Yu Mincho";
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 40px;
  display: inline-block;
  /* PCでもそのまま */
}
@media screen and (max-width: 768px) {
  .news .news__viewall {
    display: block;
    margin: 21px auto 0;
    width: 120px;
    height: 30px;
    font-size: 12px;
    line-height: 30px;
  }
}
.news .news__list {
  display: flex;
  gap: 0;
  /* gapを使うとborderがズレるので0に */
  width: 100%;
}
@media screen and (max-width: 768px) {
  .news .news__list {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .news .news__list .news__item:first-child {
    border-bottom: 2px solid rgba(0, 0, 0, 0.1607843137);
  }
}
.news .news__list .news__item:last-child {
  border-right: 2px solid rgba(0, 0, 0, 0.1607843137);
  min-height: 150px;
}
@media screen and (max-width: 768px) {
  .news .news__list .news__item:last-child {
    border-bottom: 2px solid rgba(0, 0, 0, 0.1607843137);
    border-right: none;
  }
}
.news .news__list .news__item {
  flex: 1;
  /* 均等に3等分 */
  padding: 18px;
  border-left: 2px solid rgba(0, 0, 0, 0.1607843137);
  min-height: 150px;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .news .news__list .news__item {
    padding: 15px 0px;
    border-left: none;
    border-right: none;
    border-top: 2px solid rgba(0, 0, 0, 0.1607843137);
  }
}
.news .news__list .news__item .news__date {
  font-size: 14px;
  color: #54372D;
  font-family: "Yu Gothic", "游ゴシック", sans-serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.571;
}
.news .news__list .news__item .news__text {
  font-size: 18px;
  color: #54372D;
  font-family: "Yu Gothic", "游ゴシック", sans-serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .news .news__list .news__item .news__text {
    padding-top: 12px;
    padding-bottom: 16px;
  }
}
.news .news__list .news__item .news__category {
  font-size: 14px;
  color: #54372D;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.286;
}
@media (hover: hover) {
  .news .news__list .news__item:hover {
    cursor: pointer;
  }
  .news .news__list .news__item:hover .news__date,
  .news .news__list .news__item:hover .news__text,
  .news .news__list .news__item:hover .news__category {
    color: #CA7F13;
  }
}

#concept {
  /* スマホパディング */
}
@media screen and (max-width: 768px) {
  #concept {
    padding: 0 30px;
    padding-bottom: 95px;
  }
}
#concept .concept__inner {
  /* コンテナ内に収める */
  max-width: calc(1200px + 2vw);
  margin: 0 auto;
  padding: 0 1vw;
  /* ======== コンテンツ全体 ======== */
  /* ======== 大きいメイン画像エリア ======== */
  /* ======== サブ画像＋説明 ======== */
}
#concept .concept__inner .concept__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* スマホは縦積み */
  /* ======== タイトル共通 ======== */
  /* ======== 背景筆記体 共通 ======== */
  /* ======== PC専用の筆記体 ======== */
  /* ======== メイン画像（PC固定） ======== */
}
@media screen and (max-width: 768px) {
  #concept .concept__inner .concept__content {
    display: block;
  }
}
#concept .concept__inner .concept__content .concept__heading {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: left;
  align-items: flex-start;
  z-index: 100;
  top: 55px;
}
@media screen and (max-width: 768px) {
  #concept .concept__inner .concept__content .concept__heading {
    top: 15px;
    gap: 17px;
  }
}
#concept .concept__inner .concept__content .concept__heading .concept__title {
  position: relative;
  text-transform: uppercase;
  line-height: 0.119;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #concept .concept__inner .concept__content .concept__heading .concept__title {
    top: 40px;
  }
}
#concept .concept__inner .concept__content .concept__heading .concept__subtitle {
  position: relative;
  font-size: 14px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  #concept .concept__inner .concept__content .concept__heading .concept__subtitle {
    top: 40px;
  }
}
#concept .concept__inner .concept__content .concept__heading .concept__midtitle {
  color: #CA7F13;
  font-size: 28px;
  letter-spacing: 0.1em;
  line-height: 1.286;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #concept .concept__inner .concept__content .concept__heading .concept__midtitle {
    font-size: 18px;
    line-height: 2;
    white-space: normal;
    margin-left: 10px;
  }
}
@media (max-width: 360px) {
  #concept .concept__inner .concept__content .concept__heading .concept__midtitle {
    font-size: 16px;
  }
}
#concept .concept__inner .concept__content .concept__bg-script {
  font-family: "annabelle-jf", "Parisienne", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 120px;
  line-height: 1.4;
  color: rgba(202, 127, 19, 0.08);
  pointer-events: none;
}
#concept .concept__inner .concept__content .pc-view {
  display: block;
  position: relative;
  bottom: 30px;
  right: 450px;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  #concept .concept__inner .concept__content .pc-view {
    display: none !important;
  }
}
#concept .concept__inner .concept__content .concept__visual {
  flex: 0 0 865px !important;
  /* flex-basis固定 */
  width: 865px !important;
  max-width: 865px !important;
  height: auto;
  right: 600px;
  position: relative;
  /* スマホではレスポンシブ */
}
@media screen and (max-width: 768px) {
  #concept .concept__inner .concept__content .concept__visual {
    right: auto;
    /* スマホではリセット */
  }
}
#concept .concept__inner .concept__content .concept__visual img.concept__image {
  width: 865px !important;
  height: auto !important;
  display: block;
}
@media screen and (max-width: 768px) {
  #concept .concept__inner .concept__content .concept__visual {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0;
  }
  #concept .concept__inner .concept__content .concept__visual img.concept__image {
    width: 100% !important;
    height: auto !important;
  }
}
#concept .concept__inner .concept__content--large {
  position: relative;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #concept .concept__inner .concept__content--large {
    display: flex;
    flex-direction: column;
    padding-bottom: 0px;
    margin-bottom: 40px;
  }
  #concept .concept__inner .concept__content--large .concept__visual {
    order: 1;
  }
  #concept .concept__inner .concept__content--large .concept__heading {
    display: none;
  }
}
#concept .concept__inner .concept__content--small {
  /* PCはスマホ用タイトル非表示 */
  /* ======== スマホ 横並び ======== */
  /* ======== スマホ専用筆記体 ======== */
  /* ======== 説明文 ======== */
}
#concept .concept__inner .concept__content--small .concept__wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  #concept .concept__inner .concept__content--small .concept__wrapper {
    display: block;
    margin-bottom: 20px;
  }
}
@media (max-width: 950px) {
  #concept .concept__inner .concept__content--small .concept__wrapper {
    flex-direction: column;
    /* ← 縦並びにするポイント */
  }
}
@media (min-width: 768px) {
  #concept .concept__inner .concept__content--small .concept__heading-row .concept__heading {
    display: none;
  }
  #concept .concept__inner .concept__content--small .concept__heading-row .concept__thumbs {
    width: 540px;
    flex-shrink: 0;
    z-index: 1;
  }
  #concept .concept__inner .concept__content--small .concept__heading-row .concept__thumbs img {
    width: 540px;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  #concept .concept__inner .concept__content--small {
    /* ▼ 追加: midtitleを下揃えにする */
  }
  #concept .concept__inner .concept__content--small .concept__heading-row {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
    position: relative;
  }
  #concept .concept__inner .concept__content--small .concept__heading-row .concept__heading {
    flex: 1;
    position: relative;
    left: 0;
    padding-right: 10px;
    max-width: calc(100% - 108px);
    /* ▼ 追加: midtitleを下に寄せるためflex縦並び */
    display: flex;
    flex-direction: column;
  }
  #concept .concept__inner .concept__content--small .concept__heading-row .concept__heading .concept__midtitle {
    margin-top: auto;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #concept .concept__inner .concept__content--small .concept__heading-row .concept__heading .concept__midtitle {
    margin-top: 75px;
  }
}
@media screen and (max-width: 768px) {
  #concept .concept__inner .concept__content--small .concept__heading-row .concept__thumbs {
    flex: 0 0 108px;
    width: 108px !important;
    height: auto;
    position: relative;
    z-index: 1;
  }
  #concept .concept__inner .concept__content--small .concept__heading-row .concept__thumbs img {
    width: 108px !important;
    height: auto;
    display: block;
  }
}
#concept .concept__inner .concept__content--small .ps-view {
  display: none;
}
@media screen and (max-width: 768px) {
  #concept .concept__inner .concept__content--small .ps-view {
    display: block;
    position: absolute;
    left: 50px;
    font-size: 72px;
    color: rgba(202, 127, 19, 0.08);
    z-index: 0;
  }
}
#concept .concept__inner .concept__content--small .concept__description {
  flex: 1;
}
@media screen and (max-width: 768px) {
  #concept .concept__inner .concept__content--small .concept__description {
    margin-top: 35px;
  }
}
#concept .concept__inner .concept__content--small .concept__description .concept__lead {
  color: #54372D;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 2;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #concept .concept__inner .concept__content--small .concept__description .concept__lead {
    font-size: 16px;
  }
}
#concept .concept__inner .concept__content--small .concept__description .concept__link {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  position: relative;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #54372D;
  text-decoration: none;
  margin-top: 35px;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  #concept .concept__inner .concept__content--small .concept__description .concept__link {
    margin-top: 20px;
  }
}
#concept .concept__inner .concept__content--small .concept__description .concept__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 110%;
  height: 1px;
  background-color: #54372D;
  transition: width 0.3s ease;
}
@media screen and (max-width: 768px) {
  #concept .concept__inner .concept__content--small .concept__description .concept__link::after {
    left: -5px;
  }
}
#concept .concept__inner .concept__content--small .concept__description .concept__link::before {
  content: "";
  position: absolute;
  left: 113px;
  bottom: 2px;
  width: 6px;
  height: 0;
  border-top: 1.5px solid #54372D;
  border-right: 1px solid #54372D;
  transform: rotate(45deg);
  transition: left 0.3s ease;
}
@media screen and (max-width: 768px) {
  #concept .concept__inner .concept__content--small .concept__description .concept__link::before {
    left: 110px;
  }
}
@media (hover: hover) {
  #concept .concept__inner .concept__content--small .concept__description .concept__link:hover {
    color: #a6b23a;
  }
  #concept .concept__inner .concept__content--small .concept__description .concept__link:hover::after {
    width: 119%;
    background-color: #a6b23a;
  }
  #concept .concept__inner .concept__content--small .concept__description .concept__link:hover::before {
    left: 120px;
    border-top-color: #a6b23a;
    border-right-color: #a6b23a;
  }
}

/* ===FEATURE 共通スタイル=== */
.feature {
  background: #464646;
  font-family: "Yu Mincho", serif;
  color: #CA7F13;
  padding: 140px 40px 45px 75px;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .feature {
    padding: 85px 20px 0px 20px;
  }
}

.feature__wrapper {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 40px;
}
@media screen and (max-width: 1100px) {
  .feature__wrapper {
    display: block;
  }
}
@media (min-width: 1600px) {
  .feature__wrapper {
    gap: 200px;
  }
}

.feature__list-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 1100px) {
  .feature__list-group {
    display: none;
  }
}

.feature__list {
  display: flex;
  align-items: center;
  opacity: 0.5;
  transition: opacity 0.8s, color 0.8s;
}

.feature__list.is-active {
  opacity: 1;
  font-weight: bold;
  color: #CA7F13;
}

.feature__label {
  font-size: 24px;
  flex-shrink: 0;
  width: 2em;
  margin-right: 29px;
}

.feature__text {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: left;
  display: inline-block;
}

.feature-slider {
  flex: 1;
  min-width: 0;
  width: 100%;
  min-height: 400px;
}

.feature-slider .slick-slide {
  opacity: 0;
  transition: opacity 2s ease-in-out;
  height: auto !important;
  position: relative;
  overflow: visible !important;
}
@media screen and (max-width: 1100px) {
  .feature-slider .slick-slide {
    opacity: 1 !important;
  }
}

.feature-slider .slick-current {
  opacity: 1;
}

.feature-slider .slick-track {
  display: flex !important;
  align-items: stretch !important;
  overflow: visible !important;
}

.feature-slider .slick-list {
  overflow: visible !important;
}

.feature__content {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: stretch;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .feature__content {
    display: block;
    text-align: center;
  }
}

.feature__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 450/630;
  overflow: visible;
}
@media screen and (max-width: 1100px) {
  .feature__image-wrap {
    width: 100% !important;
    height: auto !important;
    max-width: 315px;
    margin: 0 auto 20px auto;
    aspect-ratio: auto !important;
  }
}

.feature__image-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1100px) {
  .feature__image-wrap img {
    width: 100% !important;
    height: auto !important;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 360px) {
  .feature__image-wrap img {
    width: 96% !important;
  }
}

.feature__title {
  position: absolute;
  bottom: 93%;
  left: 50%;
  transform: translateX(-50%);
  text-transform: uppercase;
  line-height: 1.262;
}
@media screen and (max-width: 1100px) {
  .feature__title {
    bottom: 90%;
  }
}

.feature__title::after {
  content: "Feature";
  position: absolute;
  top: 125%;
  left: 50%;
  transform: translate(-50%, -110%);
  text-transform: none;
}

.feature__detail {
  margin-top: 140px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 30px;
}
@media screen and (max-width: 1100px) {
  .feature__detail {
    justify-content: center;
    padding: 15px 15px 40px 15px;
    margin-top: 0px;
  }
}
@media (max-width: 1200px) {
  .feature__detail {
    margin-top: 30px;
    padding: 0 10px;
  }
}

.feature__detail-title {
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (max-width: 1100px) {
  .feature__detail-title {
    position: relative;
    display: inline-block;
    padding: 0 16px;
    line-height: 1.2;
    font-size: 14px;
  }
}

.feature__detail-title::after {
  content: "";
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: #CA7F13;
  margin: 23px auto 21px auto;
}
@media screen and (max-width: 1100px) {
  .feature__detail-title::after {
    content: "";
    position: absolute;
    top: -90%;
    left: calc(100% - 2px);
    width: 80px;
    height: 1px;
    background: #CA7F13;
  }
}
@media (max-width: 360px) {
  .feature__detail-title::after {
    width: 60px;
  }
}

@media screen and (max-width: 1100px) {
  .feature__detail-title::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc(100% - 2px);
    width: 80px;
    height: 1px;
    background: #CA7F13;
  }
}
@media (max-width: 360px) {
  .feature__detail-title::before {
    width: 60px;
  }
}

.feature__detail-subtitle {
  font-size: 24px;
  letter-spacing: 0.1em;
  padding-bottom: 53px;
}
@media screen and (max-width: 1100px) {
  .feature__detail-subtitle {
    font-size: 18px;
    padding: 20px 0px 30px 0px;
  }
}
@media (max-width: 360px) {
  .feature__detail-subtitle {
    font-size: 16px;
  }
}

.feature__detail-text {
  font-size: 18px;
  letter-spacing: 0.1em;
  padding-bottom: 8px;
  line-height: 2;
}
@media screen and (max-width: 1100px) {
  .feature__detail-text {
    font-size: 14px;
  }
}
@media (max-width: 1350px) {
  .feature__detail-text {
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  .feature__detail-text {
    font-size: 11px;
  }
}

.price-menu {
  background: #F9F8F6;
  text-align: center;
  position: relative;
}
.price-menu .price-menu__inner {
  display: block;
  padding-top: 250px;
  /* --- 縦線（PC）--- */
  /* --- 各カラム --- */
  /* --- 横線（PC）--- */
  /* --- メニュー項目 --- */
  /* --- PC時のホバーエフェクト --- */
  /* --- SP順序調整（SP専用）--- */
}
@media screen and (max-width: 768px) {
  .price-menu .price-menu__inner {
    padding: 150px 30px;
  }
}
.price-menu .price-menu__inner .price-menu__header {
  text-align: left;
  margin-bottom: 45px;
}
.price-menu .price-menu__inner .price-menu__header .price-menu__title {
  line-height: 1.262;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}
@media (max-width: 360px) {
  .price-menu .price-menu__inner .price-menu__header .price-menu__title {
    font-size: 40px;
  }
}
.price-menu .price-menu__inner .price-menu__header .price-menu__title::after {
  content: "Price menu";
  white-space: nowrap;
  position: absolute;
  top: 40%;
  left: 70px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  text-transform: none;
}
@media screen and (max-width: 768px) {
  .price-menu .price-menu__inner .price-menu__header .price-menu__title::after {
    left: 50px;
  }
}
.price-menu .price-menu__inner .price-menu__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  max-width: 800px;
  margin-left: auto;
  margin-right: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .price-menu .price-menu__inner .price-menu__list {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}
.price-menu .price-menu__inner .price-menu__list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #CA7F13;
  transform: translateX(-50%);
}
@media screen and (max-width: 1200px) {
  .price-menu .price-menu__inner .price-menu__list::before {
    display: none;
  }
}
.price-menu .price-menu__inner .price-menu__col {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .price-menu .price-menu__inner .price-menu__col {
    display: contents;
  }
}
.price-menu .price-menu__inner .price-menu__col .price-menu__item:nth-child(1),
.price-menu .price-menu__inner .price-menu__col .price-menu__item:nth-child(2) {
  border-bottom: 1px solid #CA7F13;
}
.price-menu .price-menu__inner .price-menu__item {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 20px 25px 22px 15px;
  text-decoration: none;
  color: #CA7F13;
  position: relative;
}
@media screen and (max-width: 768px) {
  .price-menu .price-menu__inner .price-menu__item {
    padding: 36px 17px 10px 5px;
    font-size: 16px;
  }
}
.price-menu .price-menu__inner .menu-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .price-menu .price-menu__inner .menu-title {
    font-size: 36px;
  }
}
@media (max-width: 360px) {
  .price-menu .price-menu__inner .menu-title {
    font-size: 32px;
  }
}
.price-menu .price-menu__inner .menu-sub {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
  opacity: 0.8;
  margin-right: auto;
}
@media (max-width: 360px) {
  .price-menu .price-menu__inner .menu-sub {
    font-size: 12px;
  }
}
.price-menu .price-menu__inner .price-menu__arrow {
  margin-left: auto;
  font-size: 30px;
  color: #CA7F13;
}
.price-menu .price-menu__inner .fa-solid,
.price-menu .price-menu__inner .fas {
  font-weight: 600;
}
@media (hover: hover) {
  .price-menu .price-menu__inner .price-menu__item:hover {
    color: rgba(202, 127, 19, 0.6);
    transform: translateY(-1px);
  }
  .price-menu .price-menu__inner .price-menu__item:hover .menu-sub {
    color: rgba(202, 127, 19, 0.6);
  }
}
@media screen and (max-width: 768px) {
  .price-menu .price-menu__inner .price-menu__item:nth-child(1) {
    order: 1;
  }
  .price-menu .price-menu__inner .price-menu__col:first-child .price-menu__item:nth-child(2) {
    order: 4;
  }
  .price-menu .price-menu__inner .price-menu__col:first-child .price-menu__item:nth-child(3) {
    order: 5;
  }
  .price-menu .price-menu__inner .price-menu__col:last-child .price-menu__item:nth-child(1) {
    order: 2;
  }
  .price-menu .price-menu__inner .price-menu__col:last-child .price-menu__item:nth-child(2) {
    order: 3;
  }
}

.faq {
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 140px;
  padding-bottom: 120px;
  /* ✅ 質問・回答のどちらを含んでも hover に反応する */
}
@media screen and (max-width: 768px) {
  .faq {
    padding: 0 30px 120px 30px;
  }
}
.faq .faq__title {
  color: #CA7F13;
  line-height: 1.262;
  text-transform: uppercase;
  position: relative;
  right: 35px;
}
@media screen and (max-width: 768px) {
  .faq .faq__title {
    right: 0px;
  }
}
@media (max-width: 1250px) {
  .faq .faq__title {
    right: 0px;
  }
}
.faq .faq__title::after {
  content: "faq";
  position: absolute;
  left: 90px;
  transform: translateY(-20%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .faq .faq__title::after {
    left: 60px;
    transform: translateY(-30%);
  }
}
.faq .faq__subtitle {
  margin-bottom: 61px;
  position: relative;
  right: 35px;
}
@media screen and (max-width: 768px) {
  .faq .faq__subtitle {
    right: 0px;
    margin-bottom: 45px;
  }
}
@media (max-width: 1250px) {
  .faq .faq__subtitle {
    right: 0px;
  }
}
.faq .faq__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (hover: hover) {
  .faq .faq__item:hover {
    background-color: #c7c0af;
    /* 元の #D4CEBE より少しだけ暗め */
    color: #a06015;
    /* 少し落ち着いたゴールド */
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
  }
}
.faq .faq__item {
  background: #D4CEBE;
  color: #CA7F13;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow: hidden;
  cursor: pointer;
}
.faq .faq__question {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  padding: 30px 40px 30px 20px;
  border: none;
  background: none;
  font-family: "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 18px;
  color: inherit;
  text-align: left;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .faq .faq__question {
    padding: 15px 25px 15px 5px;
  }
}
.faq .faq__icon {
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}
.faq .faq__text {
  flex: 1;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .faq .faq__text {
    font-size: 14px;
    line-height: 1.5;
  }
}
.faq .faq__toggle {
  font-size: 12px;
  color: #54372D;
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .faq .faq__toggle {
    right: 12px;
  }
}
.faq .faq__toggle::before {
  content: "▼";
  display: inline-block;
  transition: transform 0.3s ease;
}
.faq .faq__answer {
  display: none;
  padding: 0 40px 40px 20px;
  font-family: "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 18px;
  line-height: 1.6;
  color: inherit;
  background: none;
  display: flex;
  gap: 8px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .faq .faq__answer {
    padding: 15px 25px 15px 5px;
  }
}

/* ▼ 回答表示時のスタイル */
.faq__item.open .faq__answer {
  display: flex;
}

/* ▼ 回答表示時に三角を回転 or 切り替え */
.faq__item.open .faq__toggle::before {
  content: "▲";
}

/* ===RESERVE セクション=== */
.reserve {
  position: relative;
  width: 100%;
  /* 画面幅いっぱいに */
  aspect-ratio: 1440/400;
  /* 画像の比率を維持 */
  margin: 0 auto;
  /* 中央寄せ */
  background: url("../img/reserve-link-pc.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .reserve {
    background: url("../img/reserve-link-sp.webp") center/cover no-repeat;
    aspect-ratio: 375/200;
  }
}
.reserve .reserve__overlay {
  position: absolute;
  inset: 0;
  background: #464646;
  opacity: 0.8;
}
.reserve .reserve__content {
  position: relative;
  text-align: center;
}
.reserve .reserve__content .reserve__link .reserve__title {
  font-size: 80px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .reserve .reserve__content .reserve__link .reserve__title {
    font-size: 48px;
  }
}
.reserve .reserve__content .reserve__link .reserve__subtitle {
  font-size: 16px;
  line-height: 0.875;
  letter-spacing: 0.1em;
  text-shadow: 4px 4px 10px #333333;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .reserve .reserve__content .reserve__link .reserve__subtitle {
    font-size: 12px;
  }
}
@media (hover: hover) {
  .reserve .reserve__content .reserve__link:hover {
    opacity: 0.8;
    transition: 0.3s;
    transform: translateY(-2px);
    /* 子要素にも色変化を強制するなら */
  }
  .reserve .reserve__content .reserve__link:hover .reserve__title,
  .reserve .reserve__content .reserve__link:hover .reserve__subtitle {
    opacity: 0.8;
    transition: 0.3s;
  }
}

/* ===SALONS / SNS セクション=== */
.salons-sns {
  padding: 75px 30px 15px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .salons-sns {
    padding: 0;
  }
}
.salons-sns .salons-sns__inner {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid #CA7F13;
  padding-bottom: 115px;
  gap: 160px;
}
@media screen and (max-width: 768px) {
  .salons-sns .salons-sns__inner {
    flex-direction: column;
    border-bottom: none;
    padding-bottom: 0px;
    gap: 0px;
  }
}
.salons-sns .salons__item,
.salons-sns .sns__item {
  flex: 1;
  text-align: center;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .salons-sns .salons__item {
    padding: 55px 59px 75px 59px;
  }
}
@media screen and (max-width: 768px) {
  .salons-sns .salons__item::after {
    content: "";
    position: absolute;
    bottom: 200px;
    left: 10%;
    width: 80%;
    height: 1px;
    background-color: #CA7F13;
  }
}
@media screen and (max-width: 768px) {
  .salons-sns .sns__item {
    padding: 55px 113px 70px 113px;
  }
}
@media screen and (max-width: 768px) {
  .salons-sns .sns__item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background-color: #CA7F13;
  }
}
.salons-sns .salons__title {
  font-size: 80px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .salons-sns .salons__title {
    font-size: 48px;
  }
}
.salons-sns .sns__title {
  font-size: 72px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .salons-sns .sns__title {
    font-size: 48px;
  }
}
.salons-sns .salons__subtitle,
.salons-sns .sns__subtitle {
  font-size: 16px;
  line-height: 0.875;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .salons-sns .salons__subtitle,
  .salons-sns .sns__subtitle {
    font-size: 12px;
    line-height: 1.167;
  }
}
.salons-sns .salons-sns__divider {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 260px;
  background: #CA7F13;
  bottom: 30px;
}
@media screen and (max-width: 768px) {
  .salons-sns .salons-sns__divider {
    display: none;
  }
}
@media (hover: hover) {
  .salons-sns .salons__item:hover,
  .salons-sns .sns__item:hover {
    opacity: 0.8;
    transition: 0.3s;
  }
  .salons-sns .salons__item:hover .salons__title,
  .salons-sns .salons__item:hover .salons__subtitle,
  .salons-sns .salons__item:hover .sns__title,
  .salons-sns .salons__item:hover .sns__subtitle,
  .salons-sns .sns__item:hover .salons__title,
  .salons-sns .sns__item:hover .salons__subtitle,
  .salons-sns .sns__item:hover .sns__title,
  .salons-sns .sns__item:hover .sns__subtitle {
    opacity: 0.8;
    transition: 0.3s;
  }
}

/* フッター本体 */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 100px;
  color: #54372D;
  /* ページトップボタン */
  /* 矢印 */
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 102px 29px 8px;
  }
}
.footer .footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  padding-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .footer .footer__brand {
    justify-content: flex-start;
    padding-right: 80px;
  }
}
@media (max-width: 360px) {
  .footer .footer__brand {
    padding-right: 0px;
  }
}
.footer .footer__brand .footer__logo-image {
  width: 64px;
  height: 64px;
}
@media screen and (max-width: 768px) {
  .footer .footer__brand .footer__logo-image {
    width: 50px;
    height: 49px;
    margin-left: 29px;
  }
}
@media (max-width: 360px) {
  .footer .footer__brand .footer__logo-image {
    margin-left: 0px;
  }
}
.footer .footer__brand .footer__logo-text {
  text-transform: uppercase;
  text-align: left;
  /* ← 左揃え */
  font-size: 28px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.2em;
  color: #54372D;
}
@media screen and (max-width: 950px) {
  .footer .footer__brand .footer__logo-text {
    font-size: 20px;
  }
}
.footer .footer__links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 10px 0;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .footer .footer__links {
    white-space: normal;
    margin: 10px 36px;
  }
}
.footer .footer__links a {
  color: #54372D;
  text-decoration: none;
  margin: 0 15px;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .footer .footer__links a {
    font-size: 14px;
    margin: 0 10px;
  }
}
@media (max-width: 340px) {
  .footer .footer__links a {
    margin: 0 7px;
  }
}
@media (hover: hover) {
  .footer .footer__links a:hover {
    color: #CA7F13;
    transform: translateY(-2px);
  }
}
.footer .footer__links .divider {
  font-size: 20px;
  margin: 0 10px;
}
@media screen and (max-width: 768px) {
  .footer .footer__links .divider {
    font-size: 16px;
    margin: 0;
  }
}
.footer .footer__links .pc-view {
  display: block;
}
@media screen and (max-width: 768px) {
  .footer .footer__links .pc-view {
    display: none;
  }
}
.footer .footer__links--bottom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 10px 0;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .footer .footer__links--bottom {
    margin: 15px 0;
  }
}
.footer .footer__links--bottom a {
  color: #54372D;
  text-decoration: none;
  margin: 0 15px;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .footer .footer__links--bottom a {
    font-size: 14px;
  }
}
@media (hover: hover) {
  .footer .footer__links--bottom a:hover {
    color: #CA7F13;
    transform: translateY(-2px);
  }
}
.footer .footer__links--bottom .divider {
  font-size: 20px;
  margin: 0 10px;
}
@media screen and (max-width: 768px) {
  .footer .footer__links--bottom .divider {
    font-size: 16px;
    margin: 0;
  }
}
.footer .footer__copy {
  margin-top: 52px;
  margin-bottom: 32px;
  letter-spacing: 0.1em;
  font-size: 12px;
  opacity: 1;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .footer .footer__copy {
    margin-top: 25px;
  }
}
.footer .footer__pagetop {
  position: fixed;
  right: 40px;
  bottom: 27px;
  width: 80px;
  height: 80px;
  background: #949E33;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .footer .footer__pagetop {
    width: 40px;
    height: 40px;
    right: 25px;
    bottom: 60px;
  }
}
@media (hover: hover) {
  .footer .footer__pagetop:hover {
    background-color: #abb26e;
    transform: translateY(-1px);
  }
}
.footer .footer__pagetop::before {
  content: "";
  content: "";
  width: 18px;
  height: 18px;
  border-left: 5px solid white;
  border-top: 5px solid white;
  transform: rotate(45deg);
  margin-top: 9px;
}
@media screen and (max-width: 768px) {
  .footer .footer__pagetop::before {
    width: 8px;
    height: 8px;
    border-left: 3px solid white;
    border-top: 3px solid white;
    margin-top: 5px;
  }
}

.header--sub {
  height: 173px;
  background-color: #F9F8F6;
}
@media screen and (max-width: 768px) {
  .header--sub {
    height: 80px;
  }
}

.concept-section .concept-section__title-area {
  background-color: #D4CEBE;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-bottom: -3px;
}
.concept-section .concept-section__title-area .page-title {
  position: absolute;
  z-index: 2;
  margin: 0 auto;
  bottom: 120px;
}
@media screen and (max-width: 768px) {
  .concept-section .concept-section__title-area .page-title {
    bottom: 80px;
  }
}
.concept-section .parallax-box {
  position: relative;
  height: 600px;
  /* ← PC画像の高さと同じ */
  overflow: hidden;
  background-color: #D4CEBE;
  margin-bottom: -3px;
}
@media screen and (max-width: 768px) {
  .concept-section .parallax-box {
    height: 300px;
  }
}
.concept-section .parallax-box .parallax-wrapper {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  will-change: transform;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.concept-section .parallax-box .parallax-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.concept-section .concept-section__message {
  background-color: #D4CEBE;
}
.concept-section .concept-section__message .concept-section__inner .breadcrumb {
  padding-top: 24px;
  padding-left: 36px;
}
@media screen and (max-width: 768px) {
  .concept-section .concept-section__message .concept-section__inner .breadcrumb {
    padding-top: 15px;
    padding-left: 13px;
  }
}
.concept-section .concept-section__message .concept-section__inner .breadcrumb .breadcrumb__list {
  display: flex;
  gap: 10px;
}
.concept-section .concept-section__message .concept-section__inner .message__content .message__inner {
  display: flex;
  justify-content: flex-end;
  padding: 83px 0;
}
@media screen and (max-width: 768px) {
  .concept-section .concept-section__message .concept-section__inner .message__content .message__inner {
    justify-content: center;
    align-items: center;
    padding: 0;
  }
}
.concept-section .concept-section__message .concept-section__inner .message__content .message__inner .message__image-wrapper {
  position: relative;
  width: 720px;
  height: 405px;
}
@media (max-width: 1250px) {
  .concept-section .concept-section__message .concept-section__inner .message__content .message__inner .message__image-wrapper {
    width: 576px;
    height: 324px;
  }
}
@media screen and (max-width: 768px) {
  .concept-section .concept-section__message .concept-section__inner .message__content .message__inner .message__image-wrapper {
    margin: 60px 0 24px;
    width: 315px;
    height: 177px;
  }
}
.concept-section .concept-section__message .concept-section__inner .message__content .message__inner .message__image-wrapper .message__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.concept-section .concept-section__message .concept-section__inner .message__content .message__inner .message__image-wrapper .message__heading {
  position: absolute;
  top: 35%;
  left: -480px;
  font-size: 40px;
  color: #CA7F13;
  font-family: "Yu Mincho", "游明朝", "YuMincho", serif;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  z-index: 2;
  white-space: nowrap;
}
@media (max-width: 1250px) {
  .concept-section .concept-section__message .concept-section__inner .message__content .message__inner .message__image-wrapper .message__heading {
    left: -30%;
    font-size: 34px;
  }
}
@media screen and (max-width: 768px) {
  .concept-section .concept-section__message .concept-section__inner .message__content .message__inner .message__image-wrapper .message__heading {
    position: static;
    top: auto;
    left: auto;
    font-size: 18px;
    margin-top: 24px;
  }
}
.concept-section .concept-section__message .concept-section__inner .message__content .message__description {
  font-size: 18px;
  color: #CA7F13;
  font-family: "Yu Gothic", serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .concept-section .concept-section__message .concept-section__inner .message__content .message__description {
    padding: 84px 30px 60px;
  }
}

.sp-only {
  display: none;
}

@media screen and (max-width: 1100px) {
  .sp-only {
    display: inline;
  }
}
.instagram-section {
  background-color: #F9F8F6;
  padding-top: 167px;
}
@media screen and (max-width: 768px) {
  .instagram-section {
    padding-top: 110px;
  }
}
.instagram-section .instagram__title {
  position: relative;
}
@media screen and (max-width: 768px) {
  .instagram-section .instagram__title {
    left: 10px;
  }
}
.instagram-section .instagram__title::after {
  content: "Instagram";
  top: 30%;
  left: 90px;
  transform: translateY(-50%);
  position: absolute;
  z-index: 1;
  text-transform: none;
}
@media screen and (max-width: 768px) {
  .instagram-section .instagram__title::after {
    left: 55px;
  }
}
.instagram-section .instagram__subtitle {
  padding-bottom: 75px;
}
@media screen and (max-width: 768px) {
  .instagram-section .instagram__subtitle {
    left: 10px;
  }
}
.instagram-section .instagram__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.instagram-section .instagram__grid .instagram__grid-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 880px;
  margin: 0 auto;
  padding-bottom: 60px;
}
.instagram-section .instagram__grid .instagram__grid-wrapper .instagram__item {
  background-color: #707070;
  border: 1px solid #707070;
  width: 240px;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (hover: hover) {
  .instagram-section .instagram__grid .instagram__grid-wrapper .instagram__item:hover {
    opacity: 0.5;
    transition: 0.3s;
    text-decoration: underline;
  }
}
@media screen and (max-width: 768px) {
  .instagram-section .instagram__grid .instagram__grid-wrapper {
    max-width: 320px;
    justify-content: center;
    gap: 24px;
  }
  .instagram-section .instagram__grid .instagram__grid-wrapper .instagram__item {
    width: 148px;
    height: 148px;
  }
}
@media (max-width: 320px) {
  .instagram-section .instagram__grid .instagram__grid-wrapper {
    gap: 8px;
  }
}
@media (hover: hover) {
  .instagram-section .instagram__grid .instagram__button:hover {
    background-color: #a6b23a;
    transform: translateY(-1px);
  }
}
.instagram-section .instagram__grid .instagram__button {
  position: relative;
  width: 200px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-radius: 40px;
  background-color: #9ba63c;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-family: "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 20px;
  transition: opacity 0.3s ease;
  padding: 10px 24px;
  min-width: 160px;
  text-align: center;
}
.instagram-section .instagram__grid .instagram__button i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #ffffff;
}
.instagram-section .instagram__grid .instagram__button span {
  display: inline-block;
}

.company {
  background-color: #F9F8F6;
  padding-top: 167px;
}
@media screen and (max-width: 768px) {
  .company {
    padding-top: 150px;
  }
}
.company .company__title {
  position: relative;
}
@media screen and (max-width: 768px) {
  .company .company__title {
    left: 10px;
  }
}
.company .company__title::after {
  content: "Company Profile";
  top: 30%;
  left: 90px;
  transform: translateY(-50%);
  position: absolute;
  z-index: 1;
  text-transform: none;
}
@media screen and (max-width: 768px) {
  .company .company__title::after {
    left: 55px;
    top: 65px;
  }
}
.company .company__subtitle {
  padding-bottom: 51px;
}
@media screen and (max-width: 768px) {
  .company .company__subtitle {
    left: 10px;
  }
}
.company .company__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 145px;
}
@media screen and (max-width: 768px) {
  .company .company__content {
    margin: 0px 16px 120px;
  }
}
.company .company__content picture {
  margin-bottom: 60px;
}
.company .company__content .profile-table {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}
.company .company__content .profile-table th {
  font-family: "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 18px;
  color: #CA7F13;
  font-weight: 600;
  letter-spacing: 0.1em;
  white-space: nowrap;
  width: 90px;
  text-align: left;
  padding: 15px 13px;
  border-bottom: 1px solid #CA7F13;
  vertical-align: top;
}
.company .company__content .profile-table td {
  font-family: "Yu Gothic", serif;
  font-size: 16px;
  color: #333333;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 15px 13px;
  border-bottom: 1px solid #CA7F13;
  vertical-align: top;
  text-align: left;
}
.company .company__content .profile-table tr:first-child th,
.company .company__content .profile-table tr:first-child td {
  border-top: 1px solid #CA7F13;
}
@media screen and (max-width: 768px) {
  .company .company__content .profile-table tr:first-child th,
  .company .company__content .profile-table tr:first-child td {
    border-top: none;
  }
}
.company .company__content .profile-table tr:nth-last-child(1) th,
.company .company__content .profile-table tr:nth-last-child(1) td {
  border-bottom: none !important;
}
@media screen and (max-width: 768px) {
  .company .company__content .profile-table tr:nth-last-child(1) th,
  .company .company__content .profile-table tr:nth-last-child(1) td {
    border-bottom: 1px solid #CA7F13 !important;
  }
}
@media screen and (max-width: 768px) {
  .company .company__content .profile-table tr {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #CA7F13;
    padding: 10px 0;
  }
  .company .company__content .profile-table th,
  .company .company__content .profile-table td {
    display: inline-block;
    padding: 8px 10px;
    border: none;
    font-size: 15px;
  }
  .company .company__content .profile-table th {
    width: 30%;
    color: #CA7F13;
    font-size: 14px;
    font-weight: 600;
    border-bottom: none;
  }
  .company .company__content .profile-table td {
    width: 70%;
    font-size: 12px;
    border-bottom: none;
  }
}

.profile-table--pc {
  display: table;
}
@media screen and (max-width: 768px) {
  .profile-table--pc {
    display: none;
  }
}

.profile-table--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .profile-table--sp {
    display: table;
  }
}

/*-- 下層ページタイトル --*/
.page__title-area {
  background-color: #D4CEBE;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-bottom: -3px;
}
.page__title-area .page-title {
  position: absolute;
  z-index: 2;
  margin: 0 auto;
  bottom: 120px;
}
@media screen and (max-width: 768px) {
  .page__title-area .page-title {
    bottom: 80px;
  }
}

/*-- パララックス部分 --*/
.parallax-box {
  position: relative;
  height: 600px;
  /* ← PC画像の高さと同じ */
  overflow: hidden;
  background-color: #D4CEBE;
  margin-bottom: -3px;
}
@media screen and (max-width: 1439px) {
  .parallax-box {
    height: 500px;
  }
}
@media screen and (max-width: 1200px) {
  .parallax-box {
    height: 400px;
  }
}
@media screen and (max-width: 950px) {
  .parallax-box {
    height: 300px;
  }
}
@media screen and (max-width: 374px) {
  .parallax-box {
    height: 250px;
  }
}
.parallax-box .parallax-wrapper {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  will-change: transform;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.parallax-box .parallax-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*-- パンくずリスト --*/
.breadcrumb {
  padding-top: 24px;
  padding-left: 36px;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    padding-top: 15px;
    padding-left: 13px;
  }
}
.breadcrumb .breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  /* 長いテキストが折り返せるように */
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb .breadcrumb__list .breadcrumb__item {
  display: flex;
  align-items: center;
}
.breadcrumb .breadcrumb__list .breadcrumb__item .breadcrumb__separator {
  margin: 0 0.5em;
  /* 区切り記号の左右余白 */
}
.breadcrumb .breadcrumb__list .breadcrumb__item .breadcrumb__link {
  text-decoration: none;
  color: inherit;
}

.price-section .price-section__menu-intro .price-section__content {
  padding: 74px 0px 120px;
  display: flex;
  justify-content: space-between;
  gap: 48px;
}
@media screen and (max-width: 1200px) {
  .price-section .price-section__menu-intro .price-section__content {
    padding: 74px 60px 120px;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .price-section .price-section__menu-intro .price-section__content {
    padding: 80px 30px;
    flex-direction: column-reverse;
  }
}
.price-section .price-section__menu-intro .price-section__content .price-section__menu-description {
  max-width: 600px;
}
.price-section .price-section__menu-intro .price-section__content .price-section__menu-description .message__description {
  font-size: 18px;
  color: #CA7F13;
  font-family: "Yu Gothic", serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .price-section .price-section__menu-intro .price-section__content .price-section__menu-description .message__description {
    padding-top: 42px;
    font-size: 14px;
  }
}

.price-menu__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  max-width: 800px;
  margin-left: auto;
  margin-right: 0;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .price-menu__list {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* --- 縦線（PC）--- */
.price-menu__list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #CA7F13;
  transform: translateX(-50%);
}
@media screen and (max-width: 1200px) {
  .price-menu__list::before {
    display: none;
  }
}

/* --- 各カラム --- */
.price-menu__col {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .price-menu__col {
    display: contents;
  }
}

/* --- 横線（PC）--- */
.price-menu__col .price-menu__item:nth-child(1),
.price-menu__col .price-menu__item:nth-child(2) {
  border-bottom: 1px solid #CA7F13;
}

/* --- メニュー項目 --- */
.price-menu__item {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 20px 25px 22px 15px;
  text-decoration: none;
  color: #CA7F13;
  position: relative;
}
@media screen and (max-width: 768px) {
  .price-menu__item {
    padding: 36px 17px 10px 5px;
    font-size: 16px;
  }
}

.menu-title {
  font-size: 33px;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-right: 10px;
  line-height: 1;
}
@media screen and (max-width: 1100px) {
  .menu-title {
    font-size: 20px;
  }
}
@media (max-width: 360px) {
  .menu-title {
    font-size: 32px;
  }
}

.menu-sub {
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.04em;
  opacity: 0.8;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .menu-sub {
    font-size: 12px;
  }
}
@media (max-width: 360px) {
  .menu-sub {
    font-size: 12px;
  }
}

.price-menu__arrow {
  margin-left: auto;
  font-size: 24px;
  color: #CA7F13;
}
@media screen and (max-width: 1100px) {
  .price-menu__arrow {
    font-size: 14px;
  }
}

.fa-solid,
.fas {
  font-weight: 600;
}

/* --- PC時のホバーエフェクト --- */
@media (hover: hover) {
  .price-menu__item:hover {
    color: rgba(202, 127, 19, 0.6);
    transform: translateY(-1px);
  }
  .price-menu__item:hover .menu-sub {
    color: rgba(202, 127, 19, 0.6);
  }
}
/* --- SP順序調整（SP専用）--- */
@media screen and (max-width: 1200px) {
  .price-menu__item:nth-child(1) {
    order: 1;
  }
  .price-menu__col:first-child .price-menu__item:nth-child(2) {
    order: 4;
  }
  .price-menu__col:first-child .price-menu__item:nth-child(3) {
    order: 5;
    border-bottom: 1px solid #CA7F13;
  }
}
@media screen and (max-width: 1200px) and (max-width: 768px) {
  .price-menu__col:first-child .price-menu__item:nth-child(3) {
    border-bottom: none;
  }
}
@media screen and (max-width: 1200px) {
  .price-menu__col:last-child .price-menu__item:nth-child(1) {
    order: 2;
  }
  .price-menu__col:last-child .price-menu__item:nth-child(2) {
    order: 3;
  }
}
.pc-view {
  display: block;
}
@media screen and (max-width: 1200px) {
  .pc-view {
    display: none;
  }
}

.price-table {
  padding: 56px 0px 63px;
  background-color: #D4CEBE;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .price-table {
    padding: 56px 16px 63px;
  }
}
.price-table .price-table__block {
  color: #CA7F13;
}
.price-table .price-table__block .price-table__title {
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .price-table .price-table__block .price-table__title {
    font-size: 84px;
    padding-top: 56px;
  }
}
.price-table .price-table__block .price-table__item {
  max-width: calc(803px + 2vw);
  margin: 0 auto;
  padding: 0 1vw;
}
.price-table .price-table__block .price-table__subtitle {
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.333;
  font-weight: 400;
  font-family: "Yu Mincho", "游明朝", "YuMincho", serif;
  margin-top: 80px;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .price-table .price-table__block .price-table__subtitle {
    font-size: 18px;
    margin-top: 60px;
  }
}
.price-table .price-table__block .price-table__note {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.778;
  font-weight: 400;
  font-family: "Yu Mincho", "游明朝", "YuMincho", serif;
  margin-bottom: 64px;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .price-table .price-table__block .price-table__note {
    text-align: start;
    font-size: 14px;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 768px) {
  .price-table .price-table__block .price-table__table thead th {
    text-align: center;
  }
}
.price-table .price-table__block .price-table__table {
  width: 100%;
}
.price-table .price-table__block .price-table__table th {
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 1.667;
  font-weight: 400;
  font-family: "Yu Mincho", "游明朝", "YuMincho", serif;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .price-table .price-table__block .price-table__table th {
    font-size: 16px;
    text-align: start;
  }
}
.price-table .price-table__block .price-table__table td {
  letter-spacing: 0.1em;
  font-weight: 600;
  font-family: "Yu Mincho", "游明朝", "YuMincho", serif;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .price-table .price-table__block .price-table__table td {
    text-align: center;
  }
}
.price-table .price-table__block .price-table__table .price {
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .price-table .price-table__block .price-table__table .price {
    font-size: 18px;
  }
}
.price-table .price-table__block .price-table__table .unit {
  font-size: 18px;
  line-height: 1.667;
}
@media screen and (max-width: 768px) {
  .price-table .price-table__block .price-table__table .unit {
    font-size: 14px;
  }
}
.price-table .price-table__block .price-table__table th,
.price-table .price-table__block .price-table__table td {
  padding: 20px 12px;
  border-bottom: 1px solid #CA7F13;
}
@media screen and (max-width: 768px) {
  .price-table .price-table__block .price-table__table th,
  .price-table .price-table__block .price-table__table td {
    padding: 30px 0px;
  }
}
.price-table .price-table__block .price-table__footnote {
  text-align: end;
  font-family: "Yu Gothic", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 2.5;
  margin-top: 13px;
}
@media screen and (max-width: 768px) {
  .price-table .price-table__block .price-table__footnote {
    text-align: start;
    line-height: 1.5;
  }
}
.price-table .v-line,
.price-table .set {
  margin-top: 117px;
}

.sp-view {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-view {
    display: block;
  }
}

.price-table__area-count {
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 48px;
}

.menu-feature {
  color: #CA7F13;
  margin: 80px 0px;
}
.menu-feature .menu-feature__inner {
  display: flex;
  gap: 60px;
  height: 480px;
}
@media screen and (max-width: 1100px) {
  .menu-feature .menu-feature__inner {
    flex-direction: column;
    height: auto;
    align-items: center;
    padding: 0px 30px;
  }
}
.menu-feature .menu-feature__inner .menu-feature__image {
  width: 480px;
  height: 480px;
}
@media screen and (max-width: 768px) {
  .menu-feature .menu-feature__inner .menu-feature__image {
    width: 240px;
    height: 240px;
  }
}
.menu-feature .menu-feature__inner .menu-feature__content {
  max-width: 540px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}
.menu-feature .menu-feature__inner .menu-feature__content .menu-feature__title {
  margin-bottom: 54px;
}
@media screen and (max-width: 768px) {
  .menu-feature .menu-feature__inner .menu-feature__content .menu-feature__title {
    margin-bottom: 12px;
  }
}

.text-48 {
  font-size: 48px;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.text-18 {
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .text-18 {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .salons-section .salon-list .salon-list__container {
    padding: 0px 30px;
  }
}
.salons-section .salon-list .salon-list__container .salon-list__wrapper .salon-list__title {
  margin-top: 120px;
}
.salons-section .salon-list .salon-list__container .salon-list__wrapper .salon-list__title::after {
  content: "Prefectures";
  position: absolute;
  top: 125%;
  right: 300px;
  transform: translate(-50%, -110%);
  text-transform: none;
}
@media screen and (max-width: 768px) {
  .salons-section .salon-list .salon-list__container .salon-list__wrapper .salon-list__title::after {
    right: 0px;
    left: 125px;
  }
}
.salons-section .salon-list .salon-list__container .salon-list__wrapper .salon__nav {
  display: flex;
  flex-wrap: wrap;
  /* 折り返し可能にする */
  gap: 10px 62px;
  list-style: none;
  padding: 0;
  margin: 0;
  padding: 121px 80px 80px;
}
@media screen and (max-width: 768px) {
  .salons-section .salon-list .salon-list__container .salon-list__wrapper .salon__nav {
    padding: 0px;
    gap: 10px 14px;
    margin: 80px 0px;
  }
}
.salons-section .salon-list .salon-list__container .salon-list__wrapper .salon__nav li {
  flex-shrink: 0;
}
@media (hover: hover) {
  .salons-section .salon-list .salon-list__container .salon-list__wrapper .salon__nav li .nav-link:hover {
    opacity: 0.5;
    transition: 0.3s;
  }
}
.salons-section .salon-list .salon-list__container .salon-list__wrapper .salon__nav li .nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.salons-section .salon-list .salon-list__container .salon-list__wrapper .salon__nav li .nav-link .icon-color {
  font-size: 25px;
  color: #54372D;
}
@media screen and (max-width: 768px) {
  .salons-section .salon-list .salon-list__container .salon-list__wrapper .salon__nav li .nav-link .icon-color {
    font-size: 12px;
  }
}
.salons-section .salon-list .salon-list__container .salon-list__wrapper .salon__nav li .nav-link .nav-label {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.salons-section .salon-list .salon-list__container .salon-list__wrapper .salon__nav li .nav-link .nav-label .nav-label__en {
  color: #CA7F13;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-left: 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-start;
}
@media screen and (max-width: 1100px) {
  .salons-section .salon-list .salon-list__container .salon-list__wrapper .salon__nav li .nav-link .nav-label .nav-label__en {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .salons-section .salon-list .salon-list__container .salon-list__wrapper .salon__nav li .nav-link .nav-label .nav-label__en {
    font-size: 20px;
    margin-left: 0px;
  }
}
.salons-section .salon-list .salon-list__container .salon-list__wrapper .salon__nav li .nav-link .nav-label .nav-label__jp {
  font-size: 14px;
  color: #CA7F13;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .salons-section .salon-list .salon-list__container .salon-list__wrapper .salon__nav li .nav-link .nav-label .nav-label__jp {
    font-size: 12px;
    margin-bottom: 2px;
  }
}

@media screen and (max-width: 768px) {
  .salon-area {
    padding: 0px 30px;
  }
}
.salon-area .salon-area__box {
  background-color: #CA7F13;
  height: 120px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .salon-area .salon-area__box {
    height: 60px;
    margin-bottom: 40px;
  }
}
.salon-area .salon-area__box .salon-area__title {
  color: #FFFFFF;
  font-size: 48px;
  letter-spacing: 0.1em;
  line-height: 120px;
}
@media screen and (max-width: 768px) {
  .salon-area .salon-area__box .salon-area__title {
    font-size: 24px;
    line-height: 60px;
  }
}
.salon-area .salon-area__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .salon-area .salon-area__grid {
    grid-template-columns: 1fr 1fr;
    padding: 60px 0px 80px;
  }
}
@media (hover: hover) {
  .salon-area .salon-area__grid .salon-card__link:hover {
    opacity: 0.6;
    transition: 0.3s;
    transform: translateY(-1px);
  }
}
.salon-area .salon-area__grid .salon-card .salon-card__map {
  width: 570px;
  height: 360px;
}
@media screen and (max-width: 1200px) {
  .salon-area .salon-area__grid .salon-card .salon-card__map {
    width: 315px;
    height: 200px;
  }
}
@media screen and (max-width: 360px) {
  .salon-area .salon-area__grid .salon-card .salon-card__map {
    width: 100%;
    height: auto;
  }
}
.salon-area .salon-area__grid .salon-card .salon-card__map iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .salon-area .salon-area__grid .salon-card .salon-card__map iframe {
    width: 315px;
    height: 200px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 360px) {
  .salon-area .salon-area__grid .salon-card .salon-card__map iframe {
    width: 100%;
    height: auto;
  }
}
.salon-area .salon-area__grid .salon-card .salon-card__info .salon-card__name {
  text-transform: uppercase;
  color: #CA7F13;
  font-size: 32px;
  letter-spacing: 0.1em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .salon-area .salon-area__grid .salon-card .salon-card__info .salon-card__name {
    font-size: 20px;
  }
}
.salon-area .salon-area__grid .salon-card .salon-card__info .name-label {
  color: #CA7F13;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: "Yu Mincho", "游明朝", "YuMincho", serif;
}
@media screen and (max-width: 768px) {
  .salon-area .salon-area__grid .salon-card .salon-card__info .name-label {
    font-size: 14px;
  }
}
.salon-area .salon-area__grid .salon-card .salon-card__address {
  color: #464646;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .salon-area .salon-area__grid .salon-card .salon-card__address {
    margin-bottom: 80px;
  }
}

.salon-info .salon-info__title-area {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.salon-info .salon-info__title-area .salon-info__title {
  font-weight: 400;
  font-style: normal;
  font-size: 48px;
  color: #CA7F13;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  top: 100px;
}
@media screen and (max-width: 768px) {
  .salon-info .salon-info__title-area .salon-info__title {
    font-size: 24px;
    top: 50px;
  }
}
.salon-info .salon-info__title-area .salon-info__subtitle {
  font-family: "Yu Mincho", "游明朝", "YuMincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 80px;
  color: #CA7F13;
  letter-spacing: 0.1em;
  top: 100px;
}
@media screen and (max-width: 768px) {
  .salon-info .salon-info__title-area .salon-info__subtitle {
    font-size: 32px;
    line-height: 1.125;
    top: 50px;
  }
}
.salon-info .salon-info__content {
  text-align: center;
}
.salon-info .salon-info__content .salon-info__description {
  font-size: 20px;
  font-weight: 400;
  color: #333333;
  font-family: "Yu Mincho", "游明朝", "YuMincho", serif;
  letter-spacing: 0.1em;
  line-height: 2;
  padding: 120px 180px 167px;
}
@media screen and (max-width: 768px) {
  .salon-info .salon-info__content .salon-info__description {
    padding: 80px 30px 110px;
    font-size: 14px;
    text-align: start;
  }
}
.salon-info .salon-info__content .sp-only {
  display: none;
}
.salon-info .salon-info__content .sp-only include sp {
  display: block;
}
.salon-info .salon-info__flow {
  max-width: calc(1283px + 2vw);
  margin: 0 auto;
  padding: 0 1vw;
}
.salon-info .salon-info__flow .salon-flow__title {
  text-align: start;
  margin-left: 33px;
}
.salon-info .salon-info__flow .salon-flow__subtitle {
  text-align: start;
  margin-left: 33px;
}
.salon-info .salon-info__flow .salon-info__wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 96px;
  margin-bottom: 120px;
  position: relative;
}
.salon-info .salon-info__flow .salon-info__wrapper .salon-flow__img-left {
  max-width: 150px;
  max-height: 150px;
}
.salon-info .salon-info__flow .salon-info__wrapper .salon-flow__img-left img {
  max-width: 150px;
  max-height: 150px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  border: 0;
  position: absolute;
  top: 300px;
}
@media (max-width: 1160px) {
  .salon-info .salon-info__flow .salon-info__wrapper .salon-flow__img-left img {
    max-width: 64px;
    max-height: 80px;
    top: 550px;
    right: 0px;
  }
}
.salon-info .salon-info__flow .salon-info__wrapper .salon-flow__img-right {
  max-width: 180px;
  max-height: 180px;
}
.salon-info .salon-info__flow .salon-info__wrapper .salon-flow__img-right img {
  max-width: 180px;
  max-height: 180px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  border: 0;
  position: absolute;
  bottom: 300px;
  right: 0px;
}
@media (max-width: 1160px) {
  .salon-info .salon-info__flow .salon-info__wrapper .salon-flow__img-right img {
    max-width: 90px;
    max-height: 100px;
    top: 1090px;
    left: 0px;
  }
}
.salon-info .salon-info__flow .salon-info__wrapper .salon-flow__list {
  max-width: calc(800px + 2vw);
  margin: 0 auto;
  padding: 0 1vw;
}
@media (max-width: 1160px) {
  .salon-info .salon-info__flow .salon-info__wrapper .salon-flow__list {
    max-width: calc(550px + 2vw);
  }
}
@media screen and (max-width: 768px) {
  .salon-info .salon-info__flow .salon-info__wrapper .salon-flow__list {
    max-width: calc(300px + 2vw);
  }
}
.salon-info .salon-info__flow .salon-info__wrapper .salon-flow__list .salon-flow__item {
  display: flex !important;
  /* WPのis-layout～を上書き */
  flex-direction: row !important;
  align-items: flex-start;
  gap: 24px;
  /* 丸と本文のすき間 */
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .salon-info .salon-info__flow .salon-info__wrapper .salon-flow__list .salon-flow__item {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
.salon-info .salon-info__flow .salon-info__wrapper .salon-flow__list .salon-flow__item .salon-flow__number {
  background-color: #949E33;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  color: #F9F8F6;
  font-size: 32px;
  line-height: 60px;
  font-weight: 400;
  -o-object-fit: cover;
     object-fit: cover;
  /* 画像がはみ出しても枠にフィット */
  aspect-ratio: 1/1;
  /* 1:1 の比率（念のため） */
  flex-shrink: 0;
  /* Flex内でもサイズを縮めない */
}
.salon-info .salon-info__flow .salon-info__wrapper .salon-flow__list .salon-flow__item .salon-flow__content {
  color: #CA7F13;
  text-align: start;
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .salon-info .salon-info__flow .salon-info__wrapper .salon-flow__list .salon-flow__item .salon-flow__content {
    padding-left: 0px;
    text-align: center;
  }
}
.salon-info .salon-info__flow .salon-info__wrapper .salon-flow__list .salon-flow__item .salon-flow__content .salon-flow__step-title {
  font-family: "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 24px;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .salon-info .salon-info__flow .salon-info__wrapper .salon-flow__list .salon-flow__item .salon-flow__content .salon-flow__step-title {
    font-size: 18px;
  }
}
.salon-info .salon-info__flow .salon-info__wrapper .salon-flow__list .salon-flow__item .salon-flow__content .salon-flow__text {
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .salon-info .salon-info__flow .salon-info__wrapper .salon-flow__list .salon-flow__item .salon-flow__content .salon-flow__text {
    font-size: 14px;
    text-align: start;
  }
}

.staff-info {
  color: #CA7F13;
  background-color: #464646;
  border: 1px solid #707070;
  padding: 80px 0px;
}
@media screen and (max-width: 768px) {
  .staff-info {
    padding: 60px 0px;
  }
}
.staff-info .staff-info__inner {
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .staff-info .staff-info__inner {
    flex-direction: column;
    align-items: center;
    padding: 0px 30px;
  }
}
.staff-info .staff-info__inner .staff-info__image {
  max-width: 480px;
  max-height: 480px;
}
.staff-info .staff-info__inner .staff-info__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  /* 画像がはみ出しても枠にフィット */
  aspect-ratio: 1/1;
  /* 1:1 の比率（念のため） */
  flex-shrink: 0;
  /* Flex内でもサイズを縮めない */
}
@media screen and (max-width: 768px) {
  .staff-info .staff-info__inner .staff-info__image img {
    width: 240px;
    height: 240px;
  }
}
.staff-info .staff-info__inner .staff-info__content {
  max-width: 540px;
}
.staff-info .staff-info__inner .staff-info__content .staff-info__title {
  margin-bottom: 54px;
}
@media screen and (max-width: 768px) {
  .staff-info .staff-info__inner .staff-info__content .staff-info__title {
    font-size: 36px;
    margin-bottom: 24px;
  }
}
.staff-info .staff-info__inner .staff-info__content .jp {
  font-family: "Yu Gothic", serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.929;
}
.staff-info .staff-info__inner .staff-info__content .staff-info__name {
  font-family: "Yu Mincho", "游明朝", "YuMincho", serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.583;
  letter-spacing: 0.1em;
  margin-top: 24px;
}
.staff-info .staff-info__inner .staff-info__content .name-jp {
  font-family: "Yu Gothic", serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.667;
}

.salon-access {
  background-color: #D4CEBE;
  border: 1px solid #707070;
  color: #CA7F13;
}
.salon-access .salon-access__inner {
  display: flex;
  justify-content: space-between;
  padding: 80px 0px;
}
@media screen and (max-width: 768px) {
  .salon-access .salon-access__inner {
    flex-direction: column-reverse;
    align-items: center;
    padding: 60px 30px;
  }
}
.salon-access .salon-access__inner .salon-access__info {
  max-width: 540px;
}
@media screen and (max-width: 768px) {
  .salon-access .salon-access__inner .salon-access__info {
    margin-top: 40px;
  }
}
.salon-access .salon-access__inner .salon-access__info .salon-access__list {
  display: flex;
  flex-direction: column;
  /* ← 縦並び */
  justify-content: center;
  /* ← 親の中で縦の中央に */
  height: 360px;
  /* ← 高さが必要！お好みで */
}
@media screen and (max-width: 768px) {
  .salon-access .salon-access__inner .salon-access__info .salon-access__list {
    height: auto;
  }
}
.salon-access .salon-access__inner .salon-access__info .salon-access__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 20px 54px 20px 8px;
  border-bottom: 1px solid #CA7F13;
}
@media screen and (max-width: 768px) {
  .salon-access .salon-access__inner .salon-access__info .salon-access__item {
    padding: 20px 16px 20px 0px;
    text-align: start;
  }
}
.salon-access .salon-access__inner .salon-access__info dt {
  font-family: "Yu Mincho", "游明朝", "YuMincho", serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .salon-access .salon-access__inner .salon-access__info dt {
    font-size: 16px;
  }
}
.salon-access .salon-access__inner .salon-access__info dd {
  color: #333333;
  font-family: "Yu Gothic", serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 2.143;
  letter-spacing: 0.1em;
  margin-left: 64px;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .salon-access .salon-access__inner .salon-access__info dd {
    font-size: 12px;
    margin-left: 0px;
  }
}
.salon-access .salon-access__inner .salon-access__info address {
  font-style: normal;
}
.salon-access .salon-access__inner .salon-access__map {
  max-width: 540px;
}
.salon-access .salon-access__inner .salon-access__map iframe {
  width: 540px;
  aspect-ratio: 3/2;
  border: 0;
}
@media screen and (max-width: 768px) {
  .salon-access .salon-access__inner .salon-access__map iframe {
    width: 315px;
  }
}

.news-section__inner {
  display: flex;
  padding: 120px 0px;
}
@media (max-width: 1150px) {
  .news-section__inner {
    padding: 120px 10px;
  }
}
@media screen and (max-width: 768px) {
  .news-section__inner {
    display: flex;
    flex-direction: column;
    padding: 80px 12px;
  }
}
.news-section__inner .news-__list {
  width: calc(864px + 2vw);
  margin: 0 auto;
  padding: 0 1vw;
  color: #CA7F13;
  gap: 20px;
}
@media (max-width: 1200px) {
  .news-section__inner .news-__list {
    max-width: calc(864px + 2vw);
    width: 100%;
  }
}
@media (hover: hover) {
  .news-section__inner .news-__list .news-items .news-item:hover {
    opacity: 0.6;
    transition: 0.3s;
    transform: translateY(-1px);
  }
}
.news-section__inner .news-__list .news-items .news-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  margin-bottom: 20px;
  background-color: #D4CEBE;
}
@media screen and (max-width: 768px) {
  .news-section__inner .news-__list .news-items .news-item {
    flex-direction: column;
    padding: 12px 0px 0px 12px;
  }
}
.news-section__inner .news-__list .news-items .news-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .news-section__inner .news-__list .news-items .news-item a {
    display: block;
  }
  .news-section__inner .news-__list .news-items .news-item a .news-item__date,
  .news-section__inner .news-__list .news-items .news-item a .news-item__title {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .news-section__inner .news-__list .news-items .news-item a .news-item__content {
    display: flex;
    flex-direction: column;
  }
}
.news-section__inner .news-__list .news-items .news-item a .news-item__content .news-item__date {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .news-section__inner .news-__list .news-items .news-item a .news-item__content .news-item__date {
    font-size: 14px;
  }
}
.news-section__inner .news-__list .news-items .news-item a .news-item__content .news-item__title {
  font-family: "Yu Mincho", "游明朝", "YuMincho", serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-left: 16px;
}
@media screen and (max-width: 768px) {
  .news-section__inner .news-__list .news-items .news-item a .news-item__content .news-item__title {
    margin-left: 0px;
    font-size: 14px;
  }
}
.news-section__inner .news-item__category.pc-view {
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 0.04em;
  color: rgba(84, 55, 45, 0.2);
  margin-left: 20px;
  position: relative;
  top: 10px;
}
@media screen and (max-width: 768px) {
  .news-section__inner .news-item__category.pc-view {
    display: none;
  }
}
.news-section__inner .news-item__category.sp-view {
  display: none;
}
@media screen and (max-width: 768px) {
  .news-section__inner .news-item__category.sp-view {
    display: block;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(84, 55, 45, 0.2);
    text-align: end;
    margin-top: 0px;
    line-height: 0.8;
    padding-right: 5px;
    padding-bottom: 7px;
  }
}

/* 均等並び＋全アイテムの間隔を 12px、">" の前だけ追加で 12px 足して合計 24px に */
.wp-pagenavi {
  display: flex;
  gap: 24px;
  justify-content: center;
  text-align: center;
  color: #CA7F13;
  font-size: 32px;
  padding-top: 12px;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi {
    font-size: 16px;
  }
}

@media (hover: hover) {
  .wp-pagenavi {
    opacity: 0.6;
    transition: 0.3s;
    transform: translateY(-1px);
  }
}
.wp-pagenavi a.nextpostslink {
  margin-left: 12px;
}

.news-archive__sidebar {
  height: 200px;
  padding-left: 16px;
  margin-left: 24px;
  border-left: 2px solid #CA7F13;
}
@media screen and (max-width: 768px) {
  .news-archive__sidebar {
    height: auto;
    border-left: none;
    margin-left: 0px;
    padding-left: 0px;
  }
}
.news-archive__sidebar .news-archive__category-title {
  margin-bottom: 26px;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 0.04em;
  color: #CA7F13;
}
@media screen and (max-width: 768px) {
  .news-archive__sidebar .news-archive__category-title {
    margin-top: 36px;
  }
}
@media (hover: hover) {
  .news-archive__sidebar li:hover {
    opacity: 0.6;
    transition: 0.3s;
    transform: translateY(-1px);
    text-decoration: underline;
  }
}
.news-archive__sidebar .news-archive__category-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #CA7F13;
}
@media screen and (max-width: 768px) {
  .news-archive__sidebar .news-archive__category-list {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }
}

.article .article-wrapper {
  max-width: calc(1097px + 2vw);
  margin: 0 auto;
  padding: 0 1vw;
  color: #CA7F13;
  display: flex;
  justify-content: space-between;
  margin-top: 112px;
  margin-bottom: 182px;
}
@media screen and (max-width: 768px) {
  .article .article-wrapper {
    padding: 0 14px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .article .article-wrapper {
    flex-direction: column;
    margin-top: 80px;
  }
}
.article .article-wrapper .article__inner {
  max-width: calc(691px + 2vw);
  margin: 0 auto;
}
.article .article-wrapper .article__inner .article__header .article__title {
  font-family: "Yu Mincho", "游明朝", "YuMincho", serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .article .article-wrapper .article__inner .article__header .article__title {
    font-size: 18px;
  }
}
.article .article-wrapper .article__inner .article__header .article__meta {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .article .article-wrapper .article__inner .article__header .article__meta {
    font-size: 12px;
  }
}
.article .article-wrapper .article__inner .article__image {
  max-width: 691px;
  max-height: 250px;
  margin-bottom: 32px;
}
.article .article-wrapper .article__inner .article__content .article__paragraph {
  color: #333333;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .article .article-wrapper .article__inner .article__content .article__paragraph {
    font-size: 14px;
  }
}
.article .article-wrapper .article__inner .article__content .article__paragraph--1 {
  margin-bottom: 34px;
}
@media screen and (max-width: 768px) {
  .article .article-wrapper .article__inner .article__content .article__paragraph--1 {
    margin-bottom: 24px;
  }
}
.article .article-wrapper .article__inner .article__content .article__paragraph--2 {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .article .article-wrapper .article__inner .article__content .article__paragraph--2 {
    margin-bottom: 24px;
  }
}
.article .article-wrapper .article__inner .article__content .article__paragraph--3 {
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .article .article-wrapper .article__inner .article__content .article__paragraph--3 {
    margin-bottom: 32px;
  }
}
.article .article-wrapper .article__inner .article__content .article__subtitle {
  font-family: "Yu Mincho", "游明朝", "YuMincho", serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.778;
  letter-spacing: 0.1em;
}
.article .article-wrapper .article__inner .article__content .article__button-wrapper {
  text-align: center;
  margin-top: 46px;
}
.article .article-wrapper .article__inner .article__content .article__button-wrapper .article__button {
  padding: 12px 40px;
  font-family: "Yu Mincho", "游明朝", "YuMincho", serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.1em;
  border-radius: 21px;
}

/* --- カテゴリラベルの表示切り替えを一本化 --- */
/* デフォルト：PC版を表示、SP版は隠す */
.news-item__category.pc-view {
  display: inline-block;
}

.news-item__category.sp-view {
  display: none;
}

/* 768px未満だけ SP版を表示、PC版を隠す */
@media (max-width: 767px) {
  .news-item__category.pc-view {
    display: none;
  }
  .news-item__category.sp-view {
    display: inline-block;
  }
}
.reserve-section__inner {
  max-width: calc(1061px + 2vw);
  margin: 0 auto;
  padding: 0 1vw;
  color: #CA7F13;
}
.reserve-section__inner .notice {
  margin: 120px 0px;
}
@media screen and (max-width: 768px) {
  .reserve-section__inner .notice {
    margin: 80px 30px;
  }
}
.reserve-section__inner .notice .notice__block {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .reserve-section__inner .notice .notice__block {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.reserve-section__inner .notice .notice__block .notice__block-left--1 {
  max-width: 720px;
  margin-bottom: 121px;
}
@media screen and (max-width: 768px) {
  .reserve-section__inner .notice .notice__block .notice__block-left--1 {
    margin-bottom: 32px;
  }
}
.reserve-section__inner .notice .notice__block .notice__block-left--1 .notice__heading {
  font-family: "Yu Mincho", "游明朝", "YuMincho", serif;
  font-weight: 400;
  /* Regular（標準の太さ） */
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 42px;
}
@media screen and (max-width: 768px) {
  .reserve-section__inner .notice .notice__block .notice__block-left--1 .notice__heading {
    font-size: 24px;
    margin-top: 24px;
    margin-bottom: 16px;
  }
}
.reserve-section__inner .notice .notice__block .notice__block-left--1 .notice__heading .sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .reserve-section__inner .notice .notice__block .notice__block-left--1 .notice__heading .sp-only {
    display: block;
  }
}
.reserve-section__inner .notice .notice__block .notice__block-left--1 .notice__text {
  line-height: 1.5;
}
.reserve-section__inner .notice .notice__block .notice__block-right--1 {
  width: 240px;
  height: 147px;
  background-color: #D4CEBE;
  text-align: center;
  padding: 32px 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reserve-section__inner .notice .notice__block .notice__block-right--1 .notice__label {
  font-size: 18px;
  font-weight: 400px;
  letter-spacing: 0.1em;
}
.reserve-section__inner .notice .notice__block .notice__block-right--1 .notice__button {
  width: 160px;
  height: 40px;
  font-size: 16px;
  line-height: 40px;
  font-family: "Yu Mincho", "游明朝", "YuMincho", serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.reserve-section__inner .notice .notice__block--2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .reserve-section__inner .notice .notice__block--2 {
    flex-direction: column;
    text-align: center;
  }
}
.reserve-section__inner .notice .notice__block--2 .notice__block-left--2::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 64%;
  width: 1px;
  background-color: #CA7F13;
  transform: translateX(-50%);
}
@media (max-width: 1000px) {
  .reserve-section__inner .notice .notice__block--2 .notice__block-left--2::before {
    left: 70%;
  }
}
@media (max-width: 880px) {
  .reserve-section__inner .notice .notice__block--2 .notice__block-left--2::before {
    content: none;
  }
}
.reserve-section__inner .notice .notice__block--2 .notice__block-left--2 {
  max-width: 578px;
}
.reserve-section__inner .notice .notice__block--2 .notice__block-left--2 .notice__tel-heading {
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .reserve-section__inner .notice .notice__block--2 .notice__block-left--2 .notice__tel-heading {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
.reserve-section__inner .notice .notice__block--2 .notice__block-left--2 .notice__tel-text {
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .reserve-section__inner .notice .notice__block--2 .notice__block-left--2 .notice__tel-text {
    text-align: start;
    margin-bottom: 24px;
  }
}
.reserve-section__inner .notice .notice__block--2 .notice__contact {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.reserve-section__inner .notice .notice__block--2 .notice__contact .notice__tel-number {
  font-size: 32px;
  letter-spacing: 0.1em;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .reserve-section__inner .notice .notice__block--2 .notice__contact .notice__tel-number {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
.reserve-section__inner .notice .notice__block--2 .notice__contact .notice__hours-button {
  color: #CA7F13;
  border-radius: 16px;
  border: 1px solid #CA7F13;
  width: 240px;
  height: 32px;
  line-height: 32px;
  font-size: 14px;
  background-color: #F9F8F6;
}

.form {
  background-color: #EDE9E4;
  padding: 80px 0px;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .form {
    padding: 60px 30px;
  }
}
.form .form__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .form .form__row {
    flex-direction: column;
  }
}
.form .form__row .form__left {
  max-width: 538px;
}
.form .form__row .form__left .form__heading {
  color: #CA7F13;
  text-transform: uppercase;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .form .form__row .form__left .form__heading {
    font-size: 32px;
    margin-bottom: 16px;
  }
}
.form .form__row .form__left .form__description {
  color: #333333;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .form .form__row .form__left .form__description {
    letter-spacing: 0.04em;
    margin-bottom: 32px;
  }
}

.form__right .form__steps {
  display: flex;
  gap: 26.5px;
  list-style: none;
  text-align: center;
  color: #707070;
}
@media screen and (max-width: 768px) {
  .form__right .form__steps {
    gap: 19px;
  }
}
.form__right .form__steps .form__step {
  box-shadow: inset 0 2px 0 #707070, inset 0 -2px 0 #707070;
  padding: 57.5px 13.5px 53.5px 14.5px;
}
@media screen and (max-width: 768px) {
  .form__right .form__steps .form__step {
    white-space: nowrap;
    padding: 40px 10px 33px;
  }
}
.form__right .form__steps .form__step .form__step-num {
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.4;
  font-weight: 400;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .form__right .form__steps .form__step .form__step-num {
    letter-spacing: 0.1em;
    font-size: 14px;
  }
}
.form__right .form__steps .form__step .form__step-label {
  font-family: "Yu Mincho", "游明朝", "YuMincho", serif;
  font-weight: 400;
  /* Regular（標準の太さ） */
  font-size: 24px;
  line-height: 1.167;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .form__right .form__steps .form__step .form__step-label {
    font-size: 16px;
    line-height: 3;
  }
}
.form__right .form__step.is-current {
  color: #cc8f3f;
  font-weight: 600;
  box-shadow: inset 0 2px 0 #cc8f3f, inset 0 -2px 0 #cc8f3f;
  padding: 57.5px 13.5px 53.5px 14.5px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .form__right .form__step.is-current {
    white-space: nowrap;
    padding: 40px 10px 33px;
  }
}

/* ========== 共通レイアウト ========== */
.form__body .form__group {
  max-width: calc(1019px + 2vw);
  margin: 0 auto 32px;
  padding: 0 1vw;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* 右カラム（テキスト系） */
  /* フォーカス見た目（テキスト系のみ） */
}
@media screen and (max-width: 768px) {
  .form__body .form__group {
    flex-direction: column;
    align-items: flex-start;
  }
}
.form__body .form__group .form__label {
  max-width: 399px;
  width: 100%;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .form__body .form__group .form__label {
    max-width: 315px;
    width: auto;
    margin-bottom: 14px;
    gap: 0px;
  }
}
.form__body .form__group .form__label .form__badge--optional {
  width: 60px;
  height: 26px;
  border-radius: 15px;
  background: #D4CEBE;
  color: #333;
  padding: 2px 14px;
}
@media screen and (max-width: 768px) {
  .form__body .form__group .form__label .form__badge--optional {
    margin-right: 12px;
  }
}
.form__body .form__group .form__label .form__badge--required {
  width: 60px;
  height: 26px;
  border-radius: 15px;
  background: #54372D;
  color: #fff;
  padding: 2px 14px;
}
@media screen and (max-width: 768px) {
  .form__body .form__group .form__label .form__badge--required {
    margin-right: 12px;
  }
}
.form__body .form__group .form__input,
.form__body .form__group .form__textarea {
  width: 620px;
  box-sizing: border-box;
  border: none;
  border-radius: 2px;
  height: 50px;
  padding-left: 10px;
  outline: none;
  transition: border-color 0.3s ease;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .form__body .form__group .form__input,
  .form__body .form__group .form__textarea {
    max-width: 300px;
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  .form__body .form__group .form__input,
  .form__body .form__group .form__textarea {
    max-width: 250px;
  }
}
@media (max-width: 1100px) {
  .form__body .form__group .form__input,
  .form__body .form__group .form__textarea {
    width: 450px;
  }
}
.form__body .form__group .form__textarea {
  height: 120px;
}
.form__body .form__group .form__input:focus,
.form__body .form__group .form__textarea:focus {
  outline: 1.5px solid #54372D;
}

/* ========== 特定行だけラベル300px ========== */
/* 希望店舗と来店希望日（第1/第2）のラベル幅だけ固定 */
.form__group.store .form__label,
.form__group.visit-date .form__label {
  max-width: 399px;
  width: 100%;
  white-space: nowrap;
}

/* 右カラムは全行で620pxに揃える */
.form__group.store .form__input,
.form__group.visit-date .date-picker__wrap {
  max-width: 300px;
  width: 100%;
  box-sizing: border-box;
}

/* ========== 連絡時間帯（平日/休日） ========== */
.form__group .form__time-options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font: 400 14px/2 "Yu Gothic";
  letter-spacing: 0.1em;
  width: 100%;
  max-width: 620px;
  row-gap: 12px;
}
.form__group .form__time-options .form__time-inner {
  display: grid;
  grid-template-columns: 56px 1fr;
  /* 左ラベル、右チェック群 */
  align-items: center;
}
@media (max-width: 950px) {
  .form__group .form__time-options .form__time-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 768px) {
  .form__group .form__time-options .form__time-inner {
    letter-spacing: 0.03em;
  }
}
.form__group .form__time-options p {
  margin: 0;
  font-weight: 400;
  margin-right: 20px;
  color: #333333;
  white-space: nowrap;
}
@media (max-width: 950px) {
  .form__group .form__time-options p {
    white-space: normal;
    margin-right: 0px;
  }
}
.form__group .form__time-options .checkbox__container {
  display: flex;
  gap: 1rem;
}
@media (max-width: 360px) {
  .form__group .form__time-options .checkbox__container {
    width: 82%;
  }
}
.form__group .form__time-options .checkbox__container .cb {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .form__group .form__time-options .checkbox__container .cb {
    gap: 7px;
  }
}
.form__group .form__time-options .checkbox__container .cb input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
}

/* 見た目用の四角（未チェック：枠なし白） */
.cb__box {
  width: 30px;
  height: 31px;
  background: #fff;
  border: none;
  border-radius: 2px;
  position: relative;
}

/* ========== お問い合わせ項目（2列グリッド） ========== */
.form__group .form__checkbox-group {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  row-gap: 12px;
  -moz-column-gap: 32px;
       column-gap: 32px;
  align-items: center;
  width: 620px;
  font: 400 14px/2 "Yu Gothic";
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.form__group .form__checkbox-group .cb {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.8;
  cursor: pointer;
}
.form__group .form__checkbox-group .cb input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
}
.form__group .form__checkbox-group .cb .cb__box {
  width: 30px;
  height: 31px;
  background: #fff;
  border: none;
  border-radius: 2px;
  position: relative;
}
.form__group .form__checkbox-group .cb input[type=checkbox]:focus-visible + .cb__box {
  outline: 2px solid #a67c52;
  outline-offset: 2px;
}
.form__group .form__checkbox-group .cb input[type=checkbox]:checked + .cb__box {
  background: #a67c52;
}
.form__group .form__checkbox-group .cb input[type=checkbox]:checked + .cb__box::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 2px;
  width: 8px;
  height: 12px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}

/* CF7のフィールドセットの枠を消す */
.wpcf7 form fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

/* 見出し(legend)の余白を整える（任意） */
.wpcf7 form legend {
  margin: 0 0 8px;
  padding: 0;
}

.form__group.inquiry .form__label {
  width: 100%;
  /* ← 他の行と同じ“列幅”に固定 */
  min-width: 399px;
  max-width: 399px;
  /* flex-basis を触らなくても固定化できる */
  white-space: normal;
  /* ← 改行OKにする */
  word-break: break-word;
  /* 長い単語でも折り返し */
}

.form__group.inquiry .form__checkbox-group {
  max-width: 620px;
  /* 右列の上限だけそろえる（幅は既に620なら不要） */
  width: 100%;
}

@media (max-width: 768px) {
  .form__group.inquiry .form__label {
    width: auto;
    min-width: 0;
    max-width: 100%;
  }
  .form__group.inquiry .form__checkbox-group {
    width: 100%;
    max-width: 100%;
  }
}
/* ========== 来店希望日（カレンダーアイコン付き） ========== */
.form__group .date-picker__wrap {
  position: relative;
  display: block;
  width: 620px;
  box-sizing: border-box;
  /* 未入力のときだけ文字を透明化する */
  /* 既定カレンダーアイコンは無効化（全体クリックで開く挙動は維持） */
  /* Font Awesome のアイコン */
}
.form__group .date-picker__wrap input[type=date] {
  width: 100%;
  height: 50px;
  border: none;
  box-sizing: border-box;
  padding: 0 40px 0 10px;
  font-size: 16px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: #333;
  /* ← デフォルトは見える色に */
}
.form__group .date-picker__wrap input[type=date].is-empty::-webkit-datetime-edit {
  color: transparent;
}
.form__group .date-picker__wrap input[type=date].is-empty::-moz-datetime-edit {
  color: transparent;
}
.form__group .date-picker__wrap input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.form__group .date-picker__wrap .fa-calendar-days {
  position: absolute;
  background-color: #CA7F13;
  width: 50px;
  height: 50px;
  right: 0px;
  top: 34%;
  transform: translateY(-50%);
  font-size: 35px;
  color: #ffffff;
  pointer-events: none;
  text-align: center;
  line-height: 50px;
}

.form__field-wrap {
  display: flex;
  flex-direction: column;
  width: 100% !important;
  max-width: 620px;
}

.form__note {
  font-size: 12px;
  margin-top: 8px;
  line-height: 2.333;
  letter-spacing: 0.1em;
  white-space: normal !important;
  word-break: break-word;
}
@media screen and (max-width: 768px) {
  .form__note {
    letter-spacing: 0.01em;
  }
}
.form__note .sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .form__note .sp-only {
    display: flex;
  }
}
@media screen and (max-width: 373px) {
  .form__note .sp-only {
    display: none;
  }
}

.form__submit {
  text-align: center;
}
.form__submit .form__submit--button {
  display: inline-block;
  width: 160px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  font-family: "Yu Mincho", "游明朝", "YuMincho", serif;
}

.form__value {
  font-family: "Yu Gothic", "游ゴシック体", "Hiragino Kaku Gothic ProN", sans-serif;
  font-style: normal;
}

.form .form__thanks {
  margin-bottom: 64px;
}

.thanks__inner {
  max-width: calc(662px + 2vw);
  margin: 0 auto;
  padding: 0 1vw;
  text-align: center;
  color: #CA7F13;
}
.thanks__inner .thanks__title {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .thanks__inner .thanks__title {
    font-size: 24px;
    white-space: normal;
  }
}
@media (max-width: 425px) {
  .thanks__inner .thanks__title {
    text-align: start;
  }
}
.thanks__inner .thanks__box {
  display: inline-block;
  text-align: left;
}
.thanks__inner .thanks__box .thanks__lead,
.thanks__inner .thanks__box .thanks__link {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .thanks__inner .thanks__box .thanks__lead,
  .thanks__inner .thanks__box .thanks__link {
    font-size: 14px;
  }
}
.thanks__inner .thanks__box .thanks__link {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
@media (hover: hover) {
  .thanks__inner .thanks__box .thanks__link:hover {
    opacity: 0.6;
    /* 少し薄くする程度 */
    transform: translateY(-10px) scale(1.1);
    /* 上に6px＋8%拡大 */
  }
}

/* CF7が入れる<p>が幅100%でFlexを壊すので“中身だけ”にする */
.wpcf7 form .form__group > p {
  display: contents;
  /* ラッパーをレイアウト上なかったことにする */
  margin: 0;
  /* 念のため段落の余白もゼロ */
}

/* 行はフレックスで横並びに、右カラムを広げる */
.wpcf7 form .form__group {
  display: flex;
  align-items: center;
}
@media (max-width: 950px) {
  .wpcf7 form .form__group {
    align-items: flex-start;
  }
}

.wpcf7 form .form__group > .form__label {
  /* ラベルは内容幅のまま */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  max-width: none;
  flex: 0 0 auto;
}

.wpcf7 form .form__group > .wpcf7-form-control-wrap,
.wpcf7 form .form__group > .date-picker__wrap {
  flex: 1 1 auto;
  display: block;
  min-width: 0;
}

.wpcf7 form .form__group input,
.wpcf7 form .form__group textarea {
  width: 100%;
}

.form__checkbox-group > .wpcf7-form-control-wrap > .wpcf7-form-control.choice-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr);
  -moz-column-gap: 60px;
       column-gap: 60px;
  row-gap: 14px;
}

/* ★見た目：白い□＋✓（inputは見える＆クリック可能のまま） */
.wpcf7 .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .wpcf7 .wpcf7-list-item label {
    gap: 0px;
  }
}

.wpcf7 .wpcf7-list-item input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  /* 既定のチェック柄を消す */
  position: relative;
  width: 30px;
  height: 31px;
  margin: 8px;
  border: none;
  border-radius: 2px;
  background: #fff;
  cursor: pointer;
}

.wpcf7 .wpcf7-list-item input[type=checkbox]:focus-visible {
  outline: 2px solid #a67c52;
  outline-offset: 2px;
}

.wpcf7 .wpcf7-list-item input[type=checkbox]:checked {
  background: #a67c52;
}

.wpcf7 .wpcf7-list-item input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 2px;
  width: 10px;
  height: 17px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(40deg);
}

/* 余計な段落ラッパを無力化（直下じゃない場合も拾う） */
.wpcf7 form .form__group.inquiry .form__checkbox-group p {
  display: contents !important;
  margin: 0 !important;
}

/* ラッパを幅いっぱいに（これが無いと中身が狭いまま） */
.wpcf7 form .form__group.inquiry .form__checkbox-group .wpcf7-form-control-wrap {
  display: block !important;
  width: 100% !important;
}

/* ★実際の“親”＝CF7が吐く本体に 2×2 グリッドを当てる */
.wpcf7 form .form__group.inquiry .form__checkbox-group .wpcf7-form-control.wpcf7-checkbox {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  /* ←2列 */
  grid-template-rows: repeat(2, auto);
  /* ←2行 */
  gap: 12px 48px;
  /* 行/列の間隔 */
  width: 100%;
}
@media (max-width: 950px) {
  .wpcf7 form .form__group.inquiry .form__checkbox-group .wpcf7-form-control.wpcf7-checkbox {
    display: flex;
    flex-direction: column;
  }
}

/* 各項目の体裁（□ とテキストの間隔） */
.wpcf7 form .form__group.inquiry .form__checkbox-group .wpcf7-list-item {
  margin: 0 !important;
}

/* 送信ボタンの行を中央寄せ */
.form__submit--button {
  text-align: center;
}

/* CF7 が <p> で包むことがあるので余白を消す */
.form__submit--button p {
  margin: 0;
  display: inline-block;
}

/* 丸い緑ボタン本体 */
.wpcf7 form input.form__button {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  display: inline-block;
  min-width: 160px;
  /* 右の見た目に合わせて固定幅 */
  height: 40px;
  padding: 0 24px;
  line-height: 40px;
  border: 0;
  border-radius: 9999px;
  /* まるい pill 形状 */
  background: #97A531;
  /* サイトの緑に近い色。必要なら調整 */
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: filter 0.2s, transform 0.06s;
}

.wpcf7 form input.form__button:hover {
  filter: brightness(1.05);
}

.wpcf7 form input.form__button:active {
  transform: translateY(1px);
}

/* スピナー（ぐるぐる）の位置を少し右へ。要らなければ display:none; に */
.wpcf7 form .wpcf7-spinner {
  margin-left: 8px;
}

.wpcf7-form-control.wpcf7-previous {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: #FFFFFF;
  cursor: pointer;
  margin-bottom: 15px;
  /* 下に余白をつける */
  display: inline-block;
  /* 不要なら消してOK */
}

@media screen and (max-width: 768px) {
  .wpcf7-list-item {
    margin: 0;
  }
}

/* デフォルトは枠線を透明に */
.wpcf7-response-output {
  border: 2px solid transparent !important;
  padding: 0.5em 1em;
  margin: 1em 0;
}

/* エラー時だけ枠線を表示（例: オレンジ） */
.wpcf7-form.invalid .wpcf7-response-output {
  border: 2px solid #ffb900 !important;
}

/* 成功時だけ枠線を表示（例: 緑） */
.wpcf7-form.sent .wpcf7-response-output {
  border: 2px solid #949E33 !important;
}

@media (max-width: 950px) {
  .form__time-options .form__time-inner > p {
    margin: 0;
    /* 既存の余白を無効化 */
    width: 56px;
    /* もともとの左カラム幅に合わせる（あなたのCSSにある値） */
    text-indent: 10px;
    /* ← 文字だけ左に余白、隣のチェック群には影響しない */
    display: block;
    /* 念のためブロックに固定 */
  }
}
.extra-class {
  display: flex;
  flex-direction: row !important;
}

.sb_instagram_header {
  display: none;
}

#sbi_load {
  display: none;
}

/* Instagramセクションだけに適用（あなたのセクションIDを使う） */
#instagram-section #sb_instagram #sbi_images,
#instagram-section [id^=sbi_feed_] #sbi_images {
  gap: 40px !important;
  /* ← インラインの gap:10px を上書き */
}
@media screen and (max-width: 768px) {
  #instagram-section #sb_instagram #sbi_images,
  #instagram-section [id^=sbi_feed_] #sbi_images {
    gap: 19px !important;
  }
}

#sb_instagram .sbi_photo img {
  width: 240px;
  height: 240px;
}
@media screen and (max-width: 768px) {
  #sb_instagram .sbi_photo img {
    width: 150px;
    height: 150px;
  }
}

/* 連番を 1 から振る */
.salon-flow__list {
  counter-reset: step;
}

.salon-flow__item {
  counter-increment: step;
}

.salon-flow__number {
  position: relative;
  display: grid;
  /* 中央寄せを確実に */
  place-items: center;
}

.salon-flow__number::before {
  content: counter(step);
  line-height: 60px;
  z-index: 1;
}

/* 丸は固定幅で縮まない（折り返し防止） */
.salon-flow__item > .salon-flow__number {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #949E33;
  color: #F9F8F6;
  font-size: 32px;
  font-weight: 400;
}

/* 本文は残り幅いっぱい */
.salon-flow__item > .salon-flow__content {
  flex: 1 1 auto;
  min-width: 0;
  /* 長い文でも折り返してはみ出さない */
  padding-left: 40px;
  color: #CA7F13;
  text-align: start;
}

/* WP既定の段落マージンが大きいと崩れるので薄めに */
.salon-flow__item p {
  margin: 0 0 8px;
}

/* SPでは縦並び＆中央寄せ */
@media screen and (max-width: 768px) {
  .salon-flow__item {
    flex-direction: column !important;
    align-items: center;
    gap: 12px;
  }
  .salon-flow__item > .salon-flow__content {
    padding-left: 0;
    text-align: center;
  }
  .salon-flow__step-title {
    font-size: 18px;
  }
  .salon-flow__text {
    font-size: 14px;
  }
}
/* 各ステップ（Group に salon-flow__item が付いたブロック）の
   直下ラッパーに flex を強制 */
.wp-block-group.salon-flow__item > .wp-block-group__inner-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 24px;
}

/* 丸（番号）を固定幅にして縮まない */
.wp-block-group.salon-flow__item > .wp-block-group__inner-container > .salon-flow__number {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #949E33;
  color: #F9F8F6;
  display: grid;
  place-items: center;
}

/* 連番カウンター（1 から） */
.salon-flow__list {
  counter-reset: step;
}

.salon-flow__item {
  counter-increment: step;
}

.salon-flow__number::before {
  content: counter(step);
  line-height: 60px;
}

/* 本文側は残り幅いっぱい・はみ出し防止 */
.wp-block-group.salon-flow__item > .wp-block-group__inner-container > .salon-flow__content {
  flex: 1 1 auto;
  min-width: 0;
  padding-left: 40px;
}

/* WPの段落既定マージンでズレやすいので控えめに */
.wp-block-group.salon-flow__item p {
  margin: 0 0 8px;
}

/* SPは縦並び */
@media (max-width: 768px) {
  .wp-block-group.salon-flow__item > .wp-block-group__inner-container {
    flex-direction: column !important;
    align-items: center;
    gap: 12px;
  }
  .wp-block-group.salon-flow__item > .wp-block-group__inner-container > .salon-flow__content {
    padding-left: 0;
    text-align: center;
  }
}
html {
  scroll-behavior: smooth;
}

.article__content {
  margin-top: 200px;
  line-height: 2;
}
@media (max-width: 1150px) {
  .article__content {
    margin: 20px;
  }
}
.article__content .wp-block-heading {
  margin-top: 50px;
}

.page .article__content a {
  color: #0b63ce;
  text-decoration: none;
}

@media (hover: hover) {
  .page .article__content a:hover {
    opacity: 0.8;
    transition: 0.3s;
    transform: translateY(-2px);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
}
@media (max-width: 1150px) {
  .sitemap {
    margin: 20px;
  }
}
.sitemap .sitemap__subtitle {
  margin: 10px 20px;
}
.sitemap .sitemap-title {
  margin: 30px 0px;
  font-size: 32px;
}
.sitemap .sitemap__list {
  color: #0b63ce;
  text-decoration: none !important;
  margin: 10px 0px 30px 20px;
}
@media (hover: hover) {
  .sitemap .sitemap__list li:hover {
    opacity: 0.8;
    transition: 0.3s;
    transform: translateY(-2px);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
}/*# sourceMappingURL=style.css.map */