@charset "UTF-8";
html {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
html .no-scroll {
  overflow: hidden;
  /* スクロールを無効化 */
  position: fixed;
  /* 固定位置 */
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  color: #000000;
  background-color: #ffffff;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  -wp-admin--admin-bar--height: 0;
  font-size: 0.9rem;
  letter-spacing: 0px;
  font-family: "Yu Mincho";
  scroll-margin-top: 250px;
  /* ヘッダー分の余白を確保 */
}
body .scroll-to-top {
  position: fixed;
  bottom: 68px;
  right: 22px;
  width: 80px;
  /* ボタンの幅 */
  height: 80px;
  /* ボタンの高さ */
  background-color: rgba(148, 158, 51, 0.7);
  /* 背景色と半透明度 */
  border-radius: 50%;
  /* 円形にする */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 36px;
  /* 矢印の大きさ */
  font-weight: bold;
  /* 矢印を太字に */
  color: #ffffff;
  /* 矢印の色 */
  cursor: pointer;
  opacity: 0;
  /* 初期状態で非表示 */
  visibility: hidden;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  /* 初期状態で縮小 */
  -webkit-transition: opacity 1s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 1s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 1s ease, transform 0.3s ease, visibility 0.3s ease;
  transition: opacity 1s ease, transform 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  /* 表示のトランジション */
  z-index: 999;
}
body .scroll-to-top.show {
  opacity: 1;
  /* 表示状態 */
  visibility: visible;
  /* 表示状態 */
  -webkit-transform: scale(1);
          transform: scale(1);
  /* 通常サイズ */
  -webkit-transition: 1s;
  transition: 1s;
}
body .scroll-to-top:hover {
  -webkit-transition: 1s;
  transition: 1s;
  background-color: rgba(202, 127, 19, 0.9);
  /* ホバー時の色 */
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

main {
  margin: 0 auto;
  padding: 0;
}

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

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  display: block;
  /* `<a>`全体をクリック可能に */
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* キーボード操作時にのみフォーカスアウトラインを表示 */
a:focus-visible {
  outline: 2px solid #fefefe;
  /* フォーカス時の アウトライン */
  -webkit-box-shadow: 0 0 2px #ffffff, 0 0 0 4px #000000;
          box-shadow: 0 0 2px #ffffff, 0 0 0 4px #000000;
  /* 2本目のアウトライン */
  border-radius: 5px;
}

.brsp {
  display: none;
}

.brpc {
  display: block;
}

.a-logo .h-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0px 0 20px;
}
.a-logo .h-logo__img {
  width: 64px;
  height: 64px;
}
.a-logo .h-logo__text {
  font-size: 28px;
  letter-spacing: 0.2em;
  line-height: 1.25;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #54372D;
  padding: 0 0 0 7px;
}
.a-logo:hover {
  opacity: 0.7;
}

.btn {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.625;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #FFFFFF;
  background: #949E33;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 40px;
  margin: 0 4px 0 0;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover {
  background: #CA7F13;
}
.btn.back {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* クリックを無効化 */
}

.view-more {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.view-more__text {
  position: relative;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #54372D;
}
.view-more__text::after {
  content: "";
  position: absolute;
  bottom: -1px;
  /* 下線の位置を調整 */
  left: 0;
  width: 120px;
  height: 1px;
  background-color: #54372D;
  /* 下線の色 */
  z-index: 1;
}
.view-more__arrow {
  position: relative;
}
.view-more__arrow::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 11px;
  width: 6px;
  height: 1px;
  -webkit-transform: rotate(28deg);
          transform: rotate(28deg);
  background-color: #54372D;
}

.section-title {
  display: block;
  position: relative;
  top: 0;
  left: 0;
}
.section-title__shadow {
  font-size: 120px;
  letter-spacing: 0em;
  line-height: 1.4;
  font-family: "Parisienne";
  font-weight: normal;
  color: rgba(202, 127, 19, 0.0784313725);
  position: absolute;
  /* 重ねて配置 */
  top: -40px;
  left: 100px;
  z-index: 2;
  /* 背面に配置 */
}
.section-title__main {
  font-size: 84px;
  letter-spacing: 0.04em;
  line-height: 1.2619047619;
  font-family: "Marcellus";
  font-weight: normal;
  color: #CA7F13;
  position: relative;
  /* 重ねる基準 */
  text-transform: uppercase;
  z-index: 4;
  /* 前面に表示 */
}
.section-title__small {
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #CA7F13;
}

.select-btn {
  color: #CA7F13;
  position: absolute;
  top: 48%;
  left: 51%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  /* 中心位置に調整 */
  text-align: center;
  z-index: 2;
  /* 擬似要素より前に配置 */
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.select-btn__main {
  font-size: 80px;
  letter-spacing: 0.1em;
  line-height: 0.175;
  font-family: "Marcellus";
  font-weight: normal;
  color: #CA7F13;
  position: relative;
  top: 0;
  left: 0;
}
.select-btn__sub {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 0.875;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #CA7F13;
  display: block;
  width: 150px;
  text-align: center;
  position: absolute;
  top: 530%;
  left: 49%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  /* 中心位置に調整 */
}

.fade-in {
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out, -webkit-transform 1s ease-out;
  visibility: hidden;
  /* 初期状態では要素を隠します。 */
}
.fade-in.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
  /* ビューポート内に入ったときに要素を表示します。 */
}

.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 200px);
          transform: translate(0, 200px);
  /* 初期位置を下にずらす */
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  /* イージングを適用 */
}
.fadein.scrollin {
  opacity: 1 !important;
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
}

#breadcrumbs {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #CA7F13;
  padding: 27.5px 0 0px 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* 各パンくずの要素設定 */
}
#breadcrumbs span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  padding: 0;
  /* リンクのスタイル */
  /* 最後のパンくず要素 */
  /* 最後の区切り線を削除 */
}
#breadcrumbs span a {
  color: #ca7f13;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  margin: 0;
}
#breadcrumbs span a:hover {
  color: #a8660f;
}
#breadcrumbs span.breadcrumb_last {
  margin-right: 16px;
}
#breadcrumbs span:last-child::after {
  content: "";
}
#breadcrumbs span:last-child::after {
  content: "";
}

@media (max-width: 900px) {
  .brsp {
    display: block;
  }
  .brpc {
    display: none;
  }
  .section-title {
    display: block;
    color: #CA7F13;
    position: relative;
  }
  .section-title__shadow {
    font-size: 72px;
    letter-spacing: 0em;
    line-height: 1.4027777778;
    font-family: "Parisienne";
    font-weight: normal;
    color: rgba(202, 127, 19, 0.0784313725);
    display: block;
    position: absolute;
    /* 重ねて配置 */
    top: -30px;
    left: 73px;
    z-index: 1;
    /* 背面に配置 */
  }
  .section-title__main {
    font-size: 48px;
    letter-spacing: 0.04em;
    line-height: 1.25;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
    position: relative;
    /* 重ねる基準 */
    z-index: 2;
    /* 前面に表示 */
  }
  .section-title__small {
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 0.6666666667;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #CA7F13;
  }
  .select-btn {
    color: #CA7F13;
    position: absolute;
    top: 48%;
    left: 51%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    /* 中心位置に調整 */
    text-align: center;
    z-index: 2;
    /* 擬似要素より前に配置 */
  }
  .select-btn__main {
    font-size: 48px;
    letter-spacing: 0.1em;
    line-height: 0.2916666667;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
    position: relative;
    top: 0;
    left: 0;
  }
  .select-btn__sub {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 1.1666666667;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #CA7F13;
    width: 150px;
    display: block;
    /* 行揃えを適切にするため */
    text-align: center;
    position: absolute;
    top: 340%;
    left: 49%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    /* 中心位置に調整 */
  }
}
@media (max-width: 500px) {
  body .scroll-to-top {
    position: fixed;
    bottom: 62px;
    right: 10px;
    width: 40px;
    /* ボタンの幅 */
    height: 40px;
    /* ボタンの高さ */
    background-color: rgba(148, 158, 51, 0.7);
    /* 背景色と半透明度 */
    border-radius: 50%;
    /* 円形にする */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 18px;
    /* 矢印の大きさ */
    font-weight: bold;
    /* 矢印を太字に */
    color: #ffffff;
    /* 矢印の色 */
    cursor: pointer;
    opacity: 0;
    /* 初期状態で非表示 */
    visibility: hidden;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    /* 初期状態で縮小 */
    -webkit-transition: opacity 1s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 1s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 1s ease, transform 0.3s ease, visibility 0.3s ease;
    transition: opacity 1s ease, transform 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
    /* 表示のトランジション */
    z-index: 999;
  }
  body .scroll-to-top.show {
    opacity: 1;
    /* 表示状態 */
    visibility: visible;
    /* 表示状態 */
    -webkit-transform: scale(1);
            transform: scale(1);
    /* 通常サイズ */
    -webkit-transition: 1s;
    transition: 1s;
  }
  body .scroll-to-top:hover {
    -webkit-transition: 1s;
    transition: 1s;
    background-color: rgba(202, 127, 19, 0.9);
    /* ホバー時の色 */
  }
  .brsp {
    display: block;
  }
  .brpc {
    display: none;
  }
  .btn.front {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    /* クリックを無効化 */
  }
  .btn.back {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 1.6666666667;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #FFFFFF;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    /* クリック可能 */
    width: 120px;
    height: 30px;
    margin: 0 auto;
  }
  .btn.back:hover {
    background-color: #CA7F13;
    color: #FFFFFF;
  }
  .section-title__shadow {
    font-size: 10vw;
  }
  #breadcrumbs {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2.5714285714;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #CA7F13;
    padding: 12.5px 0 0px 4px;
    /* 各パンくずの要素設定 */
  }
  #breadcrumbs span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
    margin: 0;
    padding: 0;
    /* リンクのスタイル */
    /* 最後のパンくず要素 */
    /* 最後の区切り線を削除 */
  }
  #breadcrumbs span a {
    color: #ca7f13;
    text-decoration: none;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    margin: 0;
  }
  #breadcrumbs span a:hover {
    color: #a8660f;
  }
  #breadcrumbs span.breadcrumb_last {
    margin-right: 16px;
  }
  #breadcrumbs span:last-child::after {
    content: "";
  }
}
.error-404 {
  margin: 0 auto;
  padding: 300px 0 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* フレックスボックスを有効化 */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 水平方向に中央揃え */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 垂直方向に中央揃え */
}
.error-404 img {
  display: block;
}

#header {
  width: 100%;
  position: absolute;
  position: fixed; /*← fixedで固定 */
  top: -1;
  z-index: 100;
}
#header.home-header {
  background-color: transparent; /* トップページの背景色 */
}
#header.home-header .h-list {
  background-color: transparent;
}
#header.subpage-header {
  background-color: #F9F8F6; /* サブページの背景色 */
}
#header.subpage-header .btn:hover {
  color: #F9F8F6;
  background-color: #CA7F13;
}
#header.subpage-header .h-list {
  background-color: #F9F8F6;
}
#header.subpage-header .hamburger:hover .hamburger__lines--line {
  background-color: #F9F8F6;
}
#header .header__inner--sp {
  display: none;
}
#header .header__inner--pc {
  padding: 47px 2% 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#header .header__inner--pc .h-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
#header .header__inner--pc .h-nav__li {
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.25;
  font-family: "Marcellus";
  font-weight: normal;
  color: #54372D;
  position: relative;
}
#header .header__inner--pc .h-nav__li a {
  color: #54372D;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
#header .header__inner--pc .h-nav__li::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  background: #54372D;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#header .header__inner--pc .h-nav__li:hover::after {
  opacity: 1;
  visibility: visible;
}
#header .header__inner--pc .h-nav .btn {
  width: 200px;
  height: 50px;
  font-size: 20px;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  gap: 25px;
  padding: 0 0 0 24px;
}

@media (max-width: 900px) {
  #header .header__inner--pc {
    display: none;
  }
  #header .header__inner--sp {
    width: 100%;
    display: block;
    position: absolute;
    top: -1px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  #header .header__inner--sp .h-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding: 21px 1% 29px 1%;
  }
  #header .header__inner--sp .h-list__img {
    width: 32px;
    height: 32px;
    margin: 0 0 0 16px;
    z-index: 1100;
  }
  #header .header__inner--sp .h-list__img:hover {
    opacity: 0.7;
  }
  #header .header__inner--sp .h-list .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100px;
    height: 30px;
    margin: 0;
    z-index: 1100;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  #header .header__inner--sp .h-list .hamburger__text {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.5714285714;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #FFFFFF;
    -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  #header .header__inner--sp .h-list .hamburger__lines {
    position: relative;
    width: 12px;
    height: 10px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    margin: 0 0 0 10.5px;
  }
  #header .header__inner--sp .h-list .hamburger__lines--line {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #FFFFFF;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, opacity 0.3s ease;
    transition: transform 0.5s ease, opacity 0.3s ease, -webkit-transform 0.5s ease;
  }
  #header .header__inner--sp .h-list .hamburger__lines--line:nth-child(1) {
    top: 0;
  }
  #header .header__inner--sp .h-list .hamburger__lines--line:nth-child(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  #header .header__inner--sp .h-list .hamburger__lines--line:nth-child(3) {
    bottom: 0;
  }
  #header .header__inner--sp .h-list .hamburger.is-open {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #949E33;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #header .header__inner--sp .h-list .hamburger.is-open .hamburger__text {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
    opacity: 0;
  }
  #header .header__inner--sp .h-list .hamburger.is-open .hamburger__lines {
    left: -15px;
  }
  #header .header__inner--sp .h-list .hamburger.is-open .hamburger__lines--line:nth-child(1) {
    top: 76%;
    left: 50%;
    width: 8px;
    -webkit-transform: rotate(45deg) translate(-50%, -50%);
            transform: rotate(45deg) translate(-50%, -50%);
  }
  #header .header__inner--sp .h-list .hamburger.is-open .hamburger__lines--line:nth-child(2) {
    opacity: 0;
  }
  #header .header__inner--sp .h-list .hamburger.is-open .hamburger__lines--line:nth-child(3) {
    top: 23%;
    left: 82%;
    width: 8px;
    -webkit-transform: rotate(-45deg) translate(-50%, -50%);
            transform: rotate(-45deg) translate(-50%, -50%);
  }
  #header .header__inner--sp .h-list .hamburger.is-open:hover .hamburger__lines--line {
    background-color: #ffffff;
  }
  #header .header__inner--sp .h-list .overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #D4CEBE;
    display: none;
    -webkit-box-align: left;
        -ms-flex-align: left;
            align-items: left;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    z-index: 1000;
  }
  #header .header__inner--sp .h-list .overlay-menu nav ul {
    list-style: none;
    margin: 144px auto auto 60px;
    text-align: left;
  }
  #header .header__inner--sp .h-list .overlay-menu nav ul li {
    font-family: "Marcellus", serif;
    margin: 0 0 12px 0;
  }
  #header .header__inner--sp .h-list .overlay-menu nav ul li a {
    font-size: 24px;
    letter-spacing: 0.1em;
    line-height: 1.25;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
    text-decoration: none;
  }
  #header .header__inner--sp .h-list .overlay-menu nav ul li a:hover {
    color: #949E33;
  }
  #header .header__inner--sp .h-list .overlay-menu.is-open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
#footer {
  background-color: #F9F8F6;
}
#footer .footer-contents__reserve {
  width: 100%;
  height: 400px;
  background: url("../../assets/images/A-TECH-TEST-image/test-image/img/reserve-link-pc.webp") no-repeat center center;
  background-size: cover;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer; /* マウスカーソルをポインタに変更 */
  /* 背景暗くする */
}
#footer .footer-contents__reserve::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* 背景を暗くする（0.4は透明度） */
  z-index: 1; /* テキストの後ろに配置 */
}
#footer .footer-contents__reserve:hover {
  opacity: 0.7;
}
#footer .footer-contents .footer-contents__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 320px;
  background-color: #F9F8F6;
  position: relative;
}
#footer .footer-contents .footer-contents__flex::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 121px;
  width: 84%;
  height: 1.2px;
  background-color: #CA7F13;
}
#footer .footer-contents .footer-contents__flex--salons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#footer .footer-contents .footer-contents__flex--salons .select-btn {
  top: 42%;
  left: 50%;
}
#footer .footer-contents .footer-contents__flex--salons .select-btn__sub {
  top: 540%;
  left: 49%;
}
#footer .footer-contents .footer-contents__flex--salons::before {
  content: "";
  position: absolute;
  right: -8px;
  top: 30px;
  width: 1.2px;
  height: 260px;
  background-color: #CA7F13;
}
#footer .footer-contents .footer-contents__flex--salons:hover {
  opacity: 0.7;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#footer .footer-contents .footer-contents__flex--sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#footer .footer-contents .footer-contents__flex--sns .select-btn {
  top: 40%;
  left: 49%;
}
#footer .footer-contents .footer-contents__flex--sns .select-btn__main {
  font-size: 72px;
}
#footer .footer-contents .footer-contents__flex--sns .select-btn__sub {
  top: 533%;
  left: 46%;
}
#footer .footer-contents .footer-contents__flex--sns:hover {
  opacity: 0.7;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#footer .footer-contents__end {
  max-width: 660px;
  width: 100%;
  margin: 120px auto 20px;
}
#footer .footer-contents__end .a-logo .h-logo {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 46px;
}
#footer .footer-contents__end .f-nav-sp {
  display: none;
}
#footer .footer-contents__end .f-nav-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.25;
  font-family: "Marcellus";
  font-weight: normal;
  color: #54372D;
  margin: 0 0 0 22px;
}
#footer .footer-contents__end .f-nav-pc li {
  padding: 0 30.5px;
  -webkit-transition: color 0.7s ease;
  transition: color 0.7s ease;
  border-right: 1.5px solid #54372D;
  margin: 0 0 32.5px;
  cursor: pointer;
  display: block;
}
#footer .footer-contents__end .f-nav-pc li a {
  color: #54372D;
}
#footer .footer-contents__end .f-nav-pc li a:hover {
  color: #F9F8F6;
  background-color: #CA7F13;
  -webkit-transition: color 0.7s ease;
  transition: color 0.7s ease;
}
#footer .footer-contents__end .f-nav-pc li:nth-child(1) {
  padding-left: 0;
}
#footer .footer-contents__end .f-nav-pc li:nth-child(5) {
  border-right: none;
}
#footer .footer-contents__end .f-nav-pc li:last-child {
  padding-right: 0;
  border-right: none;
}
#footer .last-text {
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 2.0833333333;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #54372D;
  text-align: center;
  margin: -2px 0 32px 19px;
}

@media (max-width: 900px) {
  #footer {
    margin: 0 auto 0;
  }
  #footer .footer-contents .scroll-to-top {
    position: fixed;
    bottom: 20px; /* ボタンの縦位置 */
    right: 20px; /* ボタンの横位置 */
    width: 60px; /* ボタンの幅 */
    height: 60px; /* ボタンの高さ */
    background-color: rgba(141, 182, 0, 0.8); /* 背景色と半透明度 */
    border-radius: 50%; /* 円形にする */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3); /* ボタンの影 */
    font-size: 24px; /* 矢印の大きさ */
    font-weight: bold; /* 矢印を太字に */
    color: #ffffff; /* 矢印の色 */
    cursor: pointer;
    opacity: 0; /* 初期状態で非表示 */
    visibility: hidden;
    -webkit-transform: scale(0.8);
            transform: scale(0.8); /* 初期状態で縮小 */
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease; /* 表示のトランジション */
  }
  #footer .footer-contents .scroll-to-top.show {
    opacity: 1; /* 表示状態 */
    visibility: visible; /* 表示状態 */
    -webkit-transform: scale(1);
            transform: scale(1); /* 通常サイズ */
  }
  #footer .footer-contents .scroll-to-top:hover {
    background-color: rgba(109, 155, 0, 0.9); /* ホバー時の色 */
  }
  #footer .footer-contents__reserve {
    width: 100%;
    height: 200px;
    background: url("../../assets/images/A-TECH-TEST-image/test-image/img/reserve-link-sp.webp") no-repeat center center;
    background-size: cover;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer; /* マウスカーソルをポインタに変更 */
    /* 背景暗くする */
  }
  #footer .footer-contents__reserve .select-btn {
    top: 42%;
    left: 53%;
  }
  #footer .footer-contents__reserve::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* 背景を暗くする（0.4は透明度） */
    z-index: 1; /* テキストの後ろに配置 */
  }
  #footer .footer-contents .footer-contents__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding: 0 8%;
    height: auto;
    position: relative;
  }
  #footer .footer-contents .footer-contents__flex::after {
    display: none;
  }
  #footer .footer-contents .footer-contents__flex--salons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 203px;
    position: relative;
    border-bottom: 1.2px solid #CA7F13;
  }
  #footer .footer-contents .footer-contents__flex--salons .select-btn {
    top: 44%;
    left: 54%;
  }
  #footer .footer-contents .footer-contents__flex--salons .select-btn__sub {
    top: 370%;
    left: 49%;
  }
  #footer .footer-contents .footer-contents__flex--salons::before {
    display: none;
  }
  #footer .footer-contents .footer-contents__flex--sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 200px;
    position: relative;
    border-bottom: 1.2px solid #CA7F13;
  }
  #footer .footer-contents .footer-contents__flex--sns .select-btn {
    top: 43%;
    left: 53%;
  }
  #footer .footer-contents .footer-contents__flex--sns .select-btn__main {
    font-size: 48px;
  }
  #footer .footer-contents .footer-contents__flex--sns .select-btn__sub {
    top: 370%;
    left: 49%;
  }
  #footer .footer-contents__end {
    max-width: 579px;
    width: 100%;
    margin: 102px auto 0;
  }
  #footer .footer-contents__end .a-logo .h-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    padding: 0px 0px 0px 58px;
  }
  #footer .footer-contents__end .a-logo .h-logo__img {
    width: 50px;
    height: 49px;
  }
  #footer .footer-contents__end .a-logo .h-logo__text {
    font-size: 20px;
    letter-spacing: 0.2em;
    line-height: 1.4;
    font-family: "Marcellus";
    font-weight: normal;
    color: #54372D;
    padding: 0 0 0 5px;
  }
  #footer .footer-contents__end .f-nav-pc {
    display: none;
  }
  #footer .footer-contents__end .f-nav-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 auto 12px;
    padding: 0 20px;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.2857142857;
    font-family: "Marcellus";
    font-weight: normal;
    color: #54372D;
    height: 18px;
  }
  #footer .footer-contents__end .f-nav-sp li {
    padding: 0 12px;
    -webkit-transition: color 0.7s ease;
    transition: color 0.7s ease;
    border-right: 1.5px solid #54372D;
    margin: 0 0 0;
    cursor: pointer;
    display: block;
  }
  #footer .footer-contents__end .f-nav-sp li a {
    color: #54372D;
  }
  #footer .footer-contents__end .f-nav-sp li a:hover {
    color: #F9F8F6;
    background-color: #CA7F13;
    -webkit-transition: color 0.7s ease;
    transition: color 0.7s ease;
  }
  #footer .footer-contents__end .f-nav-sp li:nth-child(1) {
    padding-left: 0;
  }
  #footer .footer-contents__end .f-nav-sp li:nth-child(5) {
    border-right: none;
  }
  #footer .footer-contents__end .f-nav-sp li:last-child {
    padding-right: 0;
    border-right: none;
  }
  #footer .footer-contents__end .first {
    margin: -8px 0px 0px 15px;
  }
  #footer .footer-contents__end .second {
    margin: 12px 0px 0px 38px;
  }
  #footer .footer-contents__end .third {
    margin: 30px 0px 0px 18px;
  }
  #footer .last-text {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 2.0833333333;
    font-family: "Marcellus";
    font-weight: normal;
    color: #54372D;
    text-align: center;
    margin: 36px 0 8px 18px;
  }
}
#footer {
  background-color: #F9F8F6;
  padding: 23px 0 0;
}
#footer .footer-contents .footer-contents__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 320px;
  background-color: #F9F8F6;
  position: relative;
}
#footer .footer-contents .footer-contents__flex::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 121px;
  width: 84%;
  height: 1.2px;
  background-color: #CA7F13;
}
#footer .footer-contents .footer-contents__flex--salons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#footer .footer-contents .footer-contents__flex--salons .select-btn {
  top: 42%;
  left: 50%;
}
#footer .footer-contents .footer-contents__flex--salons .select-btn__sub {
  top: 540%;
  left: 49%;
}
#footer .footer-contents .footer-contents__flex--salons::before {
  content: "";
  position: absolute;
  right: -8px;
  top: 30px;
  width: 1.2px;
  height: 260px;
  background-color: #CA7F13;
}
#footer .footer-contents .footer-contents__flex--salons:hover {
  opacity: 0.7;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#footer .footer-contents .footer-contents__flex--sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#footer .footer-contents .footer-contents__flex--sns .select-btn {
  top: 40%;
  left: 49%;
}
#footer .footer-contents .footer-contents__flex--sns .select-btn__main {
  font-size: 72px;
}
#footer .footer-contents .footer-contents__flex--sns .select-btn__sub {
  top: 533%;
  left: 46%;
}
#footer .footer-contents .footer-contents__flex--sns:hover {
  opacity: 0.7;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#footer .footer-contents__end {
  max-width: 660px;
  width: 100%;
  margin: 120px auto 20px;
}
#footer .footer-contents__end .a-logo .h-logo {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 46px;
}
#footer .footer-contents__end .f-nav-sp {
  display: none;
}
#footer .footer-contents__end .f-nav-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.25;
  font-family: "Marcellus";
  font-weight: normal;
  color: #54372D;
  margin: 0 0 0 22px;
}
#footer .footer-contents__end .f-nav-pc li {
  padding: 0 30.5px;
  -webkit-transition: color 0.7s ease;
  transition: color 0.7s ease;
  border-right: 1.5px solid #54372D;
  margin: 0 0 32.5px;
  cursor: pointer;
  display: block;
}
#footer .footer-contents__end .f-nav-pc li a {
  color: #54372D;
}
#footer .footer-contents__end .f-nav-pc li a:hover {
  color: #F9F8F6;
  background-color: #CA7F13;
  -webkit-transition: color 0.7s ease;
  transition: color 0.7s ease;
}
#footer .footer-contents__end .f-nav-pc li:nth-child(1) {
  padding-left: 0;
}
#footer .footer-contents__end .f-nav-pc li:nth-child(5) {
  border-right: none;
}
#footer .footer-contents__end .f-nav-pc li:last-child {
  padding-right: 0;
  border-right: none;
}
#footer .last-text {
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 2.0833333333;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #54372D;
  text-align: center;
  margin: -2px 0 32px 19px;
}

