@charset "UTF-8";

:root {
  /* color */
  --c-base: #3F342D;
  --c-base-rgb: 63, 52, 45;
  --c-bg-01: #F0EFEC;
  --c-bg-01-rgb: 243, 242, 239;
  --c-bg-02: #E5DCCD;
  --c-bg-03: #F2EEE7;
  --c-bg-04: #E5DCCD;
  --c-bg-05: #EBE8DF;
  --c-bg-06: #DAD1C3;
  --c-bg-footer: #9E8459;
  --c-logo: #CEB76B;
  --c-accent: #B59865;
  --c-accent-rgb: 181, 152, 101;
  --c-hover: #735643;
  --c-border-30: rgba(var(--c-base-rgb), 0.3);
  --c-border-10: rgba(var(--c-base-rgb), 0.1);
  --round: calc(infinity * 1px);
  --round-half: 50%;
  --c-link: #034BE4;
  --c-line: #06C755;
  /* font */
  --f-base: "noto-sans-cjk-jp", sans-serif;
  --f-en: adobe-garamond-pro, serif;
  --f-mincho: "shippori-mincho", sans-serif;
  --f-din: "din-2014", sans-serif;
  /* transition */
  --t-default: .4s ease-in-out;
  --t-btn: .2s ease-out;
  /* z-index */
  --index-menu: 90;
  --index-header: 99;
  --index-modal: 999;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-word;
}

html {
  -webkit-text-size-adjust: 100%;
  position: relative;
  height: 100%;
  height: -webkit-fill-available;
  overscroll-behavior-y: none;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  color: var(--c-base);
  font-size: 16px;
  line-height: normal;
  font-family: var(--f-base);
  letter-spacing: 0.05em;
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

section {
  position: relative;
  padding: 140px 0;
}

main {
  position: relative;
  margin-top: 100px;
  overflow: hidden;
}

img,
iframe {
  display: block;
  width: 100%;
  max-width: 100%;
}

a,
button,
select {
  cursor: pointer;
}

a[disabled],
button[disabled],
select[disabled] {
  pointer-events: none !important;
}

a,
button,
select,
input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  color: var(--c-base);
  font-size: 1.6rem;
  font-family: var(--f-base);
}

a {
  -webkit-transition: 0.24s var(--t-btn);
  display: block;
  text-decoration: none;
  word-break: break-all;
  transition: 0.24s var(--t-btn);
}

span,
sub,
sup {
  font-weight: inherit;
}

sup {
  vertical-align: top;
}

sub {
  vertical-align: bottom;
}

strong {
  font-weight: 700;
}

.c-bg {
  z-index: 1;
  position: relative;
}

.c-bg::before {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/common/pattern-sand.png);
  background-repeat: repeat;
  content: "";
  opacity: 0.05;
}

.c-breadcrumb {
  padding: 30px 80px;
  border-bottom: solid 1px var(--c-border);
}

.c-breadcrumb__list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 15px;
}

.c-breadcrumb__item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.c-breadcrumb__item:not(:last-of-type) {
  position: relative;
  padding-right: 20px;
  opacity: 0.5;
}

.c-breadcrumb__item:not(:last-of-type)::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 5px;
  height: 5px;
  margin: auto;
  border-radius: var(--round-half);
  background-color: var(--c-base);
  content: "";
}

.c-breadcrumb__item:not(:last-of-type) .c-breadcrumb__link {
  color: var(--c-base);
}

.c-breadcrumb__item:last-of-type {
  pointer-events: none;
}

.c-breadcrumb__link {
  font-size: 1.4rem;
  line-height: 1;
}

.c-btn01 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: 1fr 45px;
  align-items: center;
  width: 100%;
  max-width: 300px;
  padding: 7px 10px 7px 25px;
  border: solid 1px var(--c-accent);
  border-radius: 100px;
  background-color: var(--c-accent);
}

.c-btn01__txt {
  color: #fff;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.c-btn01__txt .inn {
  display: inline-block;
  overflow: hidden;
}

.c-btn01__txt .letter {
  display: inline-block;
  text-shadow: #fff 0 20px;
}

.c-btn01__arrow {
  position: relative;
  position: relative;
  width: 45px;
  height: 45px;
  overflow: hidden;
  border-radius: 50%;
  background-color: var(--c-accent-light);
}

.c-btn01__arrow::before,
.c-btn01__arrow::after {
  -webkit-mask: url(../img/common/icon-arrow.svg) center center/contain no-repeat;
  -webkit-transition: 0.25s var(--transition-default);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  background-color: var(--c-accent);
  content: "";
  mask: url(../img/common/icon-arrow.svg) center center/contain no-repeat;
  pointer-events: none;
  transition: 0.25s var(--transition-default);
}

.c-btn01__arrow::after {
  -webkit-transform: translateX(-45px);
  transform: translateX(-45px);
}

.c-btn01__reverse {
  background-color: var(--c-accent-light);
}

.c-btn01__reverse .c-btn01__txt {
  color: var(--c-accent);
}

.c-btn01__reverse .c-btn01__txt .letter {
  text-shadow: var(--c-accent) 0 20px;
}

.c-btn01__reverse .c-btn01__arrow {
  background-color: var(--c-accent);
}

.c-btn01__reverse .c-btn01__arrow::before,
.c-btn01__reverse .c-btn01__arrow::after {
  background-color: #fff;
}

.c-fixNav {
  display: none;
  z-index: var(--index-menu);
  position: fixed;
  bottom: 0;
  left: 0;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  height: 60px;
}

.c-fixNav__btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-line-pack: center;
  display: grid;
  grid-template-rows: repeat(2, -webkit-max-content);
  grid-template-rows: repeat(2, max-content);
  grid-template-columns: 28px 1fr;
  align-content: center;
  align-items: center;
  padding: 10px;
  gap: 5px 10px;
}

.c-fixNav__btn::before {
  grid-row: 1/3;
  grid-column: 1/2;
  width: 28px;
  height: 28px;
  content: "";
}

.c-fixNav__btn.--tel {
  background-color: var(--c-base);
}

.c-fixNav__btn.--tel::before {
  background: url(../img/common/icon-tel.svg) no-repeat center/contain;
}

.c-fixNav__btn.--tel .c-fixNav__txt {
  font-size: 1.3rem;
}

.c-fixNav__btn.--line {
  background-color: var(--c-line);
}

.c-fixNav__btn.--line::before {
  background: url(../img/common/icon-line02.svg) no-repeat center/contain;
}

.c-fixNav__btn[disabled]::before,
.c-fixNav__btn[disabled] .c-fixNav__txt,
.c-fixNav__btn[disabled] .c-fixNav__sub {
  opacity: 0.6;
}

.c-fixNav__sub {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
}

.c-fixNav__txt {
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
}

.c-lower {
  padding: 0;
}

.c-lower__inner {
  max-width: 100% !important;
  padding: 0 clamp(20px, 4.167vw, 60px) !important;
}

.c-lower__title {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  flex-direction: column;
  padding: 138px 80px 92px;
  overflow: hidden;
  gap: 20px;
  background-color: var(--c-bg-03);
}

.c-lower__title::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 400px;
  height: 340px;
  background: url(../img/common/bg-lower.svg) no-repeat center/cover;
  content: "";
}

.c-lower__title-en {
  font-size: 6.4rem;
  line-height: 1;
  font-family: var(--f-en);
  letter-spacing: 0.03em;
}

.c-lower__title-jp {
  color: var(--c-accent);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1;
}

.c-modal {
  -webkit-transition: var(--t-default);
  visibility: hidden;
  z-index: var(--index-modal);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: var(--t-default);
}

.c-modal.is-active {
  visibility: visible;
  opacity: 1;
}

.c-modal__overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(var(--c-base-rgb), 0.5);
}

