@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 {
  border: 0;
  font-size: 100%;
  font-weight: normal;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

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

ol,
ul {
  list-style: none;
}

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

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

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

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

/* (フォント変数)
***************************************************************/
/* (カラー変数テキスト)
***************************************************************/
/* (背景カラー変数背景)
***************************************************************/
/* (レイアウト変数)
***************************************************************/
/* (header の高さ)
***************************************************************/
/*(ブレークポイント ※SPファースト)
***************************************************************/
/*(z-index)
***************************************************************/
/* (メディアクエリ)
***************************************************************/
/* (フォント情報一括入力)
***************************************************************/
html {
  font-size: 62.5%;
}

body {
  color: #231815;
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
@media (min-width: 768px) {
  body a[href*="tel:"] {
    cursor: default;
    pointer-events: none;
  }
}

.fadeIn-up {
  opacity: 0;
  transition: opacity 1s ease, translate 1s ease;
  translate: 0 3rem;
}
.fadeIn-up.js-show {
  opacity: 1;
  translate: 0 0;
}

/*下からふわっ（強め） */
.fade-in-up--strong {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s, transform 1s;
}
.fade-in-up--strong.js-show {
  opacity: 1;
  transform: translateY(0);
}

/*下からふわっ */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, transform 1s;
}
.fade-in-up.js-show {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 1s;
}
.fade-in.js-show {
  opacity: 1;
}

/*左下からパタ */
.flipLeftTop.js-show {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: flipLeftTopAnime;
  opacity: 0;
}
@keyframes flipLeftTopAnime {
  from {
    opacity: 0;
    transform: translate(-20px, 60px) rotate(-10deg);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg);
  }
}

/*Y軸（横へくるっ） */
.rotateY.js-show {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: rotateYAnime;
}
@keyframes rotateYAnime {
  from {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  to {
    opacity: 1;
    transform: rotateY(-360deg);
  }
}

/*ホバーでキラっ*/
.kira {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
  transition: 0.3s;
}
.kira::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  content: "";
  height: 100%;
  left: -60%;
  position: absolute;
  top: 0;
  transform: skewX(-25deg);
  transition: 0.5s;
  width: 50%;
}
.kira:hover::before {
  animation: flash 0.75s;
}