@media (max-width: 900px) {
  #footer {
    margin: 0 auto 0;
  }
  #footer .footer-contents .scroll-to-top {
    position: fixed;
    bottom: 20px; /* ボタンの縦位置 */
    right: 20px; /* ボタンの横位置 */
    width: 60px; /* ボタンの幅 */
    height: 60px; /* ボタンの高さ */
    background-color: rgba(141, 182, 0, 0.8); /* 背景色と半透明度 */
    border-radius: 50%; /* 円形にする */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3); /* ボタンの影 */
    font-size: 24px; /* 矢印の大きさ */
    font-weight: bold; /* 矢印を太字に */
    color: #ffffff; /* 矢印の色 */
    cursor: pointer;
    opacity: 0; /* 初期状態で非表示 */
    visibility: hidden;
    -webkit-transform: scale(0.8);
            transform: scale(0.8); /* 初期状態で縮小 */
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease; /* 表示のトランジション */
  }
  #footer .footer-contents .scroll-to-top.show {
    opacity: 1; /* 表示状態 */
    visibility: visible; /* 表示状態 */
    -webkit-transform: scale(1);
            transform: scale(1); /* 通常サイズ */
  }
  #footer .footer-contents .scroll-to-top:hover {
    background-color: rgba(109, 155, 0, 0.9); /* ホバー時の色 */
  }
  #footer .footer-contents .footer-contents__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding: 0 8%;
    height: auto;
    position: relative;
  }
  #footer .footer-contents .footer-contents__flex::after {
    display: none;
  }
  #footer .footer-contents .footer-contents__flex--salons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 203px;
    position: relative;
    border-bottom: 1.2px solid #CA7F13;
  }
  #footer .footer-contents .footer-contents__flex--salons .select-btn {
    top: 44%;
    left: 54%;
  }
  #footer .footer-contents .footer-contents__flex--salons .select-btn__sub {
    top: 370%;
    left: 49%;
  }
  #footer .footer-contents .footer-contents__flex--salons::before {
    display: none;
  }
  #footer .footer-contents .footer-contents__flex--sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 200px;
    position: relative;
    border-bottom: 1.2px solid #CA7F13;
  }
  #footer .footer-contents .footer-contents__flex--sns .select-btn {
    top: 43%;
    left: 53%;
  }
  #footer .footer-contents .footer-contents__flex--sns .select-btn__main {
    font-size: 48px;
  }
  #footer .footer-contents .footer-contents__flex--sns .select-btn__sub {
    top: 370%;
    left: 49%;
  }
  #footer .footer-contents__end {
    max-width: 579px;
    width: 100%;
    margin: 102px auto 0;
  }
  #footer .footer-contents__end .a-logo .h-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    padding: 0px 0px 0px 58px;
  }
  #footer .footer-contents__end .a-logo .h-logo__img {
    width: 50px;
    height: 49px;
  }
  #footer .footer-contents__end .a-logo .h-logo__text {
    font-size: 20px;
    letter-spacing: 0.2em;
    line-height: 1.4;
    font-family: "Marcellus";
    font-weight: normal;
    color: #54372D;
    padding: 0 0 0 5px;
  }
  #footer .footer-contents__end .f-nav-pc {
    display: none;
  }
  #footer .footer-contents__end .f-nav-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 auto 12px;
    padding: 0 20px;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.2857142857;
    font-family: "Marcellus";
    font-weight: normal;
    color: #54372D;
    height: 18px;
  }
  #footer .footer-contents__end .f-nav-sp li {
    padding: 0 12px;
    -webkit-transition: color 0.7s ease;
    transition: color 0.7s ease;
    border-right: 1.5px solid #54372D;
    margin: 0 0 0;
    cursor: pointer;
    display: block;
  }
  #footer .footer-contents__end .f-nav-sp li a {
    color: #54372D;
  }
  #footer .footer-contents__end .f-nav-sp li a:hover {
    color: #F9F8F6;
    background-color: #CA7F13;
    -webkit-transition: color 0.7s ease;
    transition: color 0.7s ease;
  }
  #footer .footer-contents__end .f-nav-sp li:nth-child(1) {
    padding-left: 0;
  }
  #footer .footer-contents__end .f-nav-sp li:nth-child(5) {
    border-right: none;
  }
  #footer .footer-contents__end .f-nav-sp li:last-child {
    padding-right: 0;
    border-right: none;
  }
  #footer .footer-contents__end .first {
    margin: -8px 0px 0px 15px;
  }
  #footer .footer-contents__end .second {
    margin: 12px 0px 0px 38px;
  }
  #footer .footer-contents__end .third {
    margin: 30px 0px 0px 18px;
  }
  #footer .last-text {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 2.0833333333;
    font-family: "Marcellus";
    font-weight: normal;
    color: #54372D;
    text-align: center;
    margin: 36px 0 8px 18px;
  }
}
#para-mainvisual {
  /* パララックスセクション */
}
#para-mainvisual .section-title {
  position: relative;
  height: 532px; /* セクションの高さ */
  background-color: #D4CEBE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  top: 0;
  left: 0;
}
#para-mainvisual .section-title h1 {
  width: 100%;
  color: #CA7F13;
  font-size: 80px;
  font-family: "Marcellus", serif;
  letter-spacing: 8px;
  position: absolute;
  top: 66.4%;
  left: 51%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#para-mainvisual .parallax-section {
  position: relative;
  height: 600px; /* 背景画像の高さ */
  overflow: hidden;
}
#para-mainvisual .parallax-section .parallax-image {
  position: fixed;
  top: 80px; /* ヘッダー分の高さ */
  left: 0;
  width: 100%; /* 常に画面幅いっぱい */
  height: 600px; /* 背景画像の高さ */
  background-size: cover; /* 元サイズを維持して全画面表示 */
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

@media (max-width: 900px) {
  #para-mainvisual {
    /* パララックスセクション */
  }
  #para-mainvisual .section-title {
    height: 400px; /* セクションの高さ */
  }
  #para-mainvisual .section-title h1 {
    font-size: 57px;
    letter-spacing: 5.2px;
    position: absolute;
    top: 64%;
    left: 52%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  #para-mainvisual .parallax-section {
    height: 500px; /* 背景画像の高さ */
  }
  #para-mainvisual .parallax-section .parallax-image {
    width: 100%; /* 常に画面幅いっぱい */
    height: 500px; /* 背景画像の高さ */
  }
}
@media (max-width: 500px) {
  #para-mainvisual {
    /* パララックスセクション */
  }
  #para-mainvisual .section-title {
    height: 280px; /* セクションの高さ */
  }
  #para-mainvisual .section-title h1 {
    font-size: 32px;
    letter-spacing: 3.2px;
    position: absolute;
    top: 64%;
    left: 53%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  #para-mainvisual .parallax-section {
    height: 300px; /* 背景画像の高さ */
  }
  #para-mainvisual .parallax-section .parallax-image {
    height: 300px; /* 背景画像の高さ */
  }
}
#mainvisual {
  width: 100%;
  height: 100vh;
}
#mainvisual .mainvisual {
  position: relative;
}
#mainvisual .mainvisual__images {
  width: 100%;
  height: 100%;
  position: relative;
}
#mainvisual .mainvisual__images--item {
  width: 100%;
  height: 100%;
  background: url("../../assets/images/A-TECH-TEST-image/test-image/img/fv_bg-pc.jpg") no-repeat right center;
  background-size: cover;
}
#mainvisual .mainvisual__images--text {
  font-size: 64px;
  font-family: serif;
  font-weight: normal;
  color: #FFFFFF;
  letter-spacing: 6.4px;
  line-height: 96px;
  position: absolute;
  top: 357px; /* トップを基準に中央配置 */
  left: 36px; /* 左を基準に中央配置 */
}

@media (max-width: 500px) {
  #mainvisual {
    width: 100vw;
    height: 100vh;
  }
  #mainvisual .mainvisual {
    position: relative;
  }
  #mainvisual .mainvisual__images {
    width: 100%;
    height: 100%;
    position: relative;
  }
  #mainvisual .mainvisual__images--item {
    width: 100%;
    height: 100%;
    background: url("../../assets/images/A-TECH-TEST-image/test-image/img/fv_bg-sp.jpg") no-repeat center center;
    background-size: cover;
  }
  #mainvisual .mainvisual__images--text {
    font-size: 32px;
    font-family: serif;
    font-weight: normal;
    color: #FFFFFF;
    letter-spacing: 3.2px;
    line-height: 48px;
    position: absolute;
    top: 392px; /* トップを基準に中央配置 */
    left: 14px; /* 左を基準に中央配置 */
  }
}
#news {
  margin: 183px auto 0;
  padding: 0 8.33%;
}
#news .news__inner {
  max-width: 1081px;
  width: 100%;
  margin: 0 auto;
}
#news .news__inner--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0 0 39.5px;
}
#news .news__inner--flex .section-title {
  margin: 0 0 0 8px;
}
#news .news__inner--flex .section-title__main {
  text-transform: none;
}
#news .news__inner--flex .btn {
  width: 160px;
  height: 40px;
  margin: 0 -8px -6px 0px;
}
#news .news__inner--flex .btn:hover {
  background-color: #CA7F13;
  color: #FFFFFF;
}
#news .news__inner .news-postlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0;
}
#news .news__inner .news-postlist .news-post {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-left: 1px solid #54372D; /* 左側の線を設定 */
  border-right: none; /* 初期状態で右側の線を無効化 */
  height: 150px;
  margin: 0 0 0 8px;
}
#news .news__inner .news-postlist .news-post .custom-field {
  color: #54372D;
  padding: 16.5px 19.5px 19.5px;
}
#news .news__inner .news-postlist .news-post .custom-field__post-date {
  display: block;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1;
  font-family: "Yu Gothic";
  font-weight: bold;
  color: #54372D;
  margin: 0 0 12px 0;
}
#news .news__inner .news-postlist .news-post .custom-field__news-title {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #54372D;
  margin: 15px 0px 0px 0px;
  padding: 0 0 0 0;
}
#news .news__inner .news-postlist .news-post .custom-field__post-category {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.2857142857;
  font-family: "Marcellus";
  font-weight: normal;
  color: #54372D;
  margin: 20px 0 0;
}
#news .news__inner .news-postlist:last-child {
  border-right: 1px solid #54372D; /* 最後の要素に右側の線を追加 */
  height: 150px;
  width: 101%;
}
#news .news__inner .news-post:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 500px) {
  #news {
    margin: 56px auto;
    padding: 0 8%;
  }
  #news .news__inner {
    max-width: 1081px;
    width: 100%;
    margin: 0 auto;
  }
  #news .news__inner--flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin: 0 0 39.5px;
  }
  #news .news__inner--flex .section-title {
    margin: 0 0 0 8px;
  }
  #news .news__inner .news-postlist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding: 0;
    position: relative; /* 擬似要素の基準に */
  }
  #news .news__inner .news-postlist .news-post {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-top: 1px solid #54372D;
    border-left: none; /* 初期状態で右側の線を無効化 */
    border-bottom: none; /* 初期状態で右側の線を無効化 */
    height: 161px;
    padding: 15.5px 0;
  }
  #news .news__inner .news-postlist .news-post .custom-field {
    color: #54372D;
    padding: 0;
  }
  #news .news__inner .news-postlist .news-post .custom-field__post-date {
    display: block;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.5714285714;
    font-family: "Yu Gothic";
    font-weight: bold;
    color: #54372D;
    margin: 0 0 12px 0;
  }
  #news .news__inner .news-postlist .news-post .custom-field__news-title {
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 1.5;
    font-family: "Yu Gothic";
    font-weight: bold;
    color: #54372D;
    margin: 0 0 16px 0;
  }
  #news .news__inner .news-postlist .news-post .custom-field__post-category {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.2857142857;
    font-family: "Marcellus";
    font-weight: normal;
    color: #54372D;
  }
  #news .news__inner .news-postlist .news-post:hover {
    opacity: 0.7;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  #news .news__inner .news-postlist::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #54372D; /* 線の色 */
  }
  #news .news__inner .btn.back {
    margin: 11px auto 0;
  }
}
#concept {
  margin: 461px auto 0;
  padding: 0 8.33%;
}
#concept .concept__inner--sp {
  display: none;
}
#concept .concept__inner--pc .section-title .concept-back-image {
  position: absolute;
  top: -243%;
  left: 337px;
  width: 865px;
  height: 680px;
  background: url("../../assets/images/A-TECH-TEST-image/test-image/img/top-concept_01-pc.webp") no-repeat center;
  background-size: contain;
  z-index: 2;
}
#concept .concept__inner--pc .section-title__subtitle {
  position: absolute;
  font-size: 28px;
  letter-spacing: 0.1em;
  line-height: 1.2857142857;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #CA7F13;
  margin: 35.25px 0 0 0;
  z-index: 3;
}
#concept .concept__inner--pc .concept-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 372px 0 0 0;
}
#concept .concept__inner--pc .concept-flex__img {
  max-width: 540px;
  width: 100%;
  max-height: 211px;
  height: 100%;
}
#concept .concept__inner--pc .concept-flex__text {
  width: 50%;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #54372D;
  margin: 0 0 0 60px;
}
#concept .concept__inner--pc .view-more {
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  margin: 16px 0 0;
}

@media (max-width: 1200px) {
  #concept {
    margin: 200px auto 0;
    padding: 0 8%;
  }
  #concept .concept__inner--sp {
    display: none;
  }
  #concept .concept__inner--pc .section-title {
    width: 100%;
    height: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #concept .concept__inner--pc .section-title .concept-back-image {
    position: absolute;
    top: -132px;
    left: 0;
    width: 100%;
    height: 537px;
    background: url("../../assets/images/A-TECH-TEST-image/test-image/img/top-concept_01-pc.webp") no-repeat center;
    background-size: cover;
    z-index: 0;
  }
  #concept .concept__inner--pc .section-title__subtitle {
    position: absolute;
    font-size: 28px;
    letter-spacing: 0.1em;
    line-height: 1.2857142857;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #CA7F13;
    margin: 25.25px 0 0 0;
    z-index: 3;
  }
  #concept .concept__inner--pc .concept-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin: 372px 0 0 0;
  }
  #concept .concept__inner--pc .concept-flex__img {
    width: 100%;
    height: 100%;
    margin: 0 auto;
  }
  #concept .concept__inner--pc .concept-flex__text {
    width: 100%;
    text-align: center;
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 2;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #54372D;
    margin: 60px 0;
  }
  #concept .concept__inner--pc .view-more {
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    margin: 24px 0 0;
  }
}
@media (max-width: 500px) {
  #concept {
    margin: 120px auto 118px;
    padding: 0 8%;
  }
  #concept .concept__inner--pc {
    display: none;
  }
  #concept .concept__inner--sp {
    display: block;
  }
  #concept .concept__inner--sp .sp-concept__img {
    display: block;
    width: 523px;
    height: 248px;
    margin: 0 auto 73.37px;
  }
  #concept .concept__inner--sp .sp-concept .section-title {
    width: 100%;
    height: 100%;
  }
  #concept .concept__inner--sp .sp-concept .section-title__back-image {
    position: absolute;
    top: -32px;
    right: -12px;
    min-width: 108px;
    height: 245px;
    background: url("../../assets/images/A-TECH-TEST-image/test-image/img/top-concept_02-sp.webp") no-repeat center;
    background-size: contain;
    z-index: 1;
  }
  #concept .concept__inner--sp .sp-concept__subtitle {
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 2;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #CA7F13;
    margin: 42.13px 0px 32.88px 11px;
    z-index: 3;
  }
  #concept .concept__inner--sp .sp-concept__text {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 2;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #54372D;
    margin: -3px 0 0px;
  }
  #concept .concept__inner--sp .view-more {
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    margin: 19px 4px 0;
  }
}
#feature {
  background-color: #464646;
  padding: 41px 47px 59px 88px;
  height: 850px;
  margin: 201px 0 0;
}
#feature .feature__inner {
  position: relative;
}
#feature .feature__inner .section-title {
  width: 400px;
  top: 50%;
  left: 50%;
  position: relative;
  -webkit-transform: translate(-189px, 60px);
          transform: translate(-189px, 60px);
  z-index: 6;
}
#feature .feature__inner .section-title__shadow {
  top: -41px;
  left: 5px;
}
#feature .feature__inner .section-title__main {
  position: relative;
  z-index: 6;
}
#feature .feature__inner--sp {
  display: none;
}
#feature .feature__inner--pc .feature-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  top: 60px;
  left: 45px;
  height: 100%;
}
#feature .feature__inner--pc .feature-content .feature-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 181px 0 -8px 0px;
}
#feature .feature__inner--pc .feature-content .feature-tabs .feature-tabs__tab {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #CA7F13;
  cursor: pointer;
  margin: 0 0 60px;
  -webkit-transition: background-color 2s ease;
  transition: background-color 2s ease;
}
#feature .feature__inner--pc .feature-content .feature-tabs .feature-tabs__tab:nth-child(1) {
  margin: -14px 0 58px;
  position: relative;
}
#feature .feature__inner--pc .feature-content .feature-tabs .feature-tabs__tab:nth-child(1)::before {
  content: "I";
  position: absolute;
  top: 0px;
  left: -37px;
  font-size: 24px;
  letter-spacing: 0em;
  line-height: 1.625;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #CA7F13;
}
#feature .feature__inner--pc .feature-content .feature-tabs .feature-tabs__tab:nth-child(2) {
  margin: 0 0 60px;
  position: relative;
}
#feature .feature__inner--pc .feature-content .feature-tabs .feature-tabs__tab:nth-child(2)::before {
  content: "II";
  position: absolute;
  top: -1px;
  left: -40px;
  font-size: 18px;
  letter-spacing: 0em;
  line-height: 1.6111111111;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #CA7F13;
}
#feature .feature__inner--pc .feature-content .feature-tabs .feature-tabs__tab:nth-child(3) {
  margin: -14px 0 71px;
  position: relative;
}
#feature .feature__inner--pc .feature-content .feature-tabs .feature-tabs__tab:nth-child(3)::before {
  content: "III";
  position: absolute;
  top: 7px;
  left: -47px;
  font-size: 24px;
  letter-spacing: 0em;
  line-height: 1.625;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #CA7F13;
}
#feature .feature__inner--pc .feature-content .feature-tabs .feature-tabs__tab:hover, #feature .feature__inner--pc .feature-content .feature-tabs .feature-tabs__tab.active {
  color: white;
}
#feature .feature__inner--pc .feature-content .feature-content__image-slider {
  width: 35%;
  height: auto;
  position: absolute;
  top: -8%;
  left: 45%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
}
#feature .feature__inner--pc .feature-content .feature-content__image-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: opacity 2s ease, visibility 0s linear 2s, -webkit-transform 2s ease;
  transition: opacity 2s ease, visibility 0s linear 2s, -webkit-transform 2s ease;
  transition: opacity 2s ease, transform 2s ease, visibility 0s linear 2s;
  transition: opacity 2s ease, transform 2s ease, visibility 0s linear 2s, -webkit-transform 2s ease;
}
#feature .feature__inner--pc .feature-content .feature-content__image-slider .active-slide {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
#feature .feature__inner--pc .feature-content .feature-content__description-slider {
  width: 33%;
  height: 100%;
  position: relative;
  top: -128px;
  left: 30px;
}
#feature .feature__inner--pc .feature-content .feature-content__description-slider .description-slide {
  position: absolute;
  top: -4px;
  left: -58px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  color: #ca7f13;
  text-align: center;
  -webkit-transition: opacity 2s ease, visibility 0s linear 2s, -webkit-transform 2s ease;
  transition: opacity 2s ease, visibility 0s linear 2s, -webkit-transform 2s ease;
  transition: opacity 2s ease, transform 2s ease, visibility 0s linear 2s;
  transition: opacity 2s ease, transform 2s ease, visibility 0s linear 2s, -webkit-transform 2s ease;
}
#feature .feature__inner--pc .feature-content .feature-content__description-slider .description-slide h2 {
  font-size: 18px;
  letter-spacing: F-letter-spacing1-8/18em;
  line-height: 1.5;
  font-family: "Marcellus";
  font-weight: normal;
  color: #CA7F13;
  margin: 0 0 48px;
  position: relative;
}
#feature .feature__inner--pc .feature-content .feature-content__description-slider .description-slide h2::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 203px;
  width: 26px;
  height: 2px;
  background-color: #ca7f13; /* 下線の色 */
  z-index: 1;
}
#feature .feature__inner--pc .feature-content .feature-content__description-slider .description-slide h3 {
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #CA7F13;
  margin: 0 12px 48px 0px;
}
#feature .feature__inner--pc .feature-content .feature-content__description-slider .description-slide p {
  font-size: 18px;
  letter-spacing: F-letter-spacing1-8/18em;
  line-height: 2;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #CA7F13;
}
#feature .feature__inner--pc .feature-content .feature-content__description-slider .active-slide {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