.c-modal__contents {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 840px;
  height: calc(100% - 100px);
  padding: 0 20px;
  transform: translate(-50%, -50%);
}

.c-modal__contents-inner {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

.c-modal__contents-inner::-webkit-scrollbar {
  width: 5px;
  background-color: #fff;
}

.c-modal__contents-inner::-webkit-scrollbar-thumb {
  background-color: var(--c-border-30);
}

.c-modal__contents-wrapper {
  position: relative;
  width: 100%;
  padding: 60px;
  background-color: #fff;
}

.c-modal__contents-title {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: solid 1px var(--c-border-30);
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.5;
  font-family: var(--f-mincho);
}

.c-modal__contents-wrap {
  margin-top: 30px;
}

.c-modal__contents-wrap .title {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.8;
  font-family: var(--f-mincho);
}

.c-modal__contents-wrap .txt {
  font-size: 1.4rem;
  line-height: 1.8;
}

.c-modal__contents-list {
  margin: 10px 0;
}

.c-modal__contents-list li {
  position: relative;
  padding-left: 20px;
  font-size: 1.4rem;
  line-height: 1.8;
}

.c-modal__contents-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
  font-size: 1.4rem;
  line-height: 1.8;
}

.c-modal__contents-btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 250px;
  height: 50px;
  margin: 30px auto 0;
  border-radius: var(--round);
  background-color: var(--c-base);
  color: #fff;
  font-size: 1.4rem;
  font-family: var(--f-mincho);
}

.c-modal__contents-cross {
  position: absolute;
  top: -25px;
  right: 0;
  width: 60px;
  height: 60px;
  border-radius: var(--round-half);
  background-color: var(--c-base);
  color: transparent;
}

.c-modal__contents-cross::before,
.c-modal__contents-cross::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  margin: auto;
  background-color: #fff;
  content: "";
}

.c-modal__contents-cross::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c-modal__contents-cross::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.c-pager {
  margin-top: 60px;
}

.c-pager__list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.c-pager__item {
  width: 54px;
  height: 54px;
}

.c-pager__item.--dot {
  width: 40px;
}

.c-pager__arrow {
  position: relative;
  height: 100%;
  color: transparent;
  opacity: 0.5;
}

.c-pager__arrow::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 14px;
  height: 14px;
  margin: auto;
  background: url(../img/common/icon-arrow.svg) no-repeat center/contain;
  content: "";
}

.c-pager__arrow.--prev {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.c-pager__number {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-radius: var(--round);
  font-size: 1.8rem;
  font-family: var(--f-en);
}

.c-pager__number.--current {
  background-color: var(--c-base);
  color: #fff;
  pointer-events: none;
}

.c-pager__dot {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 1.8rem;
}

.c-pageTop {
  -webkit-transition: var(--t-default);
  z-index: var(--index-menu);
  position: fixed;
  right: 40px;
  bottom: 27px;
  width: 60px;
  height: 60px;
  border-radius: var(--round-half);
  background-color: #fff;
  color: transparent;
  opacity: 0;
  transition: var(--t-default);
}

.c-pageTop::after {
  -webkit-transform: rotate(-90deg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 14px;
  height: 14px;
  margin: auto;
  transform: rotate(-90deg);
  background: url(../img/common/icon-arrow.svg) no-repeat center/contain;
  content: "";
}

.c-pageTop.is-show {
  opacity: 1;
}

.c-title01 {
  margin-bottom: 50px;
}

.c-title01.--small {
  margin-bottom: 20px;
}

.c-title01.--small .c-title01__en {
  font-size: 3.6rem;
}

.c-title01.--small .c-title01__jp {
  font-size: 1.6rem;
}

.c-title01.--row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 20px;
}

.c-title01.--row .c-title01__en {
  margin-bottom: 0;
}

.c-title01__en {
  display: block;
  margin-bottom: 10px;
  font-size: 6.4rem;
  line-height: 1;
  font-family: var(--f-en);
  text-align: center;
}

.c-title01__jp {
  color: var(--c-accent);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
}

.l-footer {
  padding-top: 75px;
  background-color: var(--c-bg-footer);
}

.l-footer__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-bottom: 80px !important;
}

.l-footer__logo {
  width: 100%;
  max-width: 220px;
  margin-bottom: 35px;
}

.l-footer__logo img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.l-footer__address {
  color: #fff;
  line-height: 1.8;
}

.l-footer__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 0;
  max-width: 330px;
  margin-top: 20px;
}

.l-footer__wrap-title {
  color: #fff;
  font-weight: 500;
  line-height: 1.8;
}

.l-footer__wrap-txt {
  color: #fff;
  line-height: 1.8;
}

.l-footer__sns {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}

.l-footer__sns img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.l-footer__sns-item {
  width: 20px;
}

.l-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 320px;
  margin-right: 0;
  margin-left: auto;
  gap: 15px 50px;
}

.l-footer__nav-item a {
  padding: 10px 15px;
  color: #fff;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
}

.l-footer__copyright {
  padding: 20px;
  border-top: solid 1px rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
}

.--close {
  display: none;
}

.l-header {
  -webkit-transition: var(--t-default);
  z-index: var(--index-header);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #fff;
  transition: var(--t-default);
}

.l-header.is-open {
  background-color: var(--c-bg-01);
}

.l-header.is-open::before {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/common/pattern-sand.png);
  background-repeat: repeat;
  content: "";
  opacity: 0.05;
}

.l-header.is-open .--open {
  display: none;
}

.l-header.is-open .--close {
  display: block;
}

.l-header.is-open .l-header__nav {
  visibility: visible;
  opacity: 1;
}

.l-header__inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: min(24.306vw, 350px) 1fr;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 clamp(20px, 4.167vw, 60px);
  gap: 20px;
}

.l-header__logo {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: min(11.389vw, 164px) 1fr;
  align-items: center;
  gap: 15px;
}

.l-header__logo-txt {
  color: var(--c-logo);
  font-weight: 700;
  font-size: clamp(9px, 0.833vw, 1.2rem);
  line-height: 1.5;
  font-family: var(--f-mincho);
}

.l-header__button {
  display: none;
}

.l-header__button-txt {
  font-size: 1.4rem;
  line-height: 1.5;
  font-family: var(--f-en);
  letter-spacing: 0.05em;
}

.l-header__nav-reserve {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  gap: 20px;
}

.l-header__nav-reserve .txt {
  font-size: 1.2rem;
  font-size: 500;
}

.l-header__nav-reserve .btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 250px;
  height: 50px;
  gap: 10px;
  border-radius: var(--round);
  background-color: var(--c-base);
  color: #fff;
  font-weight: 600;
}

.l-header__nav-reserve .btn::before {
  content: "";
}

.l-header__nav-reserve .btn.--tel {
  font-size: 2rem;
  font-family: var(--f-en);
}

.l-header__nav-reserve .btn.--tel::before {
  width: 20px;
  height: 20px;
  background: url(../img/common/icon-tel.svg) no-repeat center/contain;
}

.l-header__nav-reserve .btn.--line {
  font-size: 1.4rem;
  font-family: var(--f-mincho);
}

.l-header__nav-reserve .btn.--line::before {
  width: 25px;
  height: 25px;
  background: url(../img/common/icon-line.svg) no-repeat center/contain;
}

.l-header__nav-reserve .btn.--line .arrow {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: var(--round-half);
  background-color: #fff;
}

.l-header__nav-reserve .btn.--line .arrow::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  background: url(../img/common/icon-arrow.svg) no-repeat center/contain;
  content: "";
}

.l-header__nav-reserve .btn[disabled] {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
}

.l-header__nav-reserve .btn[disabled]::before {
  opacity: 0.7;
}

