@charset "UTF-8";
*, ::before, ::after {
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header, footer, nav, section, article, main, aside, figure, figcaption {
  display: block;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

li::marker {
  content: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  font: inherit;
  cursor: pointer;
}

input,
select,
textarea {
  color: inherit;
  font: inherit;
  vertical-align: top;
}

span {
  font-weight: inherit;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  background: #F9F8F6;
  color: #333;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho", "MS PMincho", "Noto Serif JP", serif;
  letter-spacing: 0;
}
body.is-fixed {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

.l-sectionInner {
  max-width: 600px;
  margin-inline: auto;
  padding-inline: 30px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .l-sectionInner {
    max-width: 1440px;
    padding-inline: 60px;
  }
}
@media screen and (min-width: 1100px) {
  .l-sectionInner {
    padding-inline: 120px;
  }
}
.l-sectionInner--narrow {
  max-width: 600px;
  margin-inline: auto;
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .l-sectionInner--narrow {
    max-width: 1440px;
    padding-inline: 60px;
  }
}
@media screen and (min-width: 1100px) {
  .l-sectionInner--narrow {
    padding-inline: 120px;
  }
}
@media screen and (min-width: 1300px) {
  .l-sectionInner--narrow {
    padding-inline: 180px;
  }
}

.l-header {
  z-index: 10;
  position: fixed;
  top: 20px;
  left: 50%;
  width: 100%;
  max-width: 600px;
  height: 32px;
  transform: translate(-50%);
}
@media screen and (min-width: 768px) {
  .l-header {
    top: 48px;
    max-width: 1440px;
    height: 70px;
  }
}

.l-headerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .l-headerInner {
    padding-inline: 49px;
  }
}

.c-accordion {
  display: flex;
  flex-direction: column;
  padding-bottom: 3px;
  gap: 20px;
}
.c-accordion summary {
  display: block;
}
.c-accordion summary::-webkit-details-marker {
  display: none;
}

.c-accordion__inner {
  position: relative;
  background: #D4CEBE;
  color: #CA7F13;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-accordion__inner:hover {
    opacity: 1;
  }
}

.c-accordion__head {
  padding: 15px;
  cursor: pointer;
  transition: padding 0.3s;
}
@media screen and (min-width: 768px) {
  .c-accordion__head {
    padding: 30px 35px 30px 20px;
  }
}

@media screen and (min-width: 768px) {
  .c-accordion__inner.is-opened .c-accordion__head {
    padding: 30px 35px 0px 20px;
  }
}

.c-accordion__headWrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .c-accordion__headWrapper {
    gap: 20px;
  }
}

.c-accordion__headIcon {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .c-accordion__headIcon {
    font-size: 24px;
  }
}

.c-accordion__headText {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .c-accordion__headText {
    font-size: 18px;
  }
}

.c-accordion__headButton {
  width: 0;
  height: 0;
  margin-top: 16px;
  margin-left: auto;
  transform: rotate(180deg);
  border-right: 6px solid transparent;
  border-bottom: 10.4px solid #54372D;
  border-left: 6px solid transparent;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-accordion__headButton {
    margin-top: 0;
  }
}

.c-accordion__inner.is-opened .c-accordion__headButton {
  transform: rotate(0deg);
}

.c-accordion__bodyWrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px 20px 20px 15px;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .c-accordion__bodyWrapper {
    align-items: center;
    padding: 15px 20px 30px;
    gap: 20px;
  }
}

.c-accordion__bodyIcon {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .c-accordion__bodyIcon {
    font-size: 24px;
  }
}

.c-accordion__bodyText {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .c-accordion__bodyText {
    font-size: 18px;
  }
}

.c-button {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: capitalize;
  opacity: 1;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .c-button:hover {
    opacity: 0.7;
  }
}
.c-button--header {
  position: relative;
  padding: 10px 48px;
  border-radius: 40px;
  background: #949E33;
  color: #fff;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .c-button--header {
    padding: 10px 50px;
  }
}
@media screen and (min-width: 1100px) {
  .c-button--header {
    padding: 10px 67px;
  }
}
.c-button--header i {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
.c-button--primary {
  position: relative;
  padding: 10px 48px;
  border-radius: 40px;
  background: #949E33;
  color: #fff;
  font-size: 20px;
}
.c-button--primary i {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
.c-button--secondary {
  padding: 5px 30px;
  border-radius: 40px;
  background: #949E33;
  color: #fff;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .c-button--secondary {
    padding: 10px 44px;
    font-size: 16px;
  }
}
.c-button--small {
  padding: 3px 33px;
  border-radius: 20px;
  background: #949E33;
  color: #fff;
}
.c-button--outline {
  position: relative;
  font-size: 18px;
  line-height: 2;
}
.c-button--outline::after {
  display: block;
  position: absolute;
  bottom: 5px;
  left: -5px;
  width: 125px;
  height: 7px;
  transform: skew(45deg);
  border-right: 2px solid #54372D;
  border-bottom: 2px solid #54372D;
  content: "";
}

.c-errorPage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 20px;
  text-align: center;
}
.c-errorPage__inner {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.c-errorPage__title {
  margin-bottom: 24px;
  font-weight: bold;
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .c-errorPage__title {
    font-size: 32px;
  }
}
.c-errorPage__message {
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .c-errorPage__message {
    font-size: 18px;
  }
}
.c-errorPage__link {
  color: blue;
  font-size: 16px;
  text-decoration: underline;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .c-errorPage__link:hover {
    opacity: 0.7;
  }
}

.wpcf7-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .wpcf7-form {
    width: 100%;
    max-width: 1000px;
    margin-top: 85px;
    margin-inline: auto;
  }
}

.Form-Item {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .Form-Item {
    flex-direction: row;
    gap: 0;
  }
}

.form-field__head {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .form-field__head {
    flex: 1.5;
    align-items: center;
    width: 100%;
  }
}
@media screen and (min-width: 1100px) {
  .form-field__head {
    flex: 3.7;
  }
}

.Form-Item-Label {
  letter-spacing: 0.1em;
}

.Form-Item-Label-Required {
  display: inline-block;
  flex-shrink: 0;
  height: -moz-fit-content;
  height: fit-content;
  padding: 4px 17px;
  border-radius: 15px;
  background: #54372D;
  color: #FFF;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.Form-Item-Label-Required--not {
  background: #D4CEBE;
  color: #333;
}

@media screen and (min-width: 768px) {
  .form-wrap__fontAwesome,
  .form-checkbox_label,
  .form-checkbox_labelWrap,
  .wpcf7-form-control-wrap {
    flex: 1.5;
  }
}
@media screen and (min-width: 1100px) {
  .form-wrap__fontAwesome,
  .form-checkbox_label,
  .form-checkbox_labelWrap,
  .wpcf7-form-control-wrap {
    flex: 6;
  }
}

.wpcf7-text,
.wpcf7-textarea {
  width: 100%;
  padding: 11px;
  border: 1px solid transparent;
  background: #fff;
}
.wpcf7-text:hover, .wpcf7-text:focus,
.wpcf7-textarea:hover,
.wpcf7-textarea:focus {
  border-color: #CA7F13;
  outline: none;
}
.wpcf7-text.is-error,
.wpcf7-textarea.is-error {
  border-color: red;
  background-color: pink;
}

@media screen and (min-width: 768px) {
  .custom-shortInput input {
    width: 300px;
  }
}

.wpcf7-textarea {
  height: 200px;
}
@media screen and (min-width: 768px) {
  .wpcf7-textarea {
    height: 200px;
  }
}
@media screen and (min-width: 1100px) {
  .wpcf7-textarea {
    height: 120px;
  }
}

.wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  margin-top: 13px;
  padding-bottom: 6px;
  gap: 20px 10px;
}
@media screen and (min-width: 768px) {
  .wpcf7-checkbox {
    padding-bottom: 10px;
    gap: 20px 60px;
  }
}
@media screen and (min-width: 1100px) {
  .wpcf7-checkbox .wpcf7-list-item {
    width: 255px;
  }
}
.wpcf7-checkbox input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  white-space: nowrap;
  clip-path: inset(50%);
}
.wpcf7-checkbox input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.wpcf7-checkbox input:checked + .wpcf7-list-item-label::before {
  border: 1px solid #CA7F13;
}
.wpcf7-checkbox .wpcf7-list-item-label {
  position: relative;
  padding-left: 43px;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .wpcf7-checkbox .wpcf7-list-item-label:hover {
    opacity: 0.7;
  }
}
.wpcf7-checkbox .wpcf7-list-item-label::before,
.wpcf7-checkbox .wpcf7-list-item-label::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
}
.wpcf7-checkbox .wpcf7-list-item-label::before {
  left: 0;
  width: 30px;
  height: 30px;
  border: none;
  border: 1px solid transparent;
  background: #FFF;
}
.wpcf7-checkbox .wpcf7-list-item-label::after {
  top: calc(50% - 9px);
  left: 10px;
  width: 8px;
  height: 16px;
  transform: rotate(45deg);
  border: 1px solid #CA7F13;
  border-width: 0 3px 3px 0;
  content: "";
  opacity: 0;
}