@media (max-width: 1200px) {
  #feature {
    max-width: 100%;
    background-color: #464646;
    margin: 100px auto 0;
    padding: 0;
  }
  #feature .feature__inner {
    position: relative;
  }
  #feature .feature__inner .section-title {
    width: 300px;
    top: 50%;
    left: 50%;
    position: relative;
    -webkit-transform: translate(-172px, 64px);
            transform: translate(-172px, 64px);
    z-index: 6;
  }
  #feature .feature__inner .section-title__shadow {
    font-size: 120px;
    top: -33px;
    left: -6px;
  }
  #feature .feature__inner .section-title__main {
    font-size: 84px;
    position: relative;
    z-index: 6;
  }
  #feature .feature__inner--pc {
    display: none;
  }
  #feature .feature__inner--sp {
    display: block;
  }
  #feature .feature__inner--sp .feature-content-sp {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #feature .feature__inner--sp .feature-content-sp__image-slider {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #feature .feature__inner--sp .feature-content-sp__image-slider .slick-slide {
    padding: 0 7px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #feature .feature__inner--sp .feature-content-sp__image-slider .image-slide img {
    max-width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
    margin: 33px 0px 0px 0;
  }
  #feature .feature__inner--sp .feature-content-sp__description-slider {
    text-align: center;
    color: #ca7f13;
    width: 106%;
    display: block;
    padding: 32px 30px 62px;
  }
  #feature .feature__inner--sp .feature-content-sp__description-slider .description-slide {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  #feature .feature__inner--sp .feature-content-sp__description-slider .description-slide .text-with-line {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  #feature .feature__inner--sp .feature-content-sp__description-slider .description-slide .text-with-line::before {
    content: "";
    position: absolute;
    top: 48%;
    left: -149px;
    width: 428%;
    height: 1px;
    background-color: #ca7f13; /* 下線の色 */
    z-index: 1;
  }
  #feature .feature__inner--sp .feature-content-sp__description-slider .description-slide .text-with-line h2 {
    position: relative;
    font-size: 14px;
    letter-spacing: F-letter-spacing1-4/14em;
    line-height: 1.9285714286;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
    margin: -1px -20px 18px 0;
    z-index: 2;
    background-color: #464646;
    padding: 0 16px;
  }
  #feature .feature__inner--sp .feature-content-sp__description-slider .description-slide h3 {
    font-size: 18px;
    letter-spacing: F-letter-spacing1-8/18em;
    line-height: 2;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #CA7F13;
    margin: 0 0 30px;
  }
  #feature .feature__inner--sp .feature-content-sp__description-slider .description-slide p {
    font-size: 14px;
    letter-spacing: F-letter-spacing1-4/14em;
    line-height: 2;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
  }
}
@media (max-width: 500px) {
  #feature .feature__inner {
    position: relative;
  }
  #feature .feature__inner .section-title {
    -webkit-transform: translate(-93px, 64px);
            transform: translate(-93px, 64px);
    z-index: 6;
  }
  #feature .feature__inner .section-title__shadow {
    font-size: 72px;
    top: -33px;
    left: -6px;
  }
  #feature .feature__inner .section-title__main {
    font-size: 48px;
    position: relative;
    z-index: 6;
  }
}
#prise-menu {
  margin: 252px auto 120.5px;
  padding: 0 8.33%;
}
#prise-menu .prise-menu__inner {
  height: 470px;
  position: relative;
}
#prise-menu .prise-menu__inner .section-title {
  margin: 0 0 60.5px;
}
#prise-menu .prise-menu__inner .button-grid {
  width: 800px;
  display: grid;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  grid-template-columns: 1fr 1fr; /* 2列のレイアウト */
  grid-template-rows: auto auto auto; /* 高さは自動調整 */
  gap: 0px; /* 要素間のスペース */
  position: absolute; /* 絶対配置で自由に動かせる */
  bottom: -65px;
  right: -415px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); /* 中央に移動可能 */
}
@media (min-width: 501px) {
  #prise-menu .prise-menu__inner .button-grid {
    /* PCサイズ */
    grid-template-areas: "body v-line" "custom set" "all null";
  }
}
@media (max-width: 900px) {
  #prise-menu .prise-menu__inner .button-grid {
    /* SPサイズは縦積み */
    grid-template-areas: "body" "v-line" "set" "custom" "all";
  }
}
#prise-menu .prise-menu__inner .button-grid .button-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 12.5px 26px 12.5px 12.5px;
  text-align: left;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: none; /* 縦線がボーダー由来の場合削除 */
  /* 個別のグリッド配置 */
}
#prise-menu .prise-menu__inner .button-grid .button-item:hover {
  background-color: #ca7f13;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  /* ✅ テキストの色を変更 */
}
#prise-menu .prise-menu__inner .button-grid .button-item:hover .button-item__title,
#prise-menu .prise-menu__inner .button-grid .button-item:hover span,
#prise-menu .prise-menu__inner .button-grid .button-item:hover .komoji .button-item__arrow {
  color: #f7f9f6; /* テキストと同じ色に */
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#prise-menu .prise-menu__inner .button-grid .button-item__title {
  font-size: 48px;
  letter-spacing: 0.04em;
  line-height: 0.2916666667;
  font-family: "Marcellus";
  font-weight: normal;
  color: #CA7F13;
  margin: 16px 0 0;
}
#prise-menu .prise-menu__inner .button-grid .button-item__title span {
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #CA7F13;
  margin: 0 0 0 16px;
}
#prise-menu .prise-menu__inner .button-grid .button-item__title .komoji {
  font-size: 48px;
  letter-spacing: 0.04em;
  line-height: 0.2916666667;
  font-family: "Marcellus";
  font-weight: normal;
  color: #CA7F13;
  text-transform: lowercase;
  margin: 0;
}
#prise-menu .prise-menu__inner .button-grid .button-item__arrow {
  font-size: 24px;
  width: 15px;
  color: #ca7f13;
}
#prise-menu .prise-menu__inner .button-grid .button-item:nth-child(1) {
  grid-area: body; /* Body */
  border-right: 1px solid #CA7F13;
  border-bottom: 1px solid #CA7F13;
}
#prise-menu .prise-menu__inner .button-grid .button-item:nth-child(2) {
  grid-area: v-line; /* V-Line */
  border-bottom: 1px solid #CA7F13;
}
#prise-menu .prise-menu__inner .button-grid .button-item:nth-child(3) {
  grid-area: set; /* Set を中央左に */
  border-bottom: 1px solid #CA7F13;
  border-right: none;
}
#prise-menu .prise-menu__inner .button-grid .button-item:nth-child(4) {
  grid-area: custom; /* Custom を中央右に */
  border-right: 1px solid #CA7F13;
  border-bottom: 1px solid #CA7F13;
}
#prise-menu .prise-menu__inner .button-grid .button-item:nth-child(5) {
  grid-area: all; /* All を最下段中央に */
  border-right: 1px solid #CA7F13;
  border-bottom: none;
}

@media (max-width: 900px) {
  #prise-menu {
    margin: 107px auto 98.5px;
    padding: 0 4% 0 8%;
  }
  #prise-menu .prise-menu__inner {
    height: 560px;
    position: relative;
  }
  #prise-menu .prise-menu__inner .section-title {
    width: 300px;
    top: 50%;
    left: 50%;
    position: relative;
    -webkit-transform: translate(-157px, -237px);
            transform: translate(-157px, -237px);
  }
  #prise-menu .prise-menu__inner .section-title__shadow {
    width: 370px;
    top: -33px;
    left: -6px;
  }
  #prise-menu .prise-menu__inner .button-grid {
    width: 100%;
    display: grid;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    grid-template-columns: 1fr; /* SPサイズでは1列 */
    position: absolute; /* 絶対配置で自由に動かせる */
    bottom: -31%;
    right: -50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); /* 中央に移動可能 */
    margin: 0 auto;
  }
  #prise-menu .prise-menu__inner .button-grid .button-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 21px 17.5px 13px 4px;
    font-family: "Yu Mincho", serif;
    color: #ca7f13;
    text-align: left;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: none; /* 縦線がボーダー由来の場合削除 */
    /* 個別のグリッド配置 */
  }
  #prise-menu .prise-menu__inner .button-grid .button-item__title {
    font-size: 36px;
    letter-spacing: 0.04em;
    line-height: 0.3888888889;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
    margin: 16px 0 0;
  }
  #prise-menu .prise-menu__inner .button-grid .button-item__title .komoji {
    font-size: 36px;
    letter-spacing: 0.04em;
    line-height: 0.3888888889;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
    text-transform: lowercase;
    margin: 0;
  }
  #prise-menu .prise-menu__inner .button-grid .button-item__arrow {
    font-size: 24px;
    width: 15px;
    color: #ca7f13;
  }
  #prise-menu .prise-menu__inner .button-grid .button-item:nth-child(1) {
    grid-area: body; /* Body */
    border-right: none;
    border-bottom: 1px solid #CA7F13;
    padding: 0px 17.5px 22px 4px;
  }
  #prise-menu .prise-menu__inner .button-grid .button-item:nth-child(2) {
    grid-area: v-line; /* V-Line */
    border-bottom: 1px solid #CA7F13;
    padding: 21px 17.5px 12px 4px;
  }
  #prise-menu .prise-menu__inner .button-grid .button-item:nth-child(3) {
    grid-area: set; /* Set を中央左に */
    border-bottom: 1px solid #CA7F13;
    border-right: none;
    padding: 24px 16.5px 12px 11px;
  }
  #prise-menu .prise-menu__inner .button-grid .button-item:nth-child(4) {
    grid-area: custom; /* Custom を中央右に */
    border-right: none;
    border-bottom: 1px solid #CA7F13;
    padding: 25px 17.5px 9px 4px;
  }
  #prise-menu .prise-menu__inner .button-grid .button-item:nth-child(5) {
    grid-area: all; /* All を最下段中央に */
    border-right: none;
    border-bottom: none;
    padding: 27px 17.5px 3px 4px;
  }
}
@media (max-width: 500px) {
  #prise-menu .prise-menu__inner .section-title {
    -webkit-transform: translate(-157px, -237px);
            transform: translate(-157px, -237px);
    z-index: 6;
  }
  #prise-menu .prise-menu__inner .section-title__shadow {
    font-size: 72px;
  }
  #prise-menu .prise-menu__inner .section-title__main {
    font-size: 48px;
  }
}
#FAQ {
  margin: -8px auto 120px;
  padding: 0 11.5% 0 8.33%;
}
#FAQ .FAQ__inner .accordion {
  max-width: 1080px;
  margin: 60px 0 0 60px;
}
#FAQ .FAQ__inner .accordion .accordion-item {
  margin-bottom: 20px;
  background-color: #D4CEBE;
  overflow: hidden;
}
#FAQ .FAQ__inner .accordion .accordion-item .accordion-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100px;
  padding: 47px 32px 47px 20px;
  cursor: pointer;
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 0.7777777778;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #CA7F13;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease; /* 背景色の遷移 */
  position: relative;
}
#FAQ .FAQ__inner .accordion .accordion-item .accordion-header:hover {
  background-color: #e6dfd1;
}
#FAQ .FAQ__inner .accordion .accordion-item .accordion-header .accordion-question {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 8px 0px 4px 41px;
  position: relative;
}
#FAQ .FAQ__inner .accordion .accordion-item .accordion-header .accordion-question::before {
  content: "Q";
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 0.5833333333;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #CA7F13;
  position: absolute;
  top: -5px;
  left: -39px;
  margin: 0 0px 0 0px;
}
#FAQ .FAQ__inner .accordion .accordion-item .accordion-header .accordion-icon {
  font-size: 14px;
  color: #54372D;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  position: absolute;
  right: 29px;
  top: 43px;
}
#FAQ .FAQ__inner .accordion .accordion-item .accordion-content {
  max-height: 0;
  overflow: hidden;
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 1.2777777778;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #CA7F13;
  padding: 0 16px;
  -webkit-transition: max-height 0.3s ease, padding 0.3s ease;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
#FAQ .FAQ__inner .accordion .accordion-item .accordion-content p {
  position: relative;
  margin: -9px 0px 0px 38px;
}
#FAQ .FAQ__inner .accordion .accordion-item .accordion-content p::before {
  content: "A";
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 0.5833333333;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #CA7F13;
  position: absolute;
  top: 4px;
  left: -38px;
}
#FAQ .FAQ__inner .accordion .accordion-item.active .accordion-content {
  overflow: visible;
}
#FAQ .FAQ__inner .accordion .accordion-item.active .accordion-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (max-width: 900px) {
  #FAQ {
    margin: 164px auto 121px;
    padding: 0 4% 0 8%;
  }
  #FAQ .FAQ__inner .section-title__shadow {
    font-size: 72px;
    left: 41px;
  }
  #FAQ .FAQ__inner .accordion {
    max-width: 1080px;
    margin: 38px auto;
  }
  #FAQ .FAQ__inner .accordion .accordion-item {
    margin-bottom: 20px;
    background-color: #D4CEBE;
    overflow: hidden;
  }
  #FAQ .FAQ__inner .accordion .accordion-item .accordion-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 73px;
    padding: 16px 28px 17px 3px;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 1.5;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #CA7F13;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease; /* 背景色の遷移 */
    position: relative;
  }
  #FAQ .FAQ__inner .accordion .accordion-item .accordion-header:hover {
    background-color: #e6dfd1;
  }
  #FAQ .FAQ__inner .accordion .accordion-item .accordion-header .accordion-question {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 8px 0px 4px 41px;
    position: relative;
  }
  #FAQ .FAQ__inner .accordion .accordion-item .accordion-header .accordion-question::before {
    content: "Q";
    font-size: 18px;
    letter-spacing: 0.04em;
    line-height: 0.7777777778;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #CA7F13;
    position: absolute;
    top: 2px;
    left: -28px;
    margin: 0 0px 0 0px;
  }
  #FAQ .FAQ__inner .accordion .accordion-item .accordion-header .accordion-icon {
    font-size: 14px;
    color: #54372D;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    position: absolute;
    right: 11px;
    top: 26px;
  }
  #FAQ .FAQ__inner .accordion .accordion-item:last-child .accordion-header {
    height: 94px; /* 最後の.accordion-item内の.accordion-headerだけに適用 */
  }
  #FAQ .FAQ__inner .accordion .accordion-item .accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 14px;
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 1.5;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #CA7F13;
    -webkit-transition: max-height 0.3s ease, padding 0.3s ease;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  #FAQ .FAQ__inner .accordion .accordion-item .accordion-content p {
    position: relative;
    margin: -11px 0px 0px 26px;
  }
  #FAQ .FAQ__inner .accordion .accordion-item .accordion-content p::before {
    content: "A";
    font-size: 18px;
    letter-spacing: 0.04em;
    line-height: 0.7777777778;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #CA7F13;
    position: absolute;
    top: -2px;
    left: -24px;
  }
  #FAQ .FAQ__inner .accordion .accordion-item.active .accordion-content {
    overflow: visible;
  }
  #FAQ .FAQ__inner .accordion .accordion-item.active .accordion-icon {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
#section-contects.concept {
  height: auto;
  background-color: #D4CEBE;
}
#section-contects.concept .concept-detail__inner {
  padding: 0 8% 66px;
}
#section-contects.concept .concept-detail__inner--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 83px auto 0;
  position: relative;
  width: 100%;
  height: 460px;
}
#section-contects.concept .concept-detail__inner--flex h2 {
  font-size: 40px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-family: "Yu Mincho";
  font-weight: bold;
  color: #CA7F13;
  position: absolute;
  top: 144px;
  left: 5px;
  z-index: 3;
}
#section-contects.concept .concept-detail__inner--flex img {
  display: block;
  max-width: 720px;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  right: -9px;
  z-index: 1;
}
#section-contects.concept .concept-detail__inner--text {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #CA7F13;
  margin: 0 0 0 7px;
}

#instagram {
  width: 100%;
  height: 1008px;
  background-color: #F9F8F6;
}
#instagram .section-title {
  top: 175px;
  left: 120px;
}
#instagram .instagram-feed-container {
  width: 800px;
  height: 1200px;
  margin: 0 auto; /* 中央揃え */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
#instagram .instagram-feed-container #sb_instagram {
  padding-bottom: 20px;
  height: 1000px;
  /* ボタン部分 */
}
#instagram .instagram-feed-container #sb_instagram #sbi_images {
  display: grid;
  width: 100%;
  margin: 239px 0 0 10px;
  padding: 0;
}
#instagram .instagram-feed-container #sb_instagram .sbi_photo img {
  width: 240px;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}
#instagram .instagram-feed-container #sb_instagram .sbi_photo_wrap .sbi_photo {
  height: 240px;
}
#instagram .instagram-feed-container #sb_instagram .sbi_custom {
  background-color: #949E33; /* 緑色 */
  width: 200px;
  height: 50px;
  border-radius: 40px; /* 丸みを追加 */
  text-decoration: none;
  text-align: center;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  margin: 53px 0 0 15px;
}
#instagram .instagram-feed-container #sb_instagram .sbi_custom span {
  color: white;
  font-size: 20px;
  font-family: "Yu Mincho";
}
#instagram .instagram-feed-container #sb_instagram .sbi_custom :hover {
  background-color: #CA7F13;
}
#instagram .instagram-feed-container #sb_instagram #sb_instagram.sbi_fixed_height {
  overflow-y: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#company-profile {
  padding: 146px 11.5% 124px 12.5%;
  background-color: #F9F8F6;
}
#company-profile .company-profile__inner .section-title {
  top: 0;
  left: -58px;
}
#company-profile .company-profile__inner--image-sp {
  display: none;
}
#company-profile .company-profile__inner--image-pc {
  display: block;
  width: 100%;
  height: 540px;
  margin: 59px auto 56px;
}
#company-profile .company-profile__inner .company-info {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-columns: 40% 45%;
  gap: 0;
  border-top: 1px solid #CA7F13;
}
#company-profile .company-profile__inner .company-info .info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  width: 94%;
  padding: 10px 0;
  padding: 25.5px 0;
}
#company-profile .company-profile__inner .company-info .info-row .info-title {
  width: 30%;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 0.7777777778;
  font-family: "Yu Mincho";
  font-weight: bold;
  color: #CA7F13;
  padding: 0 0 0 13px;
}
#company-profile .company-profile__inner .company-info .info-row .info-content {
  width: 100%;
  font-size: 16px;
  letter-spacing: 0.1125em;
  line-height: 0.875;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #333333;
  padding: 0 0 0 32px;
}
#company-profile .company-profile__inner .company-info .info-row:last-child {
  border-bottom: none;
}
#company-profile .company-profile__inner .company-info .info-row.full-width {
  grid-column: 1/-1;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
#company-profile .company-profile__inner .company-info .info-row.full-width::after {
  content: "";
  position: absolute;
  bottom: -1px; /* 下線の位置を調整 */
  left: 0;
  width: 126%;
  height: 1px;
  background-color: #d9a86d; /* 下線の色 */
  z-index: 1;
}
#company-profile .company-profile__inner .company-info .info-row.full-width .info-title {
  width: 15%;
}
#company-profile .company-profile__inner .company-info .info-row.full-width .info-content {
  width: 127%;
}
#company-profile .company-profile__inner .company-info .border {
  position: relative;
}
#company-profile .company-profile__inner .company-info .border::after {
  content: "";
  position: absolute;
  bottom: -1px; /* 下線の位置を調整 */
  left: 0;
  width: 269%;
  height: 1px;
  background-color: #d9a86d; /* 下線の色 */
  z-index: 1;
}