.l-header__nav-reserve .ms {
  position: absolute;
  top: -10px;
  right: 0;
  left: 0;
  width: 100%;
  max-width: 160px;
  margin: auto;
  padding: 3px;
  border: solid 1px var(--c-base);
  border-radius: var(--round);
  background-color: #fff;
  color: var(--c-base);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  font-family: var(--f-base);
  text-align: center;
}

.l-header__nav-list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.l-header__nav-link {
  padding: min(1.042vw, 15px) min(1.389vw, 20px);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
}

.l-header__nav-link.--icon {
  width: 20px;
  height: 20px;
  margin-left: 20px;
  padding: 0;
}

.l-inner {
  position: relative;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.l-inner.--narrow {
  max-width: 1040px;
}

.l-inner.--wide {
  max-width: 1240px;
}

.p-news-archive {
  padding: 100px 0 130px;
}

.p-news-archive__categories {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.p-news-archive__category-btn {
  padding: 9px 16px;
  border: solid 1px var(--c-base);
  border-radius: var(--round);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
}

.p-news-archive__category-btn.is-active {
  background-color: var(--c-base);
  color: #fff;
  pointer-events: none;
}

.p-news-archive__list {
  margin-top: 80px;
  padding: 0 20px;
}

.p-news-archive__list-item {
  border-bottom: solid 1px var(--c-border-10);
}

.p-news-archive__list-item:first-of-type {
  border-top: solid 1px var(--c-border-10);
}

.p-news-archive__list-link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  align-items: center;
  padding: 22px 0;
  gap: 8px 10px;
}

.p-news-archive__list-category {
  color: var(--c-border-30);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
}

.p-news-archive__list-date {
  color: var(--c-accent);
  font-size: 1.4rem;
  line-height: 1;
}

.p-news-archive__list-title {
  grid-column: 1/3;
  overflow: hidden;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p-news-article {
  padding: 100px 0 120px;
}

.p-news-article__inner {
  max-width: 920px;
}

.p-news-article__head {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  align-items: center;
  padding-bottom: 15px;
  gap: 20px 10px;
  border-bottom: solid 1px var(--c-base);
}

.p-news-article__head-category {
  grid-column: 1/2;
  color: var(--c-border-30);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0;
}

.p-news-article__head-date {
  grid-column: 2/3;
  color: var(--c-accent);
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.03em;
}

.p-news-article__head-title {
  grid-column: 1/3;
  font-weight: 500;
  font-size: 3rem;
  line-height: 1.8;
}

.p-news-article__pager {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 680px;
  min-height: 50px;
  margin: 60px auto 0;
}

.p-news-article__pager-link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 5px 0;
  gap: 20px;
}

.p-news-article__pager-link.--prev {
  grid-column: 1/2;
}

.p-news-article__pager-link.--prev .arrow::after {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.p-news-article__pager-link.--next {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  grid-column: 3/4;
  justify-content: flex-end;
}

.p-news-article__pager-link.--back {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  grid-column: 2/3;
  justify-content: center;
  border-right: solid 1px var(--c-border-30);
  border-left: solid 1px var(--c-border-30);
}

.p-news-article__pager-link .arrow {
  -webkit-transition: var(--t-btn);
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: var(--round-half);
  background-color: var(--c-bg-03);
  transition: var(--t-btn);
}

.p-news-article__pager-link .arrow::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  background: url(../img/common/icon-arrow.svg) no-repeat center/contain;
  content: "";
}

.p-404-container {
  padding: 120px 0 140px;
}

.p-404-container__title {
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 1.5;
  font-family: var(--f-mincho);
  text-align: center;
}

.p-404-container__txt {
  line-height: 1.8;
  text-align: center;
}

.p-404-container__btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  position: relative;
  grid-template-columns: 1fr 30px;
  align-items: center;
  width: 100%;
  max-width: 250px;
  height: 50px;
  margin: 40px auto 0;
  padding: 10px 10px 10px 25px;
  border-radius: var(--round);
  background-color: var(--c-base);
  color: #fff;
  font-size: 1.4rem;
  font-family: var(--f-mincho);
}

.p-404-container__btn::before {
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  background: url(../img/common/icon-arrow.svg) no-repeat center/contain;
  content: "";
}

.p-404-container__btn::after {
  width: 30px;
  height: 30px;
  border-radius: var(--round-half);
  background-color: #fff;
  content: "";
}

.p-home-mv {
  padding: 0;
}

.p-home-mv__inner {
  max-width: 100%;
  padding: 0 clamp(20px, 4.167vw, 60px);
}

.p-home-mv__wrap {
  -webkit-transform: translateX(-50%);
  z-index: 1;
  position: absolute;
  bottom: 40px;
  left: 50%;
  width: 100%;
  max-width: max(90.278vw, 1300px);
  padding: 0 100px;
  transform: translateX(-50%);
}

.p-home-mv__title {
  margin-bottom: 16px;
  color: #fff;
  font-size: 6.7rem;
  line-height: 1;
  font-family: var(--f-en);
  letter-spacing: 0.03em;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.p-home-mv__txt {
  color: #fff;
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 1.5;
  font-family: var(--f-mincho);
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.p-home-mv__news {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: 60px 1fr 180px;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  padding: 15px 15px 15px 25px;
  gap: 25px;
  border-radius: 5px;
  background-color: #fff;
}

.p-home-mv__news-title {
  font-size: 2.2rem;
  line-height: 1.8;
  font-family: var(--f-en);
}

.p-home-mv__news-list {
  min-width: 0;
  overflow: hidden;
}

.p-home-mv__news-link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 40px;
}

.p-home-mv__news-date {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: var(--c-accent);
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.p-home-mv__news-txt {
  min-width: 0;
  overflow: hidden;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.8;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p-home-mv__news-btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  position: relative;
  grid-template-columns: 1fr 30px;
  align-items: center;
  padding: 10px 10px 10px 25px;
  gap: 10px;
  border-radius: var(--round);
  background-color: var(--c-base);
  color: #fff;
  font-size: 1.4rem;
  font-family: var(--f-mincho);
}

.p-home-mv__news-btn::before {
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  background: url(../img/common/icon-arrow.svg) no-repeat center/contain;
  content: "";
}

.p-home-mv__news-btn::after {
  width: 30px;
  height: 30px;
  border-radius: var(--round-half);
  background-color: #fff;
  content: "";
}

.p-home-mv .splide {
  min-height: 680px;
}

.p-home-mv .splide__slide {
  min-height: 680px;
}

.p-home-mv .splide__slide img {
  -o-object-fit: cover;
  -webkit-transform: scale(1);
  -webkit-transition: -webkit-transform 5.9s linear;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: -webkit-transform 5.9s linear;
  transition: transform 5.9s linear;
  transition: transform 5.9s linear, -webkit-transform 5.9s linear;
}

.p-home-mv .splide__slide.is-active img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.p-home-mv .splide__pagination {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  top: 0;
  right: max(-3.156vw, -40px);
  bottom: 0;
  left: auto;
  flex-direction: column;
  margin: auto;
  padding: 0;
}

.p-home-mv .splide__pagination__page {
  width: 10px;
  height: 10px;
  margin: 10px;
  background: var(--c-border-30);
}

.p-home-mv .splide__pagination__page.is-active {
  -webkit-transform: scale(1);
  transform: scale(1);
  border: solid 1px var(--c-base);
  background-color: #fff;
}

.p-home-intro {
  padding: 140px 0 65px;
}

.p-home-intro::after {
  position: absolute;
  right: 0;
  bottom: 0;
  aspect-ratio: 1/1;
  width: 602px;
  height: auto;
  background: url(../img/top/bg-intro.svg) no-repeat center center/cover;
  content: "";
}

.p-home-intro__wrapper {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  display: grid;
  z-index: 1;
  position: relative;
  grid-template-columns: 58fr 42fr;
  align-items: stretch;
  gap: 40px 30px;
}

.p-home-intro__title {
  -ms-flex-item-align: end;
  align-self: end;
  font-weight: 600;
  font-size: 3.6rem;
  line-height: 1.5;
  font-family: var(--f-mincho);
}

.p-home-intro__txt {
  -ms-flex-item-align: start;
  align-self: start;
  line-height: 1.8;
}

.p-home-intro__img {
  position: relative;
  padding: 0 72px 58px 0;
}

.p-home-intro__img .img {
  display: block;
}

.p-home-intro__img .img01 {
  width: 100%;
}

.p-home-intro__img .img02 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
}

.p-home-features {
  background-color: var(--c-bg-01);
}

.p-home-features__txt {
  line-height: 1.8;
}

.p-home-features__list-item {
  margin-top: 90px;
}

.p-home-features__list-item:not(.--accordion) {
  display: grid;
  grid-template-columns: 1fr 39%;
  align-self: stretch;
  gap: 20px 50px;
}

.p-home-features__list-item:not(.--accordion) .p-home-features__list-title,
.p-home-features__list-item:not(.--accordion) .p-home-features__list-txt {
  max-width: 530px;
}

.p-home-features__list-title {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-home-features__list-title .num {
  color: var(--c-accent);
  font-size: 1.6rem;
  line-height: 1;
  font-family: var(--f-en);
}

.p-home-features__list-title .title {
  font-size: 2.8rem;
  line-height: 1.5;
  font-family: var(--f-mincho);
}

.p-home-features__list-btn {
  position: relative;
  width: 100%;
  padding: 30px 0;
  border-bottom: solid 1px var(--c-border-30);
  text-align: left;
}

.p-home-features__list-btn::before,
.p-home-features__list-btn::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 2px;
  margin: auto;
  background-color: var(--c-accent);
  content: "";
}

.p-home-features__list-btn::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.p-home-features__list-btn.is-open::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.p-home-features__list-txt {
  line-height: 1.8;
}

.p-home-features__list-txt .line {
  text-decoration: underline;
}

.p-home-features__list-wrap {
  display: grid;
  grid-template-columns: 34% 1fr;
  align-self: stretch;
  padding: 30px 0;
  gap: 20px 50px;
}

.p-home-features__list-wrap .--top {
  -ms-flex-item-align: end;
  align-self: end;
}

.p-home-features__list-wrap .--bottom {
  -ms-flex-item-align: start;
  align-self: start;
}

.p-home-features__list-wrap .item {
  position: relative;
  padding-left: 14px;
  font-weight: 500;
}

.p-home-features__list-wrap .item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  height: 6px;
  margin: auto;
  border-radius: 50%;
  background-color: var(--c-accent);
  content: "";
}