.form-checkbox_label {
  font-size: 14px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .form-checkbox_label {
    display: flex;
    align-items: baseline;
    gap: 20px;
  }
}
.form-checkbox_label--2 {
  margin-top: 19px;
}
@media screen and (min-width: 768px) {
  .form-checkbox_label--2 {
    margin-top: 0px;
  }
}
.form-checkbox_label--selectInquiry .wpcf7-checkbox {
  flex-direction: column;
  margin-top: 0;
}
@media screen and (min-width: 1100px) {
  .form-checkbox_label--selectInquiry .wpcf7-checkbox {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 20px;
  }
}
@media screen and (min-width: 1100px) {
  .form-checkbox_label--date .wpcf7-list-item {
    width: 135px;
  }
}

.custom-date {
  width: 100%;
  padding: 12px;
  border: 1px solid #F9F8F6;
  background-image: linear-gradient(to left, #CA7F13 50px, #fff 50px);
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .custom-date {
    width: 300px;
  }
}
.custom-date:hover, .custom-date:focus {
  border-color: #CA7F13;
  outline: none;
}

.form-wrap__fontAwesome {
  position: relative;
}
.form-wrap__fontAwesome i {
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
  background-color: #CA7F13;
  color: #fff;
  font-size: 25px;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .form-wrap__fontAwesome i {
    right: auto;
    left: 265px;
  }
}

.button-wrap {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .button-wrap {
    margin-top: 10px;
  }
}

.wpcf7-submit {
  border: none;
  cursor: pointer;
}

.c-modal {
  z-index: 100;
  position: fixed;
  max-width: 80%;
  max-height: 80%;
  margin: auto;
  inset: 0;
  overflow: auto;
  overscroll-behavior-y: none;
  border: 1px solid #333;
  border-radius: 5px;
  background: #fff;
}
.c-modal::backdrop {
  background: #000;
  opacity: 0.5;
}

.c-modal__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 20px 50px;
}
@media screen and (min-width: 768px) {
  .c-modal__wrapper {
    padding: 30px 30px 60px;
  }
}

.c-pageTop {
  display: block;
  display: flex;
  z-index: 999;
  position: fixed;
  right: 25px;
  bottom: 25px;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #949E33;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.c-pageTop.is-show {
  opacity: 1;
  pointer-events: auto;
}
@media (any-hover: hover) {
  .c-pageTop.is-show:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .c-pageTop {
    right: 40px;
    bottom: 59px;
    width: 80px;
    height: 80px;
    font-size: 36px;
  }
}

.c-pagination {
  margin-top: 10px;
}
.c-pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .c-pagination .nav-links {
    gap: 24px;
  }
}
.c-pagination .page-numbers {
  color: #CA7F13;
  font-size: 16px;
  font-family: "Marcellus", serif;
  letter-spacing: 0.1em;
  opacity: 1;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .c-pagination .page-numbers:hover {
    opacity: 0.7;
  }
}
.c-pagination .page-numbers.current {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .c-pagination .page-numbers {
    font-size: 32px;
  }
}
.c-pagination i {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .c-pagination i {
    font-size: 20px;
  }
}

.c-postCard {
  display: block;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #54372D;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.c-postCard__data {
  font-weight: bold;
  font-weight: bold;
  font-size: 14px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
}

.c-postCard__text {
  margin-top: 8px;
  font-weight: bold;
  font-size: 18px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
}

.c-postCard__category {
  margin-top: 13px;
  font-size: 14px;
  font-family: "Marcellus", serif;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .c-postCard__category {
    text-transform: capitalize;
  }
}

.c-sectionTitle {
  display: flex;
  position: relative;
  flex-direction: column;
  color: #CA7F13;
  letter-spacing: 0.04em;
}
.c-sectionTitle--center {
  text-align: center;
}
.c-sectionTitle--hasBg {
  padding-top: 60px;
}

.c-sectionTitle__en {
  font-size: 48px;
  line-height: 1.25;
  font-family: "Marcellus", serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .c-sectionTitle__en {
    font-size: 84px;
  }
}
.c-sectionTitle__en--capitalize {
  text-transform: capitalize;
}
.c-sectionTitle__en--small {
  font-size: 32px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .c-sectionTitle__en--small {
    font-size: 80px;
  }
}
.c-sectionTitle__en--smallMore {
  font-size: 24px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .c-sectionTitle__en--smallMore {
    font-size: 48px;
  }
}
.c-sectionTitle__en--footer {
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .c-sectionTitle__en--footer {
    font-size: 80px;
  }
}
.c-sectionTitle__en--footerSns {
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .c-sectionTitle__en--footerSns {
    font-size: 74px;
  }
}

.c-sectionTitle__enBg {
  z-index: -10;
  position: absolute;
  bottom: -5px;
  left: 55px;
  color: rgba(202, 127, 19, 0.0784313725);
  font-size: 72px;
  line-height: 1.4;
  font-family: "Parisienne", cursive;
  text-transform: capitalize;
  text-wrap: nowrap;
}
@media screen and (min-width: 768px) {
  .c-sectionTitle__enBg {
    left: 90px;
    font-size: 120px;
  }
}
.c-sectionTitle__enBg--zIndex0 {
  z-index: 0;
}
.c-sectionTitle__enBg--center {
  left: 50%;
  transform: translateX(-50%);
}

.c-sectionTitle__jp {
  font-size: 12px;
  line-height: 0.67;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .c-sectionTitle__jp {
    font-size: 14px;
  }
}
.c-sectionTitle__jp--center {
  text-align: center;
}
.c-sectionTitle__jp--footer {
  margin-top: 3px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .c-sectionTitle__jp--footer {
    margin-top: 5px;
    font-size: 16px;
  }
}