@media (max-width: 900px) {
  #section-contects.concept {
    background-color: #D4CEBE;
  }
  #section-contects.concept .concept-detail__inner {
    padding: 0 8%;
  }
  #section-contects.concept .concept-detail__inner--flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 59px auto 0;
    position: static;
    width: 100%;
    height: auto;
  }
  #section-contects.concept .concept-detail__inner--flex .flex-text {
    font-size: 38px;
    letter-spacing: 1.8/38pxem;
    line-height: 60/38px;
    font-family: "Yu Mincho";
    font-weight: bold;
    color: #CA7F13;
    margin: 34px 0 41px 1px;
    position: static;
  }
  #section-contects.concept .concept-detail__inner--flex .flex-image {
    display: block;
    width: 100%;
    height: auto;
    position: static;
  }
  #section-contects.concept .concept-detail__inner--text {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
    margin: 0 0 0 2px;
  }
  #instagram {
    width: 100%;
    height: 1000px;
    background-color: #F9F8F6;
  }
  #instagram .section-title {
    top: 115px;
    left: 17px;
  }
  #instagram .instagram-feed-container {
    width: 600px;
    height: 1060px;
    margin: 0 auto; /* 中央揃え */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
  #instagram .instagram-feed-container #sb_instagram {
    padding-bottom: 20px;
    height: 1500px;
    margin: 0 auto; /* 中央揃え */
    overflow-x: hidden;
    overflow-y: hidden;
    /* ボタン部分 */
  }
  #instagram .instagram-feed-container #sb_instagram #sbi_images {
    display: grid;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    margin: 175px auto -23px;
    padding: 0;
    grid-template-columns: repeat(2, 240px); /* 縦2列 */
    grid-template-rows: repeat(3, 240px); /* 横3行 */
  }
  #instagram .instagram-feed-container #sb_instagram .sbi_photo img {
    width: 240px;
    height: 240px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #instagram .instagram-feed-container #sb_instagram .sbi_photo_wrap .sbi_photo {
    height: 240px;
  }
  #instagram .instagram-feed-container #sb_instagram .sbi_custom {
    background-color: #949E33; /* 緑色 */
    width: 200px;
    height: 50px;
    border-radius: 40px; /* 丸みを追加 */
    text-decoration: none;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
    margin: 53px auto;
  }
  #instagram .instagram-feed-container #sb_instagram .sbi_custom span {
    color: white;
    font-size: 20px;
    font-family: "Yu Mincho";
  }
  #instagram .instagram-feed-container #sb_instagram .sbi_custom :hover {
    background-color: #CA7F13;
  }
  #instagram .instagram-feed-container #sb_instagram #sb_instagram.sbi_fixed_height {
    overflow-x: hidden;
    overflow-y: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  #company-profile {
    padding: 146px 8% 124px;
    background-color: #F9F8F6;
  }
  #company-profile .company-profile__inner .section-title {
    top: 0;
    left: -58px;
  }
  #company-profile .company-profile__inner--image-sp {
    display: none;
  }
  #company-profile .company-profile__inner--image-pc {
    display: block;
    margin: 59px auto 60px;
  }
  #company-profile .company-profile__inner .company-info {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-columns: 50% 50%;
    gap: 0;
  }
  #company-profile .company-profile__inner .company-info .info-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    width: 100%;
    padding: 10px 0;
    padding: 25.5px 0;
  }
  #company-profile .company-profile__inner .company-info .info-row .info-title {
    width: 30%;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1;
    font-family: "Yu Gothic";
    font-weight: bold;
    color: #CA7F13;
    padding: 0 0 0 13px;
  }
  #company-profile .company-profile__inner .company-info .info-row .info-content {
    width: 70%;
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 1.1666666667;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #333333;
    padding: 0 0 0 32px;
  }
  #company-profile .company-profile__inner .company-info .info-row:last-child {
    border-bottom: none;
  }
  #company-profile .company-profile__inner .company-info .info-row.full-width {
    grid-column: 1/-1;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  #company-profile .company-profile__inner .company-info .info-row.full-width::after {
    content: "";
    position: absolute;
    bottom: -1px; /* 下線の位置を調整 */
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #d9a86d; /* 下線の色 */
    z-index: 1;
  }
  #company-profile .company-profile__inner .company-info .info-row.full-width .info-title {
    width: 18%;
  }
  #company-profile .company-profile__inner .company-info .info-row.full-width .info-content {
    width: 100%;
  }
  #company-profile .company-profile__inner .company-info .border {
    position: relative;
  }
  #company-profile .company-profile__inner .company-info .border::after {
    content: "";
    position: absolute;
    bottom: -1px; /* 下線の位置を調整 */
    left: 0;
    width: 199%;
    height: 1px;
    background-color: #d9a86d; /* 下線の色 */
    z-index: 1;
  }
}
@media (max-width: 500px) {
  #section-contects.concept {
    background-color: #D4CEBE;
  }
  #section-contects.concept .concept-detail__inner {
    padding: 0 4% 54px 8%;
  }
  #section-contects.concept .concept-detail__inner--flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 59px auto 0;
    position: static;
    width: 100%;
    height: auto;
  }
  #section-contects.concept .concept-detail__inner--flex .flex-text {
    color: #CA7F13;
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 2;
    font-family: "Yu Mincho";
    font-weight: bold;
    color: #CA7F13;
    margin: 18px 0 14px 1px;
    position: static;
  }
  #section-contects.concept .concept-detail__inner--flex .flex-image {
    display: block;
    max-width: 315px;
    width: 100%;
    height: auto;
    position: static;
  }
  #section-contects.concept .concept-detail__inner--text {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
    margin: 0 0 0 2px;
  }
  #instagram {
    width: 100%;
    height: 700px;
    background-color: #F9F8F6;
  }
  #instagram .section-title {
    top: 115px;
    left: 17px;
  }
  #instagram .instagram-feed-container {
    width: 375px;
    height: 870px;
    margin: 0 auto; /* 中央揃え */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
  #instagram .instagram-feed-container #sb_instagram {
    padding-bottom: 20px;
    height: 700px;
    margin: 0 auto; /* 中央揃え */
    /* ボタン部分 */
  }
  #instagram .instagram-feed-container #sb_instagram #sbi_images {
    display: grid;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    margin: 175px auto -23px;
    padding: 0;
    grid-template-columns: repeat(2, 148px); /* 縦2列 */
    grid-template-rows: repeat(3, 148px); /* 横3行 */
  }
  #instagram .instagram-feed-container #sb_instagram .sbi_photo img {
    width: 148px;
    height: 148px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #instagram .instagram-feed-container #sb_instagram .sbi_photo_wrap .sbi_photo {
    height: 240px;
  }
  #instagram .instagram-feed-container #sb_instagram .sbi_custom {
    background-color: #949E33; /* 緑色 */
    width: 200px;
    height: 50px;
    border-radius: 40px; /* 丸みを追加 */
    text-decoration: none;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
    margin: 53px auto;
  }
  #instagram .instagram-feed-container #sb_instagram .sbi_custom span {
    color: white;
    font-size: 20px;
    font-family: "Yu Mincho";
  }
  #instagram .instagram-feed-container #sb_instagram .sbi_custom :hover {
    background-color: #CA7F13;
  }
  #company-profile {
    padding: 146px 1px 0px 16px;
    background-color: #F9F8F6;
    height: 1437px;
  }
  #company-profile .company-profile__inner .section-title {
    top: 118px;
    left: 0px;
  }
  #company-profile .company-profile__inner--image-pc {
    display: none;
  }
  #company-profile .company-profile__inner--image-sp {
    display: block;
    margin: 188px auto 47px;
  }
  #company-profile .company-profile__inner .company-info {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid #CA7F13;
    border-bottom: 1px solid #CA7F13;
    background-color: #F9F8F6;
  }
  #company-profile .company-profile__inner .company-info .info-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    width: 100%;
    padding: 28px 0 25px;
    border-bottom: 1px solid #CA7F13;
  }
  #company-profile .company-profile__inner .company-info .info-row .info-title {
    width: 30%;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1;
    font-family: "Yu Mincho";
    font-weight: bold;
    color: #CA7F13;
  }
  #company-profile .company-profile__inner .company-info .info-row .info-content {
    width: 70%;
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 1.5;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #333333;
    padding: 0 0 0 24px;
  }
  #company-profile .company-profile__inner .company-info .info-row:last-child {
    border-bottom: none;
  }
  #company-profile .company-profile__inner .company-info .info-row.full-width {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    grid-template-columns: 1fr;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    -webkit-box-align: 47px;
        -ms-flex-align: 47px;
            align-items: 47px;
    position: static;
  }
  #company-profile .company-profile__inner .company-info .info-row.full-width .info-title {
    width: 30%;
  }
  #company-profile .company-profile__inner .company-info .info-row.full-width .info-content {
    width: 70%;
  }
  #company-profile .company-profile__inner .company-info .border {
    overflow: hidden;
  }
}
#section-contects.price-menu {
  height: auto;
  padding: 0 0 108px;
  background-color: #F9F8F6;
}
#section-contects.price-menu .course-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 68px auto 0;
  padding: 0px 7.7% 0 8.5%;
}
#section-contects.price-menu .course-menu__text {
  width: 50%;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #CA7F13;
}
#section-contects.price-menu .course-menu__list {
  width: 50%;
  position: relative;
}
#section-contects.price-menu .course-menu__list .button-grid {
  width: 92%;
  display: grid;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 0px;
  position: absolute;
  bottom: -38px;
  right: -271px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (min-width: 501px) {
  #section-contects.price-menu .course-menu__list .button-grid {
    /* PCサイズ */
    grid-template-areas: "body v-line" "set custom" "all null";
  }
}
@media (max-width: 1200px) {
  #section-contects.price-menu .course-menu__list .button-grid {
    /* SPサイズは縦積み */
    grid-template-areas: "body" "v-line" "set" "custom" "all";
  }
}
#section-contects.price-menu .course-menu__list .button-grid .button-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 9.17px 18.05px 8.83px 7.77px;
  font-family: "Yu Mincho", serif;
  color: #ca7f13;
  text-align: left;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: none; /* 縦線がボーダー由来の場合削除 */
  /* 個別のグリッド配置 */
}
#section-contects.price-menu .course-menu__list .button-grid .button-item:hover {
  color: #F9F8F6;
  background-color: #ca7f13;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  /* ホバー時にアイコンの色も変更 */
}
#section-contects.price-menu .course-menu__list .button-grid .button-item:hover .button-item__arrow {
  color: #f9f8f6; /* テキストと同じ色に */
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#section-contects.price-menu .course-menu__list .button-grid .button-item__title {
  font-size: 33px;
  letter-spacing: 0.04em;
  line-height: 0.303030303;
  font-family: "Marcellus";
  font-weight: normal;
  color: #CA7F13;
}
#section-contects.price-menu .course-menu__list .button-grid .button-item__title span {
  font-size: 9px;
  letter-spacing: 0.04em;
  line-height: 1;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #CA7F13;
  margin: 0 0 0 11.93px;
}
#section-contects.price-menu .course-menu__list .button-grid .button-item__title .komoji {
  font-size: 33px;
  letter-spacing: 0.04em;
  line-height: 0.303030303;
  font-family: "Marcellus";
  font-weight: normal;
  color: #CA7F13;
  text-transform: lowercase;
  margin: 0;
}
#section-contects.price-menu .course-menu__list .button-grid .button-item__arrow {
  font-size: 16px;
  width: 8px;
  color: #ca7f13;
}
#section-contects.price-menu .course-menu__list .button-grid .button-item:nth-child(1) {
  grid-area: body; /* Body */
  border-right: 1px solid #CA7F13;
  border-bottom: 1px solid #CA7F13;
}
#section-contects.price-menu .course-menu__list .button-grid .button-item:nth-child(2) {
  grid-area: v-line; /* V-Line */
  border-bottom: 1px solid #CA7F13;
}
#section-contects.price-menu .course-menu__list .button-grid .button-item:nth-child(3) {
  grid-area: set; /* Set を中央左に */
  border-bottom: 1px solid #CA7F13;
  border-right: 1px solid #CA7F13;
}
#section-contects.price-menu .course-menu__list .button-grid .button-item:nth-child(4) {
  grid-area: custom; /* Custom を中央右に */
  border-right: none;
  border-bottom: 1px solid #CA7F13;
}
#section-contects.price-menu .course-menu__list .button-grid .button-item:nth-child(5) {
  grid-area: all; /* All を最下段中央に */
  border-right: 1px solid #CA7F13;
  border-bottom: none;
}

#parts-menu-detail {
  background-color: #D4CEBE;
  color: #CA7F13;
  height: auto;
  padding: 64px 306px 1px 327px;
}
#parts-menu-detail .parts-title {
  font-size: 84px;
  letter-spacing: 0.04em;
  line-height: 0.119047619;
  font-family: "Marcellus";
  font-weight: normal;
  color: #CA7F13;
  text-align: center;
  margin: 0 auto 44px;
}
#parts-menu-detail .parts-title span {
  font-size: 9px;
  letter-spacing: 0.04em;
  line-height: 1;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #CA7F13;
  margin: 0 0 0 11.93px;
}
#parts-menu-detail .parts-title .komoji {
  font-size: 84px;
  letter-spacing: 0.04em;
  line-height: 0.119047619;
  font-family: "Marcellus";
  font-weight: normal;
  color: #CA7F13;
  text-transform: lowercase;
  margin: 0;
}
#parts-menu-detail .v-line-title {
  margin: 119px 0 -39px 7px;
}
#parts-menu-detail .parts-menu-detail__block .parts-nav {
  text-align: center;
}
#parts-menu-detail .parts-menu-detail__block .parts-nav .parts-size {
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.3333333333;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #CA7F13;
  margin: 0 auto 27px;
}
#parts-menu-detail .parts-menu-detail__block .parts-nav .parts-text {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.7777777778;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #CA7F13;
  margin: 0 auto 40px;
}
#parts-menu-detail .parts-menu-detail__block .pt-sp {
  display: none;
}
#parts-menu-detail .parts-menu-detail__block .pt-pc {
  display: block;
}
#parts-menu-detail .parts-menu-detail__block .price-table {
  width: 100%;
  font-family: "Yu Gothic", serif;
  margin: 0 auto 81px;
  text-align: center;
}
#parts-menu-detail .parts-menu-detail__block .price-table__header {
  display: grid;
  width: 100%;
  grid-template-columns: 20.6% 24.8% 6.4% 17.8% 9.4% 19.2% 1.9%;
  border-bottom: 2px solid #d9a86d;
  padding: 20.5px 0;
}
#parts-menu-detail .parts-menu-detail__block .price-table__header--item {
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 1.6666666667;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #CA7F13;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
#parts-menu-detail .parts-menu-detail__block .price-table__header--item:first-child {
  padding: 0;
}
#parts-menu-detail .parts-menu-detail__block .price-table__header--empty {
  background-color: transparent;
  border: none;
}
#parts-menu-detail .parts-menu-detail__block .price-table__row {
  display: grid;
  grid-template-columns: 162.25px 195px 55px 140px 77px 151px 7.25px;
  grid-template-columns: 20.6% 24.8% 7% 17.8% 9.8% 19.2% 0.9%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 2px solid #d9a86d;
  padding: 22.5px 0;
  margin-bottom: 8px;
}
#parts-menu-detail .parts-menu-detail__block .price-table__row--category {
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 1.6666666667;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #CA7F13;
  text-align: left;
  padding-left: 33px;
}
#parts-menu-detail .parts-menu-detail__block .price-table__row--value {
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.25;
  font-family: "Yu Mincho";
  font-weight: bold;
  color: #CA7F13;
  padding-right: 8px;
}
#parts-menu-detail .parts-menu-detail__block .price-table__row--value span {
  font-size: 18px;
}
#parts-menu-detail .parts-menu-detail__block .price-table__footer {
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 2.5;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #CA7F13;
  margin: 11px -1px 0 0px;
  text-align: right;
}
#parts-menu-detail .parts-menu-detail__block .v-line {
  margin: 83px 0 97px 0px;
}
#parts-menu-detail .parts-menu-detail__block .set {
  margin: 0 0 25px;
}

.custom {
  padding: 79px 0.6% 79px 12.6%;
  background-color: #F9F8F6;
}
.custom .custom-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.custom .custom-flex__img {
  max-width: 480px;
  width: 50%;
  height: 480px;
  margin: 0px 61px 0 0px;
}
.custom .custom-flex__text {
  color: #CA7F13;
  margin: 0px;
}
.custom .custom-flex__text h2 {
  font-size: 48px;
  letter-spacing: 0.1em;
  line-height: 0.5625;
  font-family: "Marcellus";
  font-weight: normal;
  color: #CA7F13;
  margin: 14px auto 50px;
}
.custom .custom-flex__text p {
  max-width: 540px;
  width: 100%;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #CA7F13;
}

/* ヘッダー分の余白を確保 */
#body,
#v-line,
#set,
#custom {
  scroll-margin-top: 250px; /* ヘッダーの高さ分の余白 */
}