.p-home-features__list-wrap .item + .item {
  margin-top: 10px;
}

.p-home-staff {
  background-color: var(--c-bg-02);
}

.p-home-staff__wrapper + .p-home-staff__wrapper {
  margin-top: 120px;
}

.p-home-staff__head {
  display: grid;
  grid-template-columns: 1fr 44.5%;
  align-self: stretch;
  margin-bottom: 60px;
  padding-bottom: 60px;
  gap: 30px 80px;
  border-bottom: solid 1px var(--c-border-10);
}

.p-home-staff__head-wrap.--wrap02 {
  display: grid;
  grid-template-rows: -webkit-max-content 1fr;
  grid-template-rows: max-content 1fr;
  grid-template-columns: 1fr;
  gap: 15px 20px;
}

.p-home-staff__head-wrap .name {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-top: 10px;
  gap: 5px;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.8;
}

.p-home-staff__head-wrap .name-en {
  color: var(--c-accent);
  font-weight: 600;
  font-size: 1.2rem;
  font-family: var(--f-en);
}

.p-home-staff__head-wrap .year {
  font-weight: 500;
  font-size: 1.4rem;
}

.p-home-staff__head-wrap .label {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 7px 10px;
  border-radius: 4px;
  background-color: var(--c-accent);
  color: #fff;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1;
}

.p-home-staff__head-wrap .item {
  position: relative;
  padding-left: 14px;
  font-weight: 500;
}

.p-home-staff__head-wrap .item::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--c-accent);
  content: "";
}

.p-home-staff__head-wrap .item + .item {
  margin-top: 10px;
}

.p-home-staff__title {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.5;
  font-family: var(--f-mincho);
}

.p-home-staff__txt {
  line-height: 1.8;
}

.p-home-flow::before {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  width: 385px;
  height: 500px;
  background: url(../img/top/bg-flow.svg) no-repeat center/cover;
  content: "";
}

.p-home-flow .splide__arrow {
  width: 50px;
  height: 50px;
  background-color: var(--c-bg-02);
  opacity: 1;
}

.p-home-flow .splide__arrow:disabled {
  opacity: 0;
}

.p-home-flow .splide__arrow--prev {
  left: -35px;
}

.p-home-flow .splide__arrow--next {
  right: -35px;
}

.p-home-flow .splide__pagination {
  bottom: 0;
}

.p-home-flow .splide__pagination__page {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: var(--c-border-30);
}

.p-home-flow .splide__pagination__page.is-active {
  -webkit-transform: scale(1);
  transform: scale(1);
  border: solid 1px var(--c-base);
  background-color: #fff;
}

.p-home-flow__list {
  position: relative;
}

.p-home-flow__list-item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 0 min(5.556vw, 80px);
}

.p-home-flow__list-item:nth-child(even) .p-home-flow__list-step {
  background-color: #C7C2BB;
  color: #fff;
}

.p-home-flow__list-step {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  gap: 5px;
  border-radius: var(--round);
  background-color: var(--c-bg-02);
  font-size: 1.4rem;
  font-family: var(--f-en);
}

.p-home-flow__list-step .num {
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: 0;
}

.p-home-flow__list-wrapper {
  position: relative;
  padding: 30px;
  background-color: var(--c-bg-03);
}

.p-home-flow__list-title {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.5;
  font-family: var(--f-mincho);
}

.p-home-flow__list-wrap {
  display: grid;
  grid-template-columns: 30fr 70fr;
  gap: 24px;
}

.p-home-flow__list-wrap .wrap {
  margin: 10px 0;
  padding: 15px 20px;
  border-radius: 10px;
  background-color: #fff;
}

.p-home-flow__list-wrap .wrap-title {
  margin-bottom: 5px;
  color: var(--c-accent);
  font-weight: 500;
  font-size: 1.6rem;
}

.p-home-flow__list-wrap .wrap-txt {
  font-size: 1.4rem;
  line-height: 1.8;
}

.p-home-flow__list-wrap .wrap-btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 250px;
  height: 50px;
  margin-top: 10px;
  gap: 10px;
  border-radius: var(--round);
  background-color: var(--c-base);
  color: #fff;
  font-weight: 600;
  font-size: 2rem;
  font-family: var(--f-en);
}

.p-home-flow__list-wrap .wrap-btn::before {
  width: 20px;
  height: 20px;
  background: url(../img/common/icon-tel.svg) no-repeat center/contain;
  content: "";
}

.p-home-flow__list-wrap .wrap-btn[disabled] {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
}

.p-home-flow__list-wrap .wrap-btn[disabled]::before {
  opacity: 0.7;
}

.p-home-flow__list-wrap p.txt {
  line-height: 1.8;
}

.p-home-flow__list-wrap button {
  font-weight: 600;
  text-decoration: underline;
}

.p-home-price {
  background-color: var(--c-bg-01);
}

.p-home-price-txt {
  line-height: 1.8;
}

.p-home-price__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 50px;
  gap: 40px;
}

.p-home-price__list-item {
  display: grid;
  grid-template-rows: -webkit-max-content 1fr;
  grid-template-rows: max-content 1fr;
  grid-template-columns: 120px 1fr;
  padding: 20px;
  gap: 5px 20px;
  border-radius: 10px;
  background-color: var(--c-bg-05);
}

.p-home-price__list-item .txt {
  font-size: 1.4rem;
  line-height: 1.8;
}

.p-home-price__list-img {
  grid-row: 1/3;
  grid-column: 1/2;
}

.p-home-price__list-title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--c-accent);
  font-weight: 500;
  font-size: 1.8rem;
}

.p-home-price__list-title::before {
  width: 25px;
  height: 25px;
  content: "";
}

.p-home-price__list-title.--shampoo::before {
  background: url(../img/top/icon-shampoo.svg) no-repeat center/contain;
}

.p-home-price__list-title.--cut::before {
  background: url(../img/top/icon-cut.svg) no-repeat center/contain;
}

.p-home-price__caution {
  margin-top: 30px;
  padding: 20px 60px;
  border-radius: 10px;
  background-color: var(--c-bg-05);
}

.p-home-price__caution-title {
  margin-bottom: 5px;
  color: var(--c-accent);
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: center;
}

.p-home-price__caution-item {
  position: relative;
  padding-left: 20px;
  font-size: 1.4rem;
  line-height: 1.8;
}

.p-home-price__caution-item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.8;
}

.p-home-price__wrapper {
  margin-top: 120px;
}

.p-home-price__wrapper-head {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 30px;
}

.p-home-price__wrapper-head .c-title01 {
  margin-bottom: 0;
}

.p-home-price__wrapper-head .txt {
  font-size: 1.2rem;
}

.p-home-price__wrapper-title {
  font-family: var(--f-mincho);
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 10px;
}

.p-home-price__tab-btn {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: grid;
  grid-template-columns: repeat(4, 120px);
  justify-content: center;
  margin: 50px 0 40px;
  gap: 40px;
}

.p-home-price__tab-btn button {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transition: var(--t-default);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: var(--t-default);
}

.p-home-price__tab-btn button.is-active {
  pointer-events: none;
}

.p-home-price__tab-btn button.is-active .img::after {
  opacity: 1;
}

.p-home-price__tab-btn .img {
  position: relative;
  border-radius: var(--round-half);
}

.p-home-price__tab-btn .img::after {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border: solid 5px var(--c-accent);
  border-radius: var(--round);
  content: "";
  opacity: 0;
}

.p-home-price__tab-btn .type {
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.2;
  text-align: center;
}

.p-home-price__tab-panel {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  border: solid 1px var(--c-border-30);
  border-radius: 15px;
  background-color: #fff;
}

.p-home-price__tab-panel.is-active {
  display: grid;
}

.p-home-price__tab-panel .img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.p-home-price__tab-panel .wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 70px 20px;
}

.p-home-price__tab-panel .title {
  margin-bottom: 10px;
  padding: 6px;
  border-radius: var(--round);
  background-color: var(--c-bg-03);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: center;
}

.p-home-price__tab-panel .title.--small {
  font-size: 1.4rem;
}

.p-home-price__tab-panel .txt {
  font-weight: 500;
  font-size: 1rem;
}

.p-home-price__tab-detail {
  margin-top: 20px;
}

.p-home-price__tab-detail .detail-wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: 7fr 3fr;
  align-items: center;
  padding: 15px 10px;
  border-top: solid 1px var(--c-border-10);
  border-bottom: solid 1px var(--c-border-10);
}

.p-home-price__tab-detail .detail-wrap + .detail-wrap {
  border-top: none;
}

.p-home-price__tab-detail dt {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.6rem;
}

.p-home-price__tab-detail dt::before {
  width: 20px;
  height: 20px;
  content: "";
}

.p-home-price__tab-detail dt.--shampoo::before {
  background: url(../img/top/icon-shampoo.svg) no-repeat center/contain;
}

.p-home-price__tab-detail dt.--cut::before {
  background: url(../img/top/icon-cut.svg) no-repeat center/contain;
}

.p-home-price__tab-detail dd {
  font-weight: 700;
  font-size: 1.6rem;
  font-family: var(--f-din);
  text-align: right;
}

.p-home-price__tab-panel.--col {
  padding: 40px 60px;
}

.p-home-price__tab-panel.--col.is-active {
  display: block;
}

.p-home-price__tab-panel.--col .p-home-price__tab-list {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 38px;
}

.p-home-price__option-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 40px;
}

.p-home-price__option-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 22px 20px;
  border-top: solid 1px var(--c-border-30);
}

.p-home-price__option-title {
  font-weight: 700;
  line-height: 1;
}

.p-home-price__option-price {
  font-weight: 700;
  line-height: 1;
  font-family: var(--f-din);
  text-align: right;
}

.p-home-price__others-txt {
  line-height: 1.8;
}

.p-home-price__other-wrapper {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px 40px;
  margin-top: 50px;
}

.p-home-price__other-wrap .wrapper {
  max-height: 150px;
  overflow: hidden;
  position: relative;
  transition: var(--t-default);
}

.p-home-price__other-wrap .wrapper::after {
  content: '';
  background: linear-gradient(transparent, var(--c-bg-01));
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 80%;
}

.p-home-price__other-wrap .wrapper.is-open {
  max-height: inherit;
}

.p-home-price__other-wrap .wrapper.is-open::after {
  opacity: 0;
}

.p-home-price__other-btn {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: right;
  display: block;
  margin: -30px 0 0 auto;
  padding: 5px 20px 5px 0;
  position: relative;
  z-index: 1;
}

.p-home-price__other-btn::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  background: url(../img/common/icon-arrow.svg) no-repeat center / contain;
  content: '';
  transform: rotate(90deg);
  transition: var(--t-default);
}

.p-home-price__other-btn.is-open {
  margin-top: 10px;
}

.p-home-price__other-btn.is-open::after {
  transform: rotate(-90deg);
}

.p-home-price__other-wrap .wrap + .wrap {
  margin-top: 40px;
}

.p-home-price__other-wrap .title {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 10px;
}

.p-home-price__other-wrap .txt {
  font-size: 1.4rem;
  line-height: 1.8;
}

.p-home-price__other-wrap .list {
  margin: 20px 0;
}

.p-home-price__other-wrap .list li {
  font-size: 1.4rem;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.p-home-price__other-wrap .list li::before {
  content: '・';
  position: absolute;
  top: 0;
  left: 0;
}

.p-home-gallery__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 120px;
  gap: 20px;
}

.p-home-gallery__list li.col {
  grid-column: 1 / 5;
}

.p-home-gallery__instagram {
  display: grid;
  grid-template-columns: 34fr 66fr;
  margin-top: 50px;
  gap: 20px;
}

.p-home-gallery__instagram .txt {
  font-size: 1.4rem;
  line-height: 1.8;
}

.p-home-gallery__instagram-icon {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 7px 15px;
}

.p-home-gallery__instagram-icon .name {
  font-weight: 500;
  font-size: 1.4rem;
}

.p-home-gallery__instagram-icon .account {
  display: block;
  text-decoration: underline;
}

.p-home-gallery__instagram-list {
  width: 100%;
  max-width: 565px;
  margin-right: 0;
  margin-left: auto;
}

.p-home-gallery__instagram-list:not(.--empty) {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.p-home-gallery__instagram-empty {
  opacity: 0.6;
}

.p-home-faq {
  background-color: var(--c-bg-06);
}

.p-home-faq__wrap-question {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  padding: 15px 30px 0;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  line-height: 1.5;
}

.p-home-faq__wrap-question .q {
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 1.5;
  font-family: var(--f-en);
}

.p-home-faq__wrap-answer {
  display: grid;
  grid-template-columns: 24px 1fr;
  padding: 0 30px 15px;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.p-home-faq__wrap-answer .a {
  color: var(--c-accent);
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 1.5;
  font-family: var(--f-en);
}

.p-home-faq__wrap-answer + .p-home-faq__wrap-question {
  margin-top: 20px;
}

.p-home-shop {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 0;
  background-color: var(--c-bg-03);
}

.p-home-shop .c-title01 {
  margin-bottom: 30px;
}

.p-home-shop__inner {
  max-width: 420px;
  padding-top: 170px;
}

.p-home-shop__name {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.8;
  font-family: var(--f-mincho);
}

.p-home-shop__name .kana {
  display: inline-block;
  padding-left: 10px;
  font-size: 1.6rem;
}

.p-home-shop__address {
  line-height: 1.8;
}

.p-home-shop__tel {
  margin-top: 20px;
  line-height: 1.8;
}

.p-home-shop__wrap {
  display: grid;
  grid-template-columns: 80px 1fr;
  margin-top: 20px;
}

.p-home-shop__title {
  font-weight: 700;
  line-height: 1.8;
}

.p-home-shop__time {
  line-height: 1.8;
}

.p-home-shop__map {
  -webkit-filter: grayscale(1) sepia(0.1) brightness(1) contrast(0.85);
  position: relative;
  width: 100%;
  height: 140px;
  margin-top: 20px;
  filter: grayscale(1) sepia(0.1) brightness(1) contrast(0.85);
}

.p-home-shop__map iframe {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.p-home-shop__credential {
  grid-column: 1 / 3;
  padding-top: 60px;
}

.p-home-shop__credential .l-inner {
  max-width: 1040px;
}

.p-home-shop__credential-wrapper {
  background-color: #F3F2EF;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 60px;
  padding: 20px 30px;
}

.p-home-shop__credential-wrapper .wrap {
  border-bottom: solid 1px var(--c-border-30);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  min-height: 60px;
}

.p-home-shop__credential-wrapper dt {
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 500;
  padding-right: 10px;
}

.p-home-shop__credential-wrapper dd {
  font-size: 1.4rem;
  line-height: 1.3;
  text-align: right;
}

.p-home-shop__slide {
  margin-top: 120px;
}

.p-home-shop__slide .splide__track {
  padding-bottom: 140px;
}

.p-home-shop__slide .splide__slide:nth-child(even) {
  -webkit-transform: translateY(140px);
  transform: translateY(140px);
}

.p-home-contact {
  background-color: var(--c-bg-06);
}

.p-home-contact::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 385px;
  height: 495px;
  background: url(../img/top/bg-contact.svg) no-repeat center/cover;
  content: "";
}

.p-home-contact__txt {
  line-height: 1.8;
  text-align: center;
}

.p-home-contact__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 50px;
}

.p-home-contact__wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.p-home-contact__icon {
  display: inline-block;
  width: 60px;
  height: 60px;
}

.p-home-contact__title {
  margin: 8px 0 25px;
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
}

.p-home-contact__btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 250px;
  height: 50px;
  gap: 10px;
  border-radius: var(--round);
  background-color: var(--c-base);
  color: #fff;
  font-weight: 600;
}

.p-home-contact__btn::before {
  content: "";
}

.p-home-contact__btn.--tel {
  font-size: 2rem;
  font-family: var(--f-en);
}

.p-home-contact__btn.--tel::before {
  width: 20px;
  height: 20px;
  background: url(../img/common/icon-tel.svg) no-repeat center/contain;
}

.p-home-contact__btn.--line {
  font-size: 1.4rem;
  font-family: var(--f-mincho);
}

.p-home-contact__btn.--line::before {
  width: 25px;
  height: 25px;
  background: url(../img/common/icon-line.svg) no-repeat center/contain;
}

.p-home-contact__btn.--line .arrow {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: var(--round-half);
  background-color: #fff;
}

.p-home-contact__btn.--line .arrow::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  background: url(../img/common/icon-arrow.svg) no-repeat center/contain;
  content: "";
}

.p-home-contact__btn[disabled] {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
}

.p-home-contact__btn[disabled]::before {
  opacity: 0.7;
}

.p-home-contact__btn .ms {
  position: absolute;
  top: -10px;
  right: 0;
  left: 0;
  width: 100%;
  max-width: 160px;
  margin: auto;
  padding: 3px;
  border: solid 1px var(--c-base);
  border-radius: var(--round);
  background-color: #fff;
  color: var(--c-base);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  font-family: var(--f-base);
  text-align: center;
}

/* ------------------------------------- */

/* utility
/* ------------------------------------- */

.u-ib {
  display: inline-block;
}

.u-caution {
  color: var(--c-accent);
}

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

.u-db-lg-max {
  display: none;
}

.u-db-md-max {
  display: none;
}

.u-db-sm-max {
  display: none;
}

@media screen and (min-width: 769px) {
  .c-title01.--left .c-title01__en,
  .c-title01.--left .c-title01__jp {
    text-align: left;
  }

  .l-footer__logo {
    grid-row: 1/2;
    grid-column: 1/2;
  }

  .l-footer__address {
    grid-row: 2/3;
    grid-column: 1/2;
  }

  .l-footer__wrapper {
    grid-row: 3/4;
    grid-column: 1/2;
  }

  .l-footer__sns {
    grid-row: 4/5;
    grid-column: 1/2;
  }

  .l-footer__nav {
    grid-row: 1/5;
    grid-column: 2/3;
    place-content: flex-start;
  }

  .p-home-intro__txt {
    grid-column: 1/2;
  }

  .p-home-intro__img {
    grid-row: 1/3;
    grid-column: 2/3;
  }

  .p-home-features__txt {
    text-align: center;
  }

  .p-home-features__list-item:not(.--accordion) .p-home-features__list-img {
    grid-row: 1/3;
    grid-column: 2/3;
  }

  .p-home-features__list-item {
    grid-template-rows: -webkit-max-content 1fr;
    grid-template-rows: max-content 1fr;
  }

  .p-home-features__list-wrap .p-home-features__list-img {
    grid-row: 1/3;
    grid-column: 1/2;
  }

  .p-home-staff__head {
    grid-template-rows: -webkit-max-content 1fr;
    grid-template-rows: max-content 1fr;
  }

  .p-home-staff__head-img {
    grid-row: 1/3;
    grid-column: 1/2;
  }

  .p-home-staff__head-wrap.--wrap02 .img {
    grid-row: 1/3;
    grid-column: 2/3;
  }

  .p-home-staff__head-wrap.--wrap02 .img img + img {
    margin-top: 15px;
  }

  .p-home-flow__list::before {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 40px;
    width: 1px;
    height: 100%;
    border-left: dashed 1px var(--c-border-30);
    content: "";
  }

  .p-home-flow__list-item + .p-home-flow__list-item {
    margin-top: 30px;
  }

  .p-home-flow__list-wrapper::before {
    -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
    position: absolute;
    top: 0;
    bottom: 0;
    left: -30px;
    width: 40px;
    height: 40px;
    margin: auto;
    background-color: var(--c-bg-03);
    content: "";
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
  }

  .p-home-price-txt {
    text-align: center;
  }

  .p-home-price__option-item:nth-last-child(-n+2) {
    border-bottom: solid 1px var(--c-border-30);
  }

  .p-home-price__others-img {
    grid-row: 1/3;
    grid-column: 1/2;
  }

  .p-home-gallery__instagram-list {
    grid-row: 1/3;
    grid-column: 2/3;
  }

  .p-home-shop__credential-wrapper .wrap:nth-last-child(-n + 2) {
    border: none;
  }

  .p-home-shop__slide {
    grid-column: 1/3;
  }

  .p-home-contact__wrap + .p-home-contact__wrap {
    border-left: solid 1px var(--c-border-30);
  }
}

@media screen and (max-width: 1024px) {
  body {
    font-size: 1.4rem;
  }

  main {
    margin-top: 80px;
  }

  a,
  button,
  select,
  input {
    font-size: 1.4rem;
  }

  .c-lower__title {
    padding: 80px 40px;
  }

  .l-header {
    height: 80px;
  }

  .l-header__inner {
    grid-template-columns: 1fr 50px;
    gap: 0 20px;
  }

  .l-header__logo {
    grid-template-columns: 110px 1fr;
  }

  .l-header__button {
    display: block;
  }

  .l-header__nav {
    -webkit-transition: var(--t-default);
    visibility: hidden;
    z-index: 1;
    position: absolute;
    top: 79px;
    left: 0;
    width: 100%;
    height: calc(100dvh - 79px);
    padding: 20px 40px 100px;
    background-color: var(--c-bg-01);
    opacity: 0;
    transition: var(--t-default);
  }

  .l-header__nav::before {
    z-index: -1;
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/common/pattern-sand.png);
    background-repeat: repeat;
    content: "";
    opacity: 0.05;
  }

  .l-header__nav-reserve {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .l-header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .l-header__nav-link:not(.--icon) {
    position: relative;
    padding: 10px 10px 10px 20px;
  }

  .l-header__nav-link:not(.--icon)::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 10px;
    height: 10px;
    margin: auto;
    background: url(../img/common/icon-arrow.svg) no-repeat center/contain;
    content: "";
  }

  .l-header__nav-link.--icon {
    margin: 10px 0 0;
  }

  .p-home-mv .splide__pagination {
    right: -32px;
  }

  .p-home-intro::after {
    width: 400px;
  }

  .p-home-staff__head {
    gap: 30px;
  }

  .p-home-price__tab-panel .wrap {
    padding: 40px 20px;
  }

  .p-home-price__tab-panel.--col {
    padding: 40px;
  }

  .p-home-price__tab-panel.--col .p-home-price__tab-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .p-home-shop__inner {
    padding-top: 80px;
  }

  .p-home-shop__credential-wrapper {
    gap: 0 20px;
  }

  .p-home-shop__slide {
    margin-top: 80px;
  }

  .p-home-shop__slide .splide__track {
    padding-bottom: 80px;
  }

  .p-home-shop__slide .splide__slide:nth-child(even) {
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
  }

  .u-db-lg-max {
    display: block;
  }

  .u-dn-lg-max {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  section {
    padding: 80px 0;
  }

  .c-breadcrumb {
    padding: 15px 20px 0;
  }

  .c-breadcrumb__list {
    padding-bottom: 10px;
    overflow-x: scroll;
    gap: 10px;
  }

  .c-breadcrumb__list::-webkit-scrollbar {
    height: 3px;
  }

  .c-breadcrumb__list::-webkit-scrollbar-thumb {
    background-color: rgba(var(--c-base-rgb), 0.2);
  }

  .c-breadcrumb__item:not(:last-of-type) {
    padding-right: 15px;
  }

  .c-breadcrumb__link {
    font-size: 1.2rem;
  }

  .c-fixNav {
    display: grid;
  }

  .c-lower__title {
    padding: 64px 20px;
  }

  .c-lower__title::after {
    width: 198px;
    height: 176px;
  }

  .c-lower__title-en {
    font-size: 4rem;
  }

  .c-lower__title-jp {
    font-size: 1.4rem;
  }

  .c-modal__contents-wrapper {
    padding: 30px 20px;
  }

  .c-modal__contents-title {
    font-size: 1.8rem;
  }

  .c-modal__contents-wrap {
    margin-top: 50px;
  }

  .c-modal__contents-wrap .title {
    margin-bottom: 6px;
    font-size: 1.6rem;
  }

  .c-modal__contents-list {
    margin: 6px 0;
  }

  .c-pager__list {
    gap: 0;
  }

  .c-pager__item {
    width: 40px;
    height: 40px;
  }

  .c-pager__item.--dot {
    width: 20px;
  }

  .c-pager__number {
    font-size: 1.6rem;
  }

  .c-pager__dot {
    font-size: 1.6rem;
  }

  .c-pageTop {
    right: 20px;
    bottom: 90px;
  }

  .c-title01 {
    margin-bottom: 40px;
  }

  .c-title01.--small .c-title01__en {
    font-size: 2.8rem;
  }

  .c-title01.--small .c-title01__jp {
    font-size: 1.4rem;
  }

  .c-title01.--row {
    gap: 10px;
  }

  .c-title01__en {
    font-size: 4rem;
  }

  .c-title01__jp {
    font-size: 1.4rem;
  }

  .l-footer {
    padding-bottom: 60px;
  }

  .l-footer__inner {
    grid-template-columns: 1fr;
  }

  .l-footer__logo {
    max-width: 205px;
    margin: 0 auto 35px;
  }

  .l-footer__wrapper {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .l-footer__wrap {
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .l-footer__sns {
    grid-row: 5/6;
    margin-top: 50px;
  }

  .l-footer__nav {
    width: 100%;
    max-width: 100%;
    margin: 50px auto 0;
  }

  .l-footer__nav-item a {
    position: relative;
    padding: 10px 10px 10px 20px;
  }

  .l-footer__nav-item a::before {
    -webkit-mask: url(../img/common/icon-arrow.svg) no-repeat center/contain;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 10px;
    height: 10px;
    margin: auto;
    background-color: #fff;
    content: "";
    mask: url(../img/common/icon-arrow.svg) no-repeat center/contain;
  }

  .l-footer__copyright {
    padding: 16px;
    font-size: 1.2rem;
  }

  .p-news-archive {
    padding: 60px 0 80px;
  }

  .p-news-archive__category-btn {
    font-size: 1.2rem;
  }

  .p-news-archive__list {
    margin-top: 50px;
    padding: 0;
  }

  .p-news-archive__list-link {
    padding: 20px 0;
  }

  .p-news-archive__list-category {
    font-size: 1.2rem;
  }

  .p-news-archive__list-date {
    font-size: 1.2rem;
  }

  .p-news-article {
    padding: 70px 0 80px;
  }

  .p-news-article__head-category {
    font-size: 1.2rem;
  }

  .p-news-article__head-date {
    font-size: 1.2rem;
  }

  .p-news-article__head-title {
    font-size: 2.4rem;
  }

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

  .p-news-article__pager-link.--prev {
    margin-bottom: 40px;
  }

  .p-news-article__pager-link.--next {
    margin-bottom: 40px;
    border-left: solid 1px var(--c-border-30);
  }

  .p-news-article__pager-link.--back {
    grid-row: 2/3;
    grid-column: 1/3;
    padding: 20px;
    border: none;
    background-color: var(--c-base);
    color: #fff;
  }

  .p-404-container {
    padding: 80px 0;
  }

  .p-404-container__title {
    font-size: 2rem;
    text-align: left;
  }

  .p-404-container__txt {
    text-align: left;
  }

  .p-home-mv__inner {
    padding: 0 20px;
  }

  .p-home-mv__wrap {
    bottom: 65px;
    padding: 0 40px;
  }

  .p-home-mv__title {
    font-size: 4.2rem;
  }

  .p-home-mv__txt {
    font-size: 1.6rem;
  }

  .p-home-mv__news {
    grid-template-columns: 35px 1fr;
    padding: 15px;
    gap: 15px;
  }

  .p-home-mv__news-title {
    font-size: 1.4rem;
  }

  .p-home-mv__news-link {
    gap: 15px;
  }

  .p-home-mv__news-date {
    font-size: 1rem;
  }

  .p-home-mv__news-txt {
    font-size: 1.2rem;
  }

  .p-home-mv__news-btn {
    display: none;
  }

  .p-home-mv .splide__pagination {
    right: -20px;
  }

  .p-home-mv .splide__pagination__page {
    width: 8px;
    height: 8px;
    margin: 6px;
  }

  .p-home-intro {
    padding: 80px 0;
  }

  .p-home-intro::after {
    width: 88%;
  }

  .p-home-intro__wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .p-home-intro__title {
    font-size: 2.8rem;
  }

  .p-home-intro__img {
    margin: 20px 20px 0;
    padding: 0 60px 40px 0;
  }

  .p-home-intro__img .img02 {
    width: 44%;
  }

  .p-home-features__list-item {
    margin-top: 70px;
  }

  .p-home-features__list-item:not(.--accordion) {
    grid-template-columns: 1fr;
  }

  .p-home-features__list-title {
    gap: 8px;
  }

  .p-home-features__list-title .num {
    font-size: 1.4rem;
  }

  .p-home-features__list-title .title {
    font-size: 2rem;
  }

  .p-home-features__list-btn {
    padding: 24px 30px 24px 0;
  }

  .p-home-features__list-wrap {
    grid-template-columns: 1fr;
  }

  .p-home-staff__wrapper + .p-home-staff__wrapper {
    margin-top: 80px;
  }

  .p-home-staff__head {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .p-home-staff__head-wrap.--wrap02 {
    grid-template-columns: 1fr;
  }

  .p-home-staff__head-wrap.--wrap02 .img {
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    padding: 0 25px;
    gap: 16px;
  }

  .p-home-staff__title {
    font-size: 1.8rem;
  }

  .p-home-flow::before {
    width: 156px;
    height: 210px;
  }

  .p-home-flow .l-inner {
    padding: 0 40px;
  }

  .p-home-flow__list {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding: 40px 0 30px !important;
  }

  .p-home-flow__list-item {
    position: relative;
    grid-template-columns: 1fr;
    height: auto;
  }

  .p-home-flow__list-step {
    z-index: 1;
    position: absolute;
    top: -40px;
    right: 0;
    left: 0;
    margin: auto;
  }

  .p-home-flow__list-wrapper {
    height: 100%;
    padding: 40px 20px 30px;
  }

  .p-home-flow__list-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .p-home-price__list {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 15px;
  }

  .p-home-price__list-item {
    grid-template-columns: 80px 1fr;
  }

  .p-home-price__list-item .txt {
    font-size: 1.2rem;
  }

  .p-home-price__caution {
    margin-top: 15px;
    padding: 20px;
  }

  .p-home-price__caution-item {
    font-size: 1.2rem;
  }

  .p-home-price__caution-item::before {
    font-size: 1.2rem;
  }

  .p-home-price__wrapper {
    margin-top: 80px;
  }

  .p-home-price__wrapper-head {
    margin-bottom: 20px;
    gap: 20px;
  }

  .p-home-price__tab-btn {
    grid-template-columns: repeat(4, 1fr);
    margin: 30px 0;
    gap: 10px;
  }

  .p-home-price__tab-panel {
    grid-template-columns: 1fr;
  }

  .p-home-price__tab-panel .wrap {
    margin-top: -14px;
    padding: 0 20px 40px;
  }

  .p-home-price__tab-detail {
    margin-top: 15px;
  }

  .p-home-price__tab-detail dt {
    font-size: 1.4rem;
  }

  .p-home-price__tab-panel.--col {
    padding: 40px 20px;
  }

  .p-home-price__tab-panel.--col .p-home-price__tab-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .p-home-price__option-list {
    grid-template-columns: 1fr;
  }

  .p-home-price__option-item:last-of-type {
    border-bottom: solid 1px var(--c-border-30);
  }

  .p-home-price__wrapper-title {
    font-size: 1.6rem;
  }

  .p-home-price__other-wrapper {
    grid-template-columns: 1fr;
  }

  .p-home-price__other-wrap .wrap + .wrap {
    margin-top: 30px;
  }

  .p-home-price__other-wrap .title {
    font-size: 1.4rem;
  }

  .p-home-price__other-wrap .txt {
    font-size: 1.2rem;
  }


  .p-home-gallery__list {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 100px;
    gap: 10px;
  }

  .p-home-gallery__list li.col4 {
    grid-column: 1 / 3;
  }

  .p-home-gallery__instagram {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 20px;
  }

  .p-home-gallery__instagram-list:not(.--empty) {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .p-home-gallery__instagram-list {
    margin-top: 20px;
  }

  .p-home-faq__wrap-question {
    grid-template-columns: 20px 1fr;
    padding: 15px 20px 0;
  }

  .p-home-faq__wrap-question .q {
    font-size: 2.4rem;
  }

  .p-home-faq__wrap-answer {
    grid-template-columns: 20px 1fr;
    padding: 0 20px 15px;
  }

  .p-home-faq__wrap-answer .a {
    font-size: 2.4rem;
  }

  .p-home-faq__wrap-answer + .p-home-faq__wrap-question {
    margin-top: 10px;
  }

  .p-home-shop .c-title01 {
    margin-bottom: 40px;
  }

  .p-home-shop {
    display: block;
    padding-top: 80px;
  }

  .p-home-shop__inner {
    padding-top: 0;
  }

  .p-home-shop__img {
    width: 100vw;
    margin: 0 calc(50% - 50vw) 50px;
  }

  .p-home-shop__name {
    font-size: 2rem;
  }

  .p-home-shop__name .kana {
    font-size: 1.4rem;
  }

  .p-home-shop__slide {
    margin-top: 60px;
  }

  .p-home-shop__credential-wrapper {
    padding-top: 30px;
  }

  .p-home-shop__credential-wrapper {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .p-home-shop__credential-wrapper dt,
  .p-home-shop__credential-wrapper dd {
    font-size: 1.2rem;
  }

  .p-home-shop__credential-wrapper .wrap:last-of-type {
    border: none;
  }

  .p-home-contact::before {
    right: -70px;
    width: 180px;
    height: 225px;
  }

  .p-home-contact__wrapper {
    grid-template-columns: 1fr;
    margin-top: 30px;
    gap: 35px;
  }

  .u-db-md-max {
    display: block;
  }

  .u-dn-md-max {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .u-db-sm-max {
    display: block;
  }

  .u-dn-sm-max {
    display: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  .c-btn01:hover .c-btn01__txt .letter {
    -webkit-animation: btnTxt 0.25s var(--transition-default) forwards;
    animation: btnTxt 0.25s var(--transition-default) forwards;
  }

  .c-btn01:hover .c-btn01__arrow::before {
    -webkit-transform: translateX(45px);
    transform: translateX(45px);
  }

  .c-btn01:hover .c-btn01__arrow::after {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .c-pager__arrow:hover {
    opacity: 1;
  }

  .c-pager__number:hover {
    background-color: var(--c-bg-03);
  }

  .l-header__nav-link:hover {
    opacity: 0.5;
  }

  .p-news-archive__category-btn:hover {
    background-color: #f3f3f3;
  }

  .p-news-archive__list-link:hover {
    background-color: rgba(var(--c-base-rgb), 0.05);
  }

  .p-news-article__pager-link:hover .arrow {
    background-color: #DBCBB8;
  }

  .p-404-container__btn:hover {
    background-color: var(--c-hover);
  }

  .p-home-mv__news-btn:hover {
    background-color: var(--c-hover);
  }

  .p-home-flow__list-wrap .wrap-btn {
    pointer-events: none;
  }

  .p-home-price__tab-btn button:hover {
    opacity: 0.8;
  }

  .p-home-contact__btn:hover {
    background-color: var(--c-hover);
  }

  .p-home-contact__btn.--tel {
    pointer-events: none;
  }
}