@charset "UTF-8";
/*!
global > color
------------------------------
*/
:root {
  --color-bg-primary: #CA7F13;
  --color-bg-secondary: #54372D;
  --color-bg-tertiary: #949E33;
  --color-bg-quaternary: #F9F8F6;
  --color-bg-quinary: #D4CEBE;
  --color-border-white: #ffffff;
  --color-border-black: #333333;
  --color-font-primary: #CA7F13;
  --color-font-secondary: #54372D;
  --color-font-white: #ffffff;
  --color-font-base: #CA7F13;
  --color-font-black: #333333;
}

/*!
global > font
------------------------------
*/
:root {
  --font-family-base: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", sans-serif;
  --font-family-secondary: "游明朝体", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  --font-family-en: "Marcellus", serif;
}

/*!
global > content-width
------------------------------
*/
:root {
  --width-content-xs: 800px;
  --width-content-s: 1080px;
  --width-content: 1200px;
  --width-content-l: 1260px;
}

/*!
foundation > base
------------------------------
*/
* {
  box-sizing: border-box;
}

html {
  font-size: 0.6944444444vw;
  scroll-padding-top: 125px;
  scroll-behavior: smooth;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  line-height: 1;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0em;
  background-color: var(--color-bg-quaternary);
  color: var(--color-font-base);
  font-family: var(--font-family-base);
  overflow-x: hidden;
}

html, body, h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

li {
  list-style: none;
}

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

button {
  cursor: pointer;
}

/* Disable tel: links on non-touch (desktop) devices */
@media (hover: hover) and (pointer: fine) {
  a[href^=tel] {
    pointer-events: none;
    cursor: default;
  }
}
:after, :before {
  box-sizing: inherit;
}

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

/* ------------------------------------------------
  Animation / Transition
------------------------------------------------ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/*!
foundation > reset
------------------------------
*/
/*!
layout > footer
------------------------------
*/
.footer {
  padding: 122px 0 8px;
  position: relative;
  z-index: 1;
  background-color: var(--color-bg-quaternary);
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 105px 0 8px;
  }
}
.footer__top-link {
  position: absolute;
  bottom: 37px;
  right: 41px;
  width: 80px;
  height: 80px;
  background-color: var(--color-bg-tertiary);
  border-radius: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__top-link:hover {
  background: var(--color-font-secondary);
}
@media screen and (max-width: 768px) {
  .footer__top-link {
    width: 40px;
    height: 40px;
    bottom: 14px;
    right: 25px;
  }
}
.footer__top-link::before {
  content: "";
  width: 25px;
  height: 25px;
  border-top: 5px solid var(--color-font-white);
  border-right: 5px solid var(--color-font-white);
  transform: rotate(-45deg);
  border-radius: 3px;
  position: absolute;
  bottom: 21px;
  left: 28px;
}
@media screen and (max-width: 768px) {
  .footer__top-link::before {
    bottom: 9px;
    left: 13px;
  }
}
@media screen and (max-width: 768px) {
  .footer__top-link::before {
    width: 15px;
    height: 15px;
    border-top: 3.5px solid var(--color-font-white);
    border-right: 3.5px solid var(--color-font-white);
    border-radius: 2px;
  }
}
.footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.footer__logo {
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    margin-left: 38px;
    margin-bottom: 36px;
    text-align: left;
  }
}
.footer__logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer__logo a:hover {
    transform: scale(1.1);
  }
}
@media (hover: none) and (pointer: coarse) {
  .footer__logo a:active {
    transform: scale(1.1);
  }
}
.footer__logo img {
  width: 64px;
  height: auto;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  .footer__logo img {
    width: 50px;
    margin-right: 0.5rem;
  }
}
.footer__logo .footer__logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: var(--font-family-en);
  color: var(--color-font-secondary);
  letter-spacing: 0.2em;
  font-size: 28px;
  line-height: 1.2;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .footer__logo .footer__logo-text {
    font-size: 20px;
    line-height: 1.4;
  }
}
.footer__nav {
  margin-bottom: 3.7rem;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    margin-bottom: 2.9rem;
  }
}
.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6.4rem;
  margin: 0 auto;
  font-family: var(--font-family-en);
  color: var(--color-font-secondary);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .footer__nav-list {
    gap: 0 2.2rem;
    row-gap: 1.2rem;
  }
}
@media screen and (max-width: 420px) {
  .footer__nav-list {
    width: 60%;
  }
}
.footer__nav-list li {
  list-style: none;
  position: relative;
  white-space: nowrap;
}
.footer__nav-list li a {
  font-size: 20px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
  position: relative;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .footer__nav-list li a {
    font-size: 14px;
  }
}
.footer__nav-list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-font-secondary);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 420px) {
  .footer__nav-list li a::after {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer__nav-list li a:hover::after {
    width: 100%;
  }
}
.footer__nav-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -3.4rem;
  width: 1px;
  height: 23px;
  background-color: var(--color-font-secondary);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .footer__nav-list li:not(:last-child)::after {
    right: -1.1rem;
    height: 16px;
  }
}
@media screen and (max-width: 420px) {
  .footer__nav-list li::after {
    display: none;
  }
  .footer__nav-list li:nth-child(1)::after, .footer__nav-list li:nth-child(2)::after, .footer__nav-list li:nth-child(4)::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 1px;
    height: 16px;
    background-color: var(--color-font-secondary);
    transform: translateY(-50%);
  }
}
.footer__sub-nav {
  margin-bottom: 5.7rem;
  color: var(--color-font-secondary);
}
@media screen and (max-width: 768px) {
  .footer__sub-nav {
    margin-bottom: 4.4rem;
  }
}
.footer__sub-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6.4rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer__sub-nav-list {
    gap: 0 2.2rem;
    row-gap: 1.2rem;
  }
}
@media screen and (max-width: 420px) {
  .footer__sub-nav-list {
    width: 70%;
  }
}
.footer__sub-nav-list li {
  list-style: none;
  position: relative;
}
.footer__sub-nav-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -3.1rem;
  width: 1px;
  height: 1em;
  background-color: var(--color-font-secondary);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .footer__sub-nav-list li:not(:last-child)::after {
    right: -1.1rem;
    height: 16px;
  }
}
.footer__sub-nav-list li a {
  font-size: 20px;
  font-family: var(--font-family-en);
  letter-spacing: 0.1em;
  text-decoration: none;
  color: inherit;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer__sub-nav-list li a {
    font-size: 14px;
  }
}
.footer__sub-nav-list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-font-secondary);
  transition: width 0.8s ease;
}
@media screen and (max-width: 420px) {
  .footer__sub-nav-list li a::after {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer__sub-nav-list li a:hover::after {
    width: 100%;
  }
}
.footer__copyright {
  font-family: var(--font-family-en);
  color: var(--color-font-secondary);
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.12rem;
  margin: 0;
  opacity: 0.8;
  text-transform: capitalize;
}

/*!
layout > header
------------------------------
*/
body:has(.hamburger.active) {
  overflow: clip;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
}
#header .c-button-a::before {
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  content: "\f073"; /* fa-calendar-days */
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* solid */
  font-size: 23px;
  color: var(--color-font-white);
}

/* デフォルトのヘッダー（通常） */
.header--default {
  background-color: transparent;
  height: auto; /* PC/SP共通なら適宜指定 */
}

/* 白背景・高さ173pxバージョン */
.header--white {
  background-color: var(--color-bg-quaternary);
  position: relative;
  z-index: 10;
}
.header--white .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 93.2638888889vw;
  max-width: 1343px;
  margin: 5rem auto 5.8rem;
}
@media screen and (max-width: 768px) {
  .header__inner {
    margin: 0;
    height: 70px;
    width: 100%;
    padding: 0 20px;
    align-items: center;
  }
}

.header__logo {
  position: relative;
  z-index: 2001;
}

.header__logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header__logo a:hover {
    transform: scale(1.1);
  }
}
@media (hover: none) and (pointer: coarse) {
  .header__logo a:active {
    transform: scale(1.1);
  }
}

.header__logo img {
  width: 64px;
  height: auto;
  margin-right: 8px;
}
@media screen and (max-width: 768px) {
  .header__logo img {
    width: 32px;
  }
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-family: var(--font-family-en);
  font-size: 2.8rem;
  color: var(--color-font-secondary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .header__logo-text {
    display: none;
  }
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 35px;
}
.header__nav-list a {
  color: var(--color-font-secondary);
  font-family: var(--font-family-en);
  text-decoration: none;
  letter-spacing: 0.12rem;
  font-size: 2rem;
  font-weight: 500;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-transform: capitalize;
}
.header__nav-list a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-font-secondary);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 768px) {
  .header__nav-list a::after {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header__nav-list a:hover::after {
    width: 100%;
  }
}

.header-button-text {
  align-items: center;
  color: var(--color-font-white);
  font-family: var(--font-family-secondary);
  font-weight: 500;
  text-decoration: none;
  font-size: 20px;
  padding-top: 5px;
}

.hamburger {
  position: relative;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100px;
  height: 30px;
  background: var(--color-bg-tertiary);
  border-radius: 15px;
  cursor: pointer;
  padding: 0 12px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}
.hamburger.active {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  padding: 0;
  gap: 0;
}

.hamburger__text {
  font-size: 14px;
  color: var(--color-font-white);
  font-weight: 500;
  font-family: var(--font-family-secondary);
  transition: opacity 0.3s ease;
}
.hamburger.active .hamburger__text {
  opacity: 0;
}

.hamburger__icon {
  position: relative;
  width: 12px;
  height: 10px;
}
.hamburger__icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-font-white);
  transition: all 0.3s ease;
}
.hamburger__icon span:nth-child(1) {
  top: 0;
}
.hamburger__icon span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger__icon span:nth-child(3) {
  bottom: 0;
}
.hamburger.active .hamburger__icon {
  width: 40px;
}
.hamburger.active .hamburger__icon span {
  left: -8.5px;
}
.hamburger.active .hamburger__icon span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.hamburger.active .hamburger__icon span:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger__icon span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.sp-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-quinary);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.sp-nav.active {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 768px) {
  .sp-nav {
    display: block;
  }
}

.sp-nav__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  gap: 18px;
  margin: 146px 0 0 6rem;
}
.sp-nav__list li a {
  color: var(--color-font-primary);
  text-decoration: none;
  font-size: 24px;
  font-family: var(--font-family-en);
  letter-spacing: 0.1em;
  position: relative;
  transition: color 0.3s ease;
  text-transform: capitalize;
}
.sp-nav__list li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-font-secondary);
  transition: width 0.3s ease;
}
@media screen and (max-width: 768px) {
  .sp-nav__list li a::after {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .sp-nav__list li a:hover::after {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
/*!
layout > container
------------------------------
*/
.l-container-l, .l-container, .l-container-s, .l-container-xs {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1220px) {
  .l-container-l, .l-container, .l-container-s, .l-container-xs {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .l-container-l, .l-container, .l-container-s, .l-container-xs {
    padding: 0 30px;
  }
}

.l-container-xs {
  max-width: var(--width-content-xs);
}

.l-container-s {
  max-width: var(--width-content-s);
}

.l-container {
  max-width: var(--width-content);
}

.l-container-l {
  max-width: var(--width-content-l);
}

/*!
component > button
------------------------------
*/
.c-button-a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-tertiary);
  color: var(--color-font-white);
  font-family: var(--font-family-secondary);
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.1em;
  transition: background-color 0.8s ease;
  position: relative;
  line-height: 2;
  text-transform: capitalize;
  cursor: pointer;
}
.c-button-a--bg {
  width: 20rem;
  height: 50px;
  min-width: 200px;
  min-height: 50px;
}
.c-button-a--sm {
  width: 160px;
  height: 40px;
  min-width: 160px;
  min-height: 40px;
}
@media screen and (max-width: 768px) {
  .c-button-a--sm {
    width: 120px;
    min-width: 120px;
    font-size: 12px;
  }
}
.c-button-a--center {
  margin: 0 auto;
}
.c-button-a--reserve {
  font-size: 16px;
  position: relative;
}
.c-button-a--reserve::before {
  content: "\f56d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 4px;
  left: 16px;
  width: 100%;
}
.c-button-a--news {
  width: 200px;
  height: 40px;
  min-width: 200px;
  min-height: 40px;
  font-size: 16px;
}

@media (hover: hover) and (pointer: fine) {
  .c-button-a:hover {
    background: var(--color-font-secondary);
  }
}
@media (hover: none), (pointer: coarse) {
  .c-button-a {
    transition: none;
  }
}
/*!
component > title
------------------------------
*/
.c-title-level1 {
  font-size: 4.8rem;
  font-family: var(--font-family-en);
  letter-spacing: 0;
  line-height: 1;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .c-title-level1 {
    font-size: 30px;
  }
}
.c-title-level1--center {
  text-align: center;
  padding-left: 0.08em;
}
.c-title-level1--white {
  color: var(--color-font-white);
}
.c-title-level1--black {
  color: var(--color-font-black);
}

.c-title {
  display: flex;
  flex-direction: column;
  position: relative;
  color: var(--color-font-primary);
  width: auto;
}
.c-title .section-title__en {
  font-size: clamp(48px, 8vw, 84px);
  font-family: var(--font-family-en);
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .c-title .section-title__en {
    font-size: 48px;
    letter-spacing: 0.18rem;
  }
}
.c-title .section-title__en--capitalize {
  text-transform: capitalize;
}
.c-title .section-title__ja {
  font-size: 14px;
  font-family: var(--font-family-secondary);
}
@media screen and (max-width: 768px) {
  .c-title .section-title__ja {
    font-size: 12px;
  }
}
.c-title:after {
  position: absolute;
  font-family: "Parisienne", serif;
  font-size: clamp(85px, 10vw, 148px);
  font-weight: normal;
  color: var(--color-font-primary);
  display: block;
  width: auto;
  opacity: 0.08;
  text-transform: capitalize;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-title:after {
    font-size: 85px;
  }
}
.c-title--news:after {
  content: "news";
  top: -25px;
  left: 106px;
}
@media screen and (max-width: 768px) {
  .c-title--news:after {
    top: -20px;
    left: 60px;
  }
}
.c-title--concept:after {
  content: "concept";
  top: -37px;
  left: 87px;
}
@media screen and (max-width: 768px) {
  .c-title--concept:after {
    top: -20px;
    left: 47px;
  }
}
.c-title--feature {
  position: relative;
  z-index: 2;
  padding-top: 9rem;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-title--feature {
    padding-top: 0;
    top: 65px;
  }
}
.c-title--feature:after {
  content: "feature";
  top: 64px;
  right: 400px;
}
@media screen and (max-width: 768px) {
  .c-title--feature:after {
    top: -31px;
    left: 85px;
  }
}
.c-title--price:after {
  content: "price menu";
  top: -1px;
  left: 53px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .c-title--price:after {
    left: 51px;
    top: 16px;
    width: auto;
  }
}
.c-title--faq:after {
  content: "faq";
  top: -29px;
  left: 69px;
}
@media screen and (max-width: 768px) {
  .c-title--faq:after {
    left: 41px;
    top: -22px;
    width: auto;
    letter-spacing: 0.08rem;
  }
}
.c-title--instagram:after {
  content: "instagram";
  top: -29px;
  left: 37px;
}
@media screen and (max-width: 768px) {
  .c-title--instagram:after {
    left: 29px;
    top: -6px;
    width: auto;
    letter-spacing: 0.08rem;
  }
}
.c-title--company-profile {
  overflow: hidden;
}
.c-title--company-profile:after {
  content: "company profile";
  top: 0;
  left: 37px;
  white-space: nowrap;
}
@media screen and (max-width: 492px) {
  .c-title--company-profile:after {
    left: 54px;
    width: auto;
    letter-spacing: 0.08rem;
    white-space: normal;
  }
}
.c-title--prefectures:after {
  content: "prefectures";
  top: -20px;
  left: 39px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .c-title--prefectures:after {
    left: 40px;
    top: -6px;
    width: auto;
    letter-spacing: 0.08rem;
  }
}
.c-title--flow:after {
  content: "flow";
  top: -37px;
  left: 72px;
}
@media screen and (max-width: 768px) {
  .c-title--flow:after {
    top: -20px;
    left: 47px;
  }
}
.c-title--staff {
  flex-direction: row;
  align-items: end;
}
.c-title--staff .section-title__en {
  line-height: 0.8;
}
.c-title--center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
.c-title--center .section-title__en {
  font-size: 8rem;
}
@media screen and (max-width: 768px) {
  .c-title--center .section-title__en {
    font-size: 4.8rem;
  }
}
.c-title--center .section-title__ja {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .c-title--center .section-title__ja {
    font-size: 1.2rem;
  }
}

/*!
component > link
------------------------------
*/
.reserve {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.reserve__link {
  display: block;
  position: relative;
  width: 100%;
  margin: 0 auto;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.8s ease;
}
@media (hover: hover) and (pointer: fine) {
  .reserve__link:hover {
    opacity: 0.8;
  }
}
.reserve__inner {
  display: grid; /* グリッドで重ねる */
  place-items: center; /* 中央寄せ（上下左右） */
  text-align: center;
}
.reserve__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  grid-area: 1/1; /* 画像と同じセルに配置 */
  z-index: 1; /* オーバーレイより上に */
}
.reserve__title-en {
  font-size: 8rem;
  font-family: var(--font-family-en);
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .reserve__title-en {
    font-size: 48px;
    margin-top: -16px;
    line-height: 1.1;
  }
}
.reserve__title-ja {
  font-size: 1.6rem;
  letter-spacing: 0.13em;
}
@media screen and (max-width: 768px) {
  .reserve__title-ja {
    font-size: 12px;
  }
}
.reserve__image {
  width: 100%;
  grid-area: 1/1; /* タイトルと重ねる */
  position: relative; /* 疑似要素の基準 */
}
.reserve__image::after { /* 画像の上にオーバーレイ */
  content: "";
  position: absolute;
  inset: 0;
  background-color: #464646;
  opacity: 0.8;
  transition: opacity 0.8s ease;
}
.reserve__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* SALONS and SNS Links */
.link-container {
  display: flex;
  justify-content: space-between;
  gap: 0;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  margin-top: -16px;
}
.link-container::before {
  content: "";
  position: absolute;
  top: 52%;
  left: 50%;
  width: 1px;
  height: 26rem;
  background-color: var(--color-bg-primary);
  transform: translate(-50%, -50%);
}
.link-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 83.3333333333%;
  height: 1px;
  background-color: var(--color-bg-primary);
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .link-container::after {
    width: 90%;
  }
}
.link-container--reserve {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .link-container {
    flex-direction: column;
    margin-top: 25px;
  }
  .link-container::before {
    display: none;
  }
  .link-container::after {
    display: none;
  }
}

.salons-link,
.sns-link {
  flex: 1;
  margin: 0 auto;
  height: 356px;
  margin-top: -19px;
}
@media screen and (min-width: 1500px) {
  .salons-link,
  .sns-link {
    height: 39rem;
  }
}
.salons-link--price,
.sns-link--price {
  margin-top: -40px;
}
.salons-link a,
.sns-link a {
  display: block;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .salons-link,
  .sns-link {
    margin: 57px 0 63px;
    height: auto;
  }
}
.salons-link__item,
.sns-link__item {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .salons-link__item::after,
  .sns-link__item::after {
    content: "";
    position: absolute;
    bottom: -58px;
    left: 50%;
    width: 94%;
    height: 1px;
    background-color: var(--color-bg-primary);
    transform: translateX(-50%);
  }
}
@media (hover: hover) and (pointer: fine) {
  .salons-link__item:hover,
  .sns-link__item:hover {
    transform: translateY(-2px);
    opacity: 0.5;
  }
}
@media (hover: none), (pointer: coarse) {
  .salons-link__item,
  .sns-link__item {
    transition: none;
  }
}
.salons-link__inner,
.sns-link__inner {
  display: grid;
  place-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
}
.salons-link__title,
.sns-link__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  grid-area: 1/1;
  z-index: 1;
}
.salons-link__title-en,
.sns-link__title-en {
  font-size: 8rem;
  font-family: var(--font-family-en);
  line-height: 1.4;
  letter-spacing: 0.11em;
  margin-left: -26px;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .salons-link__title-en,
  .sns-link__title-en {
    font-size: 48px;
    margin-left: 0;
    line-height: 1.3;
  }
}
.salons-link__title-ja,
.sns-link__title-ja {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .salons-link__title-ja,
  .sns-link__title-ja {
    font-size: 12px;
  }
}