@media (max-width: 1200px) {
  #section-contects.price-menu {
    height: auto;
    padding: 0 0 108px;
    background-color: #F9F8F6;
  }
  #section-contects.price-menu .course-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 100%;
    height: auto;
    margin: 348px auto 0;
    padding: 0 12.8%;
  }
  #section-contects.price-menu .course-menu__text {
    width: 100%;
    height: auto;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
    margin: -59px auto 0;
    padding: 0 0 0 11px;
  }
  #section-contects.price-menu .course-menu__list {
    width: 100%;
    height: auto;
    margin: 110px 0 0;
    position: relative;
  }
  #section-contects.price-menu .course-menu__list .button-grid {
    width: 100%;
    display: grid;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    grid-template-columns: 1fr; /* SPサイズでは1列 */
    position: absolute; /* 絶対配置で自由に動かせる */
    bottom: -31%;
    right: -53%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); /* 中央に移動可能 */
    margin: 0 auto;
  }
  #section-contects.price-menu .course-menu__list .button-grid .button-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 15px 40px;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #CA7F13;
    text-align: left;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: none; /* 縦線がボーダー由来の場合削除 */
    /* 個別のグリッド配置 */
  }
  #section-contects.price-menu .course-menu__list .button-grid .button-item:hover {
    color: #F9F8F6;
    background-color: #ca7f13;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    /* ホバー時にアイコンの色も変更 */
  }
  #section-contects.price-menu .course-menu__list .button-grid .button-item:hover .button-item__arrow {
    color: #f9f8f6; /* テキストと同じ色に */
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  #section-contects.price-menu .course-menu__list .button-grid .button-item__title {
    font-size: 20px;
    letter-spacing: 0.04em;
    line-height: 0.3;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
  }
  #section-contects.price-menu .course-menu__list .button-grid .button-item__title span {
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 0.75;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #CA7F13;
    margin: 0 0 0 8px;
  }
  #section-contects.price-menu .course-menu__list .button-grid .button-item__title .komoji {
    font-size: 20px;
    letter-spacing: 0.072em;
    line-height: 0.3;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
    text-transform: lowercase;
    margin: 0;
  }
  #section-contects.price-menu .course-menu__list .button-grid .button-item__arrow {
    font-size: 12px;
    color: #ca7f13;
    padding: 0 31px 0 0;
  }
  #section-contects.price-menu .course-menu__list .button-grid .button-item:nth-child(1) {
    grid-area: body; /* Body */
    border-right: none;
    border-bottom: 1px solid #CA7F13;
  }
  #section-contects.price-menu .course-menu__list .button-grid .button-item:nth-child(2) {
    grid-area: v-line; /* V-Line */
    border-bottom: 1px solid #CA7F13;
  }
  #section-contects.price-menu .course-menu__list .button-grid .button-item:nth-child(3) {
    grid-area: set; /* Set を中央左に */
    border-bottom: 1px solid #CA7F13;
    border-right: none;
  }
  #section-contects.price-menu .course-menu__list .button-grid .button-item:nth-child(4) {
    grid-area: custom; /* Custom を中央右に */
    border-right: none;
    border-bottom: 1px solid #CA7F13;
  }
  #section-contects.price-menu .course-menu__list .button-grid .button-item:nth-child(5) {
    grid-area: all; /* All を最下段中央に */
    border-right: none;
    border-bottom: none;
  }
  #parts-menu-detail {
    background-color: #D4CEBE;
    color: #CA7F13;
    height: auto;
    padding: 60px 12.8%;
    margin: -33px 0 -15px 0px;
  }
  #parts-menu-detail .parts-title {
    text-align: center;
    font-size: 84px;
    letter-spacing: 0.04em;
    line-height: 0.119047619;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
    margin: 33px auto 58px;
  }
  #parts-menu-detail .parts-title span {
    font-size: 9px;
    letter-spacing: 0.04em;
    line-height: 1;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #CA7F13;
    margin: 0 0 0 11.93px;
  }
  #parts-menu-detail .parts-title .komoji {
    font-size: 84px;
    letter-spacing: 0.04em;
    line-height: 0.119047619;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
    text-transform: lowercase;
    margin: 0;
  }
  #parts-menu-detail .v-line-title {
    margin: 87px 0 -8px 9px;
  }
  #parts-menu-detail .set-title {
    margin: 82px 0 -8px 9px;
  }
  #parts-menu-detail .parts-menu-detail__block .parts-nav {
    text-align: center;
  }
  #parts-menu-detail .parts-menu-detail__block .parts-nav .parts-size {
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 1.7777777778;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #CA7F13;
    margin: 0 auto 20px;
  }
  #parts-menu-detail .parts-menu-detail__block .parts-nav .parts-text {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2.2857142857;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #CA7F13;
    margin: 0 auto -10px;
    text-align: left;
  }
  #parts-menu-detail .parts-menu-detail__block .pt-pc {
    display: none;
  }
  #parts-menu-detail .parts-menu-detail__block .pt-sp {
    display: block;
  }
  #parts-menu-detail .parts-menu-detail__block .price-table {
    width: 100%;
    font-family: "Yu Gothic", serif;
    margin: 48px auto 56px;
    text-align: center;
  }
  #parts-menu-detail .parts-menu-detail__block .price-table__parts {
    font-size: 18px;
  }
  #parts-menu-detail .parts-menu-detail__block .price-table .ptp-margin {
    margin: 60px auto 15px;
  }
  #parts-menu-detail .parts-menu-detail__block .price-table__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    border-bottom: 2px solid #d9a86d;
    padding: 32.5px 0;
  }
  #parts-menu-detail .parts-menu-detail__block .price-table__header--item {
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 1.125;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
  }
  #parts-menu-detail .parts-menu-detail__block .price-table__header--item:first-child {
    padding: 0;
  }
  #parts-menu-detail .parts-menu-detail__block .price-table__header--empty {
    background-color: transparent;
    border: none;
  }
  #parts-menu-detail .parts-menu-detail__block .price-table__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 2px solid #d9a86d;
    padding: 25.5px 0;
    margin-bottom: 0;
  }
  #parts-menu-detail .parts-menu-detail__block .price-table__row--category {
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 1.125;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
    text-align: left;
    padding-left: 0;
  }
  #parts-menu-detail .parts-menu-detail__block .price-table__row--value {
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 1.6666666667;
    font-family: "Yu Mincho";
    font-weight: bold;
    color: #CA7F13;
    padding-right: 20px;
  }
  #parts-menu-detail .parts-menu-detail__block .price-table__row--value span {
    font-size: 14px;
  }
  #parts-menu-detail .parts-menu-detail__block .price-table__footer {
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 1.5;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
    margin: 11px -1px 0 0px;
    text-align: left;
  }
  #parts-menu-detail .parts-menu-detail__block .v-line {
    margin: 83px 0 97px 0px;
  }
  #parts-menu-detail .parts-menu-detail__block .set {
    margin: 0 0 25px;
  }
  .custom {
    padding: 78px 12.8%;
    background-color: #F9F8F6;
  }
  .custom .custom-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .custom .custom-flex__img {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .custom .custom-flex__text {
    margin: 0;
  }
  .custom .custom-flex__text h2 {
    font-size: 48px;
    letter-spacing: 0.1em;
    line-height: 0.2916666667;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
    margin: 60px 0;
  }
  .custom .custom-flex__text p {
    max-width: 100%;
    width: 100%;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
  }
  /* ヘッダー分の余白を確保 */
  #body,
  #v-line,
  #set,
  #custom {
    scroll-margin-top: 250px; /* ヘッダーの高さ分の余白 */
  }
}
@media (max-width: 500px) {
  #section-contects.price-menu {
    height: auto;
    padding: 0 15px 108px;
    background-color: #F9F8F6;
  }
  #section-contects.price-menu .course-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 100%;
    height: auto;
    margin: 348px auto 0;
    padding: 0 15px;
  }
  #section-contects.price-menu .course-menu__text {
    width: 100%;
    height: auto;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
    margin: -59px auto 0;
    padding: 0 0 0 11px;
  }
  #section-contects.price-menu .course-menu__list {
    width: 100%;
    height: auto;
    margin: 0;
    position: relative;
  }
  #section-contects.price-menu .course-menu__list .button-grid {
    width: 100%;
    display: grid;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    grid-template-columns: 1fr; /* SPサイズでは1列 */
    position: absolute; /* 絶対配置で自由に動かせる */
    bottom: -31%;
    right: -53%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); /* 中央に移動可能 */
    margin: 0 auto;
  }
  #section-contects.price-menu .course-menu__list .button-grid .button-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 6px 17.4px 6.7px 16px;
    font-family: "Yu Mincho", serif;
    color: #ca7f13;
    text-align: left;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: none; /* 縦線がボーダー由来の場合削除 */
    /* 個別のグリッド配置 */
  }
  #section-contects.price-menu .course-menu__list .button-grid .button-item:hover {
    color: #F9F8F6;
    background-color: #ca7f13;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    /* ホバー時にアイコンの色も変更 */
  }
  #section-contects.price-menu .course-menu__list .button-grid .button-item:hover .button-item__arrow {
    color: #f9f8f6; /* テキストと同じ色に */
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  #section-contects.price-menu .course-menu__list .button-grid .button-item__title {
    font-size: 20px;
    letter-spacing: 0.04em;
    line-height: 0.3;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
  }
  #section-contects.price-menu .course-menu__list .button-grid .button-item__title span {
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 0.4166666667;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #CA7F13;
    margin: 0 0 0 8px;
  }
  #section-contects.price-menu .course-menu__list .button-grid .button-item__title .komoji {
    font-size: 20px;
    letter-spacing: 0.04em;
    line-height: 0.3;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
    text-transform: lowercase;
    margin: 0;
  }
  #section-contects.price-menu .course-menu__list .button-grid .button-item__arrow {
    font-size: 12px;
    color: #ca7f13;
    padding: 0 31px 0 0;
  }
  #section-contects.price-menu .course-menu__list .button-grid .button-item:nth-child(1) {
    grid-area: body; /* Body */
    border-right: none;
    border-bottom: 1px solid #CA7F13;
  }
  #section-contects.price-menu .course-menu__list .button-grid .button-item:nth-child(2) {
    grid-area: v-line; /* V-Line */
    border-bottom: 1px solid #CA7F13;
  }
  #section-contects.price-menu .course-menu__list .button-grid .button-item:nth-child(3) {
    grid-area: set; /* Set を中央左に */
    border-bottom: 1px solid #CA7F13;
    border-right: none;
  }
  #section-contects.price-menu .course-menu__list .button-grid .button-item:nth-child(4) {
    grid-area: custom; /* Custom を中央右に */
    border-right: none;
    border-bottom: 1px solid #CA7F13;
  }
  #section-contects.price-menu .course-menu__list .button-grid .button-item:nth-child(5) {
    grid-area: all; /* All を最下段中央に */
    border-right: none;
    border-bottom: none;
  }
  #parts-menu-detail {
    background-color: #D4CEBE;
    color: #CA7F13;
    height: auto;
    padding: 28px 27px;
    margin: -33px 0 -15px 0px;
  }
  #parts-menu-detail .parts-title {
    font-size: 84px;
    letter-spacing: 0.04em;
    line-height: 0.119047619;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
    text-align: center;
    margin: 33px auto 58px;
  }
  #parts-menu-detail .parts-title span {
    font-size: 9px;
    letter-spacing: 0.04em;
    line-height: 1;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #CA7F13;
    margin: 0 0 0 11.93px;
  }
  #parts-menu-detail .parts-title .komoji {
    font-size: 84px;
    letter-spacing: 0.04em;
    line-height: 0.119047619;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
    text-transform: lowercase;
    margin: 0;
  }
  #parts-menu-detail .v-line-title {
    margin: 87px 0 -8px 9px;
  }
  #parts-menu-detail .set-title {
    margin: 82px 0 -8px 9px;
  }
  #parts-menu-detail .parts-menu-detail__block .parts-nav {
    text-align: center;
  }
  #parts-menu-detail .parts-menu-detail__block .parts-nav .parts-size {
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 1.7777777778;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #CA7F13;
    margin: 0 auto 20px;
  }
  #parts-menu-detail .parts-menu-detail__block .parts-nav .parts-text {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2.2857142857;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #CA7F13;
    margin: 0 auto -10px;
    text-align: left;
  }
  #parts-menu-detail .parts-menu-detail__block .pt-pc {
    display: none;
  }
  #parts-menu-detail .parts-menu-detail__block .pt-sp {
    display: block;
  }
  #parts-menu-detail .parts-menu-detail__block .price-table {
    width: 100%;
    font-family: "Yu Gothic", serif;
    margin: 48px auto 56px;
    text-align: center;
  }
  #parts-menu-detail .parts-menu-detail__block .price-table__parts {
    font-size: 18px;
  }
  #parts-menu-detail .parts-menu-detail__block .price-table .ptp-margin {
    margin: 60px auto 15px;
  }
  #parts-menu-detail .parts-menu-detail__block .price-table__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    border-bottom: 2px solid #d9a86d;
    padding: 32.5px 0;
  }
  #parts-menu-detail .parts-menu-detail__block .price-table__header--item {
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 1.125;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
  }
  #parts-menu-detail .parts-menu-detail__block .price-table__header--item:first-child {
    padding: 0;
  }
  #parts-menu-detail .parts-menu-detail__block .price-table__header--empty {
    background-color: transparent;
    border: none;
  }
  #parts-menu-detail .parts-menu-detail__block .price-table__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 2px solid #d9a86d;
    padding: 25.5px 0;
    margin-bottom: 0;
  }
  #parts-menu-detail .parts-menu-detail__block .price-table__row--category {
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 1.125;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
    text-align: left;
    padding-left: 0;
  }
  #parts-menu-detail .parts-menu-detail__block .price-table__row--value {
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 1.7777777778;
    font-family: "Yu Mincho";
    font-weight: bold;
    color: #CA7F13;
    padding-right: 20px;
  }
  #parts-menu-detail .parts-menu-detail__block .price-table__row--value span {
    font-size: 14px;
  }
  #parts-menu-detail .parts-menu-detail__block .price-table__footer {
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 1.5;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
    margin: 11px -1px 0 0px;
    text-align: left;
  }
  #parts-menu-detail .parts-menu-detail__block .v-line {
    margin: 83px 0 97px 0px;
  }
  #parts-menu-detail .parts-menu-detail__block .set {
    margin: 0 0 25px;
  }
  .custom {
    padding: 78px 40px;
    background-color: #F9F8F6;
  }
  .custom .custom-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .custom .custom-flex__img {
    max-width: 240px;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .custom .custom-flex__text {
    color: #CA7F13;
    margin: 0;
  }
  .custom .custom-flex__text h2 {
    font-size: 48px;
    letter-spacing: 0.1em;
    line-height: 0.2916666667;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
    margin: 70px 0 20px;
  }
  .custom .custom-flex__text p {
    max-width: 315px;
    width: 100%;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
  }
  /* ヘッダー分の余白を確保 */
  #body,
  #v-line,
  #set,
  #custom {
    scroll-margin-top: 250px; /* ヘッダーの高さ分の余白 */
  }
}
#section-contects.archive-salons {
  height: auto;
  background-color: #F9F8F6;
}

#prefecture-category {
  height: auto;
  padding: 130px 21% 52px 120px;
  background-color: #F9F8F6;
}
#prefecture-category .section-title {
  top: -4px;
  left: 0;
}
#prefecture-category .category-list {
  margin: 129px -237px 0 -39px;
  padding: 0 94px 0 133px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#prefecture-category .category-list li {
  position: relative;
  padding: 0 0 27px 0;
}
#prefecture-category .category-list li a {
  font-size: 48px;
  letter-spacing: 0.1em;
  line-height: 0.2916666667;
  font-family: "Marcellus";
  font-weight: normal;
  color: #CA7F13;
}
#prefecture-category .category-list li a span {
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #CA7F13;
  margin: 0 94px 0 -7px;
}
#prefecture-category .category-list li::after {
  content: "▶";
  position: absolute;
  color: #54372D;
  width: 30px;
  top: 13.2px;
  left: -20px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#prefecture-stores {
  background-color: #F9F8F6;
  padding: 0 7.2% 0 8.4%;
}
#prefecture-stores .prefecture-section .prefecture-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #CA7F13;
  height: 120px;
  padding: 30px;
  font-size: 48px;
  letter-spacing: 0.1em;
  line-height: 0.2083333333;
  font-family: "Marcellus";
  font-weight: normal;
  color: #FFFFFF;
  margin: 0 0 4.6%;
}
#prefecture-stores .prefecture-section .store-cards {
  margin: 0 0 6.9%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#prefecture-stores .prefecture-section .store-cards .store-card {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 46%;
          flex: 1 1 46%; /* カード幅を50%以下に調整（gapを考慮） */
  max-width: 570px; /* カードの最大幅を制限 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* パディングやボーダーを含めた幅制御 */
}
#prefecture-stores .prefecture-section .store-cards .store-card__content {
  width: 100%;
}
#prefecture-stores .prefecture-section .store-cards .store-card__content #map-container img {
  max-width: 100%;
  height: 360px; /* 画像の比率を保つ */
}
#prefecture-stores .prefecture-section .store-cards .store-card__content .city-romaji {
  font-size: 32px;
  letter-spacing: 0.1em;
  line-height: 0.4375;
  font-family: "Marcellus";
  font-weight: normal;
  color: #CA7F13;
  margin: 23px 0 19px;
}
#prefecture-stores .prefecture-section .store-cards .store-card__content .store_name {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 0.875;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #CA7F13;
  margin: 0 0 8px;
}
#prefecture-stores .prefecture-section .store-cards .store-card__content .store_address {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #333333;
}

#prefecture-stores > .prefecture-section:last-child .store-cards {
  margin: 0;
  padding: 0 0 10.4%;
}

@media (max-width: 900px) {
  #section-contects.archive-salons {
    height: auto;
    background-color: #F9F8F6;
  }
  #prefecture-category {
    height: auto;
    padding: 204px 10px 61px 30px;
    background-color: #F9F8F6;
  }
  #prefecture-category .section-title {
    top: -90.9px;
    left: -13px;
  }
  #prefecture-category .category-list {
    margin: 0;
    padding: 0px 0px 0px 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #prefecture-category .category-list li {
    position: relative;
    margin: -3px 0 0 0;
    padding: 0 0 21px 0;
  }
  #prefecture-category .category-list li a {
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 0.7;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
  }
  #prefecture-category .category-list li a span {
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 1.1666666667;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
    margin: 0 33px 0 -2px;
  }
  #prefecture-category .category-list li::after {
    content: "▶";
    position: absolute;
    color: #54372D;
    font-size: 10px;
    top: -1.8px;
    left: -2px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  #prefecture-stores {
    background-color: #F9F8F6;
    padding: 0 4.2% 0 8.4%;
  }
  #prefecture-stores .prefecture-section .prefecture-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #CA7F13;
    height: 60px;
    padding: 30px 0;
    font-size: 24px;
    letter-spacing: 0.1em;
    line-height: 0.4166666667;
    font-family: "Marcellus";
    font-weight: normal;
    color: #FFFFFF;
    color: #FFFFFF;
    margin: 0 0 37px;
  }
  #prefecture-stores .prefecture-section .store-cards {
    margin: 0 0 41px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #prefecture-stores .prefecture-section .store-cards .store-card {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 46%;
            flex: 1 1 46%; /* カード幅を50%以下に調整（gapを考慮） */
    max-width: 570px; /* カードの最大幅を制限 */
    -webkit-box-sizing: border-box;
            box-sizing: border-box; /* パディングやボーダーを含めた幅制御 */
    margin: 0 0 43px;
  }
  #prefecture-stores .prefecture-section .store-cards .store-card__content {
    width: 100%;
  }
  #prefecture-stores .prefecture-section .store-cards .store-card__content #map-container img {
    max-width: 100%;
    height: auto; /* 画像の比率を保つ */
  }
  #prefecture-stores .prefecture-section .store-cards .store-card__content .city-romaji {
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 0.7;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
    margin: 9px 0;
  }
  #prefecture-stores .prefecture-section .store-cards .store-card__content .store_name {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #CA7F13;
    margin: 0 0 8px;
  }
  #prefecture-stores .prefecture-section .store-cards .store-card__content .store_address {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #333333;
    color: #464646;
    padding: 0 0 0;
  }
  #prefecture-stores > .prefecture-section:last-child .store-cards {
    margin: 0;
    padding: 0 0 21%;
  }
}
#section-contects.archive-news {
  height: auto;
  background-color: #F9F8F6;
}
#section-contects.archive-news .news-flex-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 111px 12.6% 93px;
}
#section-contects.archive-news .news-flex-contents__news-item {
  max-width: 864px;
  width: 100%;
}
#section-contects.archive-news .news-flex-contents__news-item--post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #D4CEBE;
  margin: 0 0 20px;
}
#section-contects.archive-news .news-flex-contents__news-item--post .item-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 29px 0 30px 24px;
}
#section-contects.archive-news .news-flex-contents__news-item--post .item-flex .date {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 0.875;
  font-family: "Marcellus";
  font-weight: normal;
  color: #CA7F13;
  margin: 0 16px 0 0;
}
#section-contects.archive-news .news-flex-contents__news-item--post .item-flex h2 {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 0.875;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #CA7F13;
}
#section-contects.archive-news .news-flex-contents__news-item--post .category {
  font-size: 32px;
  letter-spacing: 0.04em;
  line-height: 0.4375;
  font-family: "Marcellus";
  font-weight: normal;
  color: rgba(84, 55, 45, 0.2);
  padding: 27px 24px 22px 0px;
}
#section-contects.archive-news .news-flex-contents .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 中央寄せ */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 矢印と数字の位置を中央揃え */
  margin: 20px 0; /* 上下の余白を調整 */
  list-style: none; /* リストのデフォルトスタイルを削除 */
}
#section-contects.archive-news .news-flex-contents .pagination a,
#section-contects.archive-news .news-flex-contents .pagination span {
  display: inline-block;
  margin: 0 2px;
  padding: 3px 8px;
  font-size: 32px;
  letter-spacing: 0.1em;
  line-height: 0.4375;
  font-family: "Marcellus";
  font-weight: normal;
  color: #CA7F13;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#section-contects.archive-news .news-flex-contents .pagination a:hover,
#section-contects.archive-news .news-flex-contents .pagination span:hover {
  color: #949E33;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#section-contects.archive-news .news-flex-contents .pagination a.current,
#section-contects.archive-news .news-flex-contents .pagination span.current {
  color: #CA7F13;
  pointer-events: none; /* 現在のページをクリックできないようにする */
}
#section-contects.archive-news .news-flex-contents .pagination.fa-chevron-left, #section-contects.archive-news .news-flex-contents .pagination.fa-chevron-right {
  font-size: 6px;
}
#section-contects.archive-news .news-flex-contents .pagination .fa-solid {
  font-size: 14px;
  margin: 0 0 17px;
}
#section-contects.archive-news .news-flex-contents .pagination .fa-solid::before {
  padding: 20px 0 0;
  display: block;
}
#section-contects.archive-news .news-flex-contents__sidebar {
  max-width: 174px;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 0 -15px 0 37px;
  padding: 9px 0 7px 15px;
  border-left: 2.5px solid #CA7F13;
}
#section-contects.archive-news .news-flex-contents__sidebar--category-title {
  font-size: 32px;
  letter-spacing: 0.1em;
  line-height: 0.4375;
  font-family: "Marcellus";
  font-weight: normal;
  color: #CA7F13;
  color: #CA7F13;
  margin: 11px 0 44px 0;
}
#section-contects.archive-news .news-flex-contents__sidebar--category-list li a {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 0.875;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #CA7F13;
  margin: 0 0 12px 0;
}

@media (max-width: 900px) {
  #section-contects.archive-news {
    height: auto;
    background-color: #F9F8F6;
  }
  #section-contects.archive-news .news-flex-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    padding: 0 12px 69px;
  }
  #section-contects.archive-news .news-flex-contents__news-item {
    max-width: 864px;
    width: 100%;
    padding: 81px 0 0 0;
  }
  #section-contects.archive-news .news-flex-contents__news-item--post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background-color: #D4CEBE;
    margin: 0 0 14px;
  }
  #section-contects.archive-news .news-flex-contents__news-item--post .item-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 6px 0px 0px 8px;
  }
  #section-contects.archive-news .news-flex-contents__news-item--post .item-flex .date {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.5;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
    margin: 0px 0 8px 0;
  }
  #section-contects.archive-news .news-flex-contents__news-item--post .item-flex h2 {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.5;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #CA7F13;
  }
  #section-contects.archive-news .news-flex-contents__news-item--post .category {
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 0.7;
    font-family: "Marcellus";
    font-weight: normal;
    color: rgba(84, 55, 45, 0.2);
    text-align: right;
    padding: 6px 4px 1px 8px;
  }
  #section-contects.archive-news .news-flex-contents .pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; /* 中央寄せ */
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; /* 矢印と数字の位置を中央揃え */
    margin: 20px 0; /* 上下の余白を調整 */
    list-style: none; /* リストのデフォルトスタイルを削除 */
  }
  #section-contects.archive-news .news-flex-contents .pagination a,
  #section-contects.archive-news .news-flex-contents .pagination span {
    display: inline-block;
    margin: 0 2px;
    padding: 3px 8px;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 0.875;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  #section-contects.archive-news .news-flex-contents .pagination a:hover,
  #section-contects.archive-news .news-flex-contents .pagination span:hover {
    color: #949E33;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  #section-contects.archive-news .news-flex-contents .pagination a.current,
  #section-contects.archive-news .news-flex-contents .pagination span.current {
    color: #CA7F13;
    pointer-events: none; /* 現在のページをクリックできないようにする */
  }
  #section-contects.archive-news .news-flex-contents .pagination.fa-chevron-left, #section-contects.archive-news .news-flex-contents .pagination.fa-chevron-right {
    font-size: 6px;
  }
  #section-contects.archive-news .news-flex-contents .pagination .fa-solid {
    font-size: 12px;
    margin: 0 0 6px;
  }
  #section-contects.archive-news .news-flex-contents .pagination .fa-solid::before {
    padding: 5px 0 0;
    display: block;
  }
  #section-contects.archive-news .news-flex-contents__sidebar {
    max-width: 100%;
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin: 0;
    padding: 0 0 0px 3px;
    border-left: none;
  }
  #section-contects.archive-news .news-flex-contents__sidebar--category-title {
    font-size: 24px;
    letter-spacing: 0.1em;
    line-height: 0.5833333333;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
    margin: 3px 0 26px 0;
  }
  #section-contects.archive-news .news-flex-contents__sidebar--category-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #section-contects.archive-news .news-flex-contents__sidebar--category-list li a {
    width: 150px;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
    margin: 0 0 13px 0;
  }
}
.single-salons #para-mainvisual .section-title h1 {
  font-size: 48px;
  letter-spacing: 0.1em;
  line-height: 0.2916666667;
  font-family: "Marcellus";
  font-weight: normal;
  color: #CA7F13;
  position: relative;
  margin-bottom: 10px;
  top: 13%;
  left: 50.8%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.single-salons #para-mainvisual .section-title .store-name {
  font-size: 80px;
  letter-spacing: 0.1em;
  line-height: 0.175;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #CA7F13;
  position: absolute;
  top: 73.2%;
  left: 50.8%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#section-contects.single-salons {
  height: auto;
  background-color: #F9F8F6;
}
#section-contects.single-salons .store-info {
  padding: 115px 12.6% 197px 13.6%;
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #333333;
}

#flow .section-title {
  top: -30px;
  left: 120px;
}
#flow .flow__inner {
  padding: 50px 17.5% 91px 16.3%;
  position: relative;
}
#flow .flow__inner .flow-steps {
  position: relative;
}
#flow .flow__inner .flow-steps .flow-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  position: relative;
  margin: 0 0 27px 0;
}
#flow .flow__inner .flow-steps .flow-step__number {
  position: relative;
  color: #F9F8F6;
  font-size: 32px;
  text-align: center;
  padding: 13px 0;
  background-color: #949E33;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 0 0 44px;
}
#flow .flow__inner .flow-steps .flow-step__number::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 50%; /* 中央揃え */
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 72px;
  background: repeating-linear-gradient(to bottom, #949E33, #949E33 1px, transparent 3px, transparent 10px);
}
#flow .flow__inner .flow-steps .flow-step:last-child .flow-step__number::after {
  content: none;
}
#flow .flow__inner .flow-steps .flow-step__column {
  width: 750px;
  color: #CA7F13;
  padding: 3px 0px 0px 39px;
  margin: 0 0 0;
}
#flow .flow__inner .flow-steps .flow-step__column--title {
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 0.5833333333;
  font-family: "Yu Mincho";
  font-weight: bold;
  color: #CA7F13;
  margin: 0 0 12px 0;
}
#flow .flow__inner .flow-steps .flow-step__column--text {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #CA7F13;
}
#flow .flow__inner .flow-images .flow_image_1 img {
  border-radius: 50%; /* 円形にする */
  -o-object-fit: cover;
     object-fit: cover; /* 画像を要素内にフィットさせる */
  position: absolute;
  overflow: hidden;
  top: 301px;
  left: 87px;
}
#flow .flow__inner .flow-images .flow_image_2 img {
  border-radius: 50%; /* 円形にする */
  -o-object-fit: cover;
     object-fit: cover; /* 画像を要素内にフィットさせる */
  position: absolute;
  overflow: hidden;
  top: 657px;
  right: 53px;
}
#flow .flow__inner .flow-images .flow_image_3 img {
  width: 150px;
  height: 150px;
  border-radius: 50%; /* 円形にする */
  -o-object-fit: cover;
     object-fit: cover; /* 画像を要素内にフィットさせる */
  position: absolute;
  overflow: hidden;
  left: 90px;
  top: 1050px;
}