.c-slider {
  overflow: hidden;
}
.c-slider__wrap {
  display: flex;
  animation: marquee 7s linear infinite;
}
.c-slider__item {
  flex: 0 0 auto;
  width: 250px;
  margin-right: 24px;
}
.c-slider__item img {
  width: 100%;
  height: auto;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.c-tabs__list {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 8px;
}
.c-tabs__list:has(#tab-1 > input:checked) ~ #tab-1__content, .c-tabs__list:has(#tab-2 > input:checked) ~ #tab-2__content, .c-tabs__list:has(#tab-3 > input:checked) ~ #tab-3__content {
  position: static;
  height: auto;
  overflow: visible;
}

.c-tabs__item {
  position: relative;
  flex-grow: 1;
  flex-basis: 50%;
  max-width: 200px;
  height: 50px;
  overflow: hidden;
  background-color: #FFF;
  color: black;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.c-tabs__item:hover, .c-tabs__item:has(input:focus) {
  background-color: #eee;
}
.c-tabs__item:has(input:checked), .c-tabs__item:has(input:focus:checked) {
  background-color: black;
  color: #fff;
}

.c-tabs input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(50%) !important;
}

.c-tabs__content {
  position: absolute;
  height: 0;
  overflow: hidden;
}

.c-drawerButton {
  z-index: 20;
  position: relative;
  width: 100px;
  height: 30px;
  border-radius: 40px;
  background: #949E33;
  opacity: 1;
  transition: width 0.3s, opacity 0.3s;
}
@media (any-hover: hover) {
  .c-drawerButton:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .c-drawerButton {
    display: none;
  }
}
.c-drawerButton.is-checked {
  width: 30px;
}
.c-drawerButton.is-checked .c-drawerButton__bar:nth-of-type(2) {
  top: calc(50% + 4px);
  left: calc(50% - 2px);
  transform: rotate(45deg) translate(-50%, -50%);
}
.c-drawerButton.is-checked .c-drawerButton__bar:nth-of-type(3) {
  display: none;
}
.c-drawerButton.is-checked .c-drawerButton__bar:nth-of-type(4) {
  top: calc(50% - 4px);
  left: calc(50% - 1px);
  transform: rotate(-45deg) translate(-50%, -50%);
}
.c-drawerButton.is-checked .c-drawerButton__label {
  display: none;
}
.c-drawerButton__label {
  padding-right: 20px;
  color: #FFF;
  font-size: 14px;
}
.c-drawerButton__bar {
  position: absolute;
  left: 80px;
  width: 12px;
  height: 1px;
  border-radius: 5px;
  background: #fff;
  transition: all 0.3s;
}
.c-drawerButton__bar:nth-of-type(2) {
  top: 10px;
}
.c-drawerButton__bar:nth-of-type(3) {
  top: 15px;
}
.c-drawerButton__bar:nth-of-type(4) {
  top: 20px;
}

.c-drawerNav {
  display: none;
  z-index: 10;
  position: fixed;
  top: -20px;
  left: 50%;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  transform: translate(-50%);
  background: #D4CEBE;
}
.c-drawerNav__list {
  display: flex;
  flex-direction: column;
  margin-top: 143px;
  margin-left: 60px;
  gap: 12px;
}
.c-drawerNav__link {
  display: block;
  color: #CA7F13;
  font-size: 24px;
  line-height: 1.25;
  font-family: "Marcellus", serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 1;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .c-drawerNav__link:hover {
    opacity: 0.7;
  }
}

.c-globalNav {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-globalNav {
    display: block;
  }
}
.c-globalNav__logo {
  display: flex;
  z-index: 20;
  align-items: center;
  gap: 8px;
  opacity: 1;
  transition: opacity 0.3s;
}
.c-globalNav__logo img {
  width: 32px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .c-globalNav__logo img {
    width: 64px;
  }
}
.c-globalNav__logo span {
  display: none;
  color: #54372D;
  font-size: 22px;
  line-height: 1.25;
  font-family: "Marcellus", serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .c-globalNav__logo span {
    display: block;
  }
}
@media screen and (min-width: 1100px) {
  .c-globalNav__logo span {
    font-size: 28px;
  }
}
@media (any-hover: hover) {
  .c-globalNav__logo:hover {
    opacity: 0.7;
  }
}
.c-globalNav__list {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 1100px) {
  .c-globalNav__list {
    gap: 32px;
  }
}
.c-globalNav__link {
  display: block;
  color: #54372D;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: capitalize;
  opacity: 1;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .c-globalNav__link:hover {
    opacity: 0.7;
  }
}

.p-concept {
  margin-top: 120px;
}
@media screen and (min-width: 768px) {
  .p-concept {
    margin-top: 200px;
  }
}

.p-concept__top {
  display: flex;
  flex-direction: column-reverse;
  gap: 70px;
}
@media screen and (min-width: 768px) {
  .p-concept__top {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-concept__topHead {
    padding-top: 60px;
  }
}

.p-concept__topText {
  margin-top: 45px;
  padding-left: 10px;
  color: #CA7F13;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-concept__topText {
    margin-top: 25px;
    margin-right: -300px;
    padding-left: 0;
    font-size: 28px;
  }
}

@media screen and (min-width: 768px) {
  .p-concept__topImg {
    z-index: -1;
    margin-left: -66px;
  }
}
.p-concept__topImg img {
  width: 100%;
  height: auto;
}

.p-concept__bottom {
  display: flex;
  flex-direction: column;
  margin-top: -250px;
  gap: 38px;
}
@media screen and (min-width: 768px) {
  .p-concept__bottom {
    flex-direction: row;
    margin-top: 80px;
    gap: 60px;
  }
}

.p-concept__bottomImg {
  z-index: -1;
  width: 100%;
  max-width: 108px;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-concept__bottomImg {
    min-width: 250px;
    max-width: 540px;
  }
}
.p-concept__bottomImg img {
  width: 100%;
  height: auto;
}

.p-concept__text {
  color: #54372D;
  line-height: 2;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-concept__text {
    font-size: 18px;
  }
}
@media screen and (min-width: 1100px) {
  .p-concept__text {
    word-break: keep-all;
  }
}

.p-concept__button {
  margin-top: 12px;
  margin-right: 18px;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-concept__button {
    margin-top: 5px;
  }
}

.p-feature {
  margin-top: 115px;
  padding-top: 60px;
  padding-bottom: 55px;
  overflow-x: hidden;
  background: #464646;
}
@media screen and (min-width: 768px) {
  .p-feature {
    margin-top: 195px;
    padding-top: 100px;
    padding-bottom: 47px;
  }
}

@media screen and (min-width: 768px) {
  .p-feature__inner {
    display: flex;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    gap: 20px;
  }
}
@media screen and (min-width: 1100px) {
  .p-feature__inner {
    gap: 40px;
  }
}
@media screen and (min-width: 1300px) {
  .p-feature__inner {
    width: 100%;
    max-width: 1306px;
    gap: 100px;
  }
}

.p-feature__sectionTitle {
  z-index: 5;
}

.p-feature__titles {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-feature__titles {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}
@media screen and (min-width: 1100px) {
  .p-feature__titles {
    padding-bottom: 60px;
    gap: 40px;
  }
}
@media screen and (min-width: 1300px) {
  .p-feature__titles {
    gap: 55px;
  }
}

@media screen and (min-width: 768px) {
  .p-feature__title {
    display: flex;
    width: 200px;
    color: #CA7F13;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    opacity: 0.5;
    transition: opacity 0.3s ease;
  }
}
@media screen and (min-width: 1100px) {
  .p-feature__title {
    width: -moz-fit-content;
    width: fit-content;
    text-wrap: nowrap;
  }
}
.p-feature__title span {
  display: inline-block;
  width: 50px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-feature__title.is-active {
    opacity: 1;
  }
}

.p-feature__contents {
  width: 100%;
  margin-top: -30px;
  overflow: visible;
}

.p-feature__content {
  transform: translateY(20px);
  text-align: center;
  transition: opacity 1.6s ease, transform 1.6s ease;
}
@media screen and (min-width: 768px) {
  .p-feature__content {
    display: flex;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    align-items: center;
    gap: 10px;
    opacity: 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 1300px) {
  .p-feature__content {
    top: -10px;
    left: 10px;
  }
}
@media screen and (min-width: 768px) {
  .p-feature__content.is-active {
    visibility: visible;
    z-index: 1;
    position: relative;
    transform: translateY(0);
    opacity: 1;
  }
}
@media screen and (min-width: 1100px) {
  .p-feature__content {
    gap: 35px;
  }
}

@media screen and (min-width: 768px) {
  .p-feature__contentImg {
    flex: 1;
    max-width: 250px;
  }
}
@media screen and (min-width: 1300px) {
  .p-feature__contentImg {
    flex: none;
    max-width: 450px;
  }
}
.p-feature__contentImg img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-feature__contentMain {
  height: 260px;
  margin-top: 28px;
  color: #CA7F13;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-feature__contentMain {
    display: flex;
    flex: 1.2;
    flex-direction: column;
    justify-content: center;
    max-width: 400px;
    height: 500px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1300px) {
  .p-feature__contentMain {
    flex: none;
    width: -moz-fit-content;
    width: fit-content;
    height: 630px;
    padding-bottom: 30px;
    padding-left: 25px;
  }
}

.p-feature__contentLabel {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 14px;
  font-family: "Marcellus", serif;
  text-transform: uppercase;
}
@media screen and (min-width: 1100px) {
  .p-feature__contentLabel {
    font-size: 18px;
  }
}
.p-feature__contentLabel:before {
  position: absolute;
  top: 50%;
  left: -110px;
  width: 100px;
  height: 1px;
  transform: translateY(-50%);
  background: #CA7F13;
  content: "";
}
@media screen and (min-width: 768px) {
  .p-feature__contentLabel:before {
    display: none;
  }
}
.p-feature__contentLabel:after {
  position: absolute;
  top: 50%;
  right: -110px;
  width: 100px;
  height: 1px;
  transform: translateY(-50%);
  background: #CA7F13;
  content: "";
}
@media screen and (min-width: 768px) {
  .p-feature__contentLabel:after {
    position: absolute;
    top: auto;
    right: auto;
    bottom: -6px;
    left: 50%;
    width: 20px;
    height: 2px;
    transform: translateX(-50%);
    background: #CA7F13;
    content: "";
  }
}
@media screen and (min-width: 1100px) {
  .p-feature__contentLabel:after {
    bottom: -20px;
  }
}

.p-feature__contentHead {
  margin-top: 6px;
  font-size: 18px;
}
@media screen and (min-width: 1100px) {
  .p-feature__contentHead {
    margin-top: 30px;
    font-size: 24px;
  }
}

.p-feature__contentText {
  margin-top: 20px;
  font-size: 14px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  opacity: 0.8;
}
@media screen and (min-width: 1100px) {
  .p-feature__contentText {
    margin-top: 35px;
    font-size: 18px;
  }
}

.p-footer__top {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-footer__top {
    flex-direction: row;
    padding-top: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #CA7F13;
  }
}

.p-footer__link {
  padding: 55px 0 78px;
  border-bottom: 1px solid #CA7F13;
  opacity: 1;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-footer__link:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .p-footer__link {
    flex: 1;
    border-bottom: none;
  }
}
@media screen and (min-width: 1100px) {
  .p-footer__link {
    padding-left: 90px;
  }
}
@media screen and (min-width: 768px) {
  .p-footer__link--salons {
    border-right: 1px solid #CA7F13;
  }
}
@media screen and (min-width: 1100px) {
  .p-footer__link--salons {
    padding-right: 90px;
    padding-left: 0;
  }
}

.p-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 102px;
}
@media screen and (min-width: 768px) {
  .p-footer__bottom {
    margin-top: 120px;
  }
}

.p-footer__logo {
  display: flex;
  align-items: center;
  padding-right: 70px;
  gap: 5px;
  opacity: 1;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-footer__logo:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    padding-right: 0;
  }
}
.p-footer__logo img {
  width: 50px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-footer__logo img {
    width: 64px;
  }
}
.p-footer__logo span {
  color: #54372D;
  font-size: 20px;
  line-height: 1.25;
  font-family: "Marcellus", serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-footer__logo span {
    font-size: 28px;
  }
}

.p-footer__list {
  margin-top: 42px;
}
@media screen and (min-width: 768px) {
  .p-footer__list {
    margin-top: 50px;
  }
}

.p-footer__listHead {
  display: flex;
  row-gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  width: 185px;
  margin-left: 5px;
}
@media screen and (min-width: 768px) {
  .p-footer__listHead {
    flex-wrap: nowrap;
    width: auto;
  }
}

.p-footer__item {
  font-size: 14px;
  line-height: 1.3;
  font-family: "Marcellus", serif;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: capitalize;
  opacity: 1;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-footer__item:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 1100px) {
  .p-footer__item {
    font-size: 20px;
  }
}

.p-footer__item--head:nth-child(1) {
  text-transform: uppercase;
}
.p-footer__item--head:nth-child(2) {
  margin-inline: 10px;
  padding-inline: 10px;
  border-right: 1px solid #54372D;
  border-left: 1px solid #54372D;
}
@media screen and (min-width: 768px) {
  .p-footer__item--head:nth-child(2) {
    margin-inline: 32px;
    padding-inline: 32px;
  }
}
.p-footer__item--head:nth-child(4) {
  margin-right: 12px;
  padding-right: 12px;
  border-right: 1px solid #54372D;
}
@media screen and (min-width: 768px) {
  .p-footer__item--head:nth-child(4) {
    margin-inline: 32px;
    padding-inline: 32px;
    border-left: 1px solid #54372D;
  }
}

.p-footer__listSub {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.p-footer__item--sub:nth-child(1) {
  margin-right: 12px;
  padding-right: 12px;
  border-right: 1px solid #54372D;
}
@media screen and (min-width: 768px) {
  .p-footer__item--sub:nth-child(1) {
    margin-right: 30px;
    padding-right: 30px;
  }
}

.p-footer__copyright {
  display: block;
  margin: 40px auto 8px;
  font-size: 12px;
  line-height: 1.25;
  font-family: "Marcellus", serif;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: capitalize;
}
.p-footer__copyright span {
  text-transform: none;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    margin: 50px auto 32px;
  }
}

.p-form__top {
  margin-top: 77px;
}
@media screen and (min-width: 768px) {
  .p-form__top {
    max-width: 1300px;
    margin-top: 110px;
  }
}

.p-form__head {
  display: flex;
  flex-direction: column;
  padding-bottom: 77px;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .p-form__head {
    padding-bottom: 110px;
    gap: 115px;
  }
}

.p-form__attention {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .p-form__attention {
    flex-direction: row-reverse;
    gap: 40px;
  }
}
@media screen and (min-width: 1100px) {
  .p-form__attention {
    gap: 100px;
  }
}

.p-form__content {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 146px;
  gap: 9px;
  background: #D4CEBE;
}

.p-form__contentText {
  color: #CA7F13;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  letter-spacing: 0.1em;
}

.p-form__contentDownload {
  position: relative;
  padding: 10px 37px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: capitalize;
}

.p-form__contentExplain {
  color: #CA7F13;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-form__contentExplain {
    max-width: 720px;
  }
}

.p-form__contentExplainHead {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-form__contentExplainHead {
    font-size: 32px;
  }
}

.p-form__contentExplainText {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.5;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
}
@media screen and (min-width: 768px) {
  .p-form__contentExplainText {
    margin-top: 42px;
    font-size: 18px;
  }
}

.p-form__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-form__contact {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}

.p-form__tel {
  color: #CA7F13;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-form__tel {
    max-width: 580px;
    padding-right: 20px;
    border-right: 1px solid #CA7F13;
  }
}
@media screen and (min-width: 1300px) {
  .p-form__tel {
    max-width: 625px;
    padding-right: 50px;
  }
}

.p-form__telHead {
  font-size: 24px;
  line-height: 1.3;
  font-family: "Marcellus", serif;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-form__telHead {
    font-size: 48px;
    text-align: left;
  }
}

.p-form__telText {
  margin-top: 13px;
  font-size: 14px;
  line-height: 1.5;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
}
@media screen and (min-width: 768px) {
  .p-form__telText {
    margin-top: 24px;
    font-size: 18px;
  }
}

.p-form__number {
  flex-shrink: 0;
  color: #CA7F13;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-form__number {
    padding-inline: 20px;
  }
}
@media screen and (min-width: 1300px) {
  .p-form__number {
    padding-inline: 80px;
  }
}
.p-form__number a {
  opacity: 1;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-form__number a:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 1100px) {
  .p-form__number a {
    pointer-events: none;
  }
  .p-form__number a:hover {
    opacity: 1 !important;
  }
}

.p-form__numberTel {
  font-style: normal;
  font-size: 24px;
  line-height: 1.3;
  font-family: "Marcellus", serif;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-form__numberTel {
    font-size: 32px;
  }
}

.p-form__numberDate {
  margin-top: 16px;
  padding: 6px 35px;
  border: 1px solid #CA7F13;
  border-radius: 16px;
  font-size: 14px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
}

.p-form__main {
  margin-bottom: 25px;
  padding-top: 55px;
  padding-bottom: 27px;
  background: #EDE9E4;
}
@media screen and (min-width: 768px) {
  .p-form__main {
    margin-bottom: 85px;
    padding-top: 75px;
    padding-bottom: 45px;
  }
}

.p-form__mainHead {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (min-width: 768px) {
  .p-form__mainHead {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (min-width: 1100px) {
  .p-form__mainHead {
    gap: 60px;
  }
}
@media screen and (min-width: 1300px) {
  .p-form__mainHead {
    gap: 96px;
  }
}

.p-form__formExplainHead {
  color: #CA7F13;
  font-size: 32px;
  font-family: "Marcellus", serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-form__formExplainHead {
    font-size: 48px;
  }
}

.p-form__formExplainText {
  margin-top: 6px;
  font-size: 14px;
  line-height: 2;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-form__formExplainText {
    margin-top: 35px;
  }
}

.p-form__steps {
  display: flex;
  flex-shrink: 0;
  gap: 19px;
}
@media screen and (min-width: 1100px) {
  .p-form__steps {
    gap: 27px;
  }
}

.p-form__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 130px;
  gap: 11px;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  color: #707070;
}
@media screen and (min-width: 768px) {
  .p-form__step {
    width: 100px;
    height: 153px;
  }
}
@media screen and (min-width: 1300px) {
  .p-form__step {
    width: 130px;
    height: 183px;
  }
}
.p-form__step span {
  font-size: 14px;
  font-family: "Marcellus", serif;
  letter-spacing: 0.1em;
  text-transform: capitalize;
}
@media screen and (min-width: 1100px) {
  .p-form__step span {
    font-size: 20px;
  }
}
.p-form__step p {
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1100px) {
  .p-form__step p {
    font-size: 20px;
  }
}
@media screen and (min-width: 1300px) {
  .p-form__step p {
    font-size: 24px;
  }
}
.p-form__step.is-now {
  border-top: 1px solid #CA7F13;
  border-bottom: 1px solid #CA7F13;
  color: #CA7F13;
}

.p-form__note {
  position: absolute;
  bottom: -57px;
  left: 0;
  font-size: 12px;
  line-height: 2.3;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-form__note {
    right: 0;
    bottom: -30px;
    left: auto;
  }
}
@media screen and (min-width: 1100px) {
  .p-form__note {
    left: calc(50% - 100px);
  }
}

.p-form__confirmButton {
  margin-top: 35px;
  margin-inline: auto;
  padding: 8px 62px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .p-form__confirmButton {
    margin-top: 20px;
  }
}

.wpcf7-response-output {
  display: none;
}

.wpcf7-form.sent .wpcf7-response-output,
.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.failed .wpcf7-response-output {
  display: block;
  margin-top: 1em;
  padding: 0.5em;
  border: 1px solid #f00;
  color: #f00;
}

@media screen and (min-width: 768px) {
  .p-formConfirm {
    padding-top: 94px;
  }
}
.p-formConfirm .wpcf7-form {
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-formConfirm .wpcf7-form {
    gap: 29px;
  }
}

.p-formConfirm__itemWrap {
  color: #707070;
  font-size: 14px;
  line-height: 2;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  letter-spacing: 0.1em;
  text-align: left;
}

.p-formFin__thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 48px;
  padding-bottom: 25px;
  gap: 11px;
  color: #CA7F13;
}
@media screen and (min-width: 768px) {
  .p-formFin__thanks {
    margin-top: 50px;
    gap: 38px;
  }
}
.p-formFin__thanks h2 {
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-formFin__thanks h2 {
    font-size: 36px;
  }
}
.p-formFin__thanks p {
  font-size: 14px;
  line-height: 1.5;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-formFin__thanks p {
    font-size: 18px;
  }
}
.p-formFin__thanks a {
  text-decoration: underline;
  opacity: 1;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-formFin__thanks a:hover {
    opacity: 0.7;
  }
}

.p-news {
  margin-top: 0px;
}
@media screen and (min-width: 768px) {
  .p-news {
    margin-top: 119px;
  }
}
.p-news .c-sectionTitle {
  padding-left: 10px;
}
@media screen and (min-width: 768px) {
  .p-news .c-sectionTitle {
    padding-left: 0;
  }
}

.p-news__inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-news__inner {
    max-width: 1440px;
    padding-inline: 80px;
  }
}
@media screen and (min-width: 1100px) {
  .p-news__inner {
    padding-inline: 180px;
  }
}

.p-news__list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-top: 38px;
}
@media screen and (min-width: 768px) {
  .p-news__list {
    flex-direction: row;
    margin-top: 40px;
  }
}
.p-news__list li {
  flex: 1;
}
.p-news__list li:first-of-type .p-news__post {
  border-top: 1px solid #54372D;
}
@media screen and (min-width: 768px) {
  .p-news__list li:first-of-type .p-news__post {
    border-top: none;
    border-left: 1px solid #54372D;
  }
}

.p-news__post {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 23px;
  padding-bottom: 20px;
  border-bottom: 1px solid #54372D;
  opacity: 1;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-news__post:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .p-news__post {
    padding: 20px;
    border-right: 1px solid #54372D;
    border-bottom: none;
  }
}

.p-news__button {
  margin-top: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-news__button {
    position: absolute;
    top: 120px;
    right: 80px;
  }
}
@media screen and (min-width: 1100px) {
  .p-news__button {
    right: 180px;
  }
}

.p-newsArchive__inner {
  display: flex;
  flex-direction: column;
  margin-top: 77px;
  margin-bottom: 52px;
  gap: 36px;
}
@media screen and (min-width: 768px) {
  .p-newsArchive__inner {
    flex-direction: row;
    margin-top: 105px;
    margin-bottom: 120px;
    gap: 38px;
  }
}

.p-newsArchive__sidebarMain {
  width: 100%;
}

.p-newsArchive__postList {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-newsArchive__postList {
    gap: 18px;
  }
}

.p-newsArchive__post {
  display: block;
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  padding: 12px;
  gap: 8px;
  background: #D4CEBE;
  color: #CA7F13;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (any-hover: hover) {
  .p-newsArchive__post:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (min-width: 768px) {
  .p-newsArchive__post {
    flex-direction: row;
    padding: 25px;
    gap: 16px;
  }
}

.p-newsArchive__postDate {
  font-size: 14px;
  line-height: 1;
  font-family: "Marcellus", serif;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-newsArchive__postDate {
    font-size: 16px;
  }
}

.p-newsArchive__postTitle {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-newsArchive__postTitle {
    font-size: 16px;
  }
}

.p-newsArchive__postCategory {
  position: absolute;
  right: 6px;
  bottom: 4px;
  color: rgba(84, 55, 45, 0.2);
  font-size: 20px;
  line-height: 0.75;
  font-family: "Marcellus", serif;
  letter-spacing: 0.04em;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .p-newsArchive__postCategory {
    right: 24px;
    bottom: 8px;
    font-size: 32px;
  }
}

.p-newsArchive__mainPagination {
  margin-top: 14px;
}
@media screen and (min-width: 768px) {
  .p-newsArchive__mainPagination {
    margin-top: 27px;
  }
}

@media screen and (min-width: 768px) {
  .p-newsArchive__sidebarSide {
    width: -moz-fit-content;
    width: fit-content;
    max-width: 200px;
    height: -moz-fit-content;
    height: fit-content;
    padding-top: 5px;
    padding-left: 17px;
    border-left: 1px solid #CA7F13;
  }
}

.p-newsArchive__sideTitle {
  color: #CA7F13;
  font-size: 24px;
  font-family: "Marcellus", serif;
  letter-spacing: 0.1em;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .p-newsArchive__sideTitle {
    font-size: 32px;
  }
}

.p-newsArchive__sideNav {
  display: flex;
  row-gap: 10px;
  flex-wrap: wrap;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .p-newsArchive__sideNav {
    flex-direction: column;
  }
}

.p-newsArchive__sideLink {
  display: block;
  width: 100%;
  min-width: 150px;
  color: #CA7F13;
  font-size: 14px;
  line-height: 1;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  letter-spacing: 0.1em;
  opacity: 1;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-newsArchive__sideLink:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .p-newsArchive__sideLink {
    font-size: 16px;
  }
}
.p-newsArchive__sideLink.is-checked {
  font-weight: bold;
}

.p-newsPost__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 80px;
  margin-bottom: 60px;
  gap: 36px;
}
@media screen and (min-width: 768px) {
  .p-newsPost__inner {
    flex-direction: row;
    margin-top: 106px;
    margin-bottom: 180px;
    gap: 60px;
  }
}
@media screen and (min-width: 1300px) {
  .p-newsPost__inner {
    gap: 125px;
  }
}

.p-newsPost__sidebarMain {
  width: 100%;
  max-width: 690px;
}
@media screen and (min-width: 1100px) {
  .p-newsPost__sidebarMain {
    margin-left: 87px;
  }
}

.p-newsPost__title {
  color: #CA7F13;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-newsPost__title {
    font-size: 24px;
  }
}

.p-newsPost__label {
  margin-top: 4px;
  color: #CA7F13;
  font-size: 12px;
  line-height: 1;
  font-family: "Marcellus", serif;
  letter-spacing: 0.1em;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .p-newsPost__label {
    margin-top: 0px;
    font-size: 14px;
  }
}

.p-newsPost__img {
  aspect-ratio: 347/249;
  width: 100%;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-newsPost__img {
    aspect-ratio: 691/250;
    margin-top: 40px;
  }
}
.p-newsPost__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-newsPost__main {
  margin-top: 35px;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-newsPost__main {
    margin-top: 27px;
  }
}

.p-newsPost__text {
  font-size: 14px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
}
@media screen and (min-width: 768px) {
  .p-newsPost__text {
    font-size: 16px;
  }
}

.p-newsPost__subTitle {
  margin-top: 14px;
  color: #CA7F13;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .p-newsPost__subTitle {
    margin-top: 22px;
    font-size: 18px;
  }
}

.p-newsPost__button {
  margin-top: 22px;
  margin-inline: auto;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .p-newsPost__button {
    margin-top: 26px;
  }
}

.p-price__inner {
  margin-top: 70px;
}
@media screen and (min-width: 768px) {
  .p-price__inner {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1100px) {
  .p-price__inner {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 47px;
  }
}

.p-price__list {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  margin-left: auto;
}
@media screen and (min-width: 1100px) {
  .p-price__list {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "a b" "c d" "e .";
    flex-shrink: 0;
    max-width: 555px;
  }
}

.p-price__itemWrap {
  padding: 2px 16px;
  border-bottom: 1px solid #CA7F13;
}
.p-price__itemWrap:nth-child(5) {
  border-bottom: none;
}
@media screen and (min-width: 1100px) {
  .p-price__itemWrap {
    padding-inline: 9px;
  }
  .p-price__itemWrap--body {
    grid-area: a;
  }
  .p-price__itemWrap--vline {
    grid-area: b;
  }
  .p-price__itemWrap--set {
    grid-area: c;
  }
  .p-price__itemWrap--custom {
    grid-area: d;
  }
  .p-price__itemWrap--all {
    grid-area: e;
  }
  .p-price__itemWrap:nth-child(1), .p-price__itemWrap:nth-child(3), .p-price__itemWrap:nth-child(5) {
    border-right: 1px solid #CA7F13;
  }
}

.p-price__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #CA7F13;
  letter-spacing: 0.04em;
  opacity: 1;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-price__item:hover {
    opacity: 0.7;
  }
}
.p-price__item h2 {
  font-size: 20px;
  font-family: "Marcellus", serif;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .p-price__item h2 {
    font-size: 33px;
  }
}
.p-price__item .p-price__itemJp {
  padding-left: 8px;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .p-price__item .p-price__itemJp {
    padding-left: 12px;
    font-size: 9px;
  }
}
.p-price__item i {
  font-size: 12px;
}
.p-price__item span {
  text-transform: none;
}

.p-price__text {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  gap: 30px;
}
@media screen and (min-width: 1100px) {
  .p-price__text {
    margin-top: 0;
    gap: 0;
  }
}
.p-price__text p {
  color: #CA7F13;
  font-size: 14px;
  line-height: 2;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  letter-spacing: 0.1em;
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .p-price__text p {
    font-size: 18px;
  }
}

.p-priceDetail {
  margin-top: 75px;
  background: #D4CEBE;
}
@media screen and (min-width: 768px) {
  .p-priceDetail {
    margin-top: 115px;
  }
}
.p-priceDetail small {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .p-priceDetail small {
    font-size: 18px;
  }
}

.p-priceDetail__menuInner {
  width: 100%;
  padding-top: 42px;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .p-priceDetail__menuInner {
    max-width: 1162px;
  }
}

.p-priceDetail__menu {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .p-priceDetail__menu {
    gap: 105px;
  }
}

.p-priceDetail__menuTitle {
  color: #CA7F13;
  font-size: 84px;
  font-family: "Marcellus", serif;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: capitalize;
}
.p-priceDetail__menuTitle span {
  text-transform: none;
}

.p-priceDetail__menuWrap {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-priceDetail__menuWrap {
    margin-top: 80px;
  }
}
.p-priceDetail__menuWrap--narrow {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .p-priceDetail__menuWrap--narrow {
    margin-top: 24px;
  }
}
@media screen and (min-width: 768px) {
  .p-priceDetail__menuWrap--none {
    margin-top: 0;
  }
}

.p-priceDetail__menuHead {
  color: #CA7F13;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-priceDetail__menuHead {
    font-size: 24px;
  }
}

.p-priceDetail__menuText {
  margin-top: 21px;
  color: #CA7F13;
  font-size: 14px;
  line-height: 2.3;
  letter-spacing: 0.1em;
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: break-word;
}
@media screen and (min-width: 768px) {
  .p-priceDetail__menuText {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
  }
}

.p-priceDetail__menuSmall {
  margin-top: 12px;
  color: #CA7F13;
  font-size: 12px;
  line-height: 1.5;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-priceDetail__menuSmall {
    text-align: right;
  }
}
.p-priceDetail__menuSmall--onlyprice {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-priceDetail__menuSmall--onlyprice {
    display: block;
  }
}

.p-priceDetail__table {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  color: #CA7F13;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-priceDetail__table {
    flex-direction: row;
    margin-top: 38px;
  }
}
@media screen and (min-width: 768px) {
  .p-priceDetail__table--narrow {
    margin-top: 0;
  }
}

.p-priceDetail__tableHead {
  font-size: 18px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-priceDetail__tableHead {
    display: none;
  }
}

.p-priceDetail__tableItem {
  display: flex;
  width: 100%;
  padding-block: 24px;
  border-bottom: 1px solid #CA7F13;
}
@media screen and (min-width: 768px) {
  .p-priceDetail__tableItem {
    flex: 1;
    flex-direction: column;
    padding: 0;
    text-align: center;
  }
}
.p-priceDetail__tableItem--head {
  margin-top: 10px;
  margin-bottom: 3px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-priceDetail__tableItem--head {
    display: none;
  }
}
.p-priceDetail__tableItem--times {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-priceDetail__tableItem--times {
    display: flex;
    flex: 0.6;
  }
}
.p-priceDetail__tableItem--times .p-priceDetail__tablePrice {
  font-size: 18px;
}
@media screen and (min-width: 1300px) {
  .p-priceDetail__tableItem--times .p-priceDetail__tablePrice {
    width: 132px;
  }
}
.p-priceDetail__tableItem--item .p-priceDetail__tablePrice {
  font-weight: 600;
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho", "MS PMincho", "Noto Serif JP", serif;
  letter-spacing: 0.1em;
}

.p-priceDetail__tableLabel {
  display: inline-block;
  width: 70%;
}
@media screen and (min-width: 768px) {
  .p-priceDetail__tableLabel {
    width: 100%;
    padding-block: 16px;
  }
}
@media screen and (min-width: 1100px) {
  .p-priceDetail__tableLabel {
    font-size: 18px;
  }
}
.p-priceDetail__tableLabel.times {
  visibility: hidden;
}

.p-priceDetail__tablePrice {
  width: 40%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-priceDetail__tablePrice {
    width: 100%;
    padding-block: 16px;
    border-top: 1px solid #CA7F13;
    font-size: 24px;
  }
}

.onlyPrice {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .onlyPrice .p-priceDetail__tableLabel {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .onlyPrice .p-priceDetail__tablePrice {
    border-top: none;
  }
}

.p-priceDetail__custom {
  margin-top: 80px;
  margin-bottom: 72px;
}
@media screen and (min-width: 768px) {
  .p-priceDetail__custom {
    margin-bottom: 80px;
  }
}

@media screen and (min-width: 768px) {
  .p-priceDetail__customInner {
    display: flex;
    align-items: center;
    gap: 20px;
  }
}
@media screen and (min-width: 1100px) {
  .p-priceDetail__customInner {
    gap: 60px;
  }
}
@media screen and (min-width: 1300px) {
  .p-priceDetail__customInner {
    padding-inline: 180px;
  }
}

.p-priceDetail__customImg {
  width: 240px;
  margin-inline: auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-priceDetail__customImg {
    flex: 1;
    width: 100%;
  }
}
@media screen and (min-width: 1100px) {
  .p-priceDetail__customImg {
    flex: auto;
    max-width: 480px;
  }
}
.p-priceDetail__customImg img {
  width: 100%;
  height: auto;
}

.p-priceDetail__customMain {
  margin-top: 55px;
}
@media screen and (min-width: 768px) {
  .p-priceDetail__customMain {
    flex: 1.5;
    width: 100%;
    margin-top: 0;
  }
}
@media screen and (min-width: 1100px) {
  .p-priceDetail__customMain {
    flex: auto;
  }
}

.p-priceDetail__customTitle {
  color: #CA7F13;
  font-size: 48px;
  font-family: "Marcellus", serif;
  letter-spacing: 0.1em;
  text-transform: capitalize;
}

.p-priceDetail__customText {
  color: #CA7F13;
  font-size: 14px;
  line-height: 2;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  letter-spacing: 0.1em;
  opacity: 0.8;
}
@media screen and (min-width: 1100px) {
  .p-priceDetail__customText {
    margin-top: 35px;
    font-size: 18px;
  }
}
.p-priceDetail__customText p {
  opacity: 0.8;
}

.p-priceMenu {
  margin-top: 91px;
}
@media screen and (min-width: 768px) {
  .p-priceMenu {
    margin-top: 190px;
  }
}

.p-priceMenu__list {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 800px;
  margin-top: 58px;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-priceMenu__list {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "a b" "d c" "e .";
    margin-top: 50px;
  }
}

.p-priceMenu__itemWrap {
  padding: 11px 15px 11px 5px;
  border-bottom: 1px solid #CA7F13;
}
@media screen and (min-width: 768px) {
  .p-priceMenu__itemWrap {
    padding: 4px 15px;
  }
  .p-priceMenu__itemWrap--body {
    grid-area: a;
  }
  .p-priceMenu__itemWrap--vline {
    grid-area: b;
  }
  .p-priceMenu__itemWrap--set {
    grid-area: c;
  }
  .p-priceMenu__itemWrap--custom {
    grid-area: d;
  }
  .p-priceMenu__itemWrap--all {
    grid-area: e;
  }
  .p-priceMenu__itemWrap:nth-child(1), .p-priceMenu__itemWrap:nth-child(4), .p-priceMenu__itemWrap:nth-child(5) {
    border-right: 1px solid #CA7F13;
  }
  .p-priceMenu__itemWrap:nth-child(5) {
    border-bottom: none;
  }
}

.p-priceMenu__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #CA7F13;
  opacity: 1;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-priceMenu__item:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .p-priceMenu__item {
    max-width: 400px;
  }
}
.p-priceMenu__item h3 {
  font-size: 36px;
  font-family: "Marcellus", serif;
  letter-spacing: 0.04em;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .p-priceMenu__item h3 {
    font-size: 38px;
  }
}
@media screen and (min-width: 1100px) {
  .p-priceMenu__item h3 {
    font-size: 48px;
  }
}
.p-priceMenu__item .p-priceMenu__item--small {
  padding-left: 18px;
  font-size: 14px;
}
.p-priceMenu__item i {
  font-size: 24px;
}
.p-priceMenu__item span {
  text-transform: none;
}

.p-salonConcept {
  background: #D4CEBE;
}

.p-salonConcept__inner {
  margin-top: 55px;
  padding-bottom: 55px;
}
@media screen and (min-width: 768px) {
  .p-salonConcept__inner {
    margin-top: 78px;
    padding-bottom: 72px;
  }
}

.p-salonConcept__head {
  display: flex;
  flex-direction: column-reverse;
  gap: 18px;
}
@media screen and (min-width: 768px) {
  .p-salonConcept__head {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}

.p-salonConcept__message {
  color: #CA7F13;
  font-weight: 600;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-salonConcept__message {
    z-index: 1;
    font-size: 40px;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .p-salonConcept__img {
    z-index: 0;
    max-width: 720px;
    margin-left: -50px;
  }
}
.p-salonConcept__img img {
  width: 100%;
  height: auto;
}

.p-salonConcept__text {
  margin-top: 15px;
  color: #CA7F13;
  font-size: 14px;
  line-height: 2;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  letter-spacing: 0.1em;
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .p-salonConcept__text {
    margin-top: 55px;
    font-size: 18px;
  }
}
.p-salonConcept__text p {
  opacity: 0.8;
}

.p-instagram {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-instagram {
    margin-top: 107px;
  }
}

.p-instagram__title {
  margin-left: -15px;
}
@media screen and (min-width: 768px) {
  .p-instagram__title {
    margin-left: 0;
  }
}

.p-instagram__main {
  max-width: 800px;
  margin-top: 67px;
  margin-inline: auto;
}

#sb_instagram {
  padding-bottom: 30px !important;
}

#sbi_images {
  padding: 0 !important;
  gap: 19px !important;
}
@media screen and (min-width: 768px) {
  #sbi_images {
    gap: 40px !important;
  }
}

#sbi_load {
  display: none;
}

.p-instagram__button {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-instagram__button {
    margin-top: 30px;
  }
}

.p-companyProfile {
  margin-top: 90px;
  margin-bottom: 120px;
}
@media screen and (min-width: 768px) {
  .p-companyProfile {
    margin-top: 107px;
    margin-bottom: 120px;
  }
}

.p-companyProfile__inner {
  max-width: 600px;
  margin-inline: auto;
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .p-companyProfile__inner {
    max-width: 1440px;
    padding-inline: 60px;
  }
}
@media screen and (min-width: 1100px) {
  .p-companyProfile__inner {
    padding-inline: 120px;
  }
}

.p-companyProfile__main {
  margin-top: 70px;
}
@media screen and (min-width: 768px) {
  .p-companyProfile__main {
    margin-top: 55px;
  }
}
@media screen and (min-width: 1300px) {
  .p-companyProfile__main {
    padding-inline: 60px;
  }
}

.p-companyProfile__img img {
  width: 100%;
  height: auto;
}

.p-companyProfile__table {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-companyProfile__table {
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 60px;
  }
}

.p-companyProfile__tableItem {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 27px 7px 27px 14px;
  border-bottom: 1px solid #CA7F13;
}
.p-companyProfile__tableItem:nth-child(1) {
  border-top: 1px solid #CA7F13;
}
@media screen and (min-width: 768px) {
  .p-companyProfile__tableItem:nth-child(2) {
    border-top: 1px solid #CA7F13;
  }
}
@media screen and (min-width: 1100px) {
  .p-companyProfile__tableItem:nth-child(1), .p-companyProfile__tableItem:nth-child(3), .p-companyProfile__tableItem:nth-child(5) {
    width: 38%;
  }
}
@media screen and (min-width: 1100px) {
  .p-companyProfile__tableItem:nth-child(2), .p-companyProfile__tableItem:nth-child(4), .p-companyProfile__tableItem:nth-child(6) {
    width: 62%;
  }
}
@media screen and (min-width: 768px) {
  .p-companyProfile__tableItem:nth-child(7), .p-companyProfile__tableItem:nth-child(8) {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-companyProfile__tableItem {
    width: calc(50% - 10px);
    padding: 24px 7px 24px 14px;
  }
}
.p-companyProfile__tableItem dt {
  flex-shrink: 0;
  width: 110px;
  color: #CA7F13;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-companyProfile__tableItem dt {
    font-size: 18px;
  }
}
.p-companyProfile__tableItem dd {
  font-size: 12px;
  line-height: 1.5;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-companyProfile__tableItem dd {
    font-size: 16px;
  }
}
.p-companyProfile__tableItem dd span {
  text-transform: uppercase;
}
.p-companyProfile__tableItem dd address {
  font-style: normal;
}
.p-companyProfile__tableItem a {
  opacity: 1;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-companyProfile__tableItem a:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 1100px) {
  .p-companyProfile__tableItem a {
    pointer-events: none;
  }
  .p-companyProfile__tableItem a:hover {
    opacity: 1 !important;
  }
}

.p-salons__inner {
  margin-top: 107px;
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .p-salons__inner {
    margin-top: 116px;
    margin-bottom: 120px;
  }
}

.p-salons__title {
  margin-left: -14px;
}
@media screen and (min-width: 768px) {
  .p-salons__title {
    padding-left: 15px;
  }
}

.p-salons__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 88px;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-salons__list {
    margin-top: 137px;
    padding-right: 150px;
    padding-left: 30px;
    gap: 40px 20px;
  }
}

.p-salons__item {
  position: relative;
  padding-right: 7px;
  padding-left: 15px;
  color: #CA7F13;
  font-size: 20px;
  line-height: 0.7;
  font-family: "Marcellus", serif;
  letter-spacing: 0.1em;
  text-transform: capitalize;
  opacity: 1;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-salons__item:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .p-salons__item {
    padding-left: 64px;
    font-size: 48px;
  }
}
.p-salons__item span {
  padding-left: 8px;
  font-size: 12px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-salons__item span {
    padding-left: 16px;
    font-size: 14px;
  }
}
.p-salons__item::before {
  position: absolute;
  top: 50%;
  left: 0px;
  width: 0;
  height: 0;
  transform: translateY(-50%);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid #54372D;
  content: "";
}
@media screen and (min-width: 768px) {
  .p-salons__item::before {
    left: 30px;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 15.6px solid #54372D;
  }
}

.p-salons__main {
  display: flex;
  flex-direction: column;
  margin-top: 77px;
  gap: 77px;
}
@media screen and (min-width: 768px) {
  .p-salons__main {
    margin-top: 85px;
    gap: 74px;
  }
}

.p-salons__prefecture {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  background: #CA7F13;
  color: #fff;
  font-size: 24px;
  font-family: "Marcellus", serif;
  letter-spacing: 0.1em;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .p-salons__prefecture {
    height: 120px;
    font-size: 48px;
  }
}

.p-salons__maps {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 44px;
  gap: 43px;
}
@media screen and (min-width: 768px) {
  .p-salons__maps {
    margin-top: 60px;
    gap: 60px;
  }
}

.p-salons__detail {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-salons__detail {
    width: calc(50% - 30px);
  }
}
.p-salons__detail iframe {
  width: 100%;
  height: 200px;
}
@media screen and (min-width: 768px) {
  .p-salons__detail iframe {
    height: 360px;
  }
}
.p-salons__detail a {
  opacity: 1;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-salons__detail a:hover {
    opacity: 0.7;
  }
}

.p-salons__detailEn {
  display: block;
  color: #CA7F13;
  font-size: 20px;
  font-family: "Marcellus", serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-salons__detailEn {
    font-size: 32px;
  }
}

.p-salons__detailJp {
  display: block;
  color: #CA7F13;
  font-size: 14px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-salons__detailJp {
    font-size: 16px;
  }
}

.p-salons__detailAddress {
  color: #464646;
  font-style: normal;
  font-size: 14px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  letter-spacing: 0.1em;
}

.p-shop__inner {
  margin-top: 70px;
}
@media screen and (min-width: 768px) {
  .p-shop__inner {
    margin-top: 108px;
  }
}

.p-shop__message {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.1em;
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: break-word;
}
@media screen and (min-width: 768px) {
  .p-shop__message {
    text-align: center;
  }
}
@media screen and (min-width: 1100px) {
  .p-shop__message {
    font-size: 17px;
  }
}
@media screen and (min-width: 1300px) {
  .p-shop__message {
    padding-inline: 60px;
    font-size: 20px;
  }
}

.p-flow {
  margin-top: 107px;
}
@media screen and (min-width: 768px) {
  .p-flow {
    margin-top: 160px;
  }
}

.p-flow__title {
  margin-left: -15px;
}
@media screen and (min-width: 768px) {
  .p-flow__title {
    margin-left: 0;
  }
}

.p-flow__steps {
  display: flex;
  flex-direction: column;
  margin-top: 65px;
  gap: 38px;
}
@media screen and (min-width: 768px) {
  .p-flow__steps {
    align-items: center;
    margin-top: 93px;
    gap: 39px;
  }
}

.p-flow__step {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 21px;
}
@media screen and (min-width: 768px) {
  .p-flow__step {
    flex-direction: row;
    align-items: flex-start;
    max-width: 800px;
    gap: 40px;
  }
}
.p-flow__step:last-child::after {
  display: none;
}
.p-flow__step::after {
  position: absolute;
  bottom: -30px;
  left: 50%;
  width: 1px;
  height: 20px;
  transform: translateX(-50%);
  background-image: repeating-linear-gradient(to bottom, #333, #333 1px, transparent 1px, transparent 6px);
  content: "";
}
@media screen and (min-width: 768px) {
  .p-flow__step::after {
    top: 70px;
    left: 30px;
    height: 60px;
    transform: none;
  }
}
.p-flow__step:nth-child(3)::before, .p-flow__step:nth-child(6)::before {
  position: absolute;
  top: 0;
  right: -45px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
@media screen and (min-width: 768px) {
  .p-flow__step:nth-child(3)::before, .p-flow__step:nth-child(6)::before {
    top: 50px;
    right: auto;
    left: -80px;
  }
}
@media screen and (min-width: 1100px) {
  .p-flow__step:nth-child(3)::before, .p-flow__step:nth-child(6)::before {
    top: -56px;
    left: -232px;
    width: 150px;
    height: 150px;
  }
}
.p-flow__step:nth-child(6)::before {
  right: -35px;
}
@media screen and (min-width: 768px) {
  .p-flow__step:nth-child(6)::before {
    left: -100px;
  }
}
@media screen and (min-width: 1100px) {
  .p-flow__step:nth-child(6)::before {
    top: -20px;
    left: -180px;
  }
}
.p-flow__step:nth-child(5)::before {
  position: absolute;
  top: -15px;
  left: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
@media screen and (min-width: 768px) {
  .p-flow__step:nth-child(5)::before {
    right: -121px;
    left: auto;
  }
}
@media screen and (min-width: 1100px) {
  .p-flow__step:nth-child(5)::before {
    top: -34px;
    right: -244px;
    width: 180px;
    height: 180px;
  }
}

.p-flow__number {
  display: block;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #949E33;
  color: #fff;
  font-size: 32px;
  font-family: "Marcellus", serif;
}

.p-flow__main {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #CA7F13;
}

.p-flow__head {
  font-weight: 600;
  font-size: 18px;
  line-height: 0.8;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-flow__head {
    font-size: 24px;
    text-align: left;
  }
}

.p-flow__text {
  font-size: 14px;
  line-height: 1.5;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-flow__text {
    font-size: 18px;
  }
}

.p-staff {
  margin-top: 80px;
  padding-top: 60px;
  padding-bottom: 30px;
  background: #464646;
}
@media screen and (min-width: 768px) {
  .p-staff {
    margin-top: 120px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.p-staff__inner {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
@media screen and (min-width: 768px) {
  .p-staff__inner {
    flex-direction: row;
    align-items: center;
  }
}
@media screen and (min-width: 1100px) {
  .p-staff__inner {
    padding-inline: 180px;
    gap: 60px;
  }
}
@media screen and (min-width: 1300px) {
  .p-staff__inner {
    align-items: flex-start;
  }
}

.p-staff__img {
  aspect-ratio: 1/1;
  width: 75%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-staff__img {
    flex: 48;
    width: 100%;
    max-width: 480px;
  }
}
.p-staff__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-staff__main {
  color: #CA7F13;
}
@media screen and (min-width: 768px) {
  .p-staff__main {
    flex: 54;
  }
}
@media screen and (min-width: 1300px) {
  .p-staff__main {
    padding-top: 56px;
  }
}

.p-staff__head {
  font-size: 14px;
  line-height: 0.75;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  letter-spacing: 0.1em;
}
.p-staff__head span {
  padding-right: 22px;
  font-size: 36px;
  font-family: "Marcellus", serif;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .p-staff__head span {
    padding-right: 35px;
    font-size: 48px;
  }
}

.p-staff__message {
  margin-top: 28px;
  font-size: 14px;
  line-height: 2;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  letter-spacing: 0.1em;
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .p-staff__message {
    font-size: 18px;
  }
}
@media screen and (min-width: 1300px) {
  .p-staff__message {
    margin-top: 51px;
  }
}

.p-staff__name {
  margin-top: 5px;
  font-size: 12px;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 768px) {
  .p-staff__name {
    margin-top: 14px;
    letter-spacing: 0.25em;
  }
}
.p-staff__name span {
  padding-right: 10px;
  font-size: 20px;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .p-staff__name span {
    font-size: 24px;
  }
}

.p-shop__info {
  padding-block: 60px;
  border: 1px solid #707070;
  background: #D4CEBE;
}
@media screen and (min-width: 768px) {
  .p-shop__info {
    padding-bottom: 100px;
  }
}

.p-shop__infoInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 37px;
}
@media screen and (min-width: 768px) {
  .p-shop__infoInner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
  }
}
@media screen and (min-width: 1300px) {
  .p-shop__infoInner {
    gap: 140px;
  }
}
.p-shop__infoInner iframe {
  width: 100%;
  height: 200px;
}
@media screen and (min-width: 768px) {
  .p-shop__infoInner iframe {
    width: 540px;
    height: 360px;
  }
}

.p-shop__table {
  width: 100%;
  max-width: 400px;
}
@media screen and (min-width: 1100px) {
  .p-shop__table {
    padding-top: 40px;
  }
}

.p-shop__item {
  display: flex;
  padding: 13px 8px;
  border-bottom: 1px solid #CA7F13;
  text-transform: uppercase;
}
.p-shop__item dt {
  width: 118px;
  color: #CA7F13;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-shop__item dt {
    font-size: 18px;
  }
}
@media screen and (min-width: 1100px) {
  .p-shop__item dt {
    width: 150px;
    font-size: 20px;
  }
}
.p-shop__item dd {
  font-size: 12px;
  line-height: 2.5;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1100px) {
  .p-shop__item dd {
    font-size: 14px;
  }
}
.p-shop__item a {
  opacity: 1;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-shop__item a:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 1100px) {
  .p-shop__item a {
    pointer-events: none;
  }
  .p-shop__item a:hover {
    opacity: 1 !important;
  }
}
.p-shop__item address {
  font-style: normal;
}

.p-shop__toList {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 196px;
}
@media screen and (min-width: 768px) {
  .p-shop__toList {
    height: 280px;
  }
}

.p-shop__button {
  padding: 8px 41px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .p-shop__button {
    font-size: 16px;
  }
}

.p-mv {
  position: relative;
}

.p-mv__img img {
  width: 100%;
  height: auto;
}

.p-mv__message {
  position: absolute;
  top: calc(50% - 15px);
  left: 15px;
  transform: translateY(-50%);
  color: #fff;
  font-weight: 300;
  font-size: 32px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-mv__message {
    font-size: 48px;
  }
}
@media screen and (min-width: 1100px) {
  .p-mv__message {
    font-size: 64px;
  }
}
@media screen and (min-width: 1300px) {
  .p-mv__message {
    top: calc(50% - 93px);
    left: calc(50% - 650px);
    transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 1400px) {
  .p-mv__message {
    left: calc(50% - 680px);
  }
}

.p-faq {
  margin-top: 90px;
  margin-bottom: 120px;
}
@media screen and (min-width: 768px) {
  .p-faq {
    margin-top: 103px;
    margin-bottom: 125px;
  }
}

.p-faq__main {
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .p-faq__main {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1100px) {
  .p-faq__main {
    margin-inline: 30px;
  }
}
@media screen and (min-width: 1300px) {
  .p-faq__main {
    margin-inline: 60px;
  }
}

.p-cta__inner {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 200px;
  padding-top: 51px;
  background: linear-gradient(rgba(70, 70, 70, 0.8), rgba(70, 70, 70, 0.8)), url("../images/reserve-link-sp.webp") no-repeat center center/cover;
  opacity: 1;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-cta__inner:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .p-cta__inner {
    height: 400px;
    padding-top: 140px;
    background: linear-gradient(rgba(70, 70, 70, 0.8), rgba(70, 70, 70, 0.8)), url("../images/reserve-link-pc.webp") no-repeat center center/cover;
  }
}

.l-firstView__title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  margin-top: 80px;
  background: #D4CEBE;
}
@media screen and (min-width: 768px) {
  .l-firstView__title {
    height: 360px;
    margin-top: 173px;
  }
}

.l-firstView__img {
  position: sticky;
  top: 0;
  height: 300px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.l-firstView__img--concept {
  background-image: url("../images/page-concept_top-sp.webp");
}
.l-firstView__img--price {
  background-image: url("../images/price-menu_top-sp.webp");
}
.l-firstView__img--news {
  background-image: url("../images/news_top-sp.webp");
}
.l-firstView__img--salonArchive {
  background-image: url("../images/archive-salons_top-sp.webp");
}
.l-firstView__img--salonSingle {
  background-image: url("../images/single-salons_top-sp.webp");
}
.l-firstView__img--reserve {
  background-image: url("../images/reserve_top-sp.webp");
}
@media screen and (min-width: 768px) {
  .l-firstView__img {
    height: 600px;
  }
  .l-firstView__img--concept {
    background-image: url("../images/page-concept_top-pc.webp");
  }
  .l-firstView__img--price {
    background-image: url("../images/price-menu_top-pc.webp");
  }
  .l-firstView__img--news {
    background-image: url("../images/news_top-pc.webp");
  }
  .l-firstView__img--salonArchive {
    background-image: url("../images/archive-salons_top-pc.webp");
  }
  .l-firstView__img--salonSingle {
    background-image: url("../images/single-salons_top-pc.webp");
  }
  .l-firstView__img--reserve {
    background-image: url("../images/reserve_top-pc.webp");
  }
}

.breadcrumbs {
  display: block;
  padding-top: 12px;
  padding-left: 15px;
  color: #CA7F13;
  font-size: 14px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  letter-spacing: 0.1em;
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .breadcrumbs {
    max-width: 1382px;
    margin-inline: auto;
    padding-top: 24px;
    font-size: 18px;
  }
}

.is-fadeUp {
  transform: translateY(30px);
  opacity: 0;
}

body {
  overflow: visible;
}

.l-parallaxContainer__dammyWrap {
  position: sticky;
  top: 0;
  overflow: hidden;
  background: #F9F8F6;
}

.l-firstView__img {
  z-index: -1;
}

.u-hiddenSm {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-hiddenSm {
    display: inline-block;
  }
}

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

@media screen and (min-width: 1100px) {
  .u-hiddenLg {
    display: none;
  }
}

.u-hasDecoration {
  position: relative;
}

.u-mt40 {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .u-mt40 {
    margin-top: 25px;
  }
}