/*!
component > page_title
------------------------------
*/
.page_title__concept {
  position: fixed;
  margin-top: 17.3rem;
  margin-inline: auto;
  width: 100%;
  z-index: 1; /* ヘッダーより下、コンテンツより上 */
}
@media screen and (max-width: 768px) {
  .page_title__concept {
    margin-top: 8rem;
  }
}
.page_title__concept::before {
  content: "";
  display: block;
  background-color: var(--color-bg-quinary);
  width: 100%;
  height: 360px;
}
@media screen and (max-width: 768px) {
  .page_title__concept::before {
    height: 200px;
  }
}
.page_title__concept .page_title {
  position: absolute;
  top: 179px;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .page_title__concept .page_title {
    top: 100px;
  }
}
.page_title__concept .page_title h1 {
  font-size: 80px;
  font-family: var(--font-family-en);
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (max-width: 970px) {
  .page_title__concept .page_title h1 {
    font-size: 70px;
  }
}
@media screen and (max-width: 768px) {
  .page_title__concept .page_title h1 {
    font-size: 3.2rem;
  }
}
.page_title__concept .page_title__img {
  width: 100%;
}
.page_title__concept .page_title__img img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.page_title__concept--salon-single .page_title h1 {
  font-size: 4.8rem;
}
@media screen and (max-width: 768px) {
  .page_title__concept--salon-single .page_title h1 {
    font-size: 24px;
  }
}
.page_title__concept--salon-single .page_title h1 .page_title__sub {
  display: block;
  font-size: 80px;
  margin-top: 23px;
}
@media screen and (max-width: 768px) {
  .page_title__concept--salon-single .page_title h1 .page_title__sub {
    font-size: 32px;
    margin-top: 16px;
  }
}

.breadcrumb {
  padding: 24px 3.6rem;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    padding: 12px 0 0 15px;
  }
}
.breadcrumb .breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb .breadcrumb__item {
  position: relative;
  font-size: 1.8rem;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 768px) {
  .breadcrumb .breadcrumb__item {
    font-size: 14px;
  }
}
.breadcrumb .breadcrumb__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background-color: var(--color-font-primary);
}
@media screen and (max-width: 768px) {
  .breadcrumb .breadcrumb__item:not(:last-child)::after {
    font-size: 14px;
  }
}
.breadcrumb a {
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.breadcrumb a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-font-primary);
  display: block; /* 擬似要素をブロック扱いにする */
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) and (pointer: fine) {
  .breadcrumb a:hover::after {
    width: 100%;
  }
}

#page_title {
  /*headerを全画面で見せる*/
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 0;
  margin-bottom: 0; /* 下のマージンを削除 */
}
@media screen and (max-width: 768px) {
  #page_title {
    min-height: 100svh;
  }
}

#container, #footer {
  /*下のかぶさるエリアの指定*/
  position: relative;
  z-index: 10;
  /*以下はレイアウトのための記述。削除可能*/
  background-color: var(--color-bg-quaternary);
}

/*!
object > project > t_main-view
------------------------------
*/
.mainvisual {
  position: relative;
  width: 100%;
  aspect-ratio: 1440/900;
  margin-bottom: 170px;
}
@media screen and (max-width: 768px) {
  .mainvisual {
    aspect-ratio: 375/809; /* 375pxの比率を維持 */
    height: 100svh; /* ビューポート高さを使用 */
    max-height: 809px; /* 最大高さを制限 */
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 500px) {
  .mainvisual {
    max-height: 600px;
  }
}

.mainvisual__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.mainvisual__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.mainvisual__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 768px) {
  .mainvisual__bg img {
    -o-object-fit: cover;
       object-fit: cover; /* 画像を比率に合わせて表示 */
    -o-object-position: center 20%;
       object-position: center 20%; /* 上部20%の位置に配置（女性が下がりすぎないように） */
  }
}

.mainvisual__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 36px;
}
@media screen and (max-width: 768px) {
  .mainvisual__content {
    padding-left: 15px;
  }
}

.mainvisual__title {
  font-family: var(--font-family-secondary);
  font-size: 6.4rem;
  color: var(--color-font-white);
  font-weight: 100;
  line-height: 1.4;
  letter-spacing: 0.6rem;
}
@media screen and (max-width: 768px) {
  .mainvisual__title {
    font-size: 32px;
    position: absolute;
    bottom: 277px; /* 375pxの位置を維持 */
    left: 15px;
    right: 15px;
  }
}

/*!
object > project > t_faq
------------------------------
*/
.faq .c-title {
  padding-left: 32px;
}
@media screen and (max-width: 768px) {
  .faq .c-title {
    padding: 0;
  }
}
.faq__inner {
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .faq__inner {
    padding: 0;
  }
}
.faq__items {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 53px;
}
.faq__item {
  background-color: var(--color-bg-quinary);
  overflow: hidden;
  transition: all 0.8s ease;
}
.faq__question {
  font-family: var(--font-family-secondary);
  position: relative;
  padding: 40px 60px 40px 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.8s ease;
}
@media screen and (max-width: 768px) {
  .faq__question {
    align-items: start;
    padding: 18px 50px 16px 16px;
  }
}
.faq__question .faq__label {
  font-size: 24px;
  margin-right: 20px;
  min-width: 20px;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .faq__question .faq__label {
    margin-top: 2px;
    margin-right: 12px;
    font-size: 18px;
  }
}
.faq__question p {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .faq__question p {
    font-size: 14px;
  }
}
.faq__question .faq__icon {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 12px solid var(--color-font-secondary);
  transition: all 0.8s ease;
}
@media screen and (max-width: 768px) {
  .faq__question .faq__icon {
    right: 14px;
    top: 56%;
  }
}
.faq__question.active {
  padding: 40px 60px 23px 20px;
}
@media screen and (max-width: 768px) {
  .faq__question.active {
    padding: 18px 50px 16px 16px;
  }
}
.faq__question.active .faq__icon {
  transform: translateY(-50%) rotate(180deg);
}
.faq__answer {
  display: flex;
  align-items: flex-start;
  padding: 0 70px 0 20px;
  font-family: var(--font-family-secondary);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.8s ease, opacity 0.8s ease, transform 0.8s ease, padding 0.8s ease;
  background-color: var(--color-bg-quinary);
  transform: translateY(-10px);
  will-change: max-height, opacity, transform, padding;
}
@media screen and (max-width: 768px) {
  .faq__answer {
    padding: 0 40px 0 16px;
  }
}
.faq__answer .faq__label {
  font-size: 24px;
  margin-right: 15px;
  min-width: 20px;
  margin-top: 5px;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .faq__answer .faq__label {
    font-size: 18px;
    margin-right: 12px;
    margin-top: 2px;
  }
}
.faq__answer p {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .faq__answer p {
    font-size: 14px;
  }
}
.faq__answer.active {
  max-height: 240px;
  opacity: 1;
  padding: 0 70px 35px 20px;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .faq__answer.active {
    max-height: 400px;
    padding: 0 40px 16px 16px;
  }
}

.faq__item.active .faq__question {
  background-color: var(--color-bg-quinary);
}

/*!
object > project > t_news
------------------------------
*/
.news__inner {
  width: 93.2638888889%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .news__inner {
    width: 100%;
    padding: 0 3rem;
  }
}
.news__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .news__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .news__header .pc-news__view-all {
    display: none;
  }
}
.news__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .news__items {
    grid-template-columns: 1fr;
  }
}
.news__item {
  color: var(--color-font-secondary);
  padding: 2rem;
  position: relative;
  cursor: pointer;
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .news__item {
    padding: 2.5rem 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .news__item:hover {
    transform: translateY(-2px);
  }
}
.news__item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: var(--color-bg-secondary);
}
@media screen and (max-width: 768px) {
  .news__item::after {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 1px;
  }
}
.news__item:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: var(--color-font-secondary);
}
@media screen and (max-width: 768px) {
  .news__item:first-child::before {
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 1px;
  }
}
.news__item-link {
  color: inherit;
  text-decoration: none;
  display: block;
  transition: opacity 1.2s ease, transform 1.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .news__item-link:hover {
    opacity: 0.5;
    transform: translateX(8px);
  }
}
@media (hover: none), (pointer: coarse) {
  .news__item-link {
    transition: none;
  }
}
.news__date {
  display: block;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 12px;
}
.news__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.6;
}
.news__category {
  font-size: 14px;
  font-family: var(--font-family-en);
  text-transform: capitalize;
}

.sp-news__view-all {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-news__view-all {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }
}

/*!
object > project > t_feature
------------------------------
*/
.feature {
  background-color: #464646;
  padding-bottom: 60px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .feature {
    margin-bottom: 135px;
  }
}
.feature__inner {
  width: 93.2638888889%;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .feature__inner {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .feature__inner {
    padding: 0;
  }
}
.feature__content {
  display: grid;
  grid-template-columns: 31.746031746% 35.7142857143% 32.5396825397%;
  align-items: start;
}
@media screen and (max-width: 970px) {
  .feature__content {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .feature__content {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
  }
}
.feature__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-family: var(--font-family-secondary);
  padding: 13rem 0 0 0;
}
@media screen and (max-width: 1000px) {
  .feature__list {
    padding: 1.2rem 1rem 0 0;
  }
}
@media screen and (max-width: 768px) {
  .feature__list {
    order: 1;
    margin-right: 0;
  }
}
.feature__item {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  padding: 2.9rem 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}
.feature__item.active {
  opacity: 1;
  position: relative;
  z-index: 1;
  color: var(--color-bg-primary);
}
.feature__number {
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .feature__number {
    font-size: 20px;
    min-width: 35px;
  }
}
.feature__item-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .feature__item-title {
    font-size: 14px;
    line-height: 1.5;
  }
}
.feature__image {
  margin-top: -4rem;
}
@media screen and (max-width: 768px) {
  .feature__image {
    order: 2;
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
  }
}
.feature__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.feature__detail {
  text-align: center;
  padding: 8.3rem 0 0 5rem;
  letter-spacing: 0;
}
@media screen and (max-width: 1000px) {
  .feature__detail {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 768px) {
  .feature__detail {
    order: 3;
    margin-left: 0;
  }
}
.feature__detail-number {
  display: block;
  font-family: var(--font-family-en);
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-bottom: 4.5rem;
  position: relative;
  text-transform: uppercase;
  padding-left: 17px;
}
@media screen and (max-width: 768px) {
  .feature__detail-number {
    font-size: 12px;
    margin-bottom: 0.8rem;
  }
}
.feature__detail-number::before {
  content: "";
  position: absolute;
  top: 200%;
  left: 53%;
  transform: translateX(-50%);
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--color-font-primary);
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 970px) {
  .feature__detail-number::before {
    top: 32px;
  }
}
.feature__detail-title {
  font-family: var(--font-family-secondary);
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 970px) {
  .feature__detail-title {
    font-size: 20px;
    margin-bottom: 3.3rem;
    letter-spacing: 0.01rem;
  }
}
@media screen and (max-width: 768px) {
  .feature__detail-title {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }
}
.feature__detail-text {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 1200px) {
  .feature__detail-text br {
    display: none;
  }
}
@media screen and (max-width: 970px) {
  .feature__detail-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .feature__detail-text {
    font-size: 14px;
    line-height: 1.7;
  }
}