#staff {
  background-color: #464646;
  border: 1px solid #707070;
}
#staff .staff-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 80px 160px;
  margin: 0 0px 0 5px;
}
#staff .staff-flex__staff_image {
  width: 47%;
  margin: -2px 0px 0px 14px;
}
#staff .staff-flex__textarea {
  width: 59%;
  color: #CA7F13;
  padding: 45px 0px 61px 61px;
}
#staff .staff-flex__textarea h2 {
  font-size: 48px;
  letter-spacing: 0.1em;
  line-height: 0.5625;
  font-family: "Marcellus";
  font-weight: normal;
  color: #CA7F13;
  margin: 0 0 44px 0;
}
#staff .staff-flex__textarea h2 span {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.9285714286;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #CA7F13;
}
#staff .staff-flex__textarea--staff_message {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #CA7F13;
}
#staff .staff-flex__textarea--staff_name_english {
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.5833333333;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #CA7F13;
  margin: 18px 0 0px 2px;
}
#staff .staff-flex__textarea--staff_name_english .staff_name_japan {
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.6666666667;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #CA7F13;
  margin: 0 0px 0px 7px;
}

#contact-info {
  background-color: #D4CEBE;
  color: #707070;
}
#contact-info .contact-info-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 80px 180px;
}
#contact-info .contact-info-flex__text {
  width: 50%;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2.1428571429;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #333333;
}
#contact-info .contact-info-flex__text--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 400px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #CA7F13;
  padding: 17px 0 18px 1px;
}
#contact-info .contact-info-flex__text--flex strong {
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-family: "Yu Mincho";
  font-weight: bold;
  color: #CA7F13;
  width: 94px;
  padding: 0 0 0 6px;
}
#contact-info .contact-info-flex__text--flex p, #contact-info .contact-info-flex__text--flex address {
  padding: 0 0 0 64px;
}
#contact-info .contact-info-flex__map {
  width: 50%;
  width: 540px;
  height: 360px;
  margin: 0 -18px 0 0;
}
#contact-info .contact-info-flex__map #map-container {
  width: 100%;
  padding-top: 0; /* アスペクト比を16:9に設定 */
  position: relative;
}
#contact-info .contact-info-flex__map #map-container .map-pc {
  display: block;
}
#contact-info .contact-info-flex__map #map-container .map-sp {
  display: none;
}

#archive-salons-link {
  background-color: #F9F8F6;
  padding: 120px 0;
  margin: auto;
}
#archive-salons-link .btn {
  width: 166px;
  height: 41px;
  margin: 0 auto;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.625;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #FFFFFF;
}
#archive-salons-link .btn:hover {
  color: #F9F8F6;
  background-color: #CA7F13;
}

@media (max-width: 1200px) {
  .single-salons #para-mainvisual .section-title h1 {
    font-size: 40px;
    letter-spacing: 0.06em;
    line-height: 0.35;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
    margin-bottom: 10px;
    position: relative;
    top: 18%;
    left: 51%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .single-salons #para-mainvisual .section-title .store-name {
    font-size: 60px;
    letter-spacing: 0.056em;
    line-height: 0.2333333333;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #CA7F13;
    position: absolute;
    top: 77%;
    left: 51%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  #section-contects.single-salons {
    height: auto;
    background-color: #F9F8F6;
  }
  #section-contects.single-salons .store-info {
    padding: 90px 30px;
    text-align: left;
    margin: 0 auto;
    font-size: 18px;
    letter-spacing: 0.0777777778em;
    line-height: 1.5555555556;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #333333;
  }
  #flow .flow__inner {
    padding: 133px 10% 91px 3%;
    position: relative;
  }
  #flow .flow__inner .flow-steps {
    position: relative;
  }
  #flow .flow__inner .flow-steps .flow-step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    position: relative;
    margin: 0 0 40px 0;
  }
  #flow .flow__inner .flow-steps .flow-step__number {
    position: relative;
    color: #F9F8F6;
    font-size: 32px;
    text-align: center;
    padding: 13px 0;
    background-color: #949E33;
    width: 9%;
    height: 9%;
    border-radius: 50%;
    margin: 0 0 0 5%;
  }
  #flow .flow__inner .flow-steps .flow-step__number::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: 50%; /* 中央揃え */
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 1px;
    height: 72px;
    background: repeating-linear-gradient(to bottom, #949E33, #949E33 1px, transparent 3px, transparent 10px);
  }
  #flow .flow__inner .flow-steps .flow-step:last-child .flow-step__number::after {
    content: none;
  }
  #flow .flow__inner .flow-steps .flow-step__column {
    width: 100%;
    color: #CA7F13;
    padding: 3px 0px 0px 30px;
    margin: 0 0 0;
  }
  #flow .flow__inner .flow-steps .flow-step__column--title {
    font-size: 20px;
    letter-spacing: 0.048em;
    line-height: 0.7;
    font-family: "Yu Mincho";
    font-weight: bold;
    color: #CA7F13;
    margin: 0 0 12px 0;
  }
  #flow .flow__inner .flow-steps .flow-step__column--text {
    font-size: 16px;
    letter-spacing: 0.1125em;
    line-height: 1.6875;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
  }
  #flow .flow__inner .flow-images .flow_image_1 img {
    border-radius: 50%; /* 円形にする */
    -o-object-fit: cover;
       object-fit: cover; /* 画像を要素内にフィットさせる */
    position: absolute;
    width: 100px; /* 親要素に対する幅の割合 */
    height: 100px; /* 縦横比を維持 */
    top: 3%;
    left: 88%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0); /* 中央揃え調整 */
  }
  #flow .flow__inner .flow-images .flow_image_2 img {
    border-radius: 50%; /* 円形にする */
    -o-object-fit: cover;
       object-fit: cover; /* 画像を要素内にフィットさせる */
    position: absolute;
    width: 120px;
    height: 120px;
    top: 74.2%;
    right: 91.9%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  #flow .flow__inner .flow-images .flow_image_3 img {
    border-radius: 50%; /* 円形にする */
    -o-object-fit: cover;
       object-fit: cover; /* 画像を要素内にフィットさせる */
    position: absolute;
    width: 100px;
    height: 100px;
    top: 51%;
    left: 92%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  #staff {
    background-color: #464646;
    border: 1px solid #707070;
    padding: 60px 30px 30px;
  }
  #staff .staff-flex {
    display: block;
    padding: 0;
    margin: 0;
  }
  #staff .staff-flex__staff_image {
    width: 360px;
    height: 360px;
    margin: 0 auto;
    padding: 0;
  }
  #staff .staff-flex__staff_image img {
    width: 100%;
    height: 100%;
  }
  #staff .staff-flex__textarea {
    color: #CA7F13;
    padding: 0;
    margin: 0 auto;
    width: 65%;
  }
  #staff .staff-flex__textarea h2 {
    font-size: 36px;
    letter-spacing: 0.1em;
    line-height: 0.75;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
    margin: 25px 0 22px 0px;
  }
  #staff .staff-flex__textarea h2 span {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.9285714286;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
    margin: 0 0 0 -3px;
  }
  #staff .staff-flex__textarea--staff_message {
    font-size: 16px;
    letter-spacing: 0.0875em;
    line-height: 1.5;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
  }
  #staff .staff-flex__textarea--staff_name_english {
    font-size: 24px;
    letter-spacing: 0.0833333333em;
    line-height: 0.5833333333;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #CA7F13;
    margin: 36px 0 0px 0px;
  }
  #staff .staff-flex__textarea--staff_name_english .staff_name_japan {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 1.1666666667;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
    margin: 0 0px 0px 7px;
  }
  #contact-info {
    background-color: #D4CEBE;
    color: #707070;
  }
  #contact-info .contact-info-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 75%;
    height: auto;
    padding: 60px 30px;
    margin: 0 auto;
  }
  #contact-info .contact-info-flex__text {
    width: 100%;
    font-size: 16px;
    letter-spacing: 0.0875em;
    line-height: 1.875;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #333333;
  }
  #contact-info .contact-info-flex__text--flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid #CA7F13;
    padding: 17px 8%;
  }
  #contact-info .contact-info-flex__text--flex strong {
    width: 100px;
    font-size: 20px;
    letter-spacing: 0.08em;
    line-height: 1.5;
    font-family: "Yu Mincho";
    font-weight: bold;
    color: #CA7F13;
    padding: 0 0 0 6px;
  }
  #contact-info .contact-info-flex__text--flex p, #contact-info .contact-info-flex__text--flex address {
    padding: 0px 0px 1px 14px;
  }
  #contact-info .contact-info-flex__map {
    width: 480px;
    height: auto;
    margin: 0 0 44px;
  }
  #contact-info .contact-info-flex__map #map-container {
    width: 100%;
    padding-top: 0; /* アスペクト比を16:9に設定 */
    position: relative;
  }
  #archive-salons-link {
    background-color: #F9F8F6;
    padding: 83px 0px 80px 17px;
    margin: 0 auto;
  }
  #archive-salons-link .btn {
    width: 156px;
    height: 38px;
    margin: 0 auto;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.8571428571;
    font-family: "Yu Mincho";
    font-weight: bold;
    color: #FFFFFF;
  }
  #archive-salons-link .btn:hover {
    color: #F9F8F6;
    background-color: #CA7F13;
  }
}
@media (max-width: 500px) {
  .single-salons #para-mainvisual .section-title h1 {
    font-size: 24px;
    letter-spacing: 0.1em;
    line-height: 0.5833333333;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
    margin-bottom: 10px;
    position: relative;
    top: 18%;
    left: 53%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .single-salons #para-mainvisual .section-title .store-name {
    font-size: 32px;
    letter-spacing: 0.1em;
    line-height: 1.125;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #CA7F13;
    position: absolute;
    top: 77%;
    left: 53%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  #section-contects.single-salons {
    height: auto;
    background-color: #F9F8F6;
  }
  #section-contects.single-salons .store-info {
    padding: 90px 30px;
    text-align: left;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #333333;
  }
  #flow .section-title {
    top: -38px;
    left: 15px;
  }
  #flow .flow__inner {
    padding: 22px 31px 0;
    position: relative;
  }
  #flow .flow__inner .flow-steps {
    position: relative;
  }
  #flow .flow__inner .flow-steps .flow-step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    position: relative;
    margin: 0 0 32px 0;
  }
  #flow .flow__inner .flow-steps .flow-step__number {
    position: relative;
    color: #F9F8F6;
    font-size: 32px;
    text-align: center;
    padding: 13px 0;
    background-color: #949E33;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 0px 12px 16px;
  }
  #flow .flow__inner .flow-steps .flow-step__number::after {
    position: static;
  }
  #flow .flow__inner .flow-steps .flow-step__column {
    width: 100%;
    color: #CA7F13;
    padding: 0;
    margin: 0 0 0;
    position: relative;
  }
  #flow .flow__inner .flow-steps .flow-step__column--title {
    font-size: 18px;
    letter-spacing: 0.04em;
    line-height: 0.7777777778;
    font-family: "Yu Mincho";
    font-weight: bold;
    color: #CA7F13;
    text-align: center;
    margin: 0 0 12px 0;
    padding: 3px 0px 0px 18px;
  }
  #flow .flow__inner .flow-steps .flow-step__column--text {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.5;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
    margin: 0 0 5px 0;
  }
  #flow .flow__inner .flow-steps .flow-step__column::after {
    content: "";
    position: absolute;
    bottom: -26px;
    left: 53%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 1px;
    height: 24px;
    background: repeating-linear-gradient(to bottom, #949E33, #949E33 1px, transparent 3px, transparent 6px);
  }
  #flow .flow__inner .flow-steps .flow-step:last-child .flow-step__column::after {
    content: none;
  }
  #flow .flow__inner .flow-images .flow_image_1 img {
    border-radius: 50%; /* 円形にする */
    -o-object-fit: cover;
       object-fit: cover; /* 画像を要素内にフィットさせる */
    position: absolute;
    width: 80px; /* 親要素に対する幅の割合 */
    height: 80px; /* 縦横比を維持 */
    top: 31%;
    left: 98%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0); /* 中央揃え調整 */
  }
  #flow .flow__inner .flow-images .flow_image_2 img {
    border-radius: 50%; /* 円形にする */
    -o-object-fit: cover;
       object-fit: cover; /* 画像を要素内にフィットさせる */
    position: absolute;
    width: 100px;
    height: 100px;
    top: 66.2%;
    right: 74.9%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  #flow .flow__inner .flow-images .flow_image_3 img {
    border-radius: 50%; /* 円形にする */
    -o-object-fit: cover;
       object-fit: cover; /* 画像を要素内にフィットさせる */
    position: absolute;
    width: 80px;
    height: 80px;
    top: 18%;
    left: 14%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  #staff {
    background-color: #464646;
    border: 1px solid #707070;
    padding: 60px 30px 30px;
  }
  #staff .staff-flex {
    display: block;
    padding: 0;
    margin: 0;
  }
  #staff .staff-flex__staff_image {
    width: 240px;
    height: 240px;
    margin: 0 auto;
    padding: 0;
  }
  #staff .staff-flex__staff_image img {
    width: 100%;
    height: 100%;
  }
  #staff .staff-flex__textarea {
    color: #CA7F13;
    padding: 0;
    margin: 0 auto;
    width: 100%;
  }
  #staff .staff-flex__textarea h2 {
    font-size: 36px;
    letter-spacing: 0.1em;
    line-height: 0.75;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
    margin: 25px 0 22px 0px;
  }
  #staff .staff-flex__textarea h2 span {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.9285714286;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
    margin: 0 0 0 -3px;
  }
  #staff .staff-flex__textarea--staff_message {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
  }
  #staff .staff-flex__textarea--staff_name_english {
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 0.7;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #CA7F13;
    margin: 13px 0 0px 0px;
  }
  #staff .staff-flex__textarea--staff_name_english .staff_name_japan {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 1.1666666667;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
    margin: 0 0px 0px 7px;
  }
  #contact-info {
    background-color: #D4CEBE;
    color: #707070;
  }
  #contact-info .contact-info-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding: 60px 30px;
  }
  #contact-info .contact-info-flex__text {
    width: 100%;
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 2.5;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #333333;
  }
  #contact-info .contact-info-flex__text--flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid #CA7F13;
    padding: 17px 0 18px 1px;
  }
  #contact-info .contact-info-flex__text--flex strong {
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.875;
    font-family: "Yu Mincho";
    font-weight: bold;
    color: #CA7F13;
    width: 112px;
    padding: 0 0 0 6px;
  }
  #contact-info .contact-info-flex__text--flex p {
    padding: 0px 0px 1px 14px;
  }
  #contact-info .contact-info-flex__map {
    max-width: 100%;
    height: auto;
    margin: 0 0 44px;
  }
  #contact-info .contact-info-flex__map #map-container {
    width: 100%;
    padding-top: 0; /* アスペクト比を16:9に設定 */
    position: relative;
  }
  #contact-info .contact-info-flex__map #map-container .map-pc {
    display: none;
  }
  #contact-info .contact-info-flex__map #map-container .map-sp {
    display: block;
    margin: 0 auto;
  }
  #archive-salons-link {
    background-color: #F9F8F6;
    padding: 83px 0px 80px 17px;
    margin: 0 auto;
  }
  #archive-salons-link .btn {
    width: 156px;
    height: 38px;
    margin: 0 auto;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.5714285714;
    font-family: "Yu Mincho";
    font-weight: bold;
    color: #FFFFFF;
  }
  #archive-salons-link .btn:hover {
    color: #F9F8F6;
    background-color: #CA7F13;
  }
}
#section-contects.single-news {
  height: auto;
  background-color: #F9F8F6;
}
#section-contects.single-news #news-single {
  height: auto;
  padding: 0 0 0 153px;
}
#section-contects.single-news #news-single .content-wrapper {
  padding: 111px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
#section-contects.single-news #news-single .content-wrapper__inner {
  padding: 0 87px 182px;
}
#section-contects.single-news #news-single .content-wrapper__inner .news-detail {
  max-width: 691px;
  width: 100%;
}
#section-contects.single-news #news-single .content-wrapper__inner .news-detail .news-header {
  margin: 0 0 30px;
}
#section-contects.single-news #news-single .content-wrapper__inner .news-detail .news-header .entry-title {
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.125;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #CA7F13;
  margin: 11px 0;
}
#section-contects.single-news #news-single .content-wrapper__inner .news-detail .news-header__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#section-contects.single-news #news-single .content-wrapper__inner .news-detail .news-header__flex--category {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1;
  font-family: "Marcellus";
  font-weight: normal;
  color: #CA7F13;
  margin: 0 8px 0 0;
}
#section-contects.single-news #news-single .content-wrapper__inner .news-detail .news-header__flex--date {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1;
  font-family: "Marcellus";
  font-weight: normal;
  color: #CA7F13;
}
#section-contects.single-news #news-single .content-wrapper__inner .news-detail .news-image {
  width: 100%;
  margin: 0 0 28px;
}
#section-contects.single-news #news-single .content-wrapper__inner .news-detail .news-introduction {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #333333;
  margin: 0 0 24px;
}
#section-contects.single-news #news-single .content-wrapper__inner .news-detail .news-content .news-section__subheading {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.7777777778;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #CA7F13;
  margin: 0 0 2px;
}
#section-contects.single-news #news-single .content-wrapper__inner .news-detail .news-content .news-section__paragraph {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #333333;
  margin: 0 0 22px;
}
#section-contects.single-news #news-single .content-wrapper__inner .news-detail .btn {
  width: 202px;
  height: 41px;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.625;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #FFFFFF;
  text-align: center;
  margin: 63px auto 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#section-contects.single-news #news-single .content-wrapper__inner .news-detail .btn a {
  color: #FFFFFF;
}
#section-contects.single-news #news-single .content-wrapper__inner .news-detail .btn:hover {
  background-color: #CA7F13;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#section-contects.single-news #news-single .content-wrapper .sidebar {
  max-width: 174px;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 0 152px 0 0;
  padding: 9px 0 7px 15px;
  border-left: 2.5px solid #CA7F13;
}
#section-contects.single-news #news-single .content-wrapper .sidebar__category-title {
  font-size: 32px;
  letter-spacing: 0.1em;
  line-height: 0.4375;
  font-family: "Marcellus";
  font-weight: normal;
  color: #CA7F13;
  margin: 0 0 35px 0;
}
#section-contects.single-news #news-single .content-wrapper .sidebar__category-list li a {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 0.875;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #CA7F13;
  margin: 0 0 12px 0;
}

@media (max-width: 1200px) {
  #section-contects.single-news {
    height: auto;
    background-color: #F9F8F6;
    padding: 0;
  }
  #section-contects.single-news #news-single {
    height: auto;
    padding: 0;
  }
  #section-contects.single-news #news-single .content-wrapper {
    padding: 63px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  #section-contects.single-news #news-single .content-wrapper__inner {
    padding: 0 8%;
  }
  #section-contects.single-news #news-single .content-wrapper__inner .news-detail {
    max-width: 100%;
    width: 100%;
  }
  #section-contects.single-news #news-single .content-wrapper__inner .news-detail .news-header {
    color: #CA7F13;
    margin: 0 0 63px;
  }
  #section-contects.single-news #news-single .content-wrapper__inner .news-detail .news-header .entry-title {
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 1.5;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #CA7F13;
    margin: 10px 0 1px;
  }
  #section-contects.single-news #news-single .content-wrapper__inner .news-detail .news-header__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #section-contects.single-news #news-single .content-wrapper__inner .news-detail .news-header__flex--category a {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 1.1666666667;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
    margin: 0 8px 0 0;
  }
  #section-contects.single-news #news-single .content-wrapper__inner .news-detail .news-header__flex--date {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 1.1666666667;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
  }
  #section-contects.single-news #news-single .content-wrapper__inner .news-detail .news-image {
    width: 100%;
    margin: -26px 0 0;
  }
  #section-contects.single-news #news-single .content-wrapper__inner .news-detail .news-image img {
    width: 100%;
    display: block;
    margin: 0 auto 46px;
  }
  #section-contects.single-news #news-single .content-wrapper__inner .news-detail .news-introduction {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #333333;
    margin: 0 0 14px;
  }
  #section-contects.single-news #news-single .content-wrapper__inner .news-detail .news-content .news-section__subheading {
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 2;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #CA7F13;
    margin: 0 0 2px;
  }
  #section-contects.single-news #news-single .content-wrapper__inner .news-detail .news-content .news-section__paragraph {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #333333;
    margin: 0 0 12px;
  }
  #section-contects.single-news #news-single .content-wrapper__inner .news-detail .btn {
    width: 202px;
    height: 41px;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.625;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #CA7F13;
    text-align: center;
    margin: 80px auto 41px;
  }
  #section-contects.single-news #news-single .content-wrapper .sidebar {
    max-width: 100%;
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin: 0 0 50px;
    padding: 0 8%;
    border-left: none;
  }
  #section-contects.single-news #news-single .content-wrapper .sidebar__category-title {
    font-size: 24px;
    letter-spacing: 0.1em;
    line-height: 0.5833333333;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
    margin: 0 0 27px 0;
  }
  #section-contects.single-news #news-single .content-wrapper .sidebar__category-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #section-contects.single-news #news-single .content-wrapper .sidebar__category-list li a {
    width: 94px;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
    margin: 0 0 13px 0;
  }
}
@media (max-width: 500px) {
  #section-contects.single-news {
    height: auto;
    background-color: #F9F8F6;
    padding: 0 12px 67px 15px;
  }
  #section-contects.single-news #news-single {
    height: auto;
    padding: 0;
  }
  #section-contects.single-news #news-single .content-wrapper {
    padding: 63px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  #section-contects.single-news #news-single .content-wrapper__inner {
    padding: 0;
  }
  #section-contects.single-news #news-single .content-wrapper__inner .news-detail {
    max-width: 691px;
    width: 100%;
  }
  #section-contects.single-news #news-single .content-wrapper__inner .news-detail .news-image {
    width: 100%;
    margin: -26px 0 0;
  }
  #section-contects.single-news #news-single .content-wrapper__inner .news-detail .news-image img {
    width: 100%;
    display: block;
    margin: 0 auto 46px;
  }
  #section-contects.single-news #news-single .content-wrapper__inner .news-detail .btn {
    width: 160px;
    height: 37px;
  }
  #section-contects.single-news #news-single .content-wrapper .sidebar {
    margin: 0;
    padding: 0;
  }
  #section-contects.single-news #news-single .content-wrapper .sidebar__category-list li a {
    width: 150px;
  }
}
#section-contects.reserve {
  height: auto;
  background-color: #F9F8F6;
  border-bottom: 1px solid #F9F8F6;
}
#section-contects.reserve #breadcrumbs {
  margin: -13px 0 0 0px;
  padding: 19.5px 0 19px 120px;
}

.privacy-policy {
  padding: 109px 13.9% 119px 12.6%;
  background-color: #F9F8F6;
}
.privacy-policy__inner {
  max-width: 1061px;
}
.privacy-policy__inner .privacy-download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 -26px 0 0px;
}
.privacy-policy__inner .privacy-download__textarea {
  color: #CA7F13;
  max-width: 720px;
  width: 100%;
  margin: 0 100px 121px 0;
}
.privacy-policy__inner .privacy-download__textarea--title {
  font-size: 32px;
  letter-spacing: 0.1em;
  line-height: 1;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #CA7F13;
  margin: 0 0 42px;
}
.privacy-policy__inner .privacy-download__textarea--text {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #CA7F13;
}
.privacy-policy__inner .download-content {
  background-color: #D4CEBE;
  width: 240px;
  height: 147px;
  padding: 32px 34px 36px 41px;
}
.privacy-policy__inner .download-content__text {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #CA7F13;
  margin: 0 0 16px 4px;
}
.privacy-policy__inner .download-content__button {
  width: 160px;
  height: 40px;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.625;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #FFFFFF;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.privacy-policy__inner .download-content__button .fa-file-download {
  margin: 0 14px 0 12px;
}
.privacy-policy__inner .download-content__button:hover {
  color: #F9F8F6;
  background-color: #CA7F13;
}
.privacy-policy__inner .contact-section .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.privacy-policy__inner .contact-section .contact__info {
  max-width: 578px;
  width: 100%;
  color: #CA7F13;
}
.privacy-policy__inner .contact-section .contact__info--title {
  font-size: 48px;
  letter-spacing: 0.1em;
  line-height: 0.5625;
  font-family: "Marcellus";
  font-weight: normal;
  color: #CA7F13;
  margin: 0 0 20px;
}
.privacy-policy__inner .contact-section .contact__info--description {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #CA7F13;
}
.privacy-policy__inner .contact-section .contact__details {
  max-width: 422px;
  width: 100%;
  color: #CA7F13;
  margin: 0px -23px 0 58.5px;
  padding: 66px 0 44px 9.9%;
  border-left: 1px solid #CA7F13;
}
.privacy-policy__inner .contact-section .contact__details--number {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 32px;
  letter-spacing: 0.1em;
  line-height: 1;
  font-family: "Marcellus";
  font-weight: normal;
  color: #CA7F13;
  margin-bottom: 36px;
}
.privacy-policy__inner .contact-section .contact__details--hours {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2.2857142857;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #CA7F13;
  border: 1px solid #CA7F13;
  border-radius: 16px;
  padding: 7px 35px;
}

#contact-form-section {
  background-color: #EDE9E4;
  padding: 80px 180px 21px;
  height: auto;
}
#contact-form-section .contact-form-section__inner {
  max-width: 1080px;
  margin: 0 auto;
}
#contact-form-section .contact-form-section__inner .mail-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0px 0 -6px;
}
#contact-form-section .contact-form-section__inner .mail-steps__textarea--title {
  font-size: 48px;
  letter-spacing: 0.1em;
  line-height: 0.75;
  font-family: "Marcellus";
  font-weight: normal;
  color: #CA7F13;
  margin: 0 0 48px 0;
}
#contact-form-section .contact-form-section__inner .mail-steps__textarea--description {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #333333;
}
#contact-form-section .contact-form-section__inner .mail-steps__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 26.5px;
}
#contact-form-section .contact-form-section__inner .mail-steps__container .mail-step {
  text-align: center;
  border-top: 2px solid #707070;
  border-bottom: 2px solid #707070;
  padding: 57.5px 13.5px 53.5px 14.5px;
}
#contact-form-section .contact-form-section__inner .mail-steps__container .mail-step__number {
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.4;
  font-family: "Marcellus";
  font-weight: normal;
  color: #707070;
  margin: 0 0 16px 0;
}
#contact-form-section .contact-form-section__inner .mail-steps__container .mail-step__text {
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.1666666667;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #707070;
}
#contact-form-section .contact-form-section__inner .mail-steps__container .mail-step:nth-of-type(1) {
  border-top-color: #CA7F13;
  border-bottom-color: #CA7F13;
}
#contact-form-section .contact-form-section__inner .mail-steps__container .mail-step:nth-of-type(1):nth-of-type(1) .mail-step__number,
#contact-form-section .contact-form-section__inner .mail-steps__container .mail-step:nth-of-type(1):nth-of-type(1) .mail-step__text {
  color: #CA7F13;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper {
  margin: 90px auto 30px;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 32px;
  padding: 0 39px;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-list .wpcf7-not-valid-tip {
  color: #bd1212;
  font-size: 1em;
  font-weight: normal;
  display: block;
  margin: 10px 0 0;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-list .title-flex {
  width: 39%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-list .title-flex .required-icon {
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 2.3333333333;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #FFFFFF;
  background-color: #54372D;
  border-radius: 15px;
  padding: 0 18px;
  margin: 0 16px 0 0;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-list .title-flex .optional-icon {
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 2.3333333333;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #333333;
  background-color: #D4CEBE;
  border-radius: 15px;
  padding: 0 18px;
  margin: 0 16px 0 0;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-list .title-flex .title {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.75;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #333333;
  color: #333333;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-list label {
  width: 66%;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-list label .wpcf7-form-control-wrap {
  width: 100%;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-list label .wpcf7-form-control-wrap .wpcf7-text {
  max-width: 620px; /* 最大幅を620pxに制限 */
  width: 100%; /* 親要素の幅に基づいて可変 */
  height: 50px;
  background-color: #FFFFFF;
  margin: 0 -17px 0 0px;
  padding: 0 0 0 10px;
  border-radius: 5px;
  font-size: 1rem;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-time {
  width: 100%;
  margin: -21px 0 -13px;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-time .checkbox-group {
  width: 65%;
  margin: 3px -4px 18px 0px;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 620px;
  margin: 19px -18px 21px 0px;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner .wpcf7-form-control-wrap[data-name=weekday-contact-time],
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner .wpcf7-form-control-wrap[data-name=holiday-contact-time] {
  width: 91%;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner .wpcf7-form-control-wrap[data-name=weekday-contact-time] .wpcf7-list-item,
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner .wpcf7-form-control-wrap[data-name=holiday-contact-time] .wpcf7-list-item {
  width: 23%;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner legend {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #333333;
  margin: 5px 19px 0 -2px;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner .wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner .wpcf7-checkbox input[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
  width: 31px;
  height: 30px;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner .wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #333333;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-select {
  width: 100%;
  margin: -19px 0 0;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-select .checkbox-form-group {
  width: 65%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 12px -4px 8px 0px;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-select .checkbox-form-group .wpcf7-form-control-wrap[data-name=checkbox-475] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-select .checkbox-form-group .wpcf7-form-control-wrap[data-name=checkbox-475] .wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px; /* チェックボックスの間隔 */
  width: 100%;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-select .checkbox-form-group .wpcf7-form-control-wrap[data-name=checkbox-475] .wpcf7-list-item {
  width: 41%; /* 2列に並べる */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0; /* 下の余白を調整 */
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-select .checkbox-form-group legend {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #333333;
  margin: 0 20px 0 6px;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-select .checkbox-form-group .wpcf7-list-item input[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
  width: 31px;
  height: 30px;
  margin-right: 8px; /* ラベルとの間隔 */
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-select .checkbox-form-group .wpcf7-list-item-label {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #333333;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-store {
  width: 70.7%;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-store .hope-store-label {
  width: 46%;
  margin: 19px 0 0;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-store .hope-store-label .wpcf7-form-control-wrap[data-name=your-store] {
  width: 45%;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-store .hope-store-label .wpcf7-form-control-wrap[data-name=your-store] .wpcf7-text {
  max-width: 300px;
  width: 100%;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .date-field {
  max-width: 790px;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 39px 0 0;
  position: relative;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .date-field .title-flex {
  width: 40%;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .date-field .date-field-wrap {
  width: 48.6%;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .date-field .date-field-wrap .hopeday-label {
  width: 100%;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .date-field .date-field-wrap .hopeday-label .my-date-field {
  max-width: 300px;
  width: 100%;
  height: 50px;
  background-color: #FFFFFF;
  color: #000 !important;
  border-radius: 5px;
  font-size: 14px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none; /* Firefox */
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .date-field .date-field-wrap .my-date-field::-webkit-calendar-picker-indicator {
  font-size: 3rem; /* アイコンだけ拡大 */
  width: 50px; /* クリック可能領域を広げたい場合 */
  height: 50px;
  cursor: pointer;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .date-field .date-field-wrap .fa-calendar-days {
  width: 50px;
  height: 50px;
  font-size: 30px;
  color: #FFFFFF;
  background-color: #CA7F13;
  position: absolute;
  top: 0;
  right: 85px;
  padding: 10px 10px 10px 12px;
  pointer-events: none; /* アイコンへのクリックを無視して、裏のinputをクリック可能にする */
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .textarea {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 49px 0 0;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .textarea .title-flex {
  width: 37%;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .textarea .textarea-flex {
  width: 63%;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .textarea .textarea-flex .textarea-label {
  width: 100%;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .textarea .textarea-flex .textarea-label .wpcf7-form-control-wrap[data-name=your-details] .wpcf7-textarea {
  max-width: 620px;
  width: 100%;
  height: 120px;
  background-color: #FFFFFF;
  border-radius: 5px;
  font-size: 1rem;
  padding: 10px 0 0 10px;
  margin: -12px -15px 0px 1px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .textarea .textarea-flex .details-text {
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 2.3333333333;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #333333;
  margin: 8px 0 0;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .wpcf7-submit {
  width: 160px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #949E33;
  font-size: 16px;
  letter-spacing: 0.125em;
  line-height: 1.625;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #FFFFFF;
  border-radius: 40px;
  margin: 32px auto 0;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .wpcf7-submit:hover {
  background-color: #CA7F13;
}

@media (max-width: 1200px) {
  #section-contects.reserve {
    height: auto;
    background-color: #F9F8F6;
    border-bottom: 1px solid #F9F8F6;
  }
  #section-contects.reserve #breadcrumbs {
    margin: 0 0 0 0;
    padding: 14px 0px 0 16px;
  }
  .privacy-policy {
    padding: 79px 30px 66px 30px;
    background-color: #F9F8F6;
  }
  .privacy-policy__inner {
    max-width: 1061px;
  }
  .privacy-policy__inner .privacy-download {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 80px 0;
    margin: 0;
  }
  .privacy-policy__inner .privacy-download__textarea {
    color: #CA7F13;
    max-width: 720px;
    width: 100%;
    margin: 0;
  }
  .privacy-policy__inner .privacy-download__textarea--title {
    font-size: 24px;
    letter-spacing: 0.1em;
    line-height: 1.3333333333;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #CA7F13;
    margin: 24px 0px 14px;
  }
  .privacy-policy__inner .privacy-download__textarea--text {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.5;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
    margin: 0 0 -2px;
  }
  .privacy-policy__inner .download-content {
    background-color: #D4CEBE;
    width: 240px;
    height: 147px;
    padding: 32px 36px 30px 42px;
    margin: 0 0px 0 17px;
  }
  .privacy-policy__inner .download-content__text {
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 1.5;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
    margin: -1px -5px 16px 1px;
  }
  .privacy-policy__inner .download-content__button {
    width: 160px;
    height: 40px;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.625;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #FFFFFF;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
  .privacy-policy__inner .download-content__button .fa-file-download {
    font-size: 16px;
    margin: 0 14px 0 12px;
  }
  .privacy-policy__inner .download-content__button:hover {
    color: #F9F8F6;
    background-color: #CA7F13;
  }
  .privacy-policy__inner .contact-section .contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .privacy-policy__inner .contact-section .contact__info {
    max-width: 100%;
    width: 100%;
    color: #CA7F13;
    padding: 0 80px 0;
  }
  .privacy-policy__inner .contact-section .contact__info--title {
    font-size: 24px;
    letter-spacing: 0.1em;
    line-height: 1.3333333333;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
    margin: 32px 0 10px 17px;
    text-align: center;
  }
  .privacy-policy__inner .contact-section .contact__info--description {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.5;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
  }
  .privacy-policy__inner .contact-section .contact__info--description .brsp {
    display: none;
  }
  .privacy-policy__inner .contact-section .contact__details {
    max-width: 422px;
    width: 100%;
    color: #CA7F13;
    margin: 13px auto;
    padding: 0 0 0 24px;
    text-align: center;
    border-left: none;
  }
  .privacy-policy__inner .contact-section .contact__details--number {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 24px;
    letter-spacing: 0.0583333333em;
    line-height: 1.3333333333;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
    margin: 10px auto 13px;
    letter-spacing: 2.4px;
    line-height: 32px;
  }
  .privacy-policy__inner .contact-section .contact__details--hours {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2.2857142857;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
    border: 1px solid #CA7F13;
    border-radius: 16px;
    padding: 0px 35px;
  }
  #contact-form-section {
    background-color: #EDE9E4;
    padding: 60px 30px 47px;
  }
  #contact-form-section .contact-form-section__inner {
    max-width: 1080px;
    margin: 0 auto;
  }
  #contact-form-section .contact-form-section__inner .mail-steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #contact-form-section .contact-form-section__inner .mail-steps__textarea {
    margin: 0 auto;
  }
  #contact-form-section .contact-form-section__inner .mail-steps__textarea--title {
    font-size: 32px;
    letter-spacing: 0.1em;
    line-height: 1.125;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
    color: #CA7F13;
    margin: 0 0 16px 0;
  }
  #contact-form-section .contact-form-section__inner .mail-steps__textarea--description {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #333333;
    color: #333333;
    margin: 0 0 24px;
  }
  #contact-form-section .contact-form-section__inner .mail-steps__container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 16%;
    padding: 0 11%;
  }
  #contact-form-section .contact-form-section__inner .mail-steps__container .mail-step {
    width: 100%;
    text-align: center;
    border-top: 2px solid #707070;
    border-bottom: 2px solid #707070;
    padding: 39.5px 0 36.5px 0;
  }
  #contact-form-section .contact-form-section__inner .mail-steps__container .mail-step__number {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.4285714286;
    font-family: "Marcellus";
    font-weight: normal;
    color: #707070;
    margin: 0 0 16px 0;
  }
  #contact-form-section .contact-form-section__inner .mail-steps__container .mail-step__text {
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.1875;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #707070;
  }
  #contact-form-section .contact-form-section__inner .mail-steps__container .mail-step:nth-of-type(1) {
    border-top-color: #CA7F13;
    border-bottom-color: #CA7F13;
  }
  #contact-form-section .contact-form-section__inner .mail-steps__container .mail-step:nth-of-type(1):nth-of-type(1) .mail-step__number,
  #contact-form-section .contact-form-section__inner .mail-steps__container .mail-step:nth-of-type(1):nth-of-type(1) .mail-step__text {
    color: #CA7F13;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper {
    margin: 67px auto -87px;
    padding: 0 10%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    margin: 0 0 34.3px;
    padding: 0;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-list .title-flex {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 12px;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-list .title-flex .required-icon {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 2.3333333333;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #FFFFFF;
    background-color: #54372D;
    border-radius: 15px;
    padding: 0 18px;
    margin: 0 16px 0 0;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-list .title-flex .optional-icon {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 2.3333333333;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #333333;
    background-color: #D4CEBE;
    border-radius: 15px;
    padding: 0 18px;
    margin: 0 16px 0 0;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-list .title-flex .title {
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.75;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #333333;
    letter-spacing: 1.6px;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-list label {
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-list label .wpcf7-form-control-wrap {
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-list label .wpcf7-form-control-wrap .wpcf7-text {
    max-width: 100%;
    width: 100%; /* 親要素の幅に基づいて可変 */
    height: 50px;
    background-color: #FFFFFF;
    margin: 0 -17px 0 0px;
    padding: 0 0 0 10px;
    border-radius: 5px;
    font-size: 1rem;
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-time {
    width: 100%;
    margin: 0;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-time .title-flex {
    margin: 0 0 12px;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-time .checkbox-group {
    width: 100%;
    margin: 3px -4px 18px 0px;
    padding: 0 10px 0 0;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: baseline;
        -ms-flex-pack: baseline;
            justify-content: baseline;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
    width: 100%;
    margin: 0px -18px 2px 0;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner .wpcf7-form-control-wrap[data-name=weekday-contact-time],
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner .wpcf7-form-control-wrap[data-name=holiday-contact-time] {
    width: 100%;
    margin: 0 0 10px;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner .wpcf7-form-control-wrap[data-name=weekday-contact-time] .wpcf7-list-item,
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner .wpcf7-form-control-wrap[data-name=holiday-contact-time] .wpcf7-list-item {
    width: 50%;
    margin: 0 0 10px;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner legend {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #333333;
    margin: 0px 0px 12px 0px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner .wpcf7-checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner .wpcf7-checkbox input[type=checkbox] {
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: checkbox;
    width: 31px;
    height: 30px;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner .wpcf7-checkbox .wpcf7-list-item {
    width: 50%;
    margin: 0;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #333333;
    letter-spacing: 1.4px;
    margin: 0px 0px 0px 8px;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-select {
    width: 100%;
    margin: -19px 0 0;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-select .checkbox-form-group {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin: 12px -4px 8px 0px;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-select .checkbox-form-group .wpcf7-form-control-wrap[data-name=checkbox-475] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-select .checkbox-form-group .wpcf7-form-control-wrap[data-name=checkbox-475] .wpcf7-checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 3px; /* チェックボックスの間隔 */
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-select .checkbox-form-group .wpcf7-form-control-wrap[data-name=checkbox-475] .wpcf7-list-item {
    width: 100%; /* 2列に並べる */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 8px; /* 下の余白を調整 */
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-select .checkbox-form-group legend {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #333333;
    margin: 0 20px 0 6px;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-select .checkbox-form-group .wpcf7-list-item input[type=checkbox] {
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: checkbox;
    width: 31px;
    height: 30px;
    margin-right: 8px; /* ラベルとの間隔 */
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-select .checkbox-form-group .wpcf7-list-item-label {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #333333;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-store {
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-store .hope-store-label {
    max-width: 100%;
    width: 100%;
    margin: 27px 0 0;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-store .hope-store-label .wpcf7-form-control-wrap[data-name=your-store] {
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-store .hope-store-label .wpcf7-form-control-wrap[data-name=your-store] .wpcf7-text {
    max-width: 100%;
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .date-field {
    max-width: 100%;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 39px 0 0;
    position: relative;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .date-field .title-flex {
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .date-field .date-field-wrap {
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .date-field .date-field-wrap .hopeday-label {
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .date-field .date-field-wrap .hopeday-label .my-date-field {
    max-width: 100%;
    width: 100%;
    height: 50px;
    background-color: #FFFFFF;
    border-radius: 5px;
    font-size: 14px;
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .date-field .date-field-wrap .my-date-field::-webkit-calendar-picker-indicator {
    font-size: 3rem; /* アイコンだけ拡大 */
    width: 50px; /* クリック可能領域を広げたい場合 */
    height: 50px;
    cursor: pointer;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .date-field .date-field-wrap .fa-calendar-days {
    width: 50px;
    height: 50px;
    font-size: 30px;
    color: #FFFFFF;
    background-color: #CA7F13;
    position: absolute;
    top: 40px;
    right: 0;
    padding: 10px 10px 10px 12px;
    pointer-events: none; /* アイコンへのクリックを無視して、裏のinputをクリック可能にする */
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .textarea {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 49px 0 0;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .textarea .title-flex {
    width: 100%;
    margin: -12px 0 25px;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .textarea .textarea-flex {
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .textarea .textarea-flex .textarea-label {
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .textarea .textarea-flex .textarea-label .wpcf7-form-control-wrap[data-name=your-details] .wpcf7-textarea {
    max-width: 100%;
    width: 100%;
    height: 200px;
    background-color: #FFFFFF;
    border-radius: 5px;
    font-size: 1rem;
    padding: 10px 0 0 10px;
    margin: -12px -15px 0px 1px;
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .textarea .textarea-flex .details-text {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 2.3333333333;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #333333;
    margin: 2px 0 0 -1px;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .wpcf7-submit {
    width: 160px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #949E33;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.625;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #FFFFFF;
    border-radius: 40px;
    margin: 32px auto 70px;
    -webkit-transition: background 0.3s ease, color 0.3s ease;
    transition: background 0.3s ease, color 0.3s ease;
    text-decoration: none;
    cursor: pointer;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .wpcf7-submit:hover {
    background-color: #CA7F13;
  }
}
@media (max-width: 500px) {
  #section-contects.reserve #breadcrumbs {
    margin: 0 0 0 0;
    padding: 14px 0px 0 16px;
  }
  .privacy-policy__inner .privacy-download {
    padding: 0;
    margin: 0;
  }
  .privacy-policy__inner .contact-section .contact__info {
    max-width: 578px;
    width: 100%;
    padding: 0;
  }
  #contact-form-section {
    background-color: #EDE9E4;
    padding: 60px 12px 47px 29px;
  }
  #contact-form-section .contact-form-section__inner .mail-steps__container {
    gap: 18.72px;
    padding: 0;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper {
    padding: 0;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-list label .wpcf7-form-control-wrap {
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-list label .wpcf7-form-control-wrap .wpcf7-text {
    max-width: 620px; /* 最大幅を620pxに制限 */
    width: 100%; /* 親要素の幅に基づいて可変 */
    height: 50px;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .form-select .checkbox-group__inner {
    max-width: 620px;
    width: 100%;
    margin: 0;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .hope-store {
    max-width: 620px;
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .date-field {
    max-width: 728px;
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .date-field .title-flex {
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .date-field .date-field-wrap {
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .date-field .date-field-wrap .my-date-field {
    max-width: 620px;
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .textarea .textarea-flex {
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper .wpcf7 .wpcf7-form .textarea .textarea-flex .textarea-label .wpcf7-form-control-wrap[data-name=your-details] .wpcf7-textarea {
    max-width: 620px;
    width: 100%;
  }
}
#section-contects.reserve {
  height: auto;
  background-color: #F9F8F6;
  border-bottom: 1px solid #F9F8F6;
}
#section-contects.reserve #breadcrumbs {
  margin: -13px 0 0 0px;
  padding: 19.5px 0 19px 120px;
}

.privacy-policy {
  padding: 109px 13.9% 119px 12.6%;
  background-color: #F9F8F6;
}
.privacy-policy__inner {
  max-width: 1061px;
}
.privacy-policy__inner .privacy-download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 -26px 0 0px;
}
.privacy-policy__inner .privacy-download__textarea {
  color: #CA7F13;
  max-width: 720px;
  width: 100%;
  margin: 0 100px 121px 0;
}
.privacy-policy__inner .privacy-download__textarea--title {
  font-size: 32px;
  letter-spacing: 0.1em;
  line-height: 1;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #CA7F13;
  margin: 0 0 42px;
}
.privacy-policy__inner .privacy-download__textarea--text {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #CA7F13;
}
.privacy-policy__inner .download-content {
  background-color: #D4CEBE;
  width: 240px;
  height: 147px;
  padding: 32px 34px 36px 41px;
}
.privacy-policy__inner .download-content__text {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #CA7F13;
  margin: 0 0 16px 4px;
}
.privacy-policy__inner .download-content__button {
  width: 160px;
  height: 40px;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.625;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #FFFFFF;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.privacy-policy__inner .download-content__button .fa-file-download {
  margin: 0 14px 0 12px;
}
.privacy-policy__inner .download-content__button:hover {
  color: #F9F8F6;
  background-color: #CA7F13;
}
.privacy-policy__inner .contact-section .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.privacy-policy__inner .contact-section .contact__info {
  max-width: 578px;
  width: 100%;
  color: #CA7F13;
}
.privacy-policy__inner .contact-section .contact__info--title {
  font-size: 48px;
  letter-spacing: 0.1em;
  line-height: 0.5625;
  font-family: "Marcellus";
  font-weight: normal;
  color: #CA7F13;
  margin: 0 0 20px;
}
.privacy-policy__inner .contact-section .contact__info--description {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #CA7F13;
}
.privacy-policy__inner .contact-section .contact__details {
  max-width: 422px;
  width: 100%;
  color: #CA7F13;
  margin: 0px -23px 0 58.5px;
  padding: 66px 0 44px 9.9%;
  border-left: 1px solid #CA7F13;
}
.privacy-policy__inner .contact-section .contact__details--number {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 32px;
  letter-spacing: 0.1em;
  line-height: 1;
  font-family: "Marcellus";
  font-weight: normal;
  color: #CA7F13;
  margin-bottom: 36px;
}
.privacy-policy__inner .contact-section .contact__details--hours {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2.2857142857;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #CA7F13;
  border: 1px solid #CA7F13;
  border-radius: 16px;
  padding: 7px 35px;
}

#contact-form-section {
  background-color: #EDE9E4;
  padding: 80px 180px 21px;
  height: auto;
}
#contact-form-section .contact-form-section__inner {
  max-width: 1080px;
  margin: 0 auto;
}
#contact-form-section .contact-form-section__inner .mail-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0px 0 -6px;
}
#contact-form-section .contact-form-section__inner .mail-steps__textarea--title {
  font-size: 48px;
  letter-spacing: 0.1em;
  line-height: 0.75;
  font-family: "Marcellus";
  font-weight: normal;
  color: #CA7F13;
  margin: 0 0 48px 0;
}
#contact-form-section .contact-form-section__inner .mail-steps__textarea--description {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #333333;
}
#contact-form-section .contact-form-section__inner .mail-steps__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 26.5px;
}
#contact-form-section .contact-form-section__inner .mail-steps__container .mail-step {
  text-align: center;
  border-top: 2px solid #707070;
  border-bottom: 2px solid #707070;
  padding: 57.5px 13.5px 53.5px 14.5px;
}
#contact-form-section .contact-form-section__inner .mail-steps__container .mail-step__number {
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.4;
  font-family: "Marcellus";
  font-weight: normal;
  color: #707070;
  margin: 0 0 16px 0;
}
#contact-form-section .contact-form-section__inner .mail-steps__container .mail-step__text {
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.1666666667;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #707070;
}
#contact-form-section .contact-form-section__inner .mail-steps__container .mail-step:nth-of-type(1) {
  border-top-color: #CA7F13;
  border-bottom-color: #CA7F13;
}
#contact-form-section .contact-form-section__inner .mail-steps__container .mail-step:nth-of-type(1):nth-of-type(1) .mail-step__number,
#contact-form-section .contact-form-section__inner .mail-steps__container .mail-step:nth-of-type(1):nth-of-type(1) .mail-step__text {
  color: #CA7F13;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm {
  margin: 90px auto 30px;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.125;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #707070;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 32px;
  padding: 0 0 0 39px;
  width: 100%;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-list .title-flex {
  width: 39%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-list .title-flex .required-icon {
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 2.3333333333;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #FFFFFF;
  background-color: #54372D;
  border-radius: 15px;
  padding: 0 18px;
  margin: 0 16px 0 0;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-list .title-flex .optional-icon {
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 2.3333333333;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #333333;
  background-color: #D4CEBE;
  border-radius: 15px;
  padding: 0 18px;
  margin: 0 16px 0 0;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-list .title-flex .title {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.75;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #333333;
  color: #333333;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-list label {
  width: 66%;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-list label .wpcf7-form-control-wrap {
  width: 66%;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-list label .wpcf7-form-control-wrap .wpcf7-text {
  max-width: 620px; /* 最大幅を620pxに制限 */
  width: 100%; /* 親要素の幅に基づいて可変 */
  height: 50px;
  background-color: #FFFFFF;
  margin: 0 -17px 0 0px;
  padding: 0 0 0 10px;
  border-radius: 5px;
  font-size: 1rem;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-time {
  width: 100%;
  margin: -21px 0 -13px;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-time .checkbox-group {
  width: 65%;
  margin: 3px -4px 18px 0px;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 620px;
  margin: 19px -18px 21px 0px;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner .wpcf7-form-control-wrap[data-name=weekday-contact-time],
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner .wpcf7-form-control-wrap[data-name=holiday-contact-time] {
  width: 91%;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner .wpcf7-form-control-wrap[data-name=weekday-contact-time] .wpcf7-list-item,
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner .wpcf7-form-control-wrap[data-name=holiday-contact-time] .wpcf7-list-item {
  width: 23%;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner legend {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #333333;
  margin: 5px 19px 0 -2px;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner .wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner .wpcf7-checkbox input[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
  width: 31px;
  height: 30px;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner .wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #333333;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-select {
  width: 100%;
  margin: -19px 0 0;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-select .checkbox-form-group {
  width: 65%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 12px -4px 8px 0px;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-select .checkbox-form-group .wpcf7-form-control-wrap[data-name=checkbox-475] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-select .checkbox-form-group .wpcf7-form-control-wrap[data-name=checkbox-475] .wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px; /* チェックボックスの間隔 */
  width: 100%;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-select .checkbox-form-group .wpcf7-form-control-wrap[data-name=checkbox-475] .wpcf7-list-item {
  width: 38%; /* 2列に並べる */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px; /* 下の余白を調整 */
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-select .checkbox-form-group legend {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #333333;
  margin: 0 20px 0 6px;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-select .checkbox-form-group .wpcf7-list-item input[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
  width: 31px;
  height: 30px;
  margin-right: 8px; /* ラベルとの間隔 */
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-select .checkbox-form-group .wpcf7-list-item-label {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #333333;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-store {
  max-width: 1080px;
  width: 100%;
  margin: 19px 0 0;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-store .hope-store-label {
  width: 65%;
  margin: 19px 0 0;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-store .hope-store-label .wpcf7-form-control-wrap[data-name=your-store] {
  width: 45%;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-store .hope-store-label .wpcf7-form-control-wrap[data-name=your-store] .wpcf7-text {
  max-width: 300px;
  width: 100%;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .date-field {
  max-width: 68%;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 39px 0 0;
  position: relative;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .date-field .title-flex {
  width: 42%;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .date-field .date-field-wrap {
  width: 44%;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .date-field .date-field-wrap .hopeday-label {
  width: 100%;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .date-field .date-field-wrap .hopeday-label .my-date-field {
  max-width: 300px;
  width: 100%;
  height: 50px;
  background-color: #FFFFFF;
  color: #000 !important;
  border-radius: 5px;
  font-size: 14px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none; /* Firefox */
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .textarea {
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 49px 0 0;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .textarea .title-flex {
  width: 22%;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .textarea .textarea-flex {
  width: 63%;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .textarea .textarea-flex .textarea-label {
  width: 100%;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .textarea .textarea-flex .textarea-label .wpcf7-form-control-wrap[data-name=your-details] .wpcf7-textarea {
  max-width: 620px;
  width: 100%;
  height: 120px;
  background-color: #FFFFFF;
  border-radius: 5px;
  font-size: 1rem;
  padding: 10px 0 0 10px;
  margin: -12px -15px 0px 1px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .textarea .textarea-flex .details-text {
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 2.3333333333;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #333333;
  margin: 8px 0 0;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .wpcf7-submit {
  width: 160px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #949E33;
  font-size: 16px;
  letter-spacing: 0.125em;
  line-height: 1.625;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #FFFFFF;
  border-radius: 40px;
  margin: 32px auto 0;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}
#contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .wpcf7-submit:hover {
  background-color: #CA7F13;
}

@media (max-width: 1200px) {
  #section-contects.reserve {
    height: auto;
    background-color: #F9F8F6;
    border-bottom: 1px solid #F9F8F6;
  }
  #section-contects.reserve #breadcrumbs {
    margin: 0 0 0 0;
    padding: 14px 0px 0 16px;
  }
  .privacy-policy {
    padding: 79px 30px 66px 30px;
    background-color: #F9F8F6;
  }
  .privacy-policy__inner {
    max-width: 1061px;
  }
  .privacy-policy__inner .privacy-download {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 80px 0;
    margin: 0;
  }
  .privacy-policy__inner .privacy-download__textarea {
    color: #CA7F13;
    max-width: 720px;
    width: 100%;
    margin: 0;
  }
  .privacy-policy__inner .privacy-download__textarea--title {
    font-size: 24px;
    letter-spacing: 0.1em;
    line-height: 1.3333333333;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #CA7F13;
    margin: 24px 0px 14px;
  }
  .privacy-policy__inner .privacy-download__textarea--text {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.5;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
    margin: 0 0 -2px;
  }
  .privacy-policy__inner .download-content {
    background-color: #D4CEBE;
    width: 240px;
    height: 147px;
    padding: 32px 36px 30px 42px;
    margin: 0 0px 0 17px;
  }
  .privacy-policy__inner .download-content__text {
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 1.5;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
    margin: -1px -5px 16px 1px;
  }
  .privacy-policy__inner .download-content__button {
    width: 160px;
    height: 40px;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.625;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #FFFFFF;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
  .privacy-policy__inner .download-content__button .fa-file-download {
    font-size: 16px;
    margin: 0 14px 0 12px;
  }
  .privacy-policy__inner .download-content__button:hover {
    color: #F9F8F6;
    background-color: #CA7F13;
  }
  .privacy-policy__inner .contact-section .contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .privacy-policy__inner .contact-section .contact__info {
    max-width: 100%;
    width: 100%;
    color: #CA7F13;
    padding: 0 80px 0;
  }
  .privacy-policy__inner .contact-section .contact__info--title {
    font-size: 24px;
    letter-spacing: 0.1em;
    line-height: 1.3333333333;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
    margin: 32px 0 10px 17px;
    text-align: center;
  }
  .privacy-policy__inner .contact-section .contact__info--description {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.5;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
  }
  .privacy-policy__inner .contact-section .contact__info--description .brsp {
    display: none;
  }
  .privacy-policy__inner .contact-section .contact__details {
    max-width: 422px;
    width: 100%;
    color: #CA7F13;
    margin: 13px auto;
    padding: 0 0 0 24px;
    text-align: center;
    border-left: none;
  }
  .privacy-policy__inner .contact-section .contact__details--number {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 24px;
    letter-spacing: 0.0583333333em;
    line-height: 1.3333333333;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
    margin: 10px auto 13px;
    letter-spacing: 2.4px;
    line-height: 32px;
  }
  .privacy-policy__inner .contact-section .contact__details--hours {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2.2857142857;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
    border: 1px solid #CA7F13;
    border-radius: 16px;
    padding: 0px 35px;
  }
  #contact-form-section {
    background-color: #EDE9E4;
    padding: 60px 30px 47px;
  }
  #contact-form-section .contact-form-section__inner {
    max-width: 1080px;
    margin: 0 auto;
  }
  #contact-form-section .contact-form-section__inner .mail-steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #contact-form-section .contact-form-section__inner .mail-steps__textarea {
    margin: 0 auto;
  }
  #contact-form-section .contact-form-section__inner .mail-steps__textarea--title {
    font-size: 32px;
    letter-spacing: 0.1em;
    line-height: 1.125;
    font-family: "Marcellus";
    font-weight: normal;
    color: #CA7F13;
    color: #CA7F13;
    margin: 0 0 16px 0;
  }
  #contact-form-section .contact-form-section__inner .mail-steps__textarea--description {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #333333;
    color: #333333;
    margin: 0 0 24px;
  }
  #contact-form-section .contact-form-section__inner .mail-steps__container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 16%;
    padding: 0 11%;
  }
  #contact-form-section .contact-form-section__inner .mail-steps__container .mail-step {
    width: 100%;
    text-align: center;
    border-top: 2px solid #707070;
    border-bottom: 2px solid #707070;
    padding: 39.5px 0 36.5px 0;
  }
  #contact-form-section .contact-form-section__inner .mail-steps__container .mail-step__number {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.4285714286;
    font-family: "Marcellus";
    font-weight: normal;
    color: #707070;
    margin: 0 0 16px 0;
  }
  #contact-form-section .contact-form-section__inner .mail-steps__container .mail-step__text {
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.1875;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #707070;
  }
  #contact-form-section .contact-form-section__inner .mail-steps__container .mail-step:nth-of-type(1) {
    border-top-color: #CA7F13;
    border-bottom-color: #CA7F13;
  }
  #contact-form-section .contact-form-section__inner .mail-steps__container .mail-step:nth-of-type(1):nth-of-type(1) .mail-step__number,
  #contact-form-section .contact-form-section__inner .mail-steps__container .mail-step:nth-of-type(1):nth-of-type(1) .mail-step__text {
    color: #CA7F13;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm {
    margin: 67px auto -87px;
    padding: 0 10%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    width: 100%;
    margin: 0 0 34.3px;
    padding: 0;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-list .title-flex {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 12px;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-list .title-flex .required-icon {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 2.3333333333;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #FFFFFF;
    background-color: #54372D;
    border-radius: 15px;
    padding: 0 18px;
    margin: 0 16px 0 0;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-list .title-flex .optional-icon {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 2.3333333333;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #333333;
    background-color: #D4CEBE;
    border-radius: 15px;
    padding: 0 18px;
    margin: 0 16px 0 0;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-list .title-flex .title {
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.75;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #333333;
    letter-spacing: 1.6px;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-list label {
    width: 66%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-list label .wpcf7-form-control-wrap {
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-list label .wpcf7-form-control-wrap .wpcf7-text {
    max-width: 100%;
    width: 100%; /* 親要素の幅に基づいて可変 */
    height: 50px;
    background-color: #FFFFFF;
    margin: 0 -17px 0 0px;
    padding: 0 0 0 10px;
    border-radius: 5px;
    font-size: 1rem;
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-time {
    width: 100%;
    margin: 39px 0 0;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-time .title-flex {
    margin: 0 0 12px;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-time .checkbox-group {
    width: 100%;
    margin: 3px -4px 18px 0px;
    padding: 0 10px 0 0;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: baseline;
        -ms-flex-pack: baseline;
            justify-content: baseline;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
    width: 100%;
    margin: 0px -18px 2px 0;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner .wpcf7-form-control-wrap[data-name=weekday-contact-time],
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner .wpcf7-form-control-wrap[data-name=holiday-contact-time] {
    width: 100%;
    margin: 0 0 10px;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner .wpcf7-form-control-wrap[data-name=weekday-contact-time] .wpcf7-list-item,
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner .wpcf7-form-control-wrap[data-name=holiday-contact-time] .wpcf7-list-item {
    width: 50%;
    margin: 0 0 10px;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner legend {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #333333;
    margin: 0px 0px 12px 0px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner .wpcf7-checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner .wpcf7-checkbox input[type=checkbox] {
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: checkbox;
    width: 31px;
    height: 30px;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner .wpcf7-checkbox .wpcf7-list-item {
    width: 50%;
    margin: 0;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-time .checkbox-group__inner .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #333333;
    letter-spacing: 1.4px;
    margin: 0px 0px 0px 8px;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-select {
    width: 100%;
    margin: -19px 0 0;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-select .checkbox-form-group {
    width: 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 12px -4px 8px 0px;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-select .checkbox-form-group .wpcf7-form-control-wrap[data-name=checkbox-475] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-select .checkbox-form-group .wpcf7-form-control-wrap[data-name=checkbox-475] .wpcf7-checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 12px; /* チェックボックスの間隔 */
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-select .checkbox-form-group .wpcf7-form-control-wrap[data-name=checkbox-475] .wpcf7-list-item {
    width: 38%; /* 2列に並べる */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 8px; /* 下の余白を調整 */
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-select .checkbox-form-group legend {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #333333;
    margin: 0 20px 0 6px;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-select .checkbox-form-group .wpcf7-list-item input[type=checkbox] {
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: checkbox;
    width: 31px;
    height: 30px;
    margin-right: 8px; /* ラベルとの間隔 */
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-select .checkbox-form-group .wpcf7-list-item-label {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 2;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #333333;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-store {
    max-width: 100%;
    width: 100%;
    margin: 27px 0 0;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-store .hope-store-label {
    width: 65%;
    margin: 19px 0 0;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-store .hope-store-label .wpcf7-form-control-wrap[data-name=your-store] {
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-store .hope-store-label .wpcf7-form-control-wrap[data-name=your-store] .wpcf7-text {
    max-width: 100%;
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .date-field {
    max-width: 100%;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 39px 0 0;
    position: relative;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .date-field .title-flex {
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .date-field .date-field-wrap {
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .date-field .date-field-wrap .hopeday-label {
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .date-field .date-field-wrap .hopeday-label .my-date-field {
    max-width: 100%;
    width: 100%;
    height: 50px;
    background-color: #FFFFFF;
    border-radius: 5px;
    font-size: 14px;
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .textarea {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 49px 0 0;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .textarea .title-flex {
    width: 100%;
    margin: -12px 0 25px;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .textarea .textarea-flex {
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .textarea .textarea-flex .textarea-label {
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .textarea .textarea-flex .textarea-label .wpcf7-form-control-wrap[data-name=your-details] .wpcf7-textarea {
    max-width: 100%;
    width: 100%;
    height: 200px;
    background-color: #FFFFFF;
    border-radius: 5px;
    font-size: 1rem;
    padding: 10px 0 0 10px;
    margin: -12px -15px 0px 1px;
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .textarea .textarea-flex .details-text {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 2.3333333333;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #333333;
    margin: 2px 0 0 -1px;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .wpcf7-submit {
    width: 160px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #949E33;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.625;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #FFFFFF;
    border-radius: 40px;
    margin: 32px auto 70px;
    -webkit-transition: background 0.3s ease, color 0.3s ease;
    transition: background 0.3s ease, color 0.3s ease;
    text-decoration: none;
    cursor: pointer;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .wpcf7-submit:hover {
    background-color: #CA7F13;
  }
}
@media (max-width: 500px) {
  #section-contects.reserve #breadcrumbs {
    margin: 0 0 0 0;
    padding: 14px 0px 0 16px;
  }
  .privacy-policy__inner .privacy-download {
    padding: 0;
    margin: 0;
  }
  .privacy-policy__inner .contact-section .contact__info {
    max-width: 578px;
    width: 100%;
    padding: 0;
  }
  #contact-form-section {
    background-color: #EDE9E4;
    padding: 60px 12px 47px 29px;
  }
  #contact-form-section .contact-form-section__inner .mail-steps__container {
    gap: 18.72px;
    padding: 0;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm {
    padding: 0;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-list label {
    width: 66%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-list label .wpcf7-form-control-wrap {
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-list label .wpcf7-form-control-wrap .wpcf7-text {
    max-width: 620px; /* 最大幅を620pxに制限 */
    width: 100%; /* 親要素の幅に基づいて可変 */
    height: 50px;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .form-select .checkbox-group__inner {
    max-width: 620px;
    width: 100%;
    margin: 0;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .hope-store {
    max-width: 620px;
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .date-field {
    max-width: 728px;
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .date-field .title-flex {
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .date-field .date-field-wrap {
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .date-field .date-field-wrap .hopeday-label {
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .date-field .date-field-wrap .hopeday-label .my-date-field {
    max-width: 620px;
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .textarea-label .textarea-flex {
    width: 100%;
  }
  #contact-form-section .contact-form-section__inner .contact-form-wrapper-confirm .wpcf7 .wpcf7-form .textarea-label .textarea-flex .textarea-label .wpcf7-form-control-wrap[data-name=your-details] .wpcf7-textarea {
    max-width: 620px;
    width: 100%;
  }
}
.contact-thanks {
  max-width: 670px;
  margin: 64px auto 95px;
}
.contact-thanks h2 {
  font-size: 36px;
  letter-spacing: 0.1em;
  line-height: 0.7777777778;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #CA7F13;
  text-align: center;
  margin: 0 0 32px;
}
.contact-thanks .flex {
  width: 400px;
  margin: 0 auto;
}
.contact-thanks .flex p {
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 2;
  font-family: "Yu Mincho";
  font-weight: normal;
  color: #CA7F13;
}
.contact-thanks .flex a {
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 2;
  font-family: "Yu Gothic";
  font-weight: normal;
  color: #CA7F13;
  text-align: left;
  text-decoration: underline;
}

@media (max-width: 500px) {
  .contact-thanks {
    max-width: 670px;
    margin: 48px auto 60px;
  }
  .contact-thanks h2 {
    font-size: 24px;
    letter-spacing: 0.1em;
    line-height: 1.4583333333;
    font-family: "Yu Mincho";
    font-weight: normal;
    color: #CA7F13;
    text-align: left;
    margin: 0 0 18px;
  }
  .contact-thanks .flex {
    width: 400px;
    margin: 0 auto;
  }
  .contact-thanks .flex p {
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 1.5;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
  }
  .contact-thanks .flex a {
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 1.5;
    font-family: "Yu Gothic";
    font-weight: normal;
    color: #CA7F13;
    text-align: left;
    text-decoration: underline;
  }
}/*# sourceMappingURL=style.css.map */