@keyframes flash {
  100% {
    left: 120%;
  }
}
/* 左からしゅっと出現 */
.fadeLeft.js-show {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: fadeLeftAnime;
  opacity: 0;
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 右からしゅっと出現 */
.fadeRight.js-show {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: fadeRightAnime;
  opacity: 0;
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* (inner)
***************************************************************/
.l-inner {
  margin-inline: auto;
  max-width: 100%;
  padding-inline: 1.6rem;
  width: 50rem;
}
@media screen and (min-width:768px) {
  .l-inner {
    padding-inline: 3rem;
    width: 65rem;
  }
}
@media screen and (min-width:948px) {
  .l-inner {
    padding-inline: 4rem;
    width: 102.8rem;
  }
}

.l-inner--large {
  margin-inline: auto;
  max-width: 100%;
  padding-inline: 1.6rem;
  width: 50rem;
}
@media screen and (min-width:768px) {
  .l-inner--large {
    padding-inline: 3rem;
    width: 110rem;
  }
}
@media screen and (min-width:1250px) {
  .l-inner--large {
    padding-inline: 4rem;
    width: 144rem;
  }
}
@media screen and (min-width: 1440px) {
  .l-inner--large {
    padding-inline: 4.8rem;
    width: 144rem;
  }
}

.l-inner--small {
  margin-inline: auto;
  max-width: 100%;
  padding-inline: 1.6rem;
  width: 50rem;
}
@media screen and (min-width:768px) {
  .l-inner--small {
    padding-inline: 3rem;
  }
}
@media screen and (min-width:948px) {
  .l-inner--small {
    padding-inline: 4rem;
    width: 68.1rem;
  }
}

/* (header)
***************************************************************/
.l-header {
  background: #fff;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

body.drawer-active {
  height: 100%;
  overflow: hidden;
}

.l-header__inner {
  align-items: center;
  display: flex;
  height: 6.4rem;
  justify-content: space-between;
  padding-left: 1.6rem;
}
@media screen and (min-width:948px) {
  .l-header__inner {
    height: 10rem;
    margin-inline: auto;
    max-width: 100%;
    padding-left: 4rem;
    padding-right: 4rem;
    width: 144rem;
  }
}

.l-header__logo a img {
  display: block;
  width: 13rem;
}
@media screen and (min-width:948px) {
  .l-header__logo a img {
    width: 26rem;
  }
}

.l-header__menu {
  display: none;
}
@media screen and (min-width:948px) {
  .l-header__menu {
    display: block;
  }
}

@media screen and (min-width:948px) {
  .l-header__nav ul {
    align-items: center;
    display: flex;
    gap: clamp(2.8rem, -1.7142857143rem + 4.7619047619vw, 4rem);
    padding-right: 0.8rem;
  }
}
.l-header__nav li a {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
  position: relative;
  transition: all 0.3s ease;
}
.l-header__nav li a::after {
  background: #600F15;
  bottom: -0.7rem;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s; /*変形の時間*/
  width: 100%;
}
.l-header__nav li a:hover {
  color: #600F15;
}
.l-header__nav li a:hover::after {
  transform: scale(1, 1);
}

.l-header__drawer-button {
  background: #231815;
  display: grid;
  height: 6.4rem;
  place-items: center;
  width: 6.4rem;
}
@media screen and (min-width:948px) {
  .l-header__drawer-button {
    display: none;
  }
}

.l-header__drawer-icon {
  flex-shrink: 0;
  height: 1.6rem;
  position: relative;
  width: 2.7rem;
  z-index: 998;
}
.l-header__drawer-icon.is-checked .l-header__drawer-icon-bar:nth-of-type(1) {
  left: 0;
  top: 50%;
  transform: rotate(-45deg);
}
.l-header__drawer-icon.is-checked .l-header__drawer-icon-bar:nth-of-type(2) {
  display: none;
}
.l-header__drawer-icon.is-checked .l-header__drawer-icon-bar:nth-of-type(3) {
  left: 0;
  top: 50%;
  transform: rotate(45deg);
}

.l-header__drawer-icon-bar {
  background: #fff;
  border-radius: 1px;
  height: 1px;
  left: 0;
  position: absolute;
  transition: all 0.3s linear;
  width: 100%;
}
.l-header__drawer-icon-bar:nth-of-type(1) {
  top: 0;
}
.l-header__drawer-icon-bar:nth-of-type(2) {
  top: 50%;
}
.l-header__drawer-icon-bar:nth-of-type(3) {
  top: 100%;
}

/* (ドロワー中身）
***************************************************************/
.l-header__drawer-content {
  background: #600F15;
  height: calc(100vh - 6.4rem);
  left: 0;
  opacity: 0;
  overflow-y: scroll;
  padding: 7.2rem 4rem;
  position: fixed;
  top: 6.4rem;
  transition: opacity 0.5s ease;
  visibility: hidden;
  width: 100%;
  z-index: 20;
}
.l-header__drawer-content.is-checked {
  opacity: 1;
  visibility: visible;
}

.l-header__drawer-menu ul {
  display: flex;
  flex-direction: column;
  gap: 8.2rem;
}
.l-header__drawer-menu li {
  position: relative;
  text-align: center;
}
.l-header__drawer-menu li a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
.l-header__drawer-menu li:not(:last-of-type)::after {
  background: url(../img/deco_drawer.webp) no-repeat center center/cover;
  content: "";
  height: 1.628px;
  left: 50%;
  position: absolute;
  position: absolute;
  top: calc(100% + 4rem);
  transform: translateX(-50%);
  width: 29.6rem;
}

/* (l-footer)
***************************************************************/
.l-footer {
  background: #EFEFEF;
  padding-block: 3.2rem;
}
@media screen and (min-width:948px) {
  .l-footer {
    padding-block: 4rem;
  }
}

.l-footer__inner {
  margin-inline: auto;
  max-width: 100%;
  padding-inline: 1.6rem;
  width: 50rem;
}
@media screen and (min-width:768px) {
  .l-footer__inner {
    padding-inline: 3rem;
    width: 65rem;
  }
}
@media screen and (min-width:948px) {
  .l-footer__inner {
    padding-inline: 4rem;
    width: 130.4rem;
  }
}

.l-footer__logo {
  margin-inline: auto;
  max-width: 100%;
  width: 21rem;
}
@media screen and (min-width:948px) {
  .l-footer__logo {
    width: 26rem;
  }
}

.l-footer__menu {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  margin-top: 3.2rem;
}
@media screen and (min-width:948px) {
  .l-footer__menu {
    align-items: flex-end;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-top: 4rem;
  }
}

.l-footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media screen and (min-width:948px) {
  .l-footer__nav ul {
    flex-direction: row;
    gap: 2.4rem;
    justify-content: flex-end;
  }
}
.l-footer__nav ul li {
  text-align: center;
}
.l-footer__nav ul li a {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
  position: relative;
  transition: all 0.3s ease;
}
@media screen and (min-width:948px) {
  .l-footer__nav ul li a {
    font-size: clamp(1.4rem, -1.2333333333rem + 2.7777777778vw, 1.6rem);
  }
}
.l-footer__nav ul li a::after {
  background: #600F15;
  bottom: -0.7rem;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s; /*変形の時間*/
  width: 100%;
}
.l-footer__nav ul li a:hover {
  color: #600F15;
}
.l-footer__nav ul li a:hover::after {
  transform: scale(1, 1);
}

.l-footer__salon {
  margin-inline: auto;
  max-width: 100%;
  width: 23.2rem;
}
@media screen and (min-width:948px) {
  .l-footer__salon {
    margin-inline: 0;
    width: 30rem;
  }
}

.l-footer__salon-name {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.l-footer__salon-information {
  display: flex;
  flex-direction: column;
  font-size: 1.4rem;
  font-weight: 400;
  gap: 0.8rem;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-top: 2.4rem;
}
@media screen and (min-width:948px) {
  .l-footer__salon-information {
    font-size: 1.6rem;
  }
}

.l-footer__bg {
  background-color: #600F15;
  height: 4rem;
}
@media screen and (min-width:948px) {
  .l-footer__bg {
    height: 6rem;
  }
}

/* (ボタン)
***************************************************************/
.c-button {
  background: #600F15;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
  min-width: 21.6rem;
  padding: 0.8rem 3.2rem;
  text-align: center;
  transition: 0.5s;
}
.c-button:hover {
  background: #231815;
}
@media screen and (min-width:768px) {
  .c-button {
    font-size: 2rem;
    padding: 1.6rem 2.4rem;
  }
}

.c-button--mini {
  background: #600F15;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  min-width: 15.5rem;
  padding: 0.8rem 2.4rem;
  text-align: center;
  transition: 0.5s;
}
.c-button--mini:hover {
  background: #231815;
}
@media screen and (min-width:768px) {
  .c-button--mini {
    padding: 0.8rem 2.4rem;
  }
}

.c-button--sp-large {
  background: #600F15;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
  max-width: 100%;
  padding: 0.8rem 1.6rem;
  text-align: center;
  transition: 0.5s;
  width: 21.6rem;
}
.c-button--sp-large:hover {
  background: #231815;
}
@media screen and (min-width:768px) {
  .c-button--sp-large {
    font-size: 2rem;
    padding: 1.6rem 2.4rem;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.c-button--submit {
  background: #600F15;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  min-width: 11.2rem;
  padding: 0.8rem 1.6rem;
  text-align: center;
  transition: 0.5s;
}
.c-button--submit:hover {
  background: #231815;
}
@media screen and (min-width:768px) {
  .c-button--submit {
    padding: 1.2rem 3.2rem;
  }
}

/* (下層ページMV)
***************************************************************/
.c-lower-mv {
  background: url(../img/bg_lower-mv.webp) no-repeat center center/cover;
  height: 14.4rem;
  margin-top: 6.4rem;
  padding-inline: 2rem;
  position: relative;
}
@media screen and (min-width:948px) {
  .c-lower-mv {
    height: 16.4rem;
    margin-top: 10rem;
    padding-inline: 4rem;
  }
}
.p-strength .c-lower-mv {
  margin-top: 0;
}

.c-lower-mv__title {
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
}
.c-lower-mv__title img {
  display: inline-block;
  max-width: 100%;
}
.contact .c-lower-mv__title img {
  width: clamp(11.8rem, 8.3968586387rem + 9.07504363vw, 17rem);
}
.concept .c-lower-mv__title img {
  width: clamp(11.8rem, 8.3968586387rem + 9.07504363vw, 17rem);
}
.menu .c-lower-mv__title img {
  width: clamp(8.5rem, 5.8821989529rem + 6.9808027923vw, 12.5rem);
}
.strength .c-lower-mv__title img {
  width: clamp(21.2rem, 18.5214285714rem + 7.1428571429vw, 24rem);
}
@media screen and (min-width:768px) {
  .strength .c-lower-mv__title img {
    width: clamp(60rem, 7.5555555556rem + 68.287037037vw, 89.5rem);
  }
}
.product .c-lower-mv__title img {
  width: clamp(15rem, 11.0732984293rem + 10.4712041885vw, 21rem);
}
.privacy .c-lower-mv__title img {
  width: clamp(21.5rem, 14.9554973822rem + 17.4520069808vw, 31.5rem);
}
.error-404 .c-lower-mv__title img {
  width: clamp(23.1rem, 17.209947644rem + 15.7068062827vw, 32.1rem);
}

/* (セクション共通・大見出し)
***************************************************************/
.c-section__head {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media screen and (min-width:948px) {
  .c-section__head {
    gap: 1.6rem;
  }
}

.c-section__head-title {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width:948px) {
  .c-section__head-title {
    font-size: 3.2rem;
  }
}

.c-section__head-title-en {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width:948px) {
  .c-section__head-title-en {
    font-size: 1.6rem;
  }
}

/* (セクション共通・中見出し)
***************************************************************/
.c-section__head--type02 {
  display: flex;
  flex-direction: column;
  gap: 0rem;
}
@media screen and (min-width:948px) {
  .c-section__head--type02 {
    gap: 0.8rem;
  }
}

.c-section__head-title--type02 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-align: center;
}
@media screen and (min-width:948px) {
  .c-section__head-title--type02 {
    font-size: 3.2rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.4;
  }
}

.c-section__head-title-en--type02 {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4285714286;
  text-align: center;
}
@media screen and (min-width:948px) {
  .c-section__head-title-en--type02 {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.4;
  }
}

/* (パンくずリスト)
***************************************************************/
.c-breadcrumb {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: normal;
  margin-top: 1.3rem;
}

.c-breadcrumb__inner {
  margin-inline: auto;
  padding-inline: 2rem;
}
@media screen and (min-width:768px) {
  .c-breadcrumb__inner {
    padding-left: 3.2rem;
    padding-right: 3.2rem;
    width: 80rem;
  }
}
@media screen and (min-width:948px) {
  .c-breadcrumb__inner {
    padding-left: 4rem;
    padding-right: 4rem;
    width: 948px;
  }
}

.home,
.breadcrumb-prev {
  color: #888;
}

.breadcrumb-alow {
  padding-left: 8px;
}

.current-item {
  color: #600F15;
}

/* (フォーム)
***************************************************************/
.contact__row {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact__head {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.25;
}
.contact__head span.is-must {
  display: inline-block;
  font-weight: inherit;
  position: relative;
}
.contact__head span.is-must::after {
  border: 1px solid currentColor;
  border-radius: 2px;
  color: #600F15;
  content: "必須";
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 500;
  left: calc(100% + 1.2rem);
  line-height: 1;
  padding: 0.3rem 0.7rem;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  white-space: nowrap;
}

input[type=text],
input[type=email],
select,
textarea {
  background: #fff;
  border: 1px solid #bbb;
  border-radius: 0;
  border-radius: 2px;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 1.75;
  padding: 1.3rem 1.9rem;
  width: 100%;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #BBB;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #BBB;
}
input[type=text]:focus,
input[type=email]:focus,
select:focus,
textarea:focus {
  border-color: #600F15;
  outline: none;
}
@media screen and (min-width:948px) {
  input[type=text],
  input[type=email],
  select,
  textarea {
    font-size: 1.6rem;
  }
}

textarea {
  height: 16rem;
  resize: vertical;
}

input[type=checkbox] {
  height: 1px;
  position: absolute;
  width: 1px;
  clip: rect(0, 0, 0, 0);
}
input[type=checkbox]:focus + span::before {
  border-color: #600F15;
  outline: none;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.contact__data-checkbox .wpcf7-list-item-label {
  cursor: pointer;
  display: inline-block;
  font-size: 1.6rem;
  padding-left: 3.6rem;
  position: relative;
}
.contact__data-checkbox .wpcf7-list-item-label::before {
  border: 1px solid #bbb;
  content: "";
  height: 2.4rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 2.4rem;
}
.contact__data-checkbox .wpcf7-list-item-label::after {
  border-bottom: 2px solid #600F15;
  border-right: 2px solid #600F15;
  content: "";
  height: 1.4rem;
  left: 0.8rem;
  opacity: 0;
  position: absolute;
  rotate: 45deg;
  top: 0.3rem;
  transition: all 0.3s ease;
  width: 0.7rem;
}

.contact__acceptance {
  margin-bottom: -1rem;
  margin-top: 1.6rem;
  text-align: center;
}
.contact__acceptance .wpcf7-list-item-label {
  font-weight: 500;
  letter-spacing: 0;
}
.contact__acceptance a {
  font-weight: 500;
  text-decoration: underline;
  transition: all 0.3s ease;
}
.contact__acceptance a:hover {
  opacity: 0.7;
}
@media screen and (min-width:948px) {
  .contact__acceptance {
    margin-top: 3.2rem;
  }
}

input[type=submit],
input[type=button] {
  border-radius: 0px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  background: transparent;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

.row.jc-center {
  justify-content: center;
}

.contact__submit {
  text-align: center;
}
.contact__submit input[type=submit] {
  background: #600F15;
  color: #fff;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  padding: 0.8rem 2.4rem;
  transition: 0.3s;
}
.contact__submit input[type=submit]:disabled {
  background: #bbb;
  cursor: not-allowed;
}
.contact__submit input[type=submit]:disabled:hover {
  background: #bbb;
}
.contact__submit input[type=submit]:hover {
  background: #000;
}
@media screen and (min-width:768px) {
  .contact__submit input[type=submit] {
    padding: 1.2rem 3.2rem;
  }
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-list-item {
  margin: 0 0 0 0;
}

.wpcf7-not-valid-tip {
  color: #C20B2A;
  font-size: 1.6rem;
  margin-top: 1.2rem;
}

input.wpcf7-not-valid {
  border-color: #C20B2A;
}

textarea.wpcf7-not-valid,
select.wpcf7-not-valid {
  border-color: #C20B2A;
}

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

.wpcf7-submit:disabled {
  cursor: not-allowed;
}

/* (MV)
***************************************************************/
.p-mv {
  margin-top: 6.4rem;
}
@media screen and (min-width:1250px) {
  .p-mv {
    margin-top: 10rem;
  }
  .p-mv img {
    height: calc(100vh - 10rem);
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
  }
}

/* (p-introduction)
***************************************************************/
.p-introduction {
  padding-bottom: 8rem;
  padding-top: 8.6rem; /*タイトルが画像のためline-heightを考慮*/
}
@media screen and (min-width:948px) {
  .p-introduction {
    padding-bottom: 10.4rem;
    padding-top: 11.6rem; /*タイトルが画像のためline-heightを考慮*/
  }
}

.p-introduction__title {
  margin-inline: auto;
  max-width: 100%;
  width: clamp(28rem, 15.6963350785rem + 32.8097731239vw, 46.8rem);
}

.p-introduction__subtitle--bg {
  background: #231815;
  margin-inline: auto;
  margin-top: 1rem;
  max-width: 100%;
  padding: 1rem 1rem 1.1rem 1rem; /*タイトルが画像のためline-heightを考慮*/
  text-align: center;
  width: 34.3rem;
}
.p-introduction__subtitle--bg img {
  max-width: 100%;
  width: 27rem;
}
@media screen and (min-width:768px) {
  .p-introduction__subtitle--bg {
    margin-inline: auto;
    margin-top: 0.8rem;
    padding: 0.6rem 2rem 0.6rem 2rem; /*タイトルが画像のためline-heightを考慮*/
    width: -moz-fit-content;
    width: fit-content;
  }
  .p-introduction__subtitle--bg img {
    width: 38rem;
  }
}
@media screen and (min-width:948px) {
  .p-introduction__subtitle--bg {
    margin-inline: auto;
    width: -moz-fit-content;
    width: fit-content;
  }
  .p-introduction__subtitle--bg img {
    width: 50.1rem;
  }
}

.p-introduction__subtitle {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-top: 1.2rem;
  text-align: center;
}
@media screen and (min-width:948px) {
  .p-introduction__subtitle {
    margin-top: 1.6rem;
  }
}

.p-introduction__body {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  margin-top: 6.4rem;
}
@media screen and (min-width:948px) {
  .p-introduction__body {
    gap: 2.4rem;
    margin-top: 8rem;
  }
}

.p-introduction__body-title {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width:948px) {
  .p-introduction__body-title {
    font-size: 3.2rem;
  }
}

@media screen and (min-width:948px) {
  .p-introduction__body-contents {
    margin-inline: auto;
    max-width: 100%;
    width: 84.5rem;
  }
}

.p-introduction__body-text {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2.08;
  text-align: center;
}
@media screen and (min-width:768px) {
  .p-introduction__body-text {
    text-align: left;
  }
}
@media screen and (min-width:948px) {
  .p-introduction__body-text {
    font-size: 1.6rem;
    text-align: left;
  }
}

.p-introduction__link {
  text-align: center;
}

.p-introduction__img {
  margin-top: 6.4rem;
}
@media screen and (min-width:948px) {
  .p-introduction__img {
    margin-top: 8rem;
  }
}
.p-introduction__img img {
  max-height: 66.1rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

/* (top-menu)
***************************************************************/
.p-top-menu {
  overflow: hidden;
  padding-block: 8rem;
}
@media screen and (min-width:948px) {
  .p-top-menu {
    padding-block: 10.4rem;
  }
}

.p-top-menu__container {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  margin-top: 6.4rem;
}
@media screen and (min-width:948px) {
  .p-top-menu__container {
    gap: 10.4rem;
    margin-top: 8rem;
  }
}

.p-top-menu__img {
  margin: 0 calc(50% - 50vw);
}
.p-top-menu__img img {
  max-height: 69.2rem;
  width: 100vw;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.ear-pot .p-top-menu__img img {
  -o-object-position: center bottom;
     object-position: center bottom;
}

.p-top-menu__body {
  margin-top: 3.2rem;
}
@media screen and (min-width:948px) {
  .p-top-menu__body {
    margin-top: 4.8rem;
  }
}

.p-top-menu__contents {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2.4rem;
  text-align: center;
}
@media screen and (min-width:948px) {
  .p-top-menu__contents {
    gap: 1.6rem;
    margin-top: 3.2rem;
  }
}

.p-top-menu__body-title {
  font-feature-settings: "palt" 1;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.4375;
}
@media screen and (min-width:948px) {
  .p-top-menu__body-title {
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    line-height: 1.4;
  }
}

.p-top-menu__body-text {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.4;
}
@media screen and (min-width:948px) {
  .p-top-menu__body-text {
    font-size: 1.6rem;
  }
}

.p-top-menu__link {
  margin-top: 1.6rem;
}
@media screen and (min-width:948px) {
  .p-top-menu__link {
    margin-top: 0;
  }
}

/* (top-products)
***************************************************************/
.p-top-products {
  padding-block: 8rem;
}
@media screen and (min-width:948px) {
  .p-top-products {
    padding-block: 10.4rem;
  }
}

.p-top-products__container {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  margin-top: 6.4rem;
  text-align: center;
}
@media screen and (min-width:948px) {
  .p-top-products__container {
    gap: 4rem;
    margin-inline: auto;
    margin-top: 8rem;
    max-width: 100%;
    width: 78rem;
  }
}

.p-top-products__text {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2.08;
}
@media screen and (min-width:948px) {
  .p-top-products__text {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 2.08;
  }
}

/* (p-contact)
***************************************************************/
.p-contact {
  padding-block: 8rem;
}
@media screen and (min-width:948px) {
  .p-contact {
    padding-block: 10.4rem;
  }
}

.p-contact__container {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  margin-top: 2.8rem;
}
@media screen and (min-width:948px) {
  .p-contact__container {
    gap: 4rem;
    margin-inline: auto;
    margin-top: 4rem;
    max-width: 100%;
    width: 71.2rem;
  }
}

.p-contact__text {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2.08;
  text-align: center;
}
@media screen and (min-width:948px) {
  .p-contact__text {
    font-size: 1.8rem;
  }
}
.p-contact__text a {
  text-decoration-line: underline;
  transition: all 0.3s ease;
}
.p-contact__text a:hover {
  opacity: 0.7;
}

.p-contact__form {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

/* (p-map)
***************************************************************/
.p-map__inflame {
  padding-bottom: clamp(24rem, 18.3661971831rem + 15.0234741784vw, 40rem);
  position: relative;
  width: 100%;
}
.p-map__inflame iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/* (p-concept)
***************************************************************/
.p-concept {
  padding-bottom: 8rem;
  padding-top: 7rem;
}
@media screen and (min-width:948px) {
  .p-concept {
    padding-bottom: 10.4rem;
    padding-top: 9rem;
  }
}

.p-concept__head {
  text-align: center;
}
.p-concept__head img {
  max-width: 100%;
  width: 30rem;
}
@media screen and (min-width:948px) {
  .p-concept__head img {
    width: 50rem;
  }
}

.p-concept__title {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-size: 2.4rem;
  font-weight: 500;
  gap: 0.4rem;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-top: 2.5rem;
}
@media screen and (min-width:948px) {
  .p-concept__title {
    flex-direction: row;
    gap: 0;
    justify-content: center;
    margin-top: 2.2rem;
  }
}
.p-concept__title span {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
@media screen and (min-width:948px) {
  .p-concept__title span {
    padding-top: 0.5rem;
  }
}

.p-concept__boxes {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-top: 6.4rem;
}
@media screen and (min-width:948px) {
  .p-concept__boxes {
    gap: 3.2rem;
    margin-top: 8rem;
  }
}

.p-concept__box {
  background: url(../img/bg_frame-sp.png) no-repeat center center/cover;
  display: grid;
  height: 57.9rem;
  margin-inline: auto;
  place-items: center;
  width: 34.3rem;
}
@media screen and (min-width:948px) {
  .p-concept__box {
    background: url(../img/bg_frame.png) no-repeat center center/cover;
    height: 41.9rem;
    width: 70.7rem;
  }
}

.p-concept__box-body {
  color: #EBD272;
  text-align: center;
  width: 20rem;
}
@media screen and (min-width:948px) {
  .p-concept__box-body {
    width: 60rem;
  }
}

.p-concept__box-title {
  font-feature-settings: "palt";
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
@media screen and (min-width:948px) {
  .p-concept__box-title {
    font-size: 2.4rem;
  }
}

.p-concept__box-text {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin-top: 1.6rem;
}
@media screen and (min-width:948px) {
  .p-concept__box-text {
    font-size: 1.6rem;
  }
}

.p-concept__lower {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  margin-top: 8rem;
}
@media screen and (min-width:948px) {
  .p-concept__lower {
    gap: 4rem;
    margin-top: 10.8rem;
  }
}

.p-concept__text {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.8;
  text-align: center;
}
@media screen and (min-width:948px) {
  .p-concept__text {
    font-size: 1.6rem;
  }
}

.p-concept__link {
  text-align: center;
}

/* (p-product)
***************************************************************/
.p-product {
  padding-block: 6.4rem 3.2rem;
}
@media screen and (min-width:948px) {
  .p-product {
    padding-block: 8rem 4.8rem;
  }
}

.p-product__introduce {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  margin-top: 3.2rem;
}
@media screen and (min-width:768px) {
  .p-product__introduce {
    margin-inline: auto;
    max-width: 100%;
    width: 65rem;
  }
}
@media screen and (min-width:948px) {
  .p-product__introduce {
    display: grid;
    gap: 4rem;
    grid-template-columns: 34.6007604563% 1fr;
    margin-top: 4.8rem;
    width: 105.2rem;
  }
}

.p-product__contents {
  margin-inline: auto;
  max-width: 100%;
  width: 45rem;
}

.p-product__img {
  text-align: center;
}
.p-product__img img {
  width: 22.4rem;
}
@media screen and (min-width:948px) {
  .p-product__img img {
    width: 100%;
  }
}

.p-product__text {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
.p-product__text span {
  color: #E4007F;
  font-weight: inherit;
}
@media screen and (min-width:948px) {
  .p-product__text {
    font-size: 1.6rem;
  }
}

.p-product__card-wrap {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  margin-top: 3.2rem;
}
@media screen and (min-width:768px) {
  .p-product__card-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 2.4rem;
         column-gap: 2.4rem;
  }
}
@media screen and (min-width:1250px) {
  .p-product__card-wrap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 4.8rem;
  }
}

.p-product__card {
  border: 1px solid var(--text, #231815);
  margin-bottom: 3.2rem;
  padding: 2.3rem 1.5rem;
}
@media screen and (min-width:768px) {
  .p-product__card {
    display: grid;
    grid-row: span 4;
    grid-template-rows: subgrid;
    padding: 3.1rem 2.3rem;
  }
}

.p-product__card-img {
  aspect-ratio: 1/1;
  height: auto;
  margin-inline: auto;
  max-width: 100%;
  width: 31.1rem;
}
@media screen and (min-width:948px) {
  .p-product__card-img {
    width: 32rem;
  }
}

.p-product__card-head {
  margin-top: 2.8rem;
}
@media screen and (min-width:948px) {
  .p-product__card-head {
    margin-top: 4rem;
  }
}

.p-product__card-title {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
}

.p-product__card-title-en {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-top: 0.8rem;
  text-align: center;
}
@media screen and (min-width:948px) {
  .p-product__card-title-en {
    font-size: 1.6rem;
  }
}

.p-product__card-text {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin-top: 1.2rem;
}
@media screen and (min-width:948px) {
  .p-product__card-text {
    font-size: 1.6rem;
    margin-top: 1.6rem;
  }
}

.p-product__card-link {
  margin-top: 2.8rem;
  text-align: center;
}
@media screen and (min-width:768px) {
  .p-product__card-link {
    margin-top: 4rem;
  }
}

/* (p-tea)
***************************************************************/
.p-tea {
  background: #FADCE9;
  padding-block: 6.4rem 3.2rem;
}
@media screen and (min-width:948px) {
  .p-tea {
    padding-block: 8rem 4.8rem;
  }
}

.p-tea__text {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin-top: 3.2rem;
}
@media screen and (min-width:948px) {
  .p-tea__text {
    font-size: 1.6rem;
    margin-top: 4.8rem;
    text-align: center;
  }
}

.p-tea__card-wrap {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  margin-top: 3.2rem;
}
@media screen and (min-width:768px) {
  .p-tea__card-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 2.4rem;
         column-gap: 2.4rem;
  }
}
@media screen and (min-width:1250px) {
  .p-tea__card-wrap {
    /* template-columns と column-gap を合計して100%になるように */
    grid-template-columns: repeat(auto-fit, 32%);
    margin-top: 4.8rem;
    -moz-column-gap: 1.78%;
         column-gap: 1.78%;
    justify-content: center;
  }
}

.p-tea__card {
  background: #fff;
  border: 1px solid var(--text, #231815);
  margin-bottom: 3.2rem;
  padding: 2.3rem 1.5rem;
}
@media screen and (min-width:768px) {
  .p-tea__card {
    display: grid;
    grid-row: span 4;
    grid-template-rows: subgrid;
    padding: 3.1rem 2.3rem;
  }
}

.p-tea__card-img {
  aspect-ratio: 1/1;
  height: auto;
  margin-inline: auto;
  max-width: 100%;
  width: 31.1rem;
}
@media screen and (min-width:948px) {
  .p-tea__card-img {
    width: 32rem;
  }
}

.p-tea__card-body {
  margin-top: 2.8rem;
}
@media screen and (min-width:1250px) {
  .p-tea__card-body {
    margin-top: 4rem;
  }
}

.p-tea__card-title {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
}

.p-tea__card-title-en {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-top: 0.8rem;
  text-align: center;
}
@media screen and (min-width:948px) {
  .p-tea__card-title-en {
    font-size: 1.6rem;
  }
}

.p-tea__card-text {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin-top: 1.6rem;
}
@media screen and (min-width:948px) {
  .p-tea__card-text {
    font-size: 1.6rem;
    margin-top: 2.4rem;
  }
}

.p-tea__card-link {
  margin-top: 2.8rem;
  text-align: center;
}
@media screen and (min-width:1250px) {
  .p-tea__card-link {
    margin-top: 4rem;
  }
}

/* (p-menu)
***************************************************************/
.p-menu {
  padding-block: 6.4rem 4rem;
}
@media screen and (min-width:948px) {
  .p-menu {
    padding-block: 8rem 4.8rem;
  }
}

.p-menu__card-wrap {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media screen and (min-width:768px) {
  .p-menu__card-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 2.4rem;
         column-gap: 2.4rem;
  }
}
@media screen and (min-width:1250px) {
  .p-menu__card-wrap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.p-menu__card-wrap--single {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.p-menu__card {
  background: var(--light-gray, #EFEFEF);
  border: 1px solid var(--text, #231815);
  margin-bottom: 2.4rem;
  padding-bottom: 2.2rem;
}
@media screen and (min-width:768px) {
  .p-menu__card {
    display: grid;
    grid-row: span 3;
    grid-template-rows: subgrid;
    margin-bottom: 3.2rem;
  }
}
@media screen and (min-width:948px) {
  .p-menu__card {
    padding-bottom: 3.2rem;
  }
}

.p-menu__card-img {
  aspect-ratio: 341/159;
  overflow: hidden;
}
.p-menu__card-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-menu__card-body {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  padding: 2.8rem 1.5rem 2.8rem 1.5rem;
}
@media screen and (min-width:768px) {
  .p-menu__card-body {
    gap: 2.4rem;
    min-height: 50rem;
    padding: 6.4rem 2.3rem 6.4rem 2.3rem;
  }
}

.p-menu__card-head {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.p-menu__card-title {
  font-size: clamp(2rem, 1.7382198953rem + 0.6980802792vw, 2.4rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
}

.p-menu__card-title-en {
  font-size: clamp(1.4rem, 1.3295774648rem + 0.1877934272vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
}

.p-menu__list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
@media screen and (min-width:768px) {
  .p-menu__list {
    gap: 0.4rem;
  }
}

.p-menu__gender {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.7;
}
@media screen and (min-width:948px) {
  .p-menu__gender {
    font-size: 1.8rem;
  }
}

.p-menu__item {
  align-items: flex-end;
  display: flex;
  font-size: 1.4rem;
  font-weight: 400;
  justify-content: space-between;
  letter-spacing: 0.08em;
  line-height: 1.7;
}
@media screen and (min-width:948px) {
  .p-menu__item {
    font-size: 1.6rem;
  }
}

.p-menu__item-name {
  margin-right: 1rem;
  width: 71%;
}

.p-menu__item-description {
  flex-shrink: 0;
  white-space: nowrap;
}
.p-menu__item-description span {
  display: inline-block;
  margin-left: 0.8rem;
  padding-left: 1rem;
  position: relative;
}
@media screen and (min-width:948px) {
  .p-menu__item-description span {
    margin-left: 0.9rem;
    padding-left: 1.1rem;
  }
}
.p-menu__item-description span::before {
  content: "¥";
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.p-menu__item-description span:empty::before {
  content: none;
}

.p-menu__attention {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.7;
}
@media screen and (min-width:948px) {
  .p-menu__attention {
    font-weight: 500;
  }
}

.p-menu__link {
  text-align: center;
}

/* (p-strength)
***************************************************************/
.p-strength__inner {
  margin-inline: auto;
  max-width: 100%;
  padding-block: 6.4rem;
  padding-inline: 1.6rem;
  width: 50rem;
}
@media screen and (min-width:768px) {
  .p-strength__inner {
    padding-inline: 3rem;
    width: 58rem;
  }
}
@media screen and (min-width:948px) {
  .p-strength__inner {
    padding-block: 8rem;
    padding-inline: 4rem;
    width: 102.8rem;
  }
}
@media screen and (min-width:1250px) {
  .p-strength__inner {
    width: 120rem;
  }
}

.p-strength__prologue {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width:948px) {
  .p-strength__prologue {
    font-size: 3.8rem;
  }
}

.p-strength__head {
  margin-top: 6.4rem;
}
@media screen and (min-width:948px) {
  .p-strength__head {
    margin-top: 8rem;
  }
}

.p-strength__head-title {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width:948px) {
  .p-strength__head-title {
    font-size: 3.2rem;
  }
}

.p-strength__head-sub {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-top: 0.8rem;
  text-align: center;
}
@media screen and (min-width:948px) {
  .p-strength__head-sub {
    font-size: 2rem;
  }
}

.p-strength__head-text {
  margin-top: 2.8rem;
}
@media screen and (min-width:948px) {
  .p-strength__head-text {
    margin-inline: auto;
    margin-top: 4rem;
    max-width: 100%;
    text-align: center;
    width: 60rem;
  }
}
@media screen and (min-width:948px) and (min-width:1250px) {
  .p-strength__head-text {
    width: 100%;
  }
}
.p-strength__head-text > p {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media screen and (min-width:948px) {
  .p-strength__head-text > p {
    font-size: 1.6rem;
  }
}
.p-strength__head-text > p:not(:first-of-type) {
  margin-top: 1.6rem;
}
@media screen and (min-width:948px) {
  .p-strength__head-text > p:not(:first-of-type) {
    margin-top: 2.4rem;
  }
}

.p-strength__main {
  margin-top: 6.4rem;
}
@media screen and (min-width:948px) {
  .p-strength__main {
    margin-top: 8rem;
  }
}

.p-strength__main-title {
  background: url(../img/bg_perfection.webp) no-repeat center center/cover;
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  padding: 1.23rem 1rem 1.163rem 1rem;
  text-align: center;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width:948px) {
  .p-strength__main-title {
    font-size: 3.2rem;
    padding: 1.1rem 1rem 1.2rem 1rem;
  }
}

.p-strength__contents {
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
  margin-top: 2.8rem;
}
@media screen and (min-width:948px) {
  .p-strength__contents {
    flex-direction: row;
    gap: 7.1428571429%;
    margin-top: 4rem;
  }
}

.p-strength__item {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media screen and (min-width:948px) {
  .p-strength__item {
    gap: 2.4rem;
    width: 50%;
  }
}

.p-strength__item-head {
  color: #920783;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: center;
}
@media screen and (min-width:948px) {
  .p-strength__item-head {
    text-align: left;
  }
}

.p-strength__item-name {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.45;
}
@media screen and (min-width:948px) {
  .p-strength__item-name {
    font-size: 2.4rem;
  }
}

.p-strength__item-sub {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4285714286;
}
@media screen and (min-width:948px) {
  .p-strength__item-sub {
    font-size: 1.6rem;
  }
}

.p-strength__item-text {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media screen and (min-width:948px) {
  .p-strength__item-text {
    font-size: 1.6rem;
  }
}
.p-strength__item-text span {
  color: #600F15;
  font-weight: inherit;
  letter-spacing: inherit;
}

.p-strength__bottom {
  margin-top: 6.4rem;
}
@media screen and (min-width:948px) {
  .p-strength__bottom {
    margin-top: 8rem;
  }
}

.p-strength__bottom-text {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.8;
  text-align: center;
}
@media screen and (min-width:948px) {
  .p-strength__bottom-text {
    font-size: 1.6rem;
  }
}

/* (p-function)
***************************************************************/
.p-function {
  background: #C9BC9C;
  padding-block: 8rem;
}
@media screen and (min-width:948px) {
  .p-function {
    padding-block: 10.4rem;
  }
}

.p-function__lists {
  display: grid;
  gap: 3.2rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  margin-top: 4.8rem;
}
@media screen and (min-width:768px) {
  .p-function__lists {
    gap: 4rem 2.4rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (min-width:948px) {
  .p-function__lists {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-inline: auto;
    margin-top: 6.4rem;
    max-width: 100%;
    width: 98.4rem;
  }
}

.p-function__item-title {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin-top: 0.8rem;
  text-align: center;
}
@media screen and (min-width:948px) {
  .p-function__item-title {
    font-size: 2rem;
  }
}

/* (p-privacy)
***************************************************************/
.p-privacy {
  padding-bottom: 8rem;
  padding-top: 6.4rem;
}
@media screen and (min-width:948px) {
  .p-privacy {
    padding-bottom: 10.4rem;
    padding-top: 8rem;
  }
}

.p-privacy__title {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width:948px) {
  .p-privacy__title {
    font-size: 3.2rem;
  }
}

.p-privacy__contents {
  margin-top: 3.2rem;
  text-align: left;
}
@media screen and (min-width:948px) {
  .p-privacy__contents {
    margin-top: 4rem;
  }
}
.p-privacy__contents .wp-block-heading {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin-bottom: 0.8rem;
  margin-top: 2.4rem;
}
@media screen and (min-width:948px) {
  .p-privacy__contents .wp-block-heading {
    font-size: 2.4rem;
  }
}

.p-privacy__contents > p {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.8;
}

.p-privacy__contents > p + p {
  margin-top: 2rem;
}

.p-privacy__contents ol {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.8;
  list-style: decimal; /* 番号付きに戻す */
  padding-left: 2.2rem;
}

.p-privacy__contents ol {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.8;
  list-style: decimal; /* 番号付きに戻す */
  margin-bottom: 0.8rem;
  padding-left: 2.2rem;
}

.p-privacy__contents ol li ol {
  margin-bottom: 0.8rem;
  margin-top: 0.8rem;
  padding-left: 4rem;
}
.p-privacy__contents ol li ol ol {
  margin-bottom: 0.8rem;
  padding-left: 4rem;
}

.p-privacy__contents ol li {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.8;
  list-style: inherit;
}

/* (404)
***************************************************************/
.p-404 {
  padding-bottom: 8rem;
  padding-top: 6.4rem;
}
@media screen and (min-width:948px) {
  .p-404 {
    padding-bottom: 10.4rem;
    padding-top: 8rem;
  }
}

.p-404__inner {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  margin-inline: auto;
  max-width: 100%;
  width: 78.5rem;
}
@media screen and (min-width:948px) {
  .p-404__inner {
    gap: 4rem;
  }
}

.p-404__title {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width:948px) {
  .p-404__title {
    font-size: 3.2rem;
  }
}

.p-404__text {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.8;
  text-align: center;
}
@media screen and (min-width:948px) {
  .p-404__text {
    font-size: 1.6rem;
  }
}

.p-404__link {
  text-align: center;
}

/* (thanks)
***************************************************************/
.p-thanks {
  padding-bottom: 8rem;
  padding-top: 6.4rem;
}
@media screen and (min-width:948px) {
  .p-thanks {
    padding-bottom: 10.4rem;
    padding-top: 8rem;
  }
}

.p-thanks__title {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width:948px) {
  .p-thanks__title {
    font-size: 3.2rem;
  }
}

.p-thanks__contents {
  margin-top: 2.8rem;
}
@media screen and (min-width:948px) {
  .p-thanks__contents {
    font-feature-settings: "palt" 1;
    font-size: 2rem;
    margin-inline: auto;
    margin-top: 4rem;
    max-width: 100%;
    width: 53.3rem;
  }
}
.p-thanks__contents p {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.8;
  text-align: center;
}
@media screen and (min-width:948px) {
  .p-thanks__contents p {
    font-size: 1.6rem;
  }
}
.p-thanks__contents p + p {
  margin-top: 1em;
}

.p-thanks__link {
  margin-top: 2.8rem;
  text-align: center;
}
@media screen and (min-width:948px) {
  .p-thanks__link {
    margin-top: 4rem;
  }
}

/* (スマホファースト)
***************************************************************/
@media screen and (min-width:948px) {
  .u-hidden-pc {
    display: none;
  }
}

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

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

.u-only-pc {
  display: none;
}
@media screen and (min-width:948px) {
  .u-only-pc {
    display: block;
  }
}

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

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

.u-text-90 {
  font-size: 90%;
  font-weight: inherit;
}

.u-text-110 {
  font-size: 110%;
  font-weight: inherit;
}

.u-text-130 {
  font-size: 130%;
  font-weight: inherit;
}

.u-text-150 {
  font-size: 150%;
  font-weight: inherit;
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

.u-text-under {
  border-bottom: 1px solid currentColor;
  font-size: inherit;
  font-weight: inherit;
}

.u-text-bold {
  font-weight: 700;
}

.u-text-marker {
  background: linear-gradient(transparent 60%, #ffff75 40%);
  font-weight: inherit;
}

.u-text-palt {
  font-feature-settings: "palt" 1;
}