.feature__item {
  position: relative;
  opacity: 0.4;
  transition: opacity 1.2s ease, transform 1.2s ease;
  transform: translateY(0);
  pointer-events: auto;
}

.feature__item.active {
  opacity: 1;
  z-index: 1;
}

.feature__image-item,
.feature__detail {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.2s ease;
  transform: translateY(10px);
  pointer-events: none;
}

.feature__image-item.active,
.feature__detail.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 1;
}

.feature__image-item.fade-up,
.feature__detail.fade-up {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

.feature_pc {
  display: block;
}
@media (max-width: 768px) {
  .feature_pc {
    display: none;
  }
}

.feature_sp {
  display: none;
}
@media (max-width: 768px) {
  .feature_sp {
    display: block;
    width: 100%;
  }
  .feature_sp .feature__inner {
    max-width: 100%;
    overflow: visible; /* チラ見せのために visible に変更 */
    padding: 0;
  }
  .feature_sp .feature__slider {
    display: block;
    position: relative;
    width: 85%;
    margin: 0 auto;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: none;
  }
}
@media screen and (max-width: 768px) and (max-width: 420px) {
  .feature_sp .feature__slider {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .feature_sp .feature__slider * {
    pointer-events: none !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    touch-action: none !important;
  }
  .feature_sp .slick-list {
    overflow: visible;
    pointer-events: none !important;
    -webkit-user-select: none !important;
       -moz-user-select: none !important;
            user-select: none !important;
    touch-action: none !important;
  }
  .feature_sp .slick-slide {
    box-sizing: border-box;
    padding: 0 15px;
    pointer-events: none !important;
    -webkit-user-select: none !important;
       -moz-user-select: none !important;
            user-select: none !important;
    touch-action: none !important;
  }
}
@media screen and (max-width: 768px) and (max-width: 420px) {
  .feature_sp .slick-slide {
    padding: 0 7.5px;
  }
}
@media (max-width: 768px) {
  .feature_sp .slick-track,
  .feature_sp .slick-slide,
  .feature_sp .slick-current,
  .feature_sp .slick-active,
  .feature_sp .slick-center {
    pointer-events: none !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    touch-action: none !important;
    cursor: default !important;
  }
  .feature_sp .feature__image_sp {
    position: relative;
    top: 31px;
    z-index: 3;
    text-align: center;
  }
  .feature_sp .feature__image_sp img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 0;
  }
  .feature_sp .feature__detail_sp {
    position: relative;
    z-index: 4;
    text-align: center;
    top: 61px;
  }
  .feature_sp .feature__detail-number_sp {
    display: block;
    text-align: center;
    font-family: var(--font-family-en);
    font-size: 14px;
    letter-spacing: 0.01em;
    margin-bottom: 18px;
    position: relative;
    color: var(--color-font-primary);
  }
  .feature_sp .feature__detail-number_sp::before,
  .feature_sp .feature__detail-number_sp::after {
    content: "";
    display: inline-block;
    width: 28%;
    height: 1px;
    background: var(--color-font-primary);
    vertical-align: middle;
    margin: 0 8px;
  }
  .feature_sp .feature__detail-title_sp {
    font-family: var(--font-family-secondary);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    color: var(--color-font-primary);
    height: 20px; /* 高さを固定 */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .feature_sp .feature__detail-text_sp {
    font-family: var(--font-family-secondary);
    font-size: 14px;
    line-height: 2;
    color: var(--color-font-primary);
    min-height: 158px;
    margin: 0 auto;
    height: 200px; /* 高さをさらに増やして1番目のテキストも収まるように */
    overflow: hidden;
    text-align: center;
  }
}

/*!
object > project > t_price
------------------------------
*/
.price {
  overflow-x: hidden;
  overflow-y: visible;
  margin: 200px 0 155px 0;
}
@media screen and (max-width: 768px) {
  .price {
    margin: 120px 0;
  }
}
.price .c-title .section-title__en {
  padding: 40px 0 0 29px;
}
@media screen and (max-width: 768px) {
  .price .c-title .section-title__en {
    padding: 40px 0 0;
  }
}
.price__inner {
  width: 93.2638888889%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .price__inner {
    width: 100%;
    padding: 0 3rem;
  }
}
.price__content {
  display: grid;
  grid-template-columns: 40rem 40rem;
  gap: 0;
  font-family: var(--font-family-en);
  justify-content: end;
  margin-top: 5.4rem;
  padding-right: 29px;
}
.price__content:has(> .price__item:only-child) {
  grid-template-columns: 40rem;
}
@media screen and (max-width: 970px) {
  .price__content {
    grid-template-columns: 52.0833333333% 52.0833333333%;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .price__content {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, auto);
    justify-content: stretch;
    margin-top: 4rem;
    padding: 0;
  }
}
.price__item {
  position: relative;
  display: flex;
  align-items: end;
  padding: 1.5rem 2.5rem 2rem 1.2rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.8s ease, color 0.8s ease, opacity 0.8s ease;
}
@media screen and (max-width: 970px) {
  .price__item {
    padding: 1.5rem 2.5rem 2rem 2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .price__item:hover {
    opacity: 0.5;
  }
}
.price__item:not(:nth-child(6))::before {
  content: "\f105";
  font-family: "FontAwesome";
  font-weight: normal;
  position: absolute;
  top: 33%;
  right: 21px;
  font-size: 27px;
  color: var(--color-font-primary);
  transition: transform 0.8s ease, color 0.8s ease;
}
@media (hover: hover) and (pointer: fine) {
  .price__item:hover::before {
    transform: translateY(0) translateX(4px);
    color: var(--color-font-quaternary);
  }
}
.price__item:nth-child(1) {
  border-top: none;
  border-left: none;
}
.price__item:nth-child(2) {
  border-top: none;
  border-right: none;
}
.price__item:nth-child(3) {
  border-left: none;
}
.price__item:nth-child(4) {
  border-right: none;
}
.price__item:nth-child(5) {
  border-left: none;
}
.price__item:nth-child(6) {
  border-right: none;
  border-bottom: none;
}
.price__item:nth-child(1), .price__item:nth-child(2), .price__item:nth-child(3), .price__item:nth-child(4) {
  border-bottom: 1px solid var(--color-font-primary);
}
.price__item:nth-child(1), .price__item:nth-child(3), .price__item:nth-child(5) {
  border-right: 1px solid var(--color-font-primary);
}
@media screen and (max-width: 768px) {
  .price__item:nth-child(1), .price__item:nth-child(3), .price__item:nth-child(5) {
    border-right: none;
  }
}
@media screen and (max-width: 768px) {
  .price__item {
    border: none;
    border-bottom: 1px solid var(--color-font-primary);
    margin-bottom: 1rem;
  }
  .price__item:nth-child(6) {
    border-bottom: none;
  }
}
@media (hover: none), (pointer: coarse) {
  .price__item {
    transition: none;
  }
  .price__item:not(:nth-child(6))::before {
    transition: none;
  }
  .price__item:hover {
    opacity: 1;
    transform: none;
  }
  .price__item:hover::before {
    transform: none;
    color: var(--color-font-primary);
  }
}
.price__item-name {
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 1;
  margin-right: 1.8rem;
  text-transform: capitalize;
}
@media screen and (max-width: 970px) {
  .price__item-name {
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  .price__item-name {
    font-size: 32px;
    margin-right: 1.5rem;
  }
}
.price__item-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.1em;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .price__item-text {
    font-size: 12px;
  }
}

/*!
object > project > t_concept
------------------------------
*/
.concept__inner {
  width: 93.2638888889%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .concept__inner {
    width: 100%;
    padding: 0 3rem;
  }
}
.concept__header {
  position: relative;
  width: 100%;
  margin-bottom: 7.5rem;
  padding-bottom: 56.6666666667%;
}
@media screen and (max-width: 768px) {
  .concept__header {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 420px) {
  .concept__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 4.5rem;
    height: auto;
    padding-bottom: 0;
  }
}
.concept__title-block {
  position: absolute;
  top: 53%;
  left: 0;
  transform: translateY(-50%);
  width: 50%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .concept__title-block {
    position: static;
    transform: none;
    width: 100%;
  }
}
.concept__lead {
  font-size: 28px;
  font-family: var(--font-family-secondary);
  font-weight: 100;
  margin-top: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  opacity: 0.55;
  position: relative;
}
.concept__lead--sp {
  opacity: 1;
}
@media screen and (max-width: 420px) {
  .concept__lead {
    font-size: 18px;
    line-height: 2;
    margin-top: 4.5rem;
  }
  .concept__lead::before {
    content: "";
    position: absolute;
    top: -142px;
    right: 0;
    width: 108px;
    height: 245px;
    background-image: url("../images/top-concept_02-sp.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
  }
}
.concept__header-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 72.0833333333%;
}
@media screen and (max-width: 768px) {
  .concept__header-image {
    z-index: -1;
  }
}
@media screen and (max-width: 420px) {
  .concept__header-image {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 865/680;
    order: -1;
    margin-bottom: 6.5rem;
  }
}
.concept__header-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.concept__content {
  display: flex;
  align-items: flex-start;
  gap: 6rem;
}
@media screen and (max-width: 970px) {
  .concept__content {
    display: block; /* flexをブロックに変更して回り込みを有効に */
    gap: 0;
    /* clearfixを追加してfloatを正しく処理 */
  }
  .concept__content::after {
    content: "";
    display: table;
    clear: both;
  }
}
.concept__content-image {
  width: 45%;
}
@media screen and (max-width: 970px) {
  .concept__content-image {
    float: left; /* 画像を左に配置して回り込み */
    width: 50%; /* 画像の幅を調整 */
    max-width: 450px;
    margin-right: 30px; /* テキストとの間隔 */
    margin-bottom: 15px; /* 下のテキストとの間隔 */
  }
}
@media screen and (max-width: 420px) {
  .concept__content-image {
    display: none;
  }
}
.concept__content-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.concept__text-block {
  flex: 1;
  color: var(--color-font-secondary);
}
@media screen and (max-width: 970px) {
  .concept__text-block {
    /* overflow: hiddenを削除してテキストが画像の下に回り込むように */
  }
}
@media screen and (max-width: 420px) {
  .concept__text-block {
    width: 100%;
  }
}
.concept__text {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  width: 92%;
}
@media screen and (max-width: 1200px) {
  .concept__text {
    width: 100%;
  }
}
@media screen and (max-width: 970px) {
  .concept__text {
    width: 100%; /* 回り込み時は全幅 */
  }
}
@media screen and (max-width: 420px) {
  .concept__text {
    width: 100%;
    font-size: 16px;
    margin-bottom: 2.5rem;
  }
}
.concept__button-wrapper {
  text-align: right;
}
@media screen and (max-width: 970px) {
  .concept__button-wrapper {
    clear: both; /* floatをクリアしてボタンを下に配置 */
    padding-top: 20px;
  }
}
.concept__button {
  display: inline-block;
  position: relative;
  font-size: 18px;
  font-family: var(--font-family-secondary);
  color: var(--color-font-secondary);
  letter-spacing: 0.1em;
  font-weight: 400;
  text-decoration: none;
  padding: 0 16px 0 0;
  transition: color 0.3s ease;
  text-transform: capitalize;
}
.concept__button::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 1px;
  width: 120px;
  height: 1px;
  background-color: var(--color-font-secondary);
  transition: width 0.3s ease, height 0.3s ease;
}
.concept__button::before {
  content: "";
  position: absolute;
  top: 89%;
  right: -1px;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  border-top: 1px solid var(--color-font-secondary);
  transition: transform 0.8s ease;
}
.concept__button:hover {
  color: var(--color-font-primary);
}
.concept__button:hover::after {
  height: 2px;
  background-color: var(--color-font-primary);
}
.concept__button:hover::before {
  transform: translateY(-50%) rotate(225deg);
  border-top: 2px solid var(--color-font-primary);
  top: 80%;
  right: 7px;
  width: 10px;
}

/*!
object > project > c_concept-message
------------------------------
*/
.concept-message {
  background-color: var(--color-bg-quinary);
  padding: 0 0 73px;
}
@media screen and (max-width: 768px) {
  .concept-message {
    padding: 0 0 55px;
  }
}
.concept-message .breadcrumb {
  padding: 25px 0 0 3.6rem;
}
@media screen and (max-width: 768px) {
  .concept-message .breadcrumb {
    padding: 17px 15px 0;
  }
}
.concept-message .breadcrumb .breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.concept-message .breadcrumb .breadcrumb__item {
  position: relative;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  .concept-message .breadcrumb .breadcrumb__item {
    font-size: 14px;
  }
}
.concept-message .breadcrumb .breadcrumb__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background-color: var(--color-font-primary);
}
@media screen and (max-width: 768px) {
  .concept-message .breadcrumb .breadcrumb__item:not(:last-child)::after {
    font-size: 14px;
  }
}
.concept-message .breadcrumb .breadcrumb__link {
  text-decoration: none;
}
.concept-message .breadcrumb a {
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.concept-message .breadcrumb a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) and (pointer: fine) {
  .concept-message .breadcrumb a:hover::after {
    width: 100%;
  }
}
.concept-message .concept-message__inner {
  display: flex;
  flex-direction: column;
}
.concept-message .concept-message__box {
  padding-top: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .concept-message .concept-message__box {
    padding-top: 60px;
    flex-direction: column;
    align-items: start;
    margin-bottom: 14px;
  }
}
.concept-message .concept-message__box .concept-message__title {
  flex: 0 0 600px;
  z-index: 2;
  position: relative;
  margin-right: -80%;
}
@media screen and (max-width: 768px) {
  .concept-message .concept-message__box .concept-message__title {
    flex: 0 0 auto;
    margin-right: 0;
    order: 2;
  }
}
.concept-message .concept-message__box .concept-message__title h2 {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.4rem;
  margin: 0;
  color: var(--color-font-primary);
  font-family: var(--font-family-secondary);
}
@media screen and (max-width: 768px) {
  .concept-message .concept-message__box .concept-message__title h2 {
    font-size: 18px;
    line-height: 1.8;
    margin-right: 0;
    letter-spacing: 0.2rem;
  }
}
.concept-message .concept-message__box .concept-message__image {
  flex: 0 0 720px;
  z-index: 1;
  position: relative;
}
.concept-message .concept-message__box .concept-message__image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .concept-message .concept-message__box .concept-message__image {
    order: -1;
    width: 100%;
    margin: 0 auto 24px;
    flex: none;
  }
}
@media screen and (max-width: 768px) {
  .concept-message .concept-message__text {
    width: 100%;
    text-align: left;
  }
}
.concept-message .concept-message__text p {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.19rem;
}
@media screen and (max-width: 768px) {
  .concept-message .concept-message__text p {
    font-size: 14px;
    letter-spacing: 0.14rem;
  }
}

/*!
object > project > c_company-info
------------------------------
*/
.company-info {
  padding: 80px 0 125px;
  /* 従業員数（7番目）を左列の4行目に配置 */
  /* 業務内容（9番目）を左列の5行目に配置 */
  /* 最後の要素を全幅にする */
}
@media screen and (max-width: 768px) {
  .company-info {
    padding: 0 15px 120px;
  }
}
@media screen and (max-width: 768px) {
  .company-info__inner {
    padding: 0;
  }
}
.company-info .c-title {
  text-align: left;
  margin-bottom: 47px;
}
@media screen and (max-width: 768px) {
  .company-info .c-title {
    margin-bottom: 63px;
  }
}
.company-info .c-title .section-title__en {
  padding: 20px 0 20px 0;
}
@media screen and (max-width: 768px) {
  .company-info .c-title .section-title__en {
    line-height: 1.3;
  }
}
.company-info__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .company-info__content {
    padding: 0;
    gap: 40px;
  }
}
.company-info__image {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
.company-info__image picture {
  width: 100%;
  height: auto;
  display: block;
}
.company-info__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.company-info__item_wrapper {
  display: grid;
  grid-template-columns: 38.4259259259% 1fr; /* 2列 */
  grid-template-rows: repeat(5, auto); /* 5行 */
  gap: 0;
}
@media screen and (max-width: 970px) {
  .company-info__item_wrapper {
    grid-template-columns: 46.2962962963% 1fr; /* 2列 */
  }
}
@media screen and (max-width: 768px) {
  .company-info__item_wrapper {
    grid-template-columns: 1fr;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
}
.company-info__item {
  border-top: 1px solid var(--color-bg-primary); /* 行の間に線 */
  padding: 23.5px 0;
  margin: 0;
  display: flex;
  align-items: center;
  /* SP時に空の要素を非表示 */
}
@media screen and (max-width: 768px) {
  .company-info__item {
    align-items: flex-start;
    padding: 26.2px 0;
  }
}
@media screen and (max-width: 768px) {
  .company-info__item {
    /* SP時に最後の要素の下にも線を追加 */
  }
  .company-info__item.company-info__item--empty {
    display: none;
  }
  .company-info__item:last-child {
    border-bottom: 1px solid var(--color-bg-primary);
  }
}
.company-info__label {
  font-size: 18px;
  font-family: var(--font-family-secondary);
  width: 123px;
  padding-left: 10px;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 970px) {
  .company-info__label {
    width: 85px;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .company-info__label {
    font-size: 14px;
    line-height: 1.4;
    width: 12.7rem;
  }
}
.company-info__value {
  font-size: 16px;
  color: var(--color-font-black);
  text-align: left;
  letter-spacing: 0.17rem;
  line-height: 1.5;
  text-transform: uppercase;
}
@media screen and (max-width: 970px) {
  .company-info__value {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .company-info__value {
    font-size: 12px;
  }
}
.company-info__value a[href^="tel:"] {
  color: var(--color-font-base);
  text-decoration: none;
}
@media (hover: none) and (pointer: coarse) {
  .company-info__value a[href^="tel:"]:active {
    color: var(--color-bg-primary);
  }
}
@media (hover: hover) and (pointer: fine) {
  .company-info__value a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    color: var(--color-font-black);
  }
}
.company-info__item:nth-child(7) {
  grid-column: 1/2;
  grid-row: 4/5;
}
@media screen and (max-width: 768px) {
  .company-info__item:nth-child(7) {
    grid-column: unset;
    grid-row: unset;
  }
}
.company-info__item:nth-child(9) {
  grid-column: 1/2;
  grid-row: 5/6;
}
@media screen and (max-width: 768px) {
  .company-info__item:nth-child(9) {
    grid-column: unset;
    grid-row: unset;
  }
}
.company-info__item_wrapper .company-info__item:last-child {
  grid-column: 1/-1;
}
@media screen and (max-width: 768px) {
  .company-info__item_wrapper .company-info__item:last-child {
    grid-column: unset;
    align-items: flex-start;
  }
}

/*!
object > project > c_instagram
------------------------------
*/
.instagram {
  padding: 158px 0 85px;
  overflow-x: hidden;
  overflow-y: visible;
}
@media screen and (max-width: 768px) {
  .instagram {
    padding: 88px 0 150px;
  }
}
@media screen and (max-width: 768px) {
  .instagram .c-title .section-title__en {
    padding-top: 20px;
  }
}
.instagram .c-title {
  text-align: left;
  margin-bottom: 60px;
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  .instagram__inner {
    padding: 0;
  }
}
.instagram__item {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.instagram img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.instagram img:hover {
  transform: scale(1.05);
}
.instagram__button-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.instagram__button-wrapper .c-button-a {
  position: relative;
  padding-left: 17px;
}
@media screen and (max-width: 768px) {
  .instagram__button-wrapper .c-button-a {
    padding-left: 0;
    letter-spacing: 0.2rem;
    font-size: 20px;
  }
}
.instagram__button-wrapper .c-button-a::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

#sb_instagram.sbi_col_4 #sbi_images,
#sb_instagram.sbi_col_4.sbi_disable_mobile #sbi_images {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 40px !important;
  margin-bottom: 48px;
  padding: 0 !important;
}
@media screen and (max-width: 768px) {
  #sb_instagram.sbi_col_4 #sbi_images,
  #sb_instagram.sbi_col_4.sbi_disable_mobile #sbi_images {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px !important;
    margin-bottom: 20px;
  }
}

.sb_instagram_header {
  display: none;
}

.sbi_image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#sbi_load {
  display: none;
}

/*!
object > project > p_price
------------------------------
*/
.p_price {
  padding: 68px 0 115px;
}
@media screen and (max-width: 768px) {
  .p_price {
    padding: 81px 0 75px;
  }
}
.p_price__inner {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}
.p_price__inner::after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (max-width: 768px) {
  .p_price__inner {
    display: flex;
    flex-direction: column; /* content が上、text が下 */
    width: 80%;
    padding: 0 3rem;
    gap: 0;
  }
}
@media screen and (max-width: 420px) {
  .p_price__inner {
    width: 100%;
  }
}
.p_price__text {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.11em;
}
@media screen and (max-width: 1200px) {
  .p_price__text {
    line-height: 1.5;
  }
}
@media screen and (max-width: 970px) {
  .p_price__text {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p_price__text {
    width: 100%;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.1em;
    margin-top: -14px;
  }
}
@media screen and (max-width: 1200px) {
  .p_price__text-item01 {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 970px) {
  .p_price__text-item01 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p_price__text-item01 {
    margin-bottom: 30px;
  }
}
.p_price__content {
  float: right;
  display: grid;
  grid-template-columns: 277px 277px;
  gap: 0;
  font-family: var(--font-family-en);
  justify-content: end;
  margin-left: 2rem;
  margin-bottom: 2rem;
}
.p_price__content:has(> .p_price__item:only-child) {
  grid-template-columns: 277px;
  justify-content: start;
}
@media screen and (max-width: 768px) {
  .p_price__content {
    float: none;
    justify-content: center;
    margin-left: 0;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .p_price__content {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr; /* ❷ 1列にして縦並び */
    position: relative;
    margin-bottom: 42px;
  }
}
.p_price__item {
  position: relative;
  display: flex;
  align-items: end;
  padding: 1.3rem 2.5rem 1.3rem 1.2rem;
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 970px) {
  .p_price__item {
    padding: 1.5rem 2.5rem 2rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  .p_price__item {
    padding: 9px 0 7px 15px;
    text-align: center;
    position: relative;
    z-index: 1;
    border: none;
    border-bottom: 1px solid var(--color-font-primary);
    transition: transform 0.8s ease, color 0.8s ease;
  }
  .p_price__item:nth-child(6) {
    border-bottom: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p_price__item:hover {
    opacity: 0.5;
  }
}
.p_price__item::before {
  content: "\f105";
  font-family: "FontAwesome";
  font-weight: normal;
  position: absolute;
  top: 38%;
  right: 18px;
  font-size: 13px;
  color: var(--color-font-primary);
  transition: transform 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .p_price__item::before {
    right: 17px;
    top: 29%;
  }
}
.p_price__item:hover::before {
  transform: translateY(0) translateX(4px);
  color: var(--color-font-quaternary);
}
.p_price__item:nth-child(1) {
  border-top: none;
  border-left: none;
}
.p_price__item:nth-child(2) {
  border-top: none;
  border-right: none;
}
.p_price__item:nth-child(3) {
  border-left: none;
}
.p_price__item:nth-child(4) {
  border-right: none;
}
.p_price__item:nth-child(5) {
  border-left: none;
  border-bottom: none;
}
.p_price__item:nth-child(6) {
  border-right: none;
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .p_price__item:nth-child(6) {
    display: none;
  }
}
.p_price__item:nth-child(1), .p_price__item:nth-child(2), .p_price__item:nth-child(3), .p_price__item:nth-child(4) {
  border-bottom: 1px solid var(--color-font-primary);
}
.p_price__item:nth-child(1), .p_price__item:nth-child(3), .p_price__item:nth-child(5) {
  border-right: 1px solid var(--color-font-primary);
}
@media screen and (max-width: 768px) {
  .p_price__item:nth-child(1), .p_price__item:nth-child(3), .p_price__item:nth-child(5) {
    border-right: none;
  }
}
.p_price__item-name {
  font-size: 33px;
  font-weight: 400;
  line-height: 1;
  margin-right: 1.8rem;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .p_price__item-name {
    font-size: clamp(20px, 1.5vw + 1rem, 32px);
    margin-right: 9px;
    letter-spacing: 0.1rem;
  }
}
.p_price__item-text {
  font-size: 9px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.1em;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .p_price__item-text {
    font-size: 12px;
  }
}

/*!
object > project > p_menu
------------------------------
*/
.p_menu {
  background-color: var(--color-bg-quinary);
  padding: 50px 0 70px;
  /* 2行目だけに上下線をつける */
  /* ===== 2行目（5〜8）に上・下線 ===== */
  /* ===== 3行目（9〜12）に上・下線 ===== */
  /* ===== 4行目（13〜16）に上・下線 ===== */
  /* ===== 2行目（5〜8）に上・下線 ===== */
  /* ===== 3行目（9〜12）に上・下線 ===== */
  /* ===== 4行目（13〜16）に上・下線 ===== */
  /* ===== 5行目（17〜20）に上・下線 ===== */
  /* 表示切替 */
  /* PC表のレイアウト */
  /* SP用レイアウト */
  /* 左右中央に揃える */
}
@media screen and (max-width: 768px) {
  .p_menu {
    padding: 50px 0 40px;
  }
}
.p_menu .c-title {
  text-align: center;
  margin-bottom: 42px;
}
@media screen and (max-width: 768px) {
  .p_menu .c-title {
    margin-bottom: 58px;
  }
}
.p_menu .c-title .section-title {
  font-size: 84px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p_menu .c-title .section-title__en {
    font-size: 84px;
  }
}
.p_menu .body__content {
  margin: 0 auto 108px;
}
@media screen and (max-width: 768px) {
  .p_menu .body__content {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto 70px;
  }
}
.p_menu .body__column {
  margin-bottom: 84px;
}
@media screen and (max-width: 768px) {
  .p_menu .body__column {
    margin-bottom: 61px;
  }
}
.p_menu .body__column:last-child {
  margin-bottom: 0;
}
.p_menu .body__heading {
  font-family: var(--font-family-secondary);
  font-size: 24px;
  text-align: center;
  margin-bottom: 34px;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  .p_menu .body__heading {
    font-size: 18px;
    letter-spacing: 0.1rem;
    margin-bottom: 27px;
  }
}
.p_menu .body__parts {
  text-align: center;
  width: 600px;
  margin: 0 auto 68px;
}
@media screen and (max-width: 768px) {
  .p_menu .body__parts {
    width: 84%;
    text-align: left;
    margin: 0 0 30px 0;
  }
}
.p_menu .body__parts p {
  font-family: var(--font-family-secondary);
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  .p_menu .body__parts p {
    font-size: 14px;
    letter-spacing: 0.21rem;
    line-height: 2.2;
  }
}
.p_menu .body__courses-grid {
  display: grid;
  grid-template-columns: 150px 1fr 1fr 1fr; /* 1列目は固定幅、残りは等幅 */
  grid-template-rows: auto auto; /* 2行 */
  text-align: center;
  align-items: center;
  gap: 0;
}
.p_menu .body__course-label,
.p_menu .body__course-price {
  border-top: 1px solid var(--color-font-primary);
  border-bottom: 1px solid var(--color-font-primary);
  box-sizing: border-box;
  padding: 20px 0;
  margin: 0;
}
.p_menu .body__course-name {
  font-size: 18px;
  margin-bottom: 20px;
  letter-spacing: 0.12rem;
  margin-left: 1.7rem;
}
.p_menu .body__course-label {
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 12px;
}
.p_menu .body__course-price {
  position: relative;
  font-family: var(--font-family-secondary);
  font-size: 24px;
  padding: 20px 0; /* 線とテキストの間に余白 */
  margin-bottom: 12px;
  font-weight: bold;
  letter-spacing: 0.2rem;
}
.p_menu .body__note {
  font-size: 12px;
  text-align: end;
  letter-spacing: 0.1rem;
  margin-top: 13px;
}
@media screen and (max-width: 768px) {
  .p_menu .body__note {
    text-align: left;
    line-height: 1.5;
    letter-spacing: 0.06rem;
  }
}
.p_menu .v-line__courses-grid {
  display: grid;
  grid-template-columns: 150px 1fr 1fr 1fr; /* 4列 1列目は固定幅、残りは等幅 */
  grid-template-rows: auto auto auto auto; /* 4行 */
  text-align: center;
  align-items: center;
  gap: 0;
  margin-top: 63px;
}
.p_menu .v-line__courses-grid > :nth-child(5),
.p_menu .v-line__courses-grid > :nth-child(6),
.p_menu .v-line__courses-grid > :nth-child(7),
.p_menu .v-line__courses-grid > :nth-child(8) {
  border-top: 1px solid var(--color-font-primary);
}
.p_menu .v-line__courses-grid > :nth-child(9),
.p_menu .v-line__courses-grid > :nth-child(10),
.p_menu .v-line__courses-grid > :nth-child(11),
.p_menu .v-line__courses-grid > :nth-child(12) {
  border-top: 1px solid var(--color-font-primary);
}
.p_menu .v-line__courses-grid > :nth-child(13),
.p_menu .v-line__courses-grid > :nth-child(14),
.p_menu .v-line__courses-grid > :nth-child(15),
.p_menu .v-line__courses-grid > :nth-child(16) {
  border-top: 1px solid var(--color-font-primary);
  border-bottom: 1px solid var(--color-font-primary);
}
.p_menu .v-line__course-name {
  font-size: 18px;
  margin-bottom: 20px;
  letter-spacing: 0.1rem;
  padding-left: 1.9rem;
}
.p_menu .v-line__course-label {
  font-size: 18px;
  line-height: 1.67;
  padding: 20px 0;
}
.p_menu .v-line__course-price {
  position: relative;
  font-family: var(--font-family-secondary);
  font-size: 24px;
  padding: 23px 0 23px 4rem; /* 線とテキストの間に余白 */
  font-weight: bold;
  letter-spacing: 0.1rem;
}
.p_menu .v-line__note {
  font-size: 12px;
  text-align: end;
  letter-spacing: 0.1rem;
  margin-top: 12px;
  margin-bottom: 108px;
}
.p_menu .set__courses-grid {
  display: grid;
  grid-template-columns: 150px 1fr 1fr 1fr; /* 4列 1列目は固定幅、残りは等幅 */
  grid-template-rows: auto auto auto auto auto; /* 5行 */
  text-align: center;
  align-items: center;
  gap: 0;
  margin-top: 68px;
}
.p_menu .set__courses-grid > :nth-child(5),
.p_menu .set__courses-grid > :nth-child(6),
.p_menu .set__courses-grid > :nth-child(7),
.p_menu .set__courses-grid > :nth-child(8) {
  border-top: 1px solid var(--color-font-primary);
}
.p_menu .set__courses-grid > :nth-child(9),
.p_menu .set__courses-grid > :nth-child(10),
.p_menu .set__courses-grid > :nth-child(11),
.p_menu .set__courses-grid > :nth-child(12) {
  border-top: 1px solid var(--color-font-primary);
}
.p_menu .set__courses-grid > :nth-child(13),
.p_menu .set__courses-grid > :nth-child(14),
.p_menu .set__courses-grid > :nth-child(15),
.p_menu .set__courses-grid > :nth-child(16) {
  border-top: 1px solid var(--color-font-primary);
  border-bottom: 1px solid var(--color-font-primary);
}
.p_menu .set__courses-grid > :nth-child(17),
.p_menu .set__courses-grid > :nth-child(18),
.p_menu .set__courses-grid > :nth-child(19),
.p_menu .set__courses-grid > :nth-child(20) {
  border-bottom: 1px solid var(--color-font-primary);
}
.p_menu .set__course-name {
  font-size: 18px;
  margin-bottom: 20px;
  letter-spacing: 0.12rem;
}
.p_menu .set__course-label {
  font-size: 18px;
  line-height: 1.32;
  padding: 22px 0;
}
.p_menu .set__course-price {
  position: relative;
  font-family: var(--font-family-secondary);
  font-size: 24px;
  padding: 22px 0 22px 2.5rem; /* 線とテキストの間に余白 */
  font-weight: bold;
  letter-spacing: 0.2rem;
}
.p_menu .set__note {
  font-size: 12px;
  text-align: end;
  letter-spacing: 0.1rem;
  margin-top: 12px;
}
.p_menu .pc-only {
  display: block;
}
.p_menu .sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .p_menu .pc-only {
    display: none;
  }
  .p_menu .sp-only {
    display: block;
  }
}
.p_menu .body__courses-grid {
  display: grid;
  grid-template-columns: 150px 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  text-align: center;
  align-items: center;
  gap: 0;
}
.p_menu .body__course-label,
.p_menu .body__course-price {
  border-top: 1px solid var(--color-font-primary);
  border-bottom: 1px solid var(--color-font-primary);
  padding: 24px 0;
  margin: 0;
  box-sizing: border-box;
}
.p_menu .sp-course-block {
  margin-bottom: 12px;
}
.p_menu .sp-course-label {
  font-size: 18px;
  margin-bottom: 45px;
  text-align: center;
}
.p_menu .sp-course-header {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--color-font-primary);
  letter-spacing: 0.1rem;
  margin: 0 auto 0;
  padding: 0 0 32px;
  text-align: center;
  border-bottom: 1px solid var(--color-font-primary); /* ← トライアルコースの上に線 */
}
@media screen and (max-width: 768px) {
  .p_menu .sp-course-header {
    padding: 0 0 38px;
  }
}
.p_menu .sp-course-title-label {
  text-align: center;
  width: 48%;
}
.p_menu .sp-course-price-label {
  text-align: center;
  width: 24%;
}
.p_menu .sp-course-item {
  display: flex;
  justify-content: space-between;
  padding: 25px 10px 25px 0;
  border-bottom: 1px solid var(--color-font-primary);
  font-size: 16px;
  letter-spacing: 0.12rem;
}
@media screen and (max-width: 768px) {
  .p_menu .sp-course-item {
    padding: 27px 15px 30px 0;
  }
}
.p_menu .sp-course-price {
  font-family: var(--font-family-secondary);
}
@media screen and (max-width: 768px) {
  .p_menu .sp-course-price {
    letter-spacing: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .p_menu .sp-course-block--01 {
    margin-bottom: 70px;
  }
  .p_menu .sp-course-block--01 .sp-course-label {
    margin-top: -6px;
    margin-bottom: 47px;
  }
  .p_menu .sp-course-block--01 .sp-course-header {
    padding: 0 0 35px;
  }
}
@media screen and (max-width: 768px) {
  .p_menu .sp-course-block--02 {
    margin-bottom: 64px;
  }
  .p_menu .sp-course-block--02 .sp-course-header {
    padding: 0 0 31px;
  }
  .p_menu .sp-course-block--02 .sp-course-item {
    padding: 27px 20px 30px 0;
  }
}
@media screen and (max-width: 768px) {
  .p_menu .sp-course-block--03 {
    margin-bottom: 64px;
  }
  .p_menu .sp-course-block--03 .sp-course-header {
    padding: 0 0 35px;
  }
  .p_menu .sp-course-block--03 .sp-course-item {
    padding: 27px 20px 30px 0;
  }
}
.p_menu .sp-course-block--03 .sp-course-price {
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  .p_menu .sp-course-block--04 {
    margin-bottom: 64px;
  }
  .p_menu .sp-course-block--04 .sp-course-header {
    padding: 0 0 35px;
  }
  .p_menu .sp-course-block--04 .sp-course-item {
    padding: 27px 20px 30px 0;
  }
}
@media screen and (max-width: 768px) {
  .p_menu .v-line__content,
  .p_menu .set__content {
    padding: 0 15px;
  }
}

/*!
object > project > p_costom
------------------------------
*/
.custom {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .custom {
    padding: 80px 0 75px;
  }
}
.custom .c-title {
  margin: 16px 0 55px 0;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .custom .c-title {
    margin: 16px 0 14px 0;
  }
}
.custom .c-title h2 {
  margin: 0;
}
.custom .c-title .section-title__en {
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0.5rem;
}

.custom__content {
  max-width: 1080px;
  margin: 0 auto;
}

.custom__flex {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
@media screen and (max-width: 970px) {
  .custom__flex {
    display: block; /* flexをブロックに変更して回り込みを有効に */
    /* clearfixを追加してfloatを正しく処理 */
  }
  .custom__flex::after {
    content: "";
    display: table;
    clear: both;
  }
}
@media screen and (max-width: 768px) {
  .custom__flex {
    display: flex; /* flexに戻す */
    flex-direction: column; /* 縦並び */
    gap: 47px;
  }
}

.custom__image {
  width: 44.4444444444%;
  flex-shrink: 0;
}
@media screen and (max-width: 970px) {
  .custom__image {
    float: left; /* 画像を左に配置して回り込み */
    width: 45%; /* 画像の幅を調整 */
    max-width: 450px;
    margin-right: 30px; /* テキストとの間隔 */
    margin-bottom: 15px; /* 下のテキストとの間隔 */
  }
}
@media screen and (max-width: 768px) {
  .custom__image {
    float: none; /* 回り込みを解除 */
    width: 24rem;
    margin-left: auto; /* 左右中央揃え */
    margin-right: auto; /* 左右中央揃え */
    text-align: center;
  }
}
.custom__image img {
  width: 100%;
  height: auto;
  display: block;
}

.custom__text_box {
  width: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 970px) {
  .custom__text_box {
    width: 100%; /* 回り込み時は全幅 */
    /* overflow: hiddenを削除してテキストが画像の下に回り込むように */
  }
}
@media screen and (max-width: 768px) {
  .custom__text_box {
    width: 100%; /* SPサイズでは全幅 */
  }
}

.custom__text p {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.2rem;
}
.custom__text p:last-child {
  margin-bottom: 0;
}

/* Responsive design for mobile */
@media screen and (max-width: 768px) {
  .custom__text p {
    font-size: 14px;
    letter-spacing: 0.15rem;
  }
}
/*!
object > project > s_prefectures
------------------------------
*/
.s-prefectures {
  overflow-x: hidden;
  overflow-y: visible;
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .s-prefectures {
    padding: 32px 15px 0;
  }
}
.s-prefectures .c-title {
  text-align: left;
  margin-top: 72px;
}
.s-prefectures .c-title .section-title__en {
  padding-top: 10px;
}
.s-prefectures__list {
  max-width: 940px;
  width: 100%;
  margin: 115px auto 80px;
  box-sizing: border-box;
}
@media screen and (max-width: 970px) {
  .s-prefectures__list {
    max-width: 100%;
    padding: 0 30px;
  }
}
@media screen and (max-width: 768px) {
  .s-prefectures__list {
    margin: 77px auto 80px;
    padding: 0 15px;
  }
}
.s-prefectures__list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
@media screen and (max-width: 768px) {
  .s-prefectures__list ul {
    gap: 0; /* SPサイズでもgapは0のまま、marginで制御 */
  }
}
.s-prefectures__list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  cursor: pointer;
  transition: opacity 0.8s ease, transform 0.8s ease;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 60px;
}
@media screen and (max-width: 768px) {
  .s-prefectures__list li {
    margin: 0 20px 15px 0; /* 右側に間隔を追加 */
    width: -moz-fit-content;
    width: fit-content; /* 横並びにするためfit-contentに変更 */
    justify-content: flex-start; /* 左寄せ */
  }
}
@media (hover: hover) and (pointer: fine) {
  .s-prefectures__list li:hover {
    opacity: 0.5;
    transform: translateX(4px);
  }
}
.s-prefectures__list li::before {
  content: "▼";
  margin-right: 20px;
  font-size: 17px;
  color: var(--color-bg-secondary);
  transform: rotate(30deg);
}
@media screen and (max-width: 768px) {
  .s-prefectures__list li::before {
    margin-right: 8px;
    font-size: 9px;
  }
}
.s-prefectures__list .s-prefecture-en {
  font-size: 48px;
  font-family: var(--font-family-en);
  margin-right: 20px;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .s-prefectures__list .s-prefecture-en {
    font-size: 20px;
    margin-right: 10px;
  }
}
.s-prefectures__list .s-prefecture-ja {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .s-prefectures__list .s-prefecture-ja {
    font-size: 12px;
  }
}
.s-prefectures .area-section {
  margin-bottom: 120px;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .s-prefectures .area-section {
    margin-bottom: 80px;
    padding: 0 15px;
  }
}
@media screen and (max-width: 768px) {
  .s-prefectures .area-section__block {
    height: auto;
  }
}
.s-prefectures .area-section .area-title {
  height: 12rem;
  background-color: var(--color-bg-primary);
  color: var(--color-font-white);
  font-family: var(--font-family-en);
  font-size: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  .s-prefectures .area-section .area-title {
    width: 100%;
    height: 60px;
    font-size: 24px;
  }
}
.s-prefectures .area-section .salon-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  max-width: 1200px;
  margin: 0 auto 80px;
  gap: 40px;
}
.s-prefectures .area-section .salon-list .salon-item {
  flex: 0 0 calc((100% - 40px) / 2);
  max-width: calc((100% - 40px) / 2);
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  padding: 0;
  border: none;
  border-radius: 0;
  transition: none;
  box-shadow: none;
}
@media screen and (max-width: 768px) {
  .s-prefectures .area-section .salon-list .salon-item {
    flex: 1 1 auto;
    max-width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 420px) {
  .s-prefectures .area-section .salon-list .salon-item {
    height: 28rem;
    max-width: 100%;
  }
}
.s-prefectures .area-section .salon-list .salon-item .salon-info {
  text-align: left;
  color: var(--color-font-primary);
}
.s-prefectures .area-section .salon-list .salon-item .salon-info .salon-info__link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.8s ease, transform 0.8s ease, color 0.8s ease;
}
@media (hover: hover) and (pointer: fine) {
  .s-prefectures .area-section .salon-list .salon-item .salon-info .salon-info__link:hover {
    opacity: 0.7;
    transform: translateX(4px);
  }
}
@media (hover: none), (pointer: coarse) {
  .s-prefectures .area-section .salon-list .salon-item .salon-info .salon-info__link {
    transition: none;
  }
}
.s-prefectures .area-section .salon-list .salon-item .salon-info .salon-name {
  font-size: 32px;
  margin-bottom: 8px;
  font-family: var(--font-family-secondary);
  color: var(--color-font-primary);
}
@media screen and (max-width: 768px) {
  .s-prefectures .area-section .salon-list .salon-item .salon-info .salon-name {
    font-size: 20px;
  }
}
.s-prefectures .area-section .salon-list .salon-item .salon-info .salon-name-ja {
  font-size: 16px;
  font-family: var(--font-family-secondary);
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .s-prefectures .area-section .salon-list .salon-item .salon-info .salon-name-ja {
    font-size: 14px;
  }
}
.s-prefectures .area-section .salon-list .salon-item .salon-info .salon-address {
  font-size: 14px;
  color: #464646;
  line-height: 1.4;
}

.s-prefectures .salon-map-container {
  border-radius: 0;
  overflow: none;
  box-shadow: none;
  width: 100%;
  aspect-ratio: 570/360; /* 比率維持 */
}
@media screen and (max-width: 768px) {
  .s-prefectures .salon-map-container {
    aspect-ratio: 16/9; /* SPサイズでアスペクト比を16:9に調整 */
    height: auto; /* 高さを自動にして比率を維持 */
  }
}
.s-prefectures .salon-map-container iframe {
  width: 100%;
  border-radius: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.s-prefectures .salon-info .salon-name {
  font-family: var(--font-family-secondary);
  color: var(--color-font-primary);
}
@media screen and (max-width: 768px) {
  .s-prefectures .salon-info .salon-name {
    font-size: 20px;
  }
}

.s-prefectures .salon-info .salon-name a {
  color: var(--color-font-primary);
}

.s-prefectures .salon-info p {
  color: var(--color-font-primary);
}

.salon-thumbnail {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.salon-thumbnail:hover {
  transform: scale(1.05);
}

.salon-item {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}
.salon-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.salon-name a {
  color: var(--color-font-black);
  text-decoration: none;
  transition: color 0.3s ease;
}
.salon-name a:hover {
  color: var(--color-bg-primary);
}

.no-salons {
  text-align: center;
  color: #666;
  font-style: italic;
  padding: 20px;
}

.no-prefectures {
  text-align: center;
  color: #666;
  padding: 40px 20px;
}

.salon-map {
  margin-bottom: 15px;
}

.salon-map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.salon-map-container iframe {
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.salon-map-container iframe:hover {
  transform: scale(1.02);
}

.salon-info h4 {
  margin: 0 0 5px 0;
  font-size: 1.2em;
}
.salon-info p {
  margin: 5px 0;
  color: #666;
}

/*!
object > project > s_staff
------------------------------
*/
.staff {
  padding: 80px 0;
  background-color: #464646;
}
@media screen and (max-width: 768px) {
  .staff {
    padding: 59px 0 25px;
  }
}
.staff__content {
  display: flex;
  gap: 60px;
}
@media (max-width: 768px) {
  .staff__content {
    flex-direction: column;
    gap: 40px;
  }
}
.staff__image {
  flex: 0 0 44.4444444444%; /* grow=1 shrink=1 basis=50% */
}
@media (max-width: 768px) {
  .staff__image {
    flex: none;
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center; /* 375px含むSPで左右中央 */
  }
}
.staff__image img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .staff__image img {
    max-width: 240px;
    margin: 0 auto; /* 念のため中央寄せ */
  }
}
.staff__text-content {
  flex: 0 0 50%;
  margin-top: 55px;
}
@media screen and (max-width: 970px) {
  .staff__text-content {
    margin-top: 0;
  }
}
.staff__text-content .c-title .section-title__en {
  font-size: 48px;
  letter-spacing: 0.5rem;
}
@media screen and (max-width: 768px) {
  .staff__text-content .c-title .section-title__en {
    font-size: 36px;
    letter-spacing: 0.4rem;
  }
}
.staff__text-content .c-title .section-title__ja {
  margin-left: 19px;
  letter-spacing: 0.15rem;
}
@media screen and (max-width: 768px) {
  .staff__text-content .c-title .section-title__ja {
    font-size: 14px;
    letter-spacing: 0.27rem;
    line-height: 1.55;
    margin-left: 10px;
  }
}
.staff__message {
  font-size: 16px;
  line-height: 2.2;
  margin: 56px 0 23px;
  letter-spacing: 0.38rem;
}
@media screen and (max-width: 768px) {
  .staff__message {
    font-size: 14px;
    letter-spacing: 0.14rem;
    line-height: 2;
    margin: 19px 0 16px;
  }
}
.staff__name {
  display: flex;
  gap: 11px;
}
.staff__name-en {
  display: block;
  font-family: var(--font-family-secondary);
  font-size: 24px;
  margin-bottom: 8px;
  letter-spacing: 0.28rem;
}
@media screen and (max-width: 768px) {
  .staff__name-en {
    font-size: 20px;
    letter-spacing: 0.2rem;
  }
}
.staff__name-ja {
  display: block;
  font-size: 12px;
  margin-top: 5px;
  letter-spacing: 0.1rem;
}

/*!
object > project > s_message
------------------------------
*/
.message {
  padding: 120px 0 153px;
}
@media screen and (max-width: 768px) {
  .message {
    padding: 80px 0 102px;
  }
}
.message__inner {
  margin: 0 auto;
  padding: 0 30px;
}
.message__text {
  color: var(--color-font-black);
  width: 96rem;
  margin: 0 auto;
  text-align: center;
  line-height: 2;
  font-size: 20px;
  letter-spacing: 0.22rem;
}
@media (max-width: 768px) {
  .message__text {
    font-size: 14px;
    line-height: 2.1;
    width: 100%;
    text-align: left;
  }
}

/*!
object > project > s_flow
------------------------------
*/
.flow {
  padding-bottom: 120px;
  /* 装飾画像（150x150）: 左=3番付近, 右=5番付近 */
  /* 左: 8番の横あたり */
}
.flow__inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .flow__inner {
    overflow: hidden; /* 375時のはみ出し15pxを見切る */
  }
}
@media screen and (max-width: 768px) {
  .flow {
    padding-bottom: 78px;
  }
}
.flow__header {
  padding: 0 119px;
}
@media screen and (max-width: 768px) {
  .flow__header {
    padding: 0 20px;
  }
}
.flow__list {
  margin-top: 80px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1300px) {
  .flow__list {
    max-width: calc(100% - 120px);
    padding: 0 15px;
  }
}
@media screen and (max-width: 1200px) {
  .flow__list {
    max-width: calc(100% - 200px);
    padding: 0 20px;
  }
}
@media screen and (max-width: 1000px) {
  .flow__list {
    max-width: calc(100% - 240px);
    padding: 0 15px;
  }
}
@media screen and (max-width: 768px) {
  .flow__list {
    margin-top: 60px;
    max-width: 70%;
    padding: 0;
  }
}
@media screen and (max-width: 420px) {
  .flow__list {
    max-width: 100%;
  }
}
.flow__inner {
  position: relative; /* 装飾の基準を内側コンテナに */
}
.flow__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 38px;
}
@media screen and (max-width: 768px) {
  .flow__item {
    flex-direction: column;
    margin-bottom: 35px;
  }
}
.flow__item:last-child {
  margin-bottom: 0;
}
.flow__decor {
  position: absolute;
  width: 150px;
  height: 150px;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  overflow: hidden;
}
.flow__decor img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.flow__decor--03 {
  left: -232px; /* コンテンツ外にオフセット */
  top: 248px; /* 3番の横あたり: 要微調整 */
  width: 15rem;
  height: 15rem;
}
@media screen and (max-width: 1300px) {
  .flow__decor--03 {
    left: -15%;
  }
}
@media screen and (max-width: 1200px) {
  .flow__decor--03 {
    left: -7%;
  }
}
@media screen and (max-width: 970px) {
  .flow__decor--03 {
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .flow__decor--03 {
    left: auto;
    right: 0; /* 右側を15pxはみ出させて見切る */
    top: 23%; /* インラインstyleのtopを上書き */
    width: 80px;
    height: 80px;
    z-index: 0;
  }
}
@media screen and (max-width: 420px) {
  .flow__decor--03 {
    right: -15px; /* 右側を15pxはみ出させて見切る */
  }
}
.flow__decor--05 {
  right: -250px; /* コンテンツ外にオフセット */
  top: 602px; /* 5番の横あたり: 要微調整 */
  width: 18rem;
  height: 18rem;
}
@media screen and (max-width: 1300px) {
  .flow__decor--05 {
    right: -14rem;
  }
}
@media screen and (max-width: 1100px) {
  .flow__decor--05 {
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .flow__decor--05 {
    right: auto;
    left: 0; /* 左側を15pxはみ出させて見切る */
    top: 45.6%; /* ❺の左に配置（必要なら微調整） */
    width: 100px;
    height: 100px;
    z-index: 0;
  }
}
@media screen and (max-width: 420px) {
  .flow__decor--05 {
    left: -15px; /* 左側を15pxはみ出させて見切る */
  }
}
.flow__decor--08 {
  left: -175px; /* コンテンツ外にオフセット */
  top: 1300px; /* 8番の横あたり: 要微調整 */
  position: absolute;
  width: 15rem;
  height: 15rem;
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 1300px) {
  .flow__decor--08 {
    left: -14%;
  }
}
@media screen and (max-width: 1100px) {
  .flow__decor--08 {
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .flow__decor--08 {
    left: auto;
    right: 0; /* 右側を15pxはみ出させて見切る */
    top: 87%;
    width: 80px;
    height: 80px;
    z-index: 0;
  }
}
@media screen and (max-width: 420px) {
  .flow__decor--08 {
    right: -15px; /* 右側を15pxはみ出させて見切る */
  }
}
.flow__decor--08 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.flow__title-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--color-bg-tertiary);
  border-radius: 50%;
  color: white;
  font-size: 32px;
  flex-shrink: 0;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .flow__title-number {
    margin: 0 auto 16px;
  }
}
.flow__content {
  flex: 1;
}
.flow__title-number {
  position: relative;
}
.flow__connector {
  position: absolute;
  left: 27px;
  top: 68px;
  width: 1px;
  height: 72px;
  background: repeating-linear-gradient(to bottom, #ccc 0, #ccc 4px, transparent 4px, transparent 8px);
}
@media screen and (max-width: 768px) {
  .flow__connector {
    left: 50%;
    top: -30px;
    height: 24px;
    width: 1px;
    background: repeating-linear-gradient(to bottom, #ccc 0, #ccc 2px, transparent 2px, transparent 6px);
  }
}
@media screen and (max-width: 768px) {
  .flow__item:nth-child(1) .flow__connector {
    display: none;
  }
}
.flow__title {
  font-family: var(--font-family-secondary);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .flow__title {
    text-align: center;
    font-size: 18px;
    margin-bottom: 11px;
  }
}
@media screen and (max-width: 420px) {
  .flow__title {
    font-size: 1.8rem;
  }
}
.flow__text {
  font-size: 18px;
  line-height: 1.4;
  margin: 15px 0 0 0;
  letter-spacing: 0.18rem;
}
@media screen and (max-width: 768px) {
  .flow__text {
    font-size: 14px;
    letter-spacing: 0.14rem;
    line-height: 1.55;
    margin: 0;
  }
}
@media screen and (max-width: 420px) {
  .flow__text {
    font-size: 1.4rem;
  }
}

/*!
object > project > s_access
------------------------------
*/
.access {
  background-color: var(--color-bg-quinary);
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .access {
    padding: 60px 0;
  }
}
.access__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .access__content {
    flex-direction: column-reverse;
    width: 100%;
  }
}
.access__info {
  flex: 0 0 37.037037037%;
  margin-top: 92px;
}
@media screen and (max-width: 970px) {
  .access__info {
    flex: 0 0 41.6666666667%;
  }
}
@media screen and (max-width: 768px) {
  .access__info {
    width: 100%;
    margin-top: 28px;
  }
}
.access__list {
  flex-wrap: wrap;
  gap: 12px 0; /* 行間の間隔 */
  /* dt + dd のペアをまとめる */
  /* dt と dd をまとめて下線を引くラッパーを作る */
  /* ペアの親を作る（dt+ddのセットが1行ずつ） */
}
.access__list dt {
  display: inline-block;
  font-weight: bold;
}
.access__list dd {
  display: inline-block;
}
.access__list .access__list-pair {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-bg-primary); /* 好きな色に */
  padding: 20px 0;
}
.access__list-title {
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
  width: 155px;
  padding-left: 10px;
}
@media screen and (max-width: 970px) {
  .access__list-title {
    width: 125px;
  }
}
@media screen and (max-width: 768px) {
  .access__list-title {
    font-size: 16px;
    width: 112px;
    align-items: start;
    margin-right: 0;
  }
}
@media screen and (max-width: 420px) {
  .access__list-title {
    width: 12.8rem;
  }
}
.access__list-data {
  font-size: 14px;
  display: inline-block;
  margin-right: 24px;
  color: var(--color-font-black);
  letter-spacing: 0.18rem;
}
@media screen and (max-width: 768px) {
  .access__list-data {
    font-size: 12px;
    margin-right: 0;
    letter-spacing: 0.12rem;
  }
}
.access__list-data a[href^="tel:"] {
  color: var(--color-font-black);
  text-decoration: none;
}
@media (hover: none) and (pointer: coarse) {
  .access__list-data a[href^="tel:"]:active {
    color: var(--color-bg-primary);
  }
}
@media (hover: hover) and (pointer: fine) {
  .access__list-data a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    color: var(--color-font-black);
  }
}
.access__map {
  flex: 0 0 50%;
  aspect-ratio: 540/360;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .access__map {
    width: 100%;
  }
}
.access__map iframe {
  width: 100%;
  height: 360px;
}

body .access__map iframe {
  height: 360px;
  border-radius: 0;
  box-shadow: none;
}
@media screen and (max-width: 768px) {
  body .access__map iframe {
    height: 200px;
  }
}

.map-note {
  font-size: 0.9em;
  color: #666;
  margin-top: 10px;
  text-align: center;
  font-style: italic;
}

.access__map iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .access__map iframe {
    height: 300px;
  }
}

.button-salons {
  background-color: var(--color-bg-quaternary);
  padding: 120px 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .button-salons {
    padding: 78px 0;
  }
}

/*!
object > project > n_news-common
------------------------------
ニュース関連の共通スタイル
*/
.news-archive {
  padding-top: 110px;
}
@media screen and (max-width: 768px) {
  .news-archive {
    padding-top: 87px;
  }
}
@media screen and (max-width: 768px) {
  .news-archive__inner {
    width: 100%;
    padding: 0 20px;
  }
}
.news-archive__category_tab {
  flex: 0 0 150px;
  width: 150px;
  position: relative;
  flex-shrink: 0;
  margin: 15px 0 78px;
}
@media screen and (max-width: 768px) {
  .news-archive__category_tab {
    margin: 0 0 70px;
  }
}
.news-archive__category_tab::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  width: 1px;
  height: 150px;
  background-color: var(--color-font-primary);
}
@media screen and (max-width: 768px) {
  .news-archive__category_tab {
    width: 100%;
    flex: 1 1 auto;
  }
  .news-archive__category_tab::before {
    display: none;
  }
}

.category-title {
  font-size: 32px;
  font-family: var(--font-family-en);
  margin: 0 0 30px 0;
  letter-spacing: 0.3rem;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .category-title {
    font-size: 24px;
    letter-spacing: 0.2rem;
    margin: 0 0 18px 0;
  }
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  /* 高さが足りなくなったら右（次の列）に折り返す → マルチカラムを使用 */
  -moz-column-width: 12rem;
       column-width: 12rem; /* 1列の目安幅（任意） */
  -moz-column-gap: 1.6rem;
       column-gap: 1.6rem; /* 列間の余白 */
}

.category-list > li {
  -moz-column-break-inside: avoid;
       break-inside: avoid; /* 項目が列途中で分断されないように */
  margin: 0 0 10px;
}

.category-item {
  margin-bottom: 10px;
}
.category-item a {
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  padding: 1px 0;
  position: relative;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 768px) {
  .category-item a {
    font-size: 14px;
  }
}
.category-item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-font-primary);
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 768px) {
  .category-item a::after {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .category-item a:hover::after {
    width: 100%;
  }
}

.news__item-link {
  color: inherit;
  text-decoration: none;
  display: block;
  transition: opacity 0.8s ease;
}
@media (hover: hover) and (pointer: fine) {
  .news__item-link:hover {
    opacity: 0.7;
  }
}
@media (hover: none), (pointer: coarse) {
  .news__item-link {
    transition: none;
  }
}

/*!
object > project > n_news-archive
------------------------------
ニュースアーカイブページ固有のスタイル
*/
.news-archive__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1080px;
  gap: 6rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .news-archive__container {
    flex-direction: column;
    gap: 0;
  }
}
.news-archive__list-box {
  flex: 0 0 80%;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .news-archive__list-box {
    flex: 1 1 100%;
    width: 100%;
    margin-bottom: 39px;
  }
}
.news-archive__list {
  width: 100%;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .news-archive__list {
    margin-bottom: 21px;
  }
}
.news-archive .news-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: var(--color-bg-quinary);
  width: 100%;
  max-width: 864px;
  height: 72px;
  padding: 0 20px;
  margin-bottom: 20px;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: color 0.8s ease;
}
@media screen and (max-width: 970px) {
  .news-archive .news-item {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 12px;
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .news-archive .news-item {
    margin-bottom: 14px;
  }
}
.news-archive .news-item__date {
  font-size: 16px;
  font-family: var(--font-family-secondary);
  flex-shrink: 0;
  color: inherit;
  transition: color 0.8s ease;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  .news-archive .news-item__date {
    font-size: 14px;
    letter-spacing: 0.12rem;
  }
}
.news-archive .news-item__title {
  font-size: 16px;
  font-family: var(--font-family-secondary);
  flex: 1;
  margin: 0;
  color: inherit;
  transition: color 0.8s ease;
  letter-spacing: 0.15rem;
}
@media screen and (max-width: 768px) {
  .news-archive .news-item__title {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.12rem;
    width: 92%;
  }
}
.news-archive .news-item__category.news-item__category {
  font-size: 32px;
  font-family: var(--font-family-en);
  color: var(--color-font-secondary);
  opacity: 0.2;
  position: absolute;
  bottom: 8px;
  right: 20px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .news-archive .news-item__category.news-item__category {
    font-size: 20px;
    bottom: -2px;
    right: 10px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .news-archive .news-item:hover {
    color: var(--color-font-white);
    background-color: color-mix(in srgb, var(--color-bg-quinary) 75%, #ffffff 15%);
  }
}
@media (hover: none), (pointer: coarse) {
  .news-archive .news-item {
    transition: none;
  }
}

.pagination {
  margin-top: 44px;
  width: 100%;
  text-align: center;
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .pagination {
    font-size: 16px;
    margin-top: 0;
  }
}
.pagination ul.pagination__list {
  display: inline-flex;
  gap: 2.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .pagination ul.pagination__list {
    gap: 8px;
  }
}
.pagination a.pagination__link {
  font-family: var(--font-family-en);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.8s ease;
}
.pagination a.pagination__link.active {
  color: var(--color-font-secondary);
}
.pagination .pagination__link--current {
  color: var(--color-font-primary);
  font-weight: 700;
  border-bottom: 3px solid var(--color-font-primary);
  padding-bottom: 2px;
}
.pagination .pagination__link--current:focus {
  outline: 2px solid var(--color-font-secondary);
  outline-offset: 2px;
}
.pagination .pagination__link--current::before {
  content: "現在のページ: ";
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.pagination a.pagination__link:not(.pagination__link--current) {
  color: var(--color-font-primary);
  opacity: 0.4;
  font-weight: 400;
}
@media (hover: hover) and (pointer: fine) {
  .pagination a.pagination__link:hover {
    color: var(--color-font-secondary);
  }
}
@media (hover: none), (pointer: coarse) {
  .pagination a.pagination__link {
    transition: none;
  }
}
.pagination a.pagination__link--prev,
.pagination a.pagination__link--next {
  display: flex;
  align-items: center;
  font-size: 32px;
}
.pagination a.pagination__link--prev .fa-angle-left,
.pagination a.pagination__link--prev .fa-angle-right,
.pagination a.pagination__link--next .fa-angle-left,
.pagination a.pagination__link--next .fa-angle-right {
  font-size: 1.8rem;
  margin-top: 6px;
}
@media screen and (max-width: 1200px) {
  .pagination a.pagination__link--prev .fa-angle-left,
  .pagination a.pagination__link--prev .fa-angle-right,
  .pagination a.pagination__link--next .fa-angle-left,
  .pagination a.pagination__link--next .fa-angle-right {
    margin-top: 4px;
  }
}
@media screen and (max-width: 768px) {
  .pagination a.pagination__link--prev .fa-angle-left,
  .pagination a.pagination__link--prev .fa-angle-right,
  .pagination a.pagination__link--next .fa-angle-left,
  .pagination a.pagination__link--next .fa-angle-right {
    font-size: 16px;
    margin-top: 0;
  }
}

/*!
object > project > n_news-single
------------------------------
ニュースシングルページ固有のスタイル
*/
.news-detail__container {
  min-height: 1030px; /* 必要なら最低限の高さだけ指定 */
  padding-bottom: 2rem; /* 画像や本文と次セクションの間に余白を作る */
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1080px;
  gap: 6rem;
  margin: 0 auto 157px;
  padding-left: 86px;
}
@media screen and (max-width: 768px) {
  .news-detail__container {
    flex-direction: column;
    gap: 4rem;
    padding-left: 0;
    margin: 0 auto;
  }
}

.news-detail_wrapper {
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 690px;
}

.ttl {
  font-size: 24px;
  font-family: var(--font-family-secondary);
  margin: 10px 0 5px;
  letter-spacing: 0.25rem;
}

.single__news--meta {
  display: flex;
  align-items: center;
  gap: 14px;
  letter-spacing: 0.2rem;
  margin-bottom: 40px;
  font-size: 14px;
  font-family: var(--font-family-en);
}
@media screen and (max-width: 768px) {
  .single__news--meta {
    font-size: 12px;
  }
}

.news_detail_img {
  display: block;
  aspect-ratio: 690/250; /* または min-height: 200px; などで確保 */
  align-items: center;
  margin-bottom: 28px;
}

.editor-style {
  margin-bottom: 36px;
}
.editor-style p {
  font-size: 16px;
  color: var(--color-font-black);
  line-height: 2;
  letter-spacing: 0.16rem;
  margin-bottom: 27px;
}
@media screen and (max-width: 768px) {
  .editor-style p {
    font-size: 14px;
  }
}
.editor-style .wp-block-heading {
  font-size: 18px;
  letter-spacing: 0.18rem;
  font-family: var(--font-family-secondary);
  color: var(--color-font-primary);
  margin-bottom: 11px;
}
@media screen and (max-width: 768px) {
  .editor-style .wp-block-heading {
    font-size: 18px;
  }
}

/*!
object > project > r_reserve
------------------------------
*/
.reserve-section {
  padding-top: 114px;
}
@media screen and (max-width: 768px) {
  .reserve-section {
    padding-top: 86px;
  }
}
.reserve-section__explanation_block {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6rem;
  margin-bottom: 124px;
}
@media screen and (max-width: 970px) {
  .reserve-section__explanation_block {
    gap: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .reserve-section__explanation_block {
    flex-direction: column-reverse;
    gap: 27px;
    margin-bottom: 29px;
  }
}
.reserve-section__explanation_block:last-child {
  margin-bottom: 0;
}
.reserve-section__text {
  flex: 1;
}
.reserve-section__title {
  font-family: var(--font-family-en);
  font-size: 32px;
  margin-bottom: 4.2rem;
  line-height: 1.2;
  letter-spacing: 0.32rem;
}
@media screen and (max-width: 768px) {
  .reserve-section__title {
    font-size: 24px;
    margin-bottom: 1.6rem;
  }
  .reserve-section__title .sp-br {
    display: none;
  }
}
@media screen and (max-width: 420px) {
  .reserve-section__title {
    font-size: 2.4rem;
  }
  .reserve-section__title .sp-br {
    display: block;
  }
}
.reserve-section__description {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.18rem;
  width: 94.5945945946%;
}
@media screen and (max-width: 970px) {
  .reserve-section__description {
    width: 100%;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 768px) {
  .reserve-section__description {
    font-size: 14px;
    letter-spacing: 0.1em;
  }
}
.reserve-section__download {
  flex-shrink: 0;
  width: 240px;
  height: 147px;
  background-color: var(--color-bg-quinary);
  margin: 8px 19px 0 0;
}
@media screen and (max-width: 768px) {
  .reserve-section__download {
    margin: 0 auto;
  }
}
.reserve-section__subtitle {
  padding-top: 32px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 0.16rem;
}
.reserve-section__contact_block {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 116px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .reserve-section__contact_block {
    flex-direction: column;
    margin-bottom: 80px;
  }
}
.reserve-section__contact_block::before {
  content: "";
  position: absolute;
  right: 40.6%;
  bottom: 0;
  width: 1px;
  height: 100%;
  background-color: var(--color-bg-primary);
}
@media screen and (max-width: 768px) {
  .reserve-section__contact_block::before {
    display: none;
  }
}
.reserve-section__contact {
  width: 59.2592592593%;
}
@media screen and (max-width: 768px) {
  .reserve-section__contact {
    width: 100%;
  }
}
.reserve-section__contact_title {
  font-size: 48px;
  font-family: var(--font-family-en);
  letter-spacing: 0.1em;
  width: 100%;
  margin-bottom: 30px;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .reserve-section__contact_title {
    margin: 0 auto;
    font-size: 24px;
    margin-bottom: 1.6rem;
    text-align: center;
  }
}
.reserve-section__contact_text {
  width: 90.3125%;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 970px) {
  .reserve-section__contact_text {
    width: 96.875%;
  }
}
@media screen and (max-width: 768px) {
  .reserve-section__contact_text {
    font-size: 14px;
    letter-spacing: 0.1em;
    width: 100%;
    margin-bottom: 3rem;
  }
}
.reserve-section__contact_tel {
  margin: 50px auto 0;
}
@media screen and (max-width: 970px) {
  .reserve-section__contact_tel {
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .reserve-section__contact_tel {
    width: 100%;
  }
}
.reserve-section__contact_number {
  font-size: 32px;
  font-family: var(--font-family-en);
  margin: 18px 0 37px;
  text-align: center;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 768px) {
  .reserve-section__contact_number {
    font-size: 24px;
    margin: 0 0 19px;
  }
}
.reserve-section__contact_hours {
  font-size: 14px;
  text-align: center;
  padding: 7px 35px;
  border: 1px solid var(--color-bg-primary);
  border-radius: 50px;
  background-color: transparent;
  box-sizing: border-box;
  margin: 0 auto;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  .reserve-section__contact_hours {
    width: 240px;
    font-size: 14px;
    padding: 7px 0;
  }
}
.reserve-section__contact_hours-break {
  margin-left: 5px;
}

/*!
object > project > r_reserve-form
------------------------------
*/
.reserve-form {
  background-color: #EDE9E4;
  padding-top: 80px;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .reserve-form {
    padding: 63px 0 29px;
    width: 100%;
    margin-bottom: 0;
  }
}
.reserve-form__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6rem;
  margin-bottom: 86px;
}
@media screen and (max-width: 970px) {
  .reserve-form__content {
    gap: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .reserve-form__content {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 60px;
  }
}
.reserve-form__header {
  width: 49.8148148148%;
}
@media screen and (max-width: 768px) {
  .reserve-form__header {
    width: 100%;
  }
}
.reserve-form__title {
  font-family: var(--font-family-en);
  font-size: 48px;
  margin-bottom: 4.8rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (max-width: 970px) {
  .reserve-form__title {
    font-size: 42px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .reserve-form__title {
    font-size: 32px;
    margin-bottom: 12px;
  }
}
.reserve-form__text {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.09em;
  color: var(--color-font-black);
}
@media screen and (max-width: 970px) {
  .reserve-form__text {
    font-size: 13px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .reserve-form__text {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 0;
  }
}
.reserve-form__steps {
  width: 41.2962962963%;
  display: flex;
  gap: 2.6rem;
}
@media screen and (max-width: 970px) {
  .reserve-form__steps {
    width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .reserve-form__steps {
    width: 315px;
    gap: 1.8rem;
  }
}
@media screen and (max-width: 420px) {
  .reserve-form__steps {
    width: 100%;
  }
}
.reserve-form__step {
  position: relative;
  padding: 61px 0 58px;
  text-align: center;
  flex: 1;
}
@media screen and (max-width: 970px) {
  .reserve-form__step {
    padding: 65px 0;
  }
}
@media screen and (max-width: 768px) {
  .reserve-form__step {
    padding: 43px 0 36px;
  }
}
.reserve-form__step:nth-child(1) {
  color: var(--color-bg-primary);
}
.reserve-form__step:nth-child(1)::before, .reserve-form__step:nth-child(1)::after {
  background-color: var(--color-bg-primary);
}
.reserve-form__step:nth-child(2) {
  color: #707070;
}
.reserve-form__step:nth-child(2)::before, .reserve-form__step:nth-child(2)::after {
  background-color: #707070;
}
.reserve-form__step:nth-child(3) {
  color: #707070;
}
.reserve-form__step:nth-child(3)::before, .reserve-form__step:nth-child(3)::after {
  background-color: #707070;
}
.reserve-form__step::before, .reserve-form__step::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--color-bg-primary);
}
.reserve-form__step::before {
  top: 0;
}
.reserve-form__step::after {
  bottom: 0;
}
.reserve-form__step-number {
  font-size: 20px;
  font-family: var(--font-family-en);
  letter-spacing: 0.1em;
  margin-bottom: 2.2rem;
  text-transform: capitalize;
}
@media screen and (max-width: 970px) {
  .reserve-form__step-number {
    margin-bottom: 2.5rem;
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .reserve-form__step-number {
    font-size: 14px;
    margin-bottom: 21px;
  }
}
.reserve-form__step-text {
  font-size: 24px;
  letter-spacing: 0.1em;
  font-family: var(--font-family-secondary);
}
@media screen and (max-width: 970px) {
  .reserve-form__step-text {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .reserve-form__step-text {
    font-size: 16px;
  }
}

.reserve-form .form-item, .reserve-form .form-Inquiry, .reserve-form .form-item-last {
  width: 100%;
  max-width: 1000px;
  display: grid;
  grid-template-columns: 38rem minmax(0, 1fr);
  align-items: center;
  margin: 0 auto 32px;
}
@media screen and (min-width: 1500px) {
  .reserve-form .form-item, .reserve-form .form-Inquiry, .reserve-form .form-item-last {
    grid-template-columns: 380px 620px;
  }
}
.reserve-form .form-item > *, .reserve-form .form-Inquiry > *, .reserve-form .form-item-last > * {
  min-width: 0;
}
@media screen and (max-width: 970px) {
  .reserve-form .form-item, .reserve-form .form-Inquiry, .reserve-form .form-item-last {
    grid-template-columns: 45rem minmax(0, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .reserve-form .form-item, .reserve-form .form-Inquiry, .reserve-form .form-item-last {
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
    margin: 0 auto 32px;
    width: 100%;
  }
}
.reserve-form .form-item:has(.form-item-textarea), .reserve-form .form-Inquiry:has(.form-item-textarea), .reserve-form .form-item-last:has(.form-item-textarea) {
  align-items: flex-start;
}
.reserve-form .form-item:has(.form-item-textarea) .form-item-label, .reserve-form .form-Inquiry:has(.form-item-textarea) .form-item-label, .reserve-form .form-item-last:has(.form-item-textarea) .form-item-label {
  margin-top: 8px;
}
.reserve-form .form-item .form-item-label, .reserve-form .form-Inquiry .form-item-label, .reserve-form .form-item-last .form-item-label {
  font-size: 16px;
  min-width: 38rem;
  font-family: var(--font-family-secondary);
  color: var(--color-font-black);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .reserve-form .form-item .form-item-label, .reserve-form .form-Inquiry .form-item-label, .reserve-form .form-item-last .form-item-label {
    min-width: 0;
    width: 100%;
    margin: 0 0 12px 0;
    font-size: 16px;
    letter-spacing: 0.1rem;
  }
}
.reserve-form .form-item .form-item-label .form-item-label-required, .reserve-form .form-Inquiry .form-item-label .form-item-label-required, .reserve-form .form-item-last .form-item-label .form-item-label-required {
  font-size: 12px;
  font-family: var(--font-family-secondary);
  padding: 4px 12px;
  display: inline-block;
  width: 60px;
  height: 26px;
  border-radius: 13px;
  line-height: 18px;
  text-align: center;
  margin-right: 16px;
  background-color: var(--color-bg-secondary);
  color: var(--color-font-white);
}
.reserve-form .form-item .form-item-label .form-item-label-required-sub, .reserve-form .form-Inquiry .form-item-label .form-item-label-required-sub, .reserve-form .form-item-last .form-item-label .form-item-label-required-sub {
  font-size: 12px;
  font-family: var(--font-family-secondary);
  padding: 4px 12px;
  border-radius: 13px; /* 角丸 */
  display: inline-block;
  width: 60px;
  height: 26px;
  line-height: 18px;
  text-align: center;
  margin-right: 16px;
  background-color: var(--color-bg-quinary);
  color: var(--color-font-black);
}
.reserve-form .form-item .form-item-input, .reserve-form .form-Inquiry .form-item-input, .reserve-form .form-item-last .form-item-input {
  display: block;
  width: 100%;
  height: 50px;
  background-color: white;
  padding: 0 15px;
  font-size: 16px;
  border-radius: 2px;
}
@media screen and (max-width: 970px) {
  .reserve-form .form-item .form-item-input, .reserve-form .form-Inquiry .form-item-input, .reserve-form .form-item-last .form-item-input {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .reserve-form .form-item .form-item-input, .reserve-form .form-Inquiry .form-item-input, .reserve-form .form-item-last .form-item-input {
    width: 100%;
    height: 50px;
    padding: 0 15px;
  }
}
.reserve-form .form-item .form-item-input:focus, .reserve-form .form-Inquiry .form-item-input:focus, .reserve-form .form-item-last .form-item-input:focus {
  outline: none;
  border-color: var(--color-border-primary);
}
.reserve-form .form-item .form-item-textarea, .reserve-form .form-Inquiry .form-item-textarea, .reserve-form .form-item-last .form-item-textarea {
  width: 100%;
  height: 120px;
  background-color: white;
  padding: 15px;
  font-size: 16px;
  resize: vertical;
  border-radius: 2px;
}
@media screen and (max-width: 970px) {
  .reserve-form .form-item .form-item-textarea, .reserve-form .form-Inquiry .form-item-textarea, .reserve-form .form-item-last .form-item-textarea {
    padding: 15px 20px;
  }
}
@media screen and (max-width: 768px) {
  .reserve-form .form-item .form-item-textarea, .reserve-form .form-Inquiry .form-item-textarea, .reserve-form .form-item-last .form-item-textarea {
    width: 100%;
    height: 200px;
    padding: 15px;
  }
}
.reserve-form .form-item .form-item-textarea:focus, .reserve-form .form-Inquiry .form-item-textarea:focus, .reserve-form .form-item-last .form-item-textarea:focus {
  outline: none;
  border-color: var(--color-border-primary);
}

.form-item-last p {
  line-height: 1.3;
}

.reserve-form .form-Inquiry {
  margin: 0 auto 37px;
}

.reserve-form__button-wrapper {
  padding: 0 0 80px;
}
@media screen and (max-width: 768px) {
  .reserve-form__button-wrapper {
    padding: 0;
  }
}

.reserve-form .form-item-checkboxes {
  color: var(--color-font-black);
  font-size: 14px;
  width: 100%;
  letter-spacing: 0.1rem;
  display: flex; /* ← これを追加 */
  flex-wrap: wrap; /* 複数行になるなら */
  gap: 12px; /* 横・縦の両方に余白 */
}

.reserve-form .checkbox-group {
  display: flex;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .reserve-form .checkbox-group {
    flex-direction: column;
    align-items: flex-start;
    margin: 8px 0 6px;
  }
}

.reserve-form .form-item-checkboxes01 {
  width: 100%;
}

.reserve-form .form-Inquiry-item {
  width: 100%;
  gap: 0;
}
@media screen and (max-width: 768px) {
  .reserve-form .form-Inquiry-item {
    flex-direction: column;
    margin: 6px 0 5px;
  }
}

.wpcf7-form-control-wrap .checkbox-Inquiry {
  display: grid;
  grid-template-columns: 250px 150px; /* 2列 */
  gap: 20px; /* チェックボックス間の隙間 */
  padding-left: 41px;
}
@media screen and (max-width: 768px) {
  .wpcf7-form-control-wrap .checkbox-Inquiry {
    grid-template-columns: 1fr; /* 1列に */
  }
}

.reserve-form .checkbox-column01 {
  display: flex;
}
@media screen and (max-width: 768px) {
  .reserve-form .checkbox-column01 {
    flex-direction: column;
    width: 100%;
  }
}

.reserve-form .checkbox-row .form-item-checkboxes01 {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .reserve-form .checkbox-row .form-item-checkboxes01 {
    width: 100%;
  }
}

/* チェックボックス */
.checkbox-group {
  align-items: center;
}

/* CF7のチェックボックス用スタイル */
.wpcf7-form-control-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (max-width: 970px) {
  .wpcf7-form-control-wrap {
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .wpcf7-form-control-wrap {
    gap: 10px;
    min-width: 0;
    width: 100%;
    display: block;
  }
}

.wpcf7-form-control {
  display: flex;
  align-items: center;
  padding: 5px 0;
}
@media screen and (max-width: 970px) {
  .wpcf7-form-control {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .wpcf7-form-control {
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
    min-width: 0;
    display: block;
  }
}

.checkbox-time {
  margin-right: 44px;
  width: 49px;
}
@media screen and (max-width: 970px) {
  .checkbox-time {
    margin-right: 7rem;
    width: 70px;
  }
}
@media screen and (max-width: 768px) {
  .checkbox-time {
    margin-bottom: 10px;
  }
}

.wpcf7-list-item {
  display: block;
  line-height: 1;
  margin: 0;
}

.checkbox-time-select {
  justify-content: space-between;
  width: 530px;
}
@media screen and (max-width: 970px) {
  .checkbox-time-select {
    width: 70rem;
  }
}
@media screen and (max-width: 768px) {
  .checkbox-time-select {
    width: 100%;
    padding-left: 45px;
    gap: 62px;
    row-gap: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: initial;
  }
}

input[type=checkbox] {
  display: none;
}

.wpcf7-list-item-label {
  position: relative;
  height: 20px;
  line-height: 20px;
  display: inline-block;
  color: var(--color-font-black);
  font-size: 14px;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  .wpcf7-list-item-label {
    white-space: nowrap;
  }
}

.wpcf7-list-item-label::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: #fff;
  position: absolute;
  left: -43px;
  top: 9px;
  transform: translateY(-50%);
  box-sizing: border-box;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  content: "";
  display: block;
  width: 18px;
  height: 10px;
  border-top: 3px solid var(--color-bg-primary);
  border-right: 3px solid var(--color-bg-primary);
  transform: rotate(135deg);
  position: absolute;
  left: -36px;
  top: 0;
}

.reserve-form .form-item-requested-date {
  justify-content: start;
}

.reserve-form .form-item-requested-date-input {
  width: 300px;
  height: 50px;
  background-color: white;
  padding: 0 15px;
  font-size: 16px;
  justify-content: start;
  position: relative;
}
@media screen and (max-width: 768px) {
  .reserve-form .form-item-requested-date-input {
    width: 315px;
    height: 50px;
  }
}
@media screen and (max-width: 420px) {
  .reserve-form .form-item-requested-date-input {
    width: 31.5rem;
  }
}

.wpcf7-form-control-wrap[data-name=requested-date-1]::after {
  content: "\f073"; /* fa-calendar-days */
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* solid */
  font-size: 26px;
  color: var(--color-font-white);
  position: absolute;
  left: 250px;
  top: 50%;
  width: 50px;
  height: 50px;
  display: flex; /* ←これで中央寄せ */
  align-items: center; /* 縦中央 */
  justify-content: center; /* 横中央 */
  background-color: var(--color-bg-primary);
  transform: translateY(-50%);
  pointer-events: none;
}
@media screen and (max-width: 970px) {
  .wpcf7-form-control-wrap[data-name=requested-date-1]::after {
    left: 264px;
  }
}
@media screen and (max-width: 420px) {
  .wpcf7-form-control-wrap[data-name=requested-date-1]::after {
    left: 84%;
  }
}

.wpcf7-form-control-wrap[data-name=requested-date-2]::after {
  content: "\f073"; /* fa-calendar-days */
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* solid */
  font-size: 26px;
  color: var(--color-font-white);
  position: absolute;
  left: 250px;
  top: 50%;
  width: 50px;
  height: 50px;
  display: flex; /* ←これで中央寄せ */
  align-items: center; /* 縦中央 */
  justify-content: center; /* 横中央 */
  background-color: var(--color-bg-primary);
  transform: translateY(-50%);
  pointer-events: none;
}
@media screen and (max-width: 970px) {
  .wpcf7-form-control-wrap[data-name=requested-date-2]::after {
    left: 264px;
  }
}
@media screen and (max-width: 420px) {
  .wpcf7-form-control-wrap[data-name=requested-date-2]::after {
    left: 84%;
  }
}

.reserve-form .your-contact-time .wpcf7-form-control-wrap {
  display: none;
}

/* Flatpickrカレンダーのスタイル調整 */
.flatpickr-calendar {
  font-family: var(--font-family-primary);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
}

.flatpickr-day.selected {
  background-color: var(--color-bg-primary);
  border-color: var(--color-bg-primary);
}

.flatpickr-day:hover {
  background-color: var(--color-bg-primary);
  opacity: 0.8;
}

.flatpickr-day.today {
  border-color: var(--color-bg-primary);
}

.flatpickr-day.disabled {
  color: #ccc;
  background: #f8f8f8;
}

.reserve-form textarea[name=your-message] {
  display: flex;
}

.reserve-form .form-note {
  font-size: 12px;
  line-height: 2.4;
  letter-spacing: 0.12em;
  color: var(--color-font-black);
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .reserve-form .form-note {
    margin-top: 8px;
  }
}
@media screen and (max-width: 768px) {
  .reserve-form .form-note p {
    line-height: 2.3;
  }
}

.reserve-form .c-button-a {
  text-align: center;
  line-height: 1.8;
  width: 160px;
  font-size: 16px;
  height: 40px;
}

.wpcf7-not-valid-tip {
  margin-top: -10px;
}
@media screen and (max-width: 768px) {
  .wpcf7-not-valid-tip {
    margin-top: 8px;
    font-size: 16px;
  }
}

/*!
object > project > r_reserve-form-confirm
------------------------------
*/
.reserve-form-confirm__steps {
  width: 41.2962962963%;
  display: flex;
  gap: 2.6rem;
}
@media screen and (max-width: 970px) {
  .reserve-form-confirm__steps {
    width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .reserve-form-confirm__steps {
    width: 315px;
    gap: 1.8rem;
  }
}
.reserve-form-confirm__steps .reserve-form__step {
  position: relative;
  padding: 54px 0;
  text-align: center;
  flex: 1;
}
@media screen and (max-width: 970px) {
  .reserve-form-confirm__steps .reserve-form__step {
    padding: 65px 0;
  }
}
@media screen and (max-width: 768px) {
  .reserve-form-confirm__steps .reserve-form__step {
    padding: 38px 0;
  }
}
.reserve-form-confirm__steps .reserve-form__step:nth-child(1) {
  color: #707070;
}
.reserve-form-confirm__steps .reserve-form__step:nth-child(1)::before, .reserve-form-confirm__steps .reserve-form__step:nth-child(1)::after {
  background-color: #707070;
}
.reserve-form-confirm__steps .reserve-form__step:nth-child(2) {
  color: var(--color-bg-primary);
}
.reserve-form-confirm__steps .reserve-form__step:nth-child(2)::before, .reserve-form-confirm__steps .reserve-form__step:nth-child(2)::after {
  background-color: var(--color-bg-primary);
}
.reserve-form-confirm__steps .reserve-form__step:nth-child(3) {
  color: #707070;
}
.reserve-form-confirm__steps .reserve-form__step:nth-child(3)::before, .reserve-form-confirm__steps .reserve-form__step:nth-child(3)::after {
  background-color: #707070;
}
.reserve-form-confirm__steps .reserve-form__step::before, .reserve-form-confirm__steps .reserve-form__step::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--color-bg-primary);
}
.reserve-form-confirm__steps .reserve-form__step::before {
  top: 0;
}
.reserve-form-confirm__steps .reserve-form__step::after {
  bottom: 0;
}

.reserve-form-__step {
  position: relative;
  padding: 54px 0;
  text-align: center;
  flex: 1;
}
@media screen and (max-width: 970px) {
  .reserve-form-__step {
    padding: 65px 0;
  }
}
@media screen and (max-width: 768px) {
  .reserve-form-__step {
    padding: 38px 0;
  }
}
.reserve-form-__step:nth-child(1) {
  color: #707070;
}
.reserve-form-__step:nth-child(1)::before, .reserve-form-__step:nth-child(1)::after {
  background-color: #707070;
}
.reserve-form-__step:nth-child(2) {
  color: var(--color-bg-primary);
}
.reserve-form-__step:nth-child(2)::before, .reserve-form-__step:nth-child(2)::after {
  background-color: var(--color-bg-primary);
}
.reserve-form-__step:nth-child(3) {
  color: #707070;
}
.reserve-form-__step:nth-child(3)::before, .reserve-form-__step:nth-child(3)::after {
  background-color: #707070;
}
.reserve-form-__step::before, .reserve-form-__step::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--color-bg-primary);
}
.reserve-form-__step::before {
  top: 0;
}
.reserve-form-__step::after {
  bottom: 0;
}

.form-item p,
.form-Inquiry p,
.form-item-last p {
  color: var(--color-font-black);
}

.form-item p,
.form-item-last p {
  color: var(--color-font-black);
}

.form-item-last {
  white-space: pre-wrap; /* 改行も折り返しも両方サポート */
  word-break: break-word; /* 長い単語も折り返し */
  resize: vertical; /* ユーザーが縦にサイズ変更できる */
  white-space: normal;
}

.reserve-form--confirm {
  padding-top: 62px;
}

.reserve-form__content--confirm {
  margin-bottom: 146px;
}
@media screen and (max-width: 768px) {
  .reserve-form__content--confirm {
    margin-bottom: 65px;
  }
}

.reserve-form__button--confirm {
  margin-top: 67px;
}

/*!
object > project > r_reserve-form-thanks
------------------------------
*/
.reserve-form-thanks__steps {
  width: 41.2962962963%;
  display: flex;
  gap: 2.6rem;
}
@media screen and (max-width: 970px) {
  .reserve-form-thanks__steps {
    width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .reserve-form-thanks__steps {
    width: 315px;
    gap: 1.8rem;
  }
}
.reserve-form-thanks__steps .reserve-form__step {
  position: relative;
  padding: 54px 0;
  text-align: center;
  flex: 1;
}
@media screen and (max-width: 970px) {
  .reserve-form-thanks__steps .reserve-form__step {
    padding: 65px 0;
  }
}
@media screen and (max-width: 768px) {
  .reserve-form-thanks__steps .reserve-form__step {
    padding: 38px 0;
  }
}
.reserve-form-thanks__steps .reserve-form__step:nth-child(1) {
  color: #707070;
}
.reserve-form-thanks__steps .reserve-form__step:nth-child(1)::before, .reserve-form-thanks__steps .reserve-form__step:nth-child(1)::after {
  background-color: #707070;
}
.reserve-form-thanks__steps .reserve-form__step:nth-child(2) {
  color: #707070;
}
.reserve-form-thanks__steps .reserve-form__step:nth-child(2)::before, .reserve-form-thanks__steps .reserve-form__step:nth-child(2)::after {
  background-color: #707070;
}
.reserve-form-thanks__steps .reserve-form__step:nth-child(3) {
  color: var(--color-bg-primary);
}
.reserve-form-thanks__steps .reserve-form__step:nth-child(3)::before, .reserve-form-thanks__steps .reserve-form__step:nth-child(3)::after {
  background-color: var(--color-bg-primary);
}
.reserve-form-thanks__steps .reserve-form__step::before, .reserve-form-thanks__steps .reserve-form__step::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--color-bg-primary);
}
.reserve-form-thanks__steps .reserve-form__step::before {
  top: 0;
}
.reserve-form-thanks__steps .reserve-form__step::after {
  bottom: 0;
}

.contact_thanks_box {
  padding: 48px 0 95px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .contact_thanks_box {
    padding: 46px 0 32px;
  }
}

.contact_thanks_box_inner {
  width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact_thanks_thanks {
  font-size: 36px;
  text-align: center;
  font-family: var(--font-family-secondary);
  line-height: 1.6;
  letter-spacing: 0.4rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .contact_thanks_thanks {
    font-size: 24px;
    letter-spacing: 0.22rem;
    margin-bottom: 18px;
    text-align: left;
  }
}

.contact_thanks_text {
  display: flex;
  flex-direction: column; /* 縦方向に並べる */
  font-size: 18px;
  text-align: left;
  line-height: 1;
  letter-spacing: 0.07rem;
  padding-left: 161px;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .contact_thanks_text {
    padding-left: 0;
    font-size: 14px;
  }
}

.link-top {
  display: inline-block;
  margin-top: 19px;
  font-size: 16px;
  letter-spacing: 0.2rem;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .link-top {
    font-size: 14px;
    letter-spacing: 0.05rem;
    margin-top: 0;
  }
}

.reserve-form__content--thanks {
  margin-bottom: 0;
}

.reserve-form--thanks {
  margin-bottom: 91px;
  padding-top: 65px;
}
@media screen and (max-width: 768px) {
  .reserve-form--thanks {
    margin-bottom: 65px;
  }
}

.reserve-section--thanks {
  padding-top: 102px;
}

/*!
object > project > utility
------------------------------
*/
/*!
layout > utility
------------------------------
*/
.u-mt {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .u-mt {
    margin-top: 48px;
  }
}

.u-ptb {
  margin-bottom: 20rem;
}
@media screen and (max-width: 768px) {
  .u-ptb {
    margin-bottom: 12rem;
  }
}

.u-ptb-sm {
  margin-bottom: 120px;
}/*# sourceMappingURL=style.css.map */