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

html {
 overflow-x: hidden;
 -webkit-text-size-adjust: none;
 -moz-text-size-adjust: none;
 -ms-text-size-adjust: none;
 text-size-adjust: none;
 scroll-behavior: smooth;
}

body {
 font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
 color: #333333;
 background-color: #ffffff;
 font-size: clamp(14px, 2vw, 20px);
 line-height: 1.8;
 overflow-x: hidden;
}

main {
 max-width: 600px;
 padding-inline: 12px;
 margin: 60px auto 0;
}
@media screen and (min-width: 768px) {
 main {
  margin: 60px auto 0;
 }
}
@media screen and (min-width: 1024px) {
 main {
  max-width: 1280px;
  margin: 153px auto 0;
 }
}
@media screen and (min-width: 1280px) {
 main {
  margin-top: 134px;
 }
}

img {
 width: 100%;
}

p {
 margin: 0;
}

textarea {
 resize: none;
 overflow: hidden;
 width: 100%;
}

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

@media screen and (min-width: 1024px) {
 .pc-hidden {
  display: none;
 }
}

.l-main--single {
 max-width: 100%;
 padding: 0;
}
.l-header {
 position: fixed;
 top: 0;
 left: 0;
 width: 100vw;
 z-index: 50;
 height: 60px;
 background-color: #ffffff;
}
@media screen and (min-width: 1024px) {
 .l-header {
  height: auto;
 }
}

.l-header__inner {
 padding-left: 11px;
}
@media screen and (min-width: 1024px) {
 .l-header__inner {
  padding: 24px;
 }
}

.l-header-wrapper--sp {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-pack: justify;
 -ms-flex-pack: justify;
 justify-content: space-between;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 height: 100%;
}
@media screen and (min-width: 1024px) {
 .l-header-wrapper--sp {
  display: none;
 }
}

.l-header-wrapper--pc {
 display: none;
}
@media screen and (min-width: 1024px) {
 .l-header-wrapper--pc {
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
 }
}
@media screen and (min-width: 1280px) {
 .l-header-wrapper--pc {
  grid-template-columns: auto auto auto;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
 }
}

.l-header__logo {
 aspect-ratio: 46/28;
 width: 73px;
}
.l-header__logo img {
 width: 100%;
}
@media screen and (min-width: 1024px) {
 .l-header__logo {
  margin: 0 auto;
  width: 130px;
 }
}
@media screen and (min-width: 1280px) {
 .l-header__logo {
  margin: 0;
  grid-column: 1/2;
  grid-row: 1/2;
 }
}

.l-header__nav {
 display: none;
}
@media screen and (min-width: 1024px) {
 .l-header__nav {
  display: block;
  grid-column: 1/3;
  grid-row: 2/3;
 }
}
@media screen and (min-width: 1280px) {
 .l-header__nav {
  grid-column: 2/3;
  grid-row: 1/2;
 }
}

@media screen and (min-width: 1024px) {
 .l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
 }
}

.l-header__btn {
 display: none;
}
@media screen and (min-width: 1024px) {
 .l-header__btn {
  margin: 0 auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 8px;
  grid-column: 2/3;
  grid-row: 1/2;
 }
}
@media screen and (min-width: 1280px) {
 .l-header__btn {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-column: 3/4;
  grid-row: 1/2;
 }
}

.l-drawer-content {
 position: fixed;
 top: 0;
 left: 0;
 z-index: -1;
 width: 100%;
 height: 100vh;
 background-color: #1f2529;
 -webkit-transition: opacity 0.3s ease;
 transition: opacity 0.3s ease;
 opacity: 0;
}
.l-drawer-content.is-open {
 z-index: 40;
 opacity: 1;
}

.l-drawer__inner {
 padding-inline: 15px;
 max-width: 476px;
 margin-inline: auto;
}
.l-drawer__inner a:active {
 background-color: rgba(0, 0, 0, 0.1);
}

.l-drawer__head {
 margin-top: 60px;
 display: grid;
 place-content: center;
 padding-top: 74px;
 padding-bottom: 43px;
}

.l-drawer__container {
 display: grid;
 gap: 43px;
}

.l-drawer__menu {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 gap: 14px;
 text-align: center;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
}

.l-drawer__btn {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 gap: 20px;
 text-align: center;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
}
.l-drawer__btn .c-button {
 min-width: 150px;
 font-size: 22px;
}

.l-drawer__icon-list {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
 gap: 18px;
 padding-top: 62px;
 padding-right: 12px;
}
.l-drawer__icon-list .p-footer__icon-list-item {
 width: 66px;
 height: 66px;
}

.l-hero {
 position: relative;
 margin-inline: calc(50% - 50vw);
}

.l-hero__container {
 position: relative;
}

.l-hero__title-box {
 display: grid;
 gap: 6px;
 position: absolute;
 top: 35%;
 left: 15%;
 z-index: 3;
}
@media screen and (min-width: 768px) {
 .l-hero__title-box {
  top: 34%;
  left: 9%;
  gap: 12px;
 }
}

.l-hero__container--404 {
 position: relative;
 display: grid;
 place-items: center;
}

.l-concept {
 padding-block: 40px;
}
@media screen and (min-width: 768px) {
 .l-concept {
  padding-block: 80px;
  padding-top: 120px;
  padding-bottom: 180px;
 }
 .l-concept .c-title--h2 {
  margin-inline: calc(50% - 50vw);
 }
}

.l-concept__container {
 margin-top: 24px;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
 -ms-flex-direction: column;
 flex-direction: column;
 gap: 16px;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
}
@media screen and (min-width: 1024px) {
 .l-concept__container {
  margin-top: 80px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
 }
}



section.l-youtube {
 text-align: center;
 margin: 30px auto 0;
 position: relative;
 width: 100%;
 padding-top: 56.25%;
}

section.l-youtube iframe {
 position: absolute;
 top: 0;
 right: 0;
 width: 100% !important;
 height: 100% !important;
}

section.l-youtube.menu {
 margin: 50px auto 0;
}
section.l-youtube.access {
 margin: 30px auto 0px;
}
section.l-youtube.recruit {
 margin: -30px auto 50px;
}

@media screen and (min-width: 1023px) {
 section.l-youtube.top {
  margin-top: -100px;
 }
 section.l-youtube.recruit {
  margin: -100px auto 60px;
 }
 section.l-youtube.menu {
  margin: 80px auto -80px;
 }
 section.l-youtube.access {
  margin: 80px auto 0;
 }
}



recruit.l-menu {
 padding-block: 40px;
 background-color: rgba(16, 48, 30, 0.64);
 color: #ffffff;
 margin-inline: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
 .l-menu {
  padding-block: 100px;
 }
}

.l-menu__inner {
 max-width: 476px;
 padding-inline: 12px;
 margin-inline: auto;
}
@media screen and (min-width: 768px) {
 .l-menu__inner {
  max-width: 1280px;
 }
}

.l-menu__btn {
 text-align: center;
 margin: 20px auto;
}
@media screen and (min-width: 1024px) {
 .l-menu__btn {
  padding-right: 40px;
  text-align: end;
 }
}



/*/////////////////////////////////////////////////////////////////////////////////////

癒しの整体&リンパが選ばれる理由

/////////////////////////////////////////////////////////////////////////////////////*/
div#anchor01,div#anchor02,div#anchor03,div#anchor04,div#anchor05,div#anchor06,div#anchor07,div#anchor08,div#anchor09,div#anchor10 {
 padding-top: 140px;
 margin-top: -140px;
}
@media screen and (max-width: 767px) {
 div#anchor01,div#anchor02,div#anchor03,div#anchor04,div#anchor05,div#anchor06,div#anchor07,div#anchor08,div#anchor09,div#anchor10 {
  padding-top: 80px;
  margin-top: -80px;
 }
}

.top-reason {
 padding-top: 40px;
 padding-bottom: 60px;
}
.reason-items {
 margin: 40px auto;
 display: flex;
 flex-wrap: wrap;
 gap: 2rem 2%;
}

.reason-items .reason-item {
 width: 32%;
 -webkit-transition: opacity 0.3s ease;
 transition: opacity 0.3s ease;
 text-align: center;
}
.reason-items .reason-item:hover {
 opacity: 0.8;
}
.reason-items .reason-item .item-image {
 position: relative;
 padding-top: 70%;
 width: 100%;
}
.reason-items .reason-item .item-image::after {
 content: "";
 display: block;
 width: 100%;
 height: 100%;
 background: #ddd;
 position: absolute;
 top: 5px;
 left: 5px;
 z-index: -1;
}
.reason-items .reason-item .item-image img {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 object-fit: cover;
}
.reason-items .reason-item h3.item-title {
 display: inline-block;
 margin-top: 6px;
 text-align: center;
 line-height: 1.5;
 -webkit-transition: opacity 0.3s ease;
 transition: opacity 0.3s ease;
}

.reason-items .reason-item:hover h3.item-title {
 border-bottom: solid 1px #d05f8c;
}
.reason-link {
 text-align: center;
}
.reason-link a {
 border:solid 1px #000;
}

@media screen and (max-width: 1023px) {
 .reason-items {
  gap: 2rem 4%;
 }
 .reason-items .reason-item {
  width: 48%;
 }
 .reason-items .reason-item h3.item-title {
  font-size: 18px;
 }
}
@media screen and (max-width: 767px) {
 .reason-items .reason-item h3.item-title {
  font-size: 16px;
 }
}






/*/////////////////////////////////////////////////////////////////////////////////////

スタッフ紹介

/////////////////////////////////////////////////////////////////////////////////////*/
.l-staff {
 padding-top: 40px;
 padding-bottom: 60px;
}
@media screen and (min-width: 1024px) {
 .l-staff {
  padding-block: 130px;
 }
}

.l-staff__container {
 position: relative;
 margin: 40px auto 0;
 padding-inline: 35px;
}

.staff-swiper {
 padding: 20px 0;
}
.staff-swiper .swiper-slide {
 width: auto;
}
@media screen and (min-width: 768px) {
 .staff-swiper {
  padding-top: 120px;
 }
}

.c-swiper-nav {
 position: absolute;
 top: 50%;
 left: 0;
 width: 100%;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-pack: justify;
 -ms-flex-pack: justify;
 justify-content: space-between;
 -webkit-transform: translateY(-50%);
 transform: translateY(-50%);
 pointer-events: none;
}
.c-swiper-nav .c-swiper-button-prev,
.c-swiper-nav .c-swiper-button-next {
 pointer-events: all;
 width: 16px;
 height: 40px;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 position: relative;
 cursor: pointer;
}
@media screen and (min-width: 1024px) {
 .c-swiper-nav .c-swiper-button-prev,
 .c-swiper-nav .c-swiper-button-next {
  width: 36px;
  height: 65px;
 }
}
.c-swiper-nav .c-swiper-button-prev::before,
.c-swiper-nav .c-swiper-button-next::before {
 content: "";
 display: block;
 width: 16px;
 height: 16px;
 border-top: 2px solid #333333;
 border-left: 2px solid #333333;
 -webkit-transform: rotate(-45deg);
 transform: rotate(-45deg);
}
@media screen and (min-width: 1024px) {
 .c-swiper-nav .c-swiper-button-prev::before,
 .c-swiper-nav .c-swiper-button-next::before {
  width: 65px;
  height: 35px;
 }
}
.c-swiper-nav .c-swiper-button-next::before {
 -webkit-transform: rotate(135deg);
 transform: rotate(135deg);
}
.c-swiper-nav .c-swiper-button-prev::before {
 -webkit-transform: rotate(-45deg);
 transform: rotate(-45deg);
}

.l-access__head {
 padding-top: 40px;
 padding-bottom: 60px;
}
@media screen and (min-width: 1024px) {
 .l-access__head {
  padding-block: 100px;
 }
}

.l-access__head-wrapper {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(142px, auto));
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
 gap: 16px;
 margin-top: 40px;
}
@media screen and (min-width: 1024px) {
 .l-access__head-wrapper {
  grid-template-columns: repeat(auto-fit, minmax(272px, auto));
  margin-top: 80px;
 }
}

.l-access {
 background-color: rgba(16, 48, 30, 0.64);
 color: #ffffff;
 padding-top: 40px;
 padding-bottom: 60px;
 margin-inline: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
 .l-access {
  padding-block: 100px;
 }
}

.l-access__inner {
 max-width: 476px;
 padding-inline: 12px;
 margin-inline: auto;
}
@media screen and (min-width: 768px) {
 .l-access__inner {
  max-width: 1280px;
 }
}

.l-access__image-container {
 padding-block: 40px;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
 -ms-flex-direction: column;
 flex-direction: column;
 gap: 30px;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
}
@media screen and (min-width: 1024px) {
 .l-access__image-container {
  padding-block: 80px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
 }
}

.l-news {
 padding-block: 40px;
}
@media screen and (min-width: 768px) {
 .l-news {
  padding-block: 100px;
  margin-inline: -10vw;
 }
}

.l-news__container {
 position: relative;
 max-width: 80vw;
 margin-inline: auto;
 padding-inline: 5vw;
 margin-top: 24px;
}
@media screen and (min-width: 768px) {
 .l-news__container {
  width: 80vw;
  max-width: 1440px;
  margin-top: 40px;
 }
}


@media screen and (max-width: 767px) {
 .l-news__container {
  width: 100%;
  max-width: 95vw;
 }
}
.l-news__swiper-btns {
 position: absolute;
 top: 50%;
 -webkit-transform: translateY(-50%);
 transform: translateY(-50%);
 left: 0;
 z-index: 0;
 width: 100%;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-pack: justify;
 -ms-flex-pack: justify;
 justify-content: space-between;
 height: 65px;
}
@media screen and (max-width: 1023px) {
 .l-news__swiper-btns {
    height: 40px;
 }
}
@media screen and (min-width: 768px) {
 .l-news__swiper-btns {
  margin-inline: auto;
 }
}

.l-news__container--single {
 max-width: 1000px;
 margin-inline: auto;
 padding-block: 40px;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
 -ms-flex-direction: column;
 flex-direction: column;
 gap: 20px;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
}
.l-news__container--single .p-news__item {
 background-color: #ffffff;
 width: 100%;
 height: 100%;
 max-width: 600px;
 aspect-ratio: 3/2;
 -webkit-transition: opacity 0.3s ease;
 transition: opacity 0.3s ease;
}
.l-news__container--single .p-news__item:hover {
 opacity: 0.8;
}
.l-news__container--single .p-news__thumb {
 z-index: 3;
 width: 100%;
}
@media screen and (min-width: 1024px) {
 .l-news__container--single {
  padding-top: 30px;
  padding-bottom: 100px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: auto;
  -ms-flex-pack: distribute;
  justify-content: space-around;
 }
 .l-news__container--single .p-news__item {
  width: 32%;
 }
}

.l-salon-concept {
 padding-block: 40px;
}
@media screen and (min-width: 768px) {
 .l-salon-concept {
  padding-block: 80px;
 }
}

.l-salon__container {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
 -ms-flex-direction: column;
 flex-direction: column;
 gap: 50px;
 padding-top: 52px;
 margin-bottom: 60px;
}
@media screen and (min-width: 1024px) {
 .l-salon__container {
  gap: 180px;
  padding-top: 80px;
 }
}

.l-salon-wrapper {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
 -ms-flex-direction: column;
 flex-direction: column;
 gap: 24px;
}
.l-salon-wrapper .p-salon__img {
 margin-right: -12px;
 margin-left: auto;
}
@media screen and (min-width: 768px) {
 .l-salon-wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
 }
}

.l-salon-wrapper--reverse {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
 -ms-flex-direction: column;
 flex-direction: column;
 gap: 24px;
}
.l-salon-wrapper--reverse .p-salon__img {
 margin-left: -12px;
 margin-right: auto;
 border-radius: 0 40px 0 0;
 overflow: hidden;
}
@media screen and (min-width: 1024px) {
 .l-salon-wrapper--reverse .p-salon__img {
  border-radius: 0 110px 0 0;
 }
}
@media screen and (min-width: 768px) {
 .l-salon-wrapper--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
 }
}

.l-salon-howto-head {
 position: relative;
 overflow: hidden;
 margin-inline: calc(50% - 50vw);
}
.l-salon-howto-head .p-salon-howto-bg {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: 1;
}
.l-salon-howto-head .p-salon-howto-bg img {
 width: 100%;
 height: 100%;
 -o-object-fit: cover;
 object-fit: cover;
 -o-object-position: left top;
 object-position: left top;
}
.l-salon-howto-head .p-salon-howto-bg::before {
 position: absolute;
 content: "";
 background-color: #ffffff;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 opacity: 0.7;
 z-index: 2;
}
.l-salon-howto-head .p-salon-howto-content {
 position: relative;
 z-index: 3;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
 -ms-flex-direction: column;
 flex-direction: column;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
 text-align: center;
 padding-block: 24px;
 margin-inline: auto;
 max-width: 500px;
}
@media screen and (min-width: 1024px) {
 .l-salon-howto-head .p-salon-howto-content {
  padding-block: 70px;
  max-width: 910px;
 }
}

.p-salon-howto-head__title--h2 {
 font-size: clamp(16px, 2vw, 20px);
}
@media screen and (min-width: 1024px) {
 .p-salon-howto-head__title--h2 {
  font-size: 40px;
 }
}

.p-salon-howto-head__text {
 font-size: clamp(13px, 2vw, 18px);
}
@media screen and (min-width: 1024px) {
 .p-salon-howto-head__text {
  font-size: 20px;
 }
}

.l-salon-howto__container {
 margin-top: 40px;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
 -ms-flex-direction: column;
 flex-direction: column;
 gap: 42px;
}
@media screen and (min-width: 1024px) {
 .l-salon-howto__container {
  margin-top: 100px;
  gap: 72px;
 }
}

.l-salon-howto__wrapper {
 display: grid;
}
.l-salon-howto__wrapper .p-salon-howto__img {
 margin-right: auto;
 margin-left: -12px;
 margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
 .l-salon-howto__wrapper {
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  direction: rtl;
 }
 .l-salon-howto__wrapper > * {
  direction: ltr;
 }
 .l-salon-howto__wrapper .p-salon-howto__img {
  width: 100%;
  margin-left: 0;
 }
 .l-salon-howto__wrapper .p-salon-howto__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 55px;
  padding-left: 16px;
 }
}

.l-salon-howto__wrapper--reverse {
 display: grid;
 direction: ltr;
}
.l-salon-howto__wrapper--reverse > * {
 direction: ltr;
}
.l-salon-howto__wrapper--reverse .p-salon-howto__img {
 margin-left: auto;
 margin-right: -12px;
 margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
 .l-salon-howto__wrapper--reverse {
  grid-template-columns: 1fr 1fr;
 }
 .l-salon-howto__wrapper--reverse .p-salon-howto__img {
  margin-right: 0;
 }
 .l-salon-howto__wrapper--reverse .p-salon-howto__contents {
  padding-left: 16px;
 }
}

.l-salon-faq {
 padding-top: 76px;
}
@media screen and (min-width: 1024px) {
 .l-salon-faq {
  padding-block: 100px;
 }
}

.l-salon-faq__inner {
 padding-inline: 18px;
}

.l-salon-faq__head {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
 -ms-flex-direction: column;
 flex-direction: column;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 gap: 4px;
}
@media screen and (min-width: 1024px) {
 .l-salon-faq__head {
  gap: 10px;
 }
}

.l-salon-faq__container {
 margin-top: 24px;
 border-bottom: 1px solid #333333;
 margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
 .l-salon-faq__container {
  margin-top: 98px;
 }
}

.l-salon-menu__head {
 display: grid;
 grid-template-columns: auto auto;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
 gap: 16px;
 padding-block: 50px;
}
@media screen and (min-width: 1024px) {
 .l-salon-menu__head {
  grid-template-columns: auto auto auto;
  padding-block: 150px;
 }
}

.l-salon-staff__container {
 display: grid;
 gap: 80px 13px;
 margin-top: 80px;
 margin-bottom: 100px;
}
.l-salon-staff__container .c-staff-card__head {
 grid-template-columns: -webkit-max-content auto auto;
 grid-template-columns: max-content auto auto;
}
@media screen and (min-width: 1024px) {
 .l-salon-staff__container {
  grid-template-columns: auto auto;
 }
 .l-salon-staff__container .c-staff-card {
  max-width: 610px;
  padding: 40px 20px 40px 40px;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
 }
 .l-salon-staff__container .c-staff-card__img {
  max-width: 260px;
  aspect-ratio: 1/1;
  margin-top: -60px;
 }
 .l-salon-staff__container .c-staff-card__head {
  width: 100%;
  grid-template-columns: -webkit-max-content auto;
  grid-template-columns: max-content auto;
  gap: 8px;
  padding-bottom: 12px;
  margin-bottom: 10px;
 }
 .l-salon-staff__container .c-staff-card__name {
  font-size: 29px;
 }
 .l-salon-staff__container .c-staff-card__name--en {
  font-size: 12px;
 }
 .l-salon-staff__container .c-staff-card__price {
  font-size: 12px;
 }
 .l-salon-staff__container .c-staff-card__desc dt {
  font-size: 15px;
  margin: 6px 0;
 }
 .l-salon-staff__container .c-staff-card__desc dd {
  font-size: 12px;
  margin: 6px 0;
 }
}

.l-staff-recruit {
 padding-block: 40px;
}
@media screen and (min-width: 768px) {
 .l-staff-recruit {
  padding-top: 146px;
 }
}

.l-staff-recruit__head {
 margin-bottom: 69px;
 display: grid;
 gap: 32px;
}
@media screen and (min-width: 1024px) {
 .l-staff-recruit__head {
  grid-template-columns: auto auto;
  gap: 185px 39px;
  margin-bottom: 235px;
 }
 .l-staff-recruit__head .c-title--h2 {
  grid-column: span 2/span 2;
 }
 .l-staff-recruit__head .p-staff-recruit__head-img {
  grid-column-start: 2;
  grid-row-start: 2;
 }
 .l-staff-recruit__head .l-staff-recruit__text-wrapper {
  grid-column-start: 1;
  grid-row-start: 2;
 }
}

@media screen and (min-width: 1024px) {
 .p-staff-recruit__head-img {
  max-width: 498px;
  aspect-ratio: 498/384;
 }
}

.l-staff-recruit__text-wrapper {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
 -ms-flex-direction: column;
 flex-direction: column;
 gap: 16px;
}
@media screen and (min-width: 1024px) {
 .l-staff-recruit__text-wrapper {
  gap: 40px;
 }
}

.l-staff-recruit__recommendation {
 position: relative;
 margin-inline: calc(50% - 50vw);
 padding: 56px 18px 32px;
}
.l-staff-recruit__recommendation::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-color: rgba(255, 255, 255, 0.6);
 pointer-events: none;
 z-index: 0;
}
@media screen and (min-width: 1024px) {
 .l-staff-recruit__recommendation {
  padding: 128px 18px 108px;
 }
}

.l-staff-recruit__merit-container {
 margin-top: 50px;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
 -ms-flex-direction: column;
 flex-direction: column;
 gap: 36px;
}
@media screen and (min-width: 1024px) {
 .l-staff-recruit__merit-container {
  gap: 84px;
 }
}

.l-staff-recruit__merit-wrapper {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: horizontal;
 -webkit-box-direction: normal;
 -ms-flex-direction: row;
 flex-direction: row;
 gap: 8px;
}
.l-staff-recruit__merit-wrapper .p-staff-recruit__merit-img {
 margin-left: -12px;
}
@media screen and (min-width: 768px) {
 .l-staff-recruit__merit-wrapper {
  gap: clamp(50px, 10vw, 108px);
 }
 .l-staff-recruit__merit-wrapper .p-staff-recruit__merit-img {
  margin-left: 0;
 }
}

.l-staff-recruit__merit-wrapper--reverse {
 -webkit-box-orient: horizontal;
 -webkit-box-direction: reverse;
 -ms-flex-direction: row-reverse;
 flex-direction: row-reverse;
}
.l-staff-recruit__merit-wrapper--reverse .p-staff-recruit__merit-img {
 margin-right: -12px;
}
@media screen and (min-width: 1024px) {
 .l-staff-recruit__merit-wrapper--reverse {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 50px;
 }
 .l-staff-recruit__merit-wrapper--reverse .p-staff-recruit__merit-img {
  margin-right: 0;
 }
}

.l-staff-recruit__reward {
 margin-block: 80px;
 position: relative;
 padding: 12px 20px;
 margin-inline: calc(50% - 50vw);
}
@media screen and (min-width: 1024px) {
 .l-staff-recruit__reward {
  margin-top: 200px;
  margin-bottom: 160px;
  padding: 41px 21px 20px;
 }
}

.l-staff-recruit__reward-inner {
 max-width: 600px;
 margin: 0 auto;
}
@media screen and (min-width: 1024px) {
 .l-staff-recruit__reward-inner {
  max-width: 1200px;
 }
}

.l-staff-recruit__reward-contents {
 background-color: rgba(255, 255, 255, 0.8);
 padding: 21px 15px;
}
@media screen and (min-width: 1024px) {
 .l-staff-recruit__reward-contents {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  padding: 64px 42px 50px;
 }
}

.l-staff-recruit__monthly-income {
 position: relative;
 margin-inline: calc(50% - 50vw);
 padding-top: 40px;
 padding-bottom: 20px;
}
.l-staff-recruit__monthly-income::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-color: rgba(255, 255, 255, 0.6);
 pointer-events: none;
 z-index: 0;
}

.l-staff-recruit__monthly-income-inner {
 position: relative;
 max-width: 600px;
 margin: 0 auto;
 padding-inline: 12px;
 z-index: 1;
}
@media screen and (min-width: 1024px) {
 .l-staff-recruit__monthly-income-inner {
  max-width: 1100px;
 }
}

.l-staff-recruit__training {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
 -ms-flex-direction: column;
 flex-direction: column;
 gap: 32px;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 margin-top: 40px;
}
@media screen and (min-width: 1024px) {
 .l-staff-recruit__training {
  gap: 92px;
  margin-top: 136px;
 }
}

.l-staff-recruit__training-container {
 display: grid;
 gap: 32px;
}
@media screen and (min-width: 1024px) {
 .l-staff-recruit__training-container {
  grid-template-columns: fit-content(560px) fit-content(627px);
 }
 .l-staff-recruit__training-container .p-staff-recruit__training-img {
  grid-column-start: 2;
  grid-row-start: 1;
 }
 .l-staff-recruit__training-container .p-staff-recruit__training-text {
  grid-column-start: 1;
  grid-row-start: 1;
 }
}

.l-staff-recruit__entry {
 position: relative;
 margin-inline: calc(50% - 50vw);
 padding: 12px 20px;
 margin-top: 54px;
}
.l-staff-recruit__entry::before {
 position: absolute;
 content: "";
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-color: rgba(0, 0, 0, 0.4);
 pointer-events: none;
 z-index: 0;
}
@media screen and (min-width: 1024px) {
 .l-staff-recruit__entry {
  margin-top: 190px;
 }
}

.l-staff-recruit__entry-inner {
 position: relative;
 max-width: 600px;
 margin: 0 auto;
 padding-inline: 12px;
 z-index: 1;
}

.l-staff-recruit__entry-contents {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
 -ms-flex-direction: column;
 flex-direction: column;
 gap: 30px;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 padding-block: 40px;
}
@media screen and (min-width: 1024px) {
 .l-staff-recruit__entry-contents {
  padding-top: 81px;
  padding-bottom: 89px;
  gap: 80px;
 }
}

.l-fc-recruit {
 padding-block: 40px;
}
@media screen and (min-width: 768px) {
 .l-fc-recruit {
  padding-top: 0;
 }
}

.l-fc-recruit__lead-container {
 display: grid;
 text-align: center;
 margin-block: 32px;
}
@media screen and (min-width: 1024px) {
 .l-fc-recruit__lead-container {
  margin-block: 69px;
 }
}

.l-fc-recruit__campaign {
 padding-block: 36px;
 margin-inline: calc(50% - 50vw);
}
@media screen and (min-width: 1024px) {
 .l-fc-recruit__campaign {
  padding-block: 70px;
 }
}

.l-fc-recruit__campaign-head {
 text-align: center;
 display: grid;
 gap: 13px;
 margin-bottom: 24px;
}

.l-fc-recruit-campaign__list {
 padding-left: 14px;
 max-width: 600px;
 margin: 0 auto;
 display: grid;
 gap: 10px;
}
@media screen and (min-width: 1024px) {
 .l-fc-recruit-campaign__list {
  margin-top: 66px;
  max-width: 900px;
 }
}

.l-fc-recruit-campaign__item {
 display: grid;
 grid-template-columns: 13px auto;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 gap: 5px;
}
@media screen and (min-width: 1024px) {
 .l-fc-recruit-campaign__item {
  grid-template-columns: 21px auto;
  gap: 11px;
 }
 .l-fc-recruit-campaign__item img {
  width: 100%;
  height: auto;
 }
}

.l-fc-recruit__features {
 padding-block: 50px;
}
@media screen and (min-width: 1024px) {
 .l-fc-recruit__features {
  padding-block: 100px;
 }
}

.l-fc-recruit-features__container {
 display: grid;
 grid-template-columns: repeat(auto-fit, 255px);
 grid-auto-rows: 1fr;
 gap: 32px;
 margin: 45px auto 0;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
 -webkit-box-align: stretch;
 -ms-flex-align: stretch;
 align-items: stretch;
}
@media screen and (min-width: 768px) {
 .l-fc-recruit-features__container {
  grid-template-columns: repeat(auto-fit, 375px);
 }
}
@media screen and (min-width: 1024px) {
 .l-fc-recruit-features__container {
  grid-template-columns: repeat(auto-fit, 375px);
  margin-top: 72px;
 }
}

.l-fc-recruit__worry {
 margin-inline: calc(50% - 50vw);
}

.l-fc-recruit-worry__head {
 position: relative;
 background-image: url("../../assets/images/worry-head.webp");
 background-size: cover;
 background-position: center;
 background-repeat: no-repeat;
 display: grid;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
 height: 100%;
 z-index: 3;
 padding-top: 28px;
 padding-bottom: 20vw;
}
@media screen and (min-width: 450px) {
 .l-fc-recruit-worry__head {
  background-image: url("../../assets/images/worry-head-pc.webp");
 }
}
@media screen and (min-width: 768px) {
 .l-fc-recruit-worry__head {
  padding-top: 95px;
  padding-bottom: 15vw;
 }
}

@media screen and (min-width: 768px) {
 .l-fc-recruit-worry__head-container {
  margin: 50px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1280px;
  gap: 45px;
 }
}

.l-fc-recruit-worry__body {
 margin-top: -20vw;
 position: relative;
 background-image: url("../../assets/images/worry-body.webp");
 background-size: cover;
 background-position: center;
 background-repeat: no-repeat;
 height: auto;
 padding: 100px 13px 20px;
 z-index: 1;
}
@media screen and (min-width: 450px) {
 .l-fc-recruit-worry__body {
  padding-bottom: 100px;
  margin-top: -6vw;
  background-image: url("../../assets/images/worry-body-pc.webp");
 }
}

.l-fc-recruit-worry__container {
 position: relative;
 padding-left: 10px;
 padding-top: 20px;
 margin-right: auto;
 z-index: 2;
}
@media screen and (min-width: 1024px) {
 .l-fc-recruit-worry__container {
  max-width: 1280px;
  margin-inline: auto;
 }
}

.l-fc-recruit__aim {
 padding-bottom: 46px;
}
@media screen and (min-width: 1024px) {
 .l-fc-recruit__aim {
  padding-bottom: 120px;
 }
}

.l-fc-recruit__aim-head {
 margin-top: 77px;
 text-align: center;
}

.l-fc-recruit-aim__container {
 margin: 60px auto 0;
 width: clamp(318px, 71.756vw + 48.916px, 400px);
 display: grid;
 gap: 62px;
}
@media screen and (min-width: 768px) {
 .l-fc-recruit-aim__container {
  margin-top: 120px;
  max-width: 1080px;
  width: 100%;
 }
}

.l-fc-recruit-aim__item {
 display: grid;
 gap: 13px;
}
@media screen and (min-width: 1024px) {
 .l-fc-recruit-aim__item {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 56px 80px;
 }
 .l-fc-recruit-aim__item--reverse {
  direction: rtl;
 }
 .l-fc-recruit-aim__item--reverse > * {
  direction: ltr;
 }
}

.l-fc-recruit__merit {
 padding-block: 70px;
}
@media screen and (min-width: 1024px) {
 .l-fc-recruit__merit {
  padding-block: 120px;
 }
}

.l-fc-recruit-merit__inner {
 padding-inline: 12px;
}

.l-fc-recruit-merit__container {
 margin-top: 50px;
 display: grid;
 gap: 20px;
}
@media screen and (min-width: 1024px) {
 .l-fc-recruit-merit__container {
  margin-top: 100px;
  max-width: 1280px;
  margin-inline: auto;
  gap: 63px;
 }
}

.l-fc-recruit-merit__item {
 display: grid;
 grid-template-columns: 40% 1fr;
 margin-left: -12px;
 -webkit-column-gap: 8px;
 -moz-column-gap: 8px;
 column-gap: 8px;
}
.l-fc-recruit-merit__item .p-fc-recruit-merit__item-lead {
 grid-column-start: 2;
}
.l-fc-recruit-merit__item .p-fc-recruit-merit__item-title {
 grid-column-start: 2;
 grid-row-start: 2;
}
.l-fc-recruit-merit__item .p-fc-recruit-merit__item-text {
 grid-column-start: 2;
 grid-row-start: 3;
}
.l-fc-recruit-merit__item .p-fc-recruit-merit__item-img {
 grid-column-start: 1;
 grid-row-start: 3;
}
@media screen and (min-width: 1024px) {
 .l-fc-recruit-merit__item {
  grid-template-columns: 1fr 1fr;
  gap: 12px 130px;
 }
 .l-fc-recruit-merit__item .p-fc-recruit-merit__item-lead {
  grid-column-start: 1;
  padding-left: 55px;
 }
 .l-fc-recruit-merit__item .p-fc-recruit-merit__item-title {
  grid-column-start: 1;
  grid-row-start: 2;
  padding-left: 55px;
 }
 .l-fc-recruit-merit__item .p-fc-recruit-merit__item-text {
  grid-column-start: 1;
  grid-row-start: 3;
  padding-left: 55px;
 }
 .l-fc-recruit-merit__item .p-fc-recruit-merit__item-img {
  grid-row: span 3/span 3;
  grid-column-start: 2;
  grid-row-start: 1;
 }
}

.l-fc-recruit-merit__item--reverse {
 margin-left: 0;
 margin-right: -12px;
 direction: rtl;
}
.l-fc-recruit-merit__item--reverse > * {
 direction: ltr;
}
@media screen and (min-width: 1024px) {
 .l-fc-recruit-merit__item--reverse .p-fc-recruit-merit__item-lead {
  padding-left: 0px;
 }
 .l-fc-recruit-merit__item--reverse .p-fc-recruit-merit__item-lead::before {
  left: -55px;
 }
 .l-fc-recruit-merit__item--reverse .p-fc-recruit-merit__item-title {
  padding-left: 0px;
 }
 .l-fc-recruit-merit__item--reverse .p-fc-recruit-merit__item-text {
  padding-left: 0px;
 }
}

.l-fc-recruit__flow {
 padding-top: 70px;
}

.l-fc-recruit-flow__container {
 display: grid;
 row-gap: 44px;
 margin-top: 34px;
}
@media screen and (min-width: 768px) {
 .l-fc-recruit-flow__container {
  margin-top: 76px;
  margin-inline: calc(50% - 50vw);
  grid-template-columns: repeat(6, auto);
  grid-template-rows: 1fr 1fr;
 }
 .l-fc-recruit-flow__container .l-fc-recruit-flow__item:nth-child(1) {
  grid-column: span 2/span 2;
 }
 .l-fc-recruit-flow__container .l-fc-recruit-flow__item:nth-child(2) {
  grid-column: span 2/span 2;
  grid-column-start: 3;
 }
 .l-fc-recruit-flow__container .l-fc-recruit-flow__item:nth-child(3) {
  grid-column: span 2/span 2;
  grid-column-start: 5;
 }
 .l-fc-recruit-flow__container .l-fc-recruit-flow__item:nth-child(4) {
  grid-column: span 2/span 2;
  grid-column-start: 2;
  grid-row-start: 2;
 }
 .l-fc-recruit-flow__container .l-fc-recruit-flow__item:nth-child(5) {
  grid-column: span 2/span 2;
  grid-column-start: 4;
  grid-row-start: 2;
 }
}
@media screen and (min-width: 1280px) {
 .l-fc-recruit-flow__container {
  grid-template-columns: repeat(5, auto);
  grid-template-rows: 1fr;
 }
 .l-fc-recruit-flow__container .l-fc-recruit-flow__item {
  grid-column: auto !important;
  grid-row: auto !important;
 }
}

.l-fc-recruit-flow__item {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
 -ms-flex-direction: column;
 flex-direction: column;
 gap: 13px;
}
@media screen and (min-width: 1024px) {
 .l-fc-recruit-flow__item {
  height: auto;
 }
}

.l-fc-recruit__model {
 padding-top: 70px;
}

@media screen and (min-width: 1024px) {
 .l-fc-recruit-model__container--sp {
  display: none;
 }
}

.l-fc-recruit-model__container--pc {
 display: none;
}
@media screen and (min-width: 1024px) {
 .l-fc-recruit-model__container--pc {
  display: block;
  margin-bottom: 60px;
 }
}

.l-fc-recruit-model__pc {
 margin-top: 32px;
}

.l-fc-recruit__model-notes {
 margin-top: 20px;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
 -ms-flex-direction: column;
 flex-direction: column;
 gap: 20px;
}

.l-fc-recruit__entry {
 padding-block: 85px;
 display: grid;
 place-items: center;
}
@media screen and (min-width: 1024px) {
 .l-fc-recruit__entry {
  padding-block: 153px;
  margin-bottom: 50px;
  margin-top: 0;
 }
}

.l-contact__head {
 margin-top: 54px;
}
@media screen and (min-width: 1024px) {
 .l-contact__head {
  margin-top: 200px;
 }
}

.l-contact__head-container {
 display: grid;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
 gap: 18px;
}
@media screen and (min-width: 1024px) {
 .l-contact__head-container {
  grid-template-columns: auto auto auto;
  gap: 45px;
 }
}

.l-contact__container {
 padding-block: 60px;
}
@media screen and (min-width: 1024px) {
 .l-contact__container {
  padding-block: 110px;
 }
}

.l-container__wrapper {
 display: grid;
 gap: 80px;
 margin-top: 60px;
}
@media screen and (min-width: 1024px) {
 .l-container__wrapper {
  margin-top: 200px;
  margin-bottom: 100px;
  gap: 180px;
 }
}

.l-contact__inner {
 max-width: 476px;
 padding-inline: 26px;
 margin-inline: auto;
}
@media screen and (min-width: 768px) {
 .l-contact__inner {
  max-width: 1000px;
 }
}

.l-contact__items .p-contact__item:nth-last-of-type(1) {
 -webkit-box-align: start;
 -ms-flex-align: start;
 align-items: flex-start;
}

.l-contact__footer {
 margin-top: 40px;
 display: grid;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
 gap: 20px;
}
@media screen and (min-width: 1024px) {
 .l-contact__footer {
  margin-top: 100px;
  gap: 30px;
 }
}

.l-footer__btn {
 position: fixed;
 bottom: 0;
 left: 0;
 z-index: 30;
 width: 100vw;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
 gap: clamp(10px, 2vw, 20px);
 background-color: #ffffff;
 padding-block: 23px;
}
@media screen and (min-width: 768px) {
 .l-footer__btn {
  position: static;
  display: none;
 }
}
.l-footer__btn .c-button {
 font-size: 20px;
 width: auto;
}

.l-footer__container-sp {
 background-color: #1f2529;
 margin-bottom: 92px;
 padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
 .l-footer__container-sp {
  display: none;
 }
}

.l-footer__container-inner--sp {
 max-width: 476px;
 margin-inline: auto;
}

.l-footer__head--sp {
 padding-block: 40px;
}

.l-footer__icon-list--sp {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
 gap: 18px;
 padding-right: 12px;
}
.l-footer__icon-list--sp .p-footer__icon-list-item {
 width: 55px;
 height: 55px;
}

.p-footer__button {
 background-color: #1f2529;
 color: #ffffff;
 border-radius: 2px;
 padding: 8px 46px;
}

.p-footer__button--pc {
 display: grid;
 gap: 16px;
 align-self: flex-end;
 justify-self: flex-start;
 margin-bottom: auto;
}

.l-footer__wrapper {
 display: none;
}
@media screen and (min-width: 768px) {
 .l-footer__wrapper {
  display: grid;
  grid-template-columns: auto fit-content(100%);
  grid-template-rows: repeat(3, auto);
  max-width: 1280px;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin: 0 auto;
  padding: 100px 24px;
  row-gap: 40px;
 }
}

.p-header {
 background-color: #ffffff;
 -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
 box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.p-header__nav-item {
 font-size: clamp(16px, 2.5vw - 16px, 20px);
 position: relative;
}
.p-header__nav-item a {
 color: #333333;
 text-decoration: none;
 position: relative;
}
.p-header__nav-item a::after {
 position: absolute;
 bottom: -8px;
 left: 0;
 content: "";
 width: 100%;
 height: 2px;
 background: #333;
 -webkit-transform: scale(0, 1);
 transform: scale(0, 1);
 -webkit-transform-origin: left top;
 transform-origin: left top;
 -webkit-transition: -webkit-transform 0.3s;
 transition: -webkit-transform 0.3s;
 transition: transform 0.3s;
 transition: transform 0.3s, -webkit-transform 0.3s;
}
.p-header__nav-item a:hover::after {
 -webkit-transform: scale(1, 1);
 transform: scale(1, 1);
}

.p-header__open {
 position: relative;
 cursor: pointer;
 width: 60px;
 height: 60px;
 background-color: #1f2529;
}

.p-header__line {
 width: 1px;
 height: 16px;
 background-color: #333333;
}

.p-drawer__menu-item {
 color: #ffffff;
 font-size: 18px;
}

.p-drawer__menu-line {
 width: 1px;
 height: 14px;
 background-color: #ffffff;
}

.p-drawer-icon-bar {
 display: inline-block;
 width: 18px;
 height: 2px;
 background-color: #ffffff;
 border-radius: 1px;
 position: absolute;
 left: 50%;
 -webkit-transform: translateX(-50%);
 transform: translateX(-50%);
 -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
 transition: top 0.3s linear, -webkit-transform 0.3s linear;
 transition: transform 0.3s linear, top 0.3s linear;
 transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.p-drawer-icon-bar:nth-of-type(1) {
 top: 35%;
}
.p-drawer-icon-bar:nth-of-type(2) {
 top: 50%;
}
.p-drawer-icon-bar:nth-of-type(3) {
 top: 65%;
}

.p-header__open {
 -webkit-transition: background-color 0.3s ease;
 transition: background-color 0.3s ease;
}
.p-header__open.is-active {
 background-color: #ffffff;
}
.p-header__open.is-active .p-drawer-icon-bar:nth-of-type(1) {
 top: 50%;
 -webkit-transform: translate(-50%, -50%) rotate(45deg);
 transform: translate(-50%, -50%) rotate(45deg);
 background-color: #333333;
}
.p-header__open.is-active .p-drawer-icon-bar:nth-of-type(2) {
 display: none;
}
.p-header__open.is-active .p-drawer-icon-bar:nth-of-type(3) {
 top: 50%;
 -webkit-transform: translate(-50%, -50%) rotate(-45deg);
 transform: translate(-50%, -50%) rotate(-45deg);
 background-color: #333333;
}

.p-drawer__menu-link {
 -webkit-tap-highlight-color: rgba(255, 255, 255, 0.4); /* やわらか白！ */
}

.p-hero__title {
 font-size: clamp(16px, 5vw, 20px);
 color: #ffffff;
}
@media screen and (min-width: 768px) {
 .p-hero__title {
  font-size: clamp(30px, 3.125vw + 6px, 51px);
  letter-spacing: 1.8px;
 }
}

.p-hero__option {
 font-size: clamp(16px, 5vw, 20px);
 color: #ffffff;
}
@media screen and (min-width: 768px) {
 .p-hero__option {
  font-size: clamp(30px, 3.125vw + 6px, 51px);
  letter-spacing: 1.8px;
 }
}

.p-hero__title--page {
 position: absolute;
 top: 50%;
 left: 50%;
 z-index: 3;
 -webkit-transform: translate(-50%, -50%);
 transform: translate(-50%, -50%);
 width: -webkit-fit-content;
 width: -moz-fit-content;
 width: fit-content;
 white-space: nowrap;
}

.p-hero__title--page-3 {
 left: 43%;
 z-index: 5;
}
@media screen and (min-width: 768px) {
 .p-hero__title--page-3 {
  left: 53%;
 }
}

/* スクロールダウンの位置 */
.p-scroll {
 position: absolute;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 font-size: 1.3333333333vw;
 gap: 2%;
 left: 2%;
 top: 70%;
 height: 100%;
 -webkit-writing-mode: vertical-rl;
 -ms-writing-mode: tb-rl;
 writing-mode: vertical-rl;
 color: #ffffff;
 z-index: 3;
}
@media screen and (min-width: 1024px) {
 .p-scroll {
  top: 60%;
 }
}

.p-scroll-bar {
 position: relative;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 -webkit-animation: scroll 2s infinite;
 animation: scroll 2s infinite;
 background-color: rgba(230, 230, 230, 0.3098039216);
 height: 25%;
 width: 0.2666666667vw;
 -webkit-transform: scaleX(0.5);
 transform: scaleX(0.5);
 z-index: 5;
}
.p-scroll-bar::after {
 display: block;
 -webkit-animation: scroll 2s infinite;
 animation: scroll 2s infinite;
 background-color: #ffffff;
 content: "";
 height: 50%;
 width: 0.2666666667vw;
}

.swiper-slide {
 position: relative;
 z-index: 1;
}

.p-hero--gray::before {
 position: absolute;
 content: "";
 background-color: rgba(26, 26, 26, 0.4);
 z-index: 2;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
}

.p-hero__text--404 {
 color: #ffffff;
}

.p-concept__img {
 width: clamp(330px, 100%, 450px);
 max-width: 100%;
 height: auto;
 -ms-flex-negative: 0;
 flex-shrink: 0;
}
@media screen and (min-width: 768px) {
 .p-concept__img {
  aspect-ratio: 1/1;
  width: clamp(400px, 14.881vw + 285.714px, 500px);
 }
}
.p-concept__img img {
 width: 100%;
 height: auto;
 -o-object-fit: cover;
 object-fit: cover;
 -o-object-position: bottom center;
 object-position: bottom center;
 display: block;
}

.p-concept__text {
 font-size: clamp(14px, 2vw, 20px);
}
@media screen and (min-width: 768px) {
 .p-concept__text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: clamp(20px, 0.744vw + 14.286px, 25px);
 }
}

.p-menu__wrapper {
 display: grid;
 gap: 16px;
 padding-block: 24px;
}
.p-menu__wrapper .c-title--h3 {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
 gap: 10px;
}
.p-menu__wrapper .c-title--h3::before {
 display: block;
 content: "";
 background-color: #ffffff;
 width: 1px;
 height: 24px;
}
@media screen and (min-width: 768px) {
 .p-menu__wrapper .c-title--h3 {
  padding-left: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 12px;
 }
}
@media screen and (min-width: 1024px) {
 .p-menu__wrapper {
  padding-block: 80px;
  grid-template-columns: auto clamp(300px, 50vw, 567px);
  grid-template-rows: auto auto;
  row-gap: 48px;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
 }
 .p-menu__wrapper .c-title--h3 {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-left: 0;
  border-bottom: 1px solid #ffffff;
 }
 .p-menu__wrapper .c-title--h3::before {
  display: none;
  content: "";
  background-color: #ffffff;
  width: 1px;
  height: 24px;
 }
}

@media screen and (min-width: 1024px) {
 .p-menu__wrapper--reverse {
  grid-template-columns: clamp(567px, 50vw, 300px) auto;
 }
 .p-menu__wrapper--reverse .p-menu-img {
  grid-column: -1/-2;
  grid-row: 1/3;
 }
}

.p-menu__content {
 font-size: 12px;
}
@media screen and (min-width: 768px) {
 .p-menu__content {
  font-size: 18px;
 }
}

.p-menu__contents {
 padding-block: 24px;
}
.p-menu__contents .menu_disc {
 padding-block: 0 24px;
}

.p-menu-img {
 max-width: 275px;
 aspect-ratio: 275/195;
 overflow: hidden;
 margin-inline: auto;
}
.p-menu-img img {
 width: 100%;
 height: 100%;
 -o-object-fit: contain;
 object-fit: contain;
}
@media screen and (min-width: 768px) {
 .p-menu-img {
  max-width: 400px;
 }
}
@media screen and (min-width: 1024px) {
 .p-menu-img {
  grid-column: 1/2;
  grid-row: 1/3;
  max-width: 666px;
  aspect-ratio: 1/1;
  width: 100%;
 }
 .p-menu-img img {
  -o-object-fit: cover;
  object-fit: cover;
 }
}

.p-menu-img--custom {
 display: none;
}
@media screen and (min-width: 1024px) {
 .p-menu-img--custom {
  display: block;
 }
}

.p-menu-img--thumbnail {
 max-width: 275px;
 aspect-ratio: 275/195;
 overflow: hidden;
 margin-inline: auto;
}
@media screen and (min-width: 768px) {
 .p-menu-img--thumbnail {
  max-width: 400px;
 }
}
.p-menu-img--thumbnail img {
 width: 100%;
 height: 100%;
 -o-object-fit: contain;
 object-fit: contain;
}

@media screen and (min-width: 1024px) {
 .p-menu-img__box {
  grid-column: -1/-2;
  grid-row: 1/3;
 }
 .p-menu-img__box.is-single .p-menu-img--thumbnail {
  max-width: 666px;
  aspect-ratio: 1/1;
 }
 .p-menu-img__box.is-double .p-menu-img--custom {
  max-width: 550px;
  aspect-ratio: 550/439;
 }
 .p-menu-img__box.is-double .p-menu-img--thumbnail {
  margin-top: 75px;
  max-width: 550px;
  aspect-ratio: 550/439;
 }
}

ul.p-menu__contents--no-course {
 display: -webkit-inline-box;
 display: -ms-inline-flexbox;
 display: inline-flex;
 -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
 -ms-flex-direction: column;
 flex-direction: column;
}
ul.p-menu__contents--no-course .c-menu-card--no-name {
 display: -webkit-inline-box;
 display: -ms-inline-flexbox;
 display: inline-flex;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 -webkit-box-pack: end;
 -ms-flex-pack: end;
 justify-content: flex-end;
 border-top: none;
 padding-block: 0;
}
ul.p-menu__contents--no-course .c-menu-card--no-name:last-child {
 border-bottom: none;
}
ul.p-menu__contents--no-course .c-menu-card--no-name:last-child .c-menu__top {
 border-bottom: 1px dashed #333333;
}
ul.p-menu__contents--no-course .c-menu-card--no-name .c-menu__top {
 padding: 24px 12px 24px 30px;
 border-top: 1px dashed #333333;
}

.p-access {
 display: grid;
 gap: 24px;
 font-size: clamp(14px, 2vw, 20px);
 margin-top: 40px;
 padding-inline: 16px;
}
@media screen and (min-width: 1024px) {
 .p-access {
  grid-template-columns: auto auto;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin-top: 80px;
 }
}
.p-access + .p-access {
 margin-top: 100px;
}
@media screen and (min-width: 1024px) {
 .p-access + .p-access {
  margin-top: 140px;
 }
}

.p-access__head {
 grid-column: 1/2;
 margin: 0 auto;
 padding-bottom: 12px;
 border-bottom: 1px solid #ffffff;
}
@media screen and (min-width: 1024px) {
 .p-access__head {
  margin: 0 auto 0 0;
 }
}

.p-access__name,
.p-access__text {
 display: block;
 text-align: flex-start;
 font-weight: 700;
 font-size: clamp(18px, 2vw, 24px);
}
@media screen and (min-width: 1024px) {
 .p-access__name,
 .p-access__text {
  font-size: 40px;
 }
}

.p-access__info {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-pack: start;
 -ms-flex-pack: start;
 justify-content: flex-start;
 margin: 0 auto;
}
@media screen and (min-width: 1024px) {
 .p-access__info {
  margin: 0 auto 0 0;
 }
}

.p-access__list {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
 -ms-flex-direction: column;
 flex-direction: column;
 gap: 1em;
}
@media screen and (min-width: 1024px) {
 .p-access__list {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
 }
}

.p-access__item {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
}

.p-access__item dt {
 width: 100px;
 font-weight: 500;
 margin-bottom: 4px;
}
@media screen and (min-width: 1024px) {
 .p-access__item dt {
  font-size: 24px;
  width: 250px;
 }
}

.p-access__item dd {
 margin: 0;
 -webkit-box-flex: 1;
 -ms-flex: 1;
 flex: 1;
 line-height: 1.6;
}
@media screen and (min-width: 1024px) {
 .p-access__item dd {
  font-size: 20px;
  -ms-flex-item-align: center;
  align-self: center;
 }
}

.p-access__map {
 background-color: #ffffff;
 width: clamp(285px, 54.707vw + 79.847px, 500px);
 aspect-ratio: 285/195;
 margin-inline: auto;
}
@media screen and (min-width: 1024px) {
 .p-access__map {
  aspect-ratio: 1/1;
  grid-column: 2/3;
  grid-row: 1/3;
 }
}

.p-access__btn {
 text-align: center;
}
@media screen and (min-width: 1024px) {
 .p-access__btn {
  padding-top: 40px;
  grid-column: 2/3;
  grid-row: 3/4;
 }
}

.p-access__image-box {
 max-width: 450px;
 width: 100%;
 height: 100%;
 aspect-ratio: 3/2;
 overflow: hidden;
}
.p-access__image-box img {
 width: 100%;
 height: 100%;
 -o-object-fit: cover;
 object-fit: cover;
 -o-object-position: center;
 object-position: center;
}

.p-news__item {
 width: 300px;
 height: 200px;
 display: grid !important;
 place-items: center;
 height: min(13vw, 200px);
}
@media screen and (max-width: 899px) {
 .p-news__item {
  height: 34vw;
 }
}
@media screen and (max-width: 767px) {
 .p-news__item {
  height: 40vw;
 }
}

.p-news__thumb {
 position: absolute;
 top: 50%;
 left: 50%;
 -webkit-transform: translate(-50%, -50%);
 transform: translate(-50%, -50%);
 z-index: -1;
 aspect-ratio: 3/2;
 width: 100%;
 height: 100%;
}
.p-news__thumb img {
 width: 100%;
 height: 100%;
 -o-object-position: center center;
 object-position: center center;
 -o-object-fit: cover;
 object-fit: cover;
}
.p-news__thumb .no-image {
 display: block;
 width: 50%;
 height: auto;
 -o-object-fit: contain;
 object-fit: contain;
}

.p-news__thumb:has(.no-image) {
 border: 1px solid #1f2529;
}

.p-news__title {
 /* font-size: clamp(1.5vw, 1.5vw, 24px); */
 font-weight: bold;
 /* max-width: 250px; */
 width: -webkit-fit-content;
 width: -moz-fit-content;
 width: fit-content;
 display: inline-block;
 text-align: center;
 position: absolute;
 bottom: 0.5vw;
}
@media screen and (max-width: 899px) {
 .p-news__title {
  bottom: 1vw;
 }
}
.p-news__title span {
 background-color: #ffffff;
 padding: 4px 8px;
 -webkit-box-decoration-break: clone;
 box-decoration-break: clone;
 white-space: nowrap;
 font-size: min(1.5vw, 22px);
}
@media screen and (max-width: 899px) {
 .p-news__title span {
  font-size: 3.5vw;
 }
}

.p-news-prev,
.p-news-next {
 pointer-events: all;
 width: 16px;
 height: 40px;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 position: absolute;
 cursor: pointer;
}
@media screen and (min-width: 1024px) {
 .p-news-prev,
 .p-news-next {
  width: 36px;
  height: 65px;
 }
}
.p-news-prev::before,
.p-news-next::before {
 content: "";
 display: block;
 width: 16px;
 height: 16px;
 border-top: 2px solid #333333;
 border-left: 2px solid #333333;
 -webkit-transform: rotate(-45deg);
 transform: rotate(-45deg);
}
@media screen and (min-width: 1024px) {
 .p-news-prev::before,
 .p-news-next::before {
  width: 65px;
  height: 35px;
 }
}

.p-news-next {
 justify-self: flex-end;
 right: 0;
}
.p-news-next::before {
 -webkit-transform: rotate(135deg);
 transform: rotate(135deg);
}

.p-news-prev::before {
 -webkit-transform: rotate(-45deg);
 transform: rotate(-45deg);
}

.c-hgroup--lv3 .p-news__title--single {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 gap: 10px;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
}

.p-news__item--single {
 width: 100%;
}

.p-recruit {
 position: relative;
 margin-inline: calc(50% - 50vw);
 overflow: hidden;
}
.p-recruit::before {
 position: absolute;
 content: "";
 background-color: rgba(26, 26, 26, 0.4);
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: 3;
}

.p-recruit__bg {
 position: absolute;
 height: 100%;
 inset: 0;
}

.p-recruit__bg-img {
 width: 100%;
 height: 100%;
 -o-object-fit: cover;
 object-fit: cover;
 -o-object-position: center bottom;
 object-position: center bottom;
}

.p-recruit__inner {
 position: relative;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
 -ms-flex-direction: column;
 flex-direction: column;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 gap: 32px;
 padding-top: 40px;
 padding-bottom: 40px;
 z-index: 5;
 max-width: 476px;
 padding-inline: 12px;
 margin-inline: auto;
}
@media screen and (min-width: 1024px) {
 .p-recruit__inner {
  padding-block: 100px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  max-width: 1280px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
 }
}

.p-recruit__item {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
 -ms-flex-direction: column;
 flex-direction: column;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
}
@media screen and (min-width: 1024px) {
 .p-recruit__item {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
 }
}

.p-recruit__line {
 display: grid;
 background-color: #ffffff;
 width: 100px;
 height: 1px;
 align-self: center;
}
@media screen and (min-width: 1024px) {
 .p-recruit__line {
  width: 1px;
  height: 100px;
 }
}

.p-recruit__item-wrapper {
 color: #ffffff;
 text-align: center;
}
@media screen and (min-width: 1024px) {
 .p-recruit__item-wrapper {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
 }
}

.p-recruit__title {
 font-size: clamp(18px, 2vw, 24px);
}
@media screen and (min-width: 768px) {
 .p-recruit__title {
  font-size: 24px;
 }
}

@media screen and (min-width: 768px) {
 .p-recruit__text {
  font-size: 16px;
 }
}

.p-recruit__btn {
 padding-block: 20px;
}
@media screen and (min-width: 768px) {
 .p-recruit__btn .c-button {
  min-height: 58px;
  min-width: 300px;
 }
}

.p-salon__img {
 width: 324px;
}
@media screen and (min-width: 768px) {
 .p-salon__img {
  max-width: 54%;
  width: auto;
 }
}

@media screen and (min-width: 768px) {
 .p-salon__contents {
  max-width: 45%;
 }
}

.p-salon__contents-lead {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 gap: 10px;
 font-size: 14px;
}
.p-salon__contents-lead::before {
 display: block;
 content: "";
 background-color: #333333;
 width: 20px;
 height: 1px;
}
@media screen and (min-width: 1024px) {
 .p-salon__contents-lead {
  font-size: 30px;
  gap: 24px;
 }
 .p-salon__contents-lead::before {
  width: 40px;
 }
}

.p-salon___contents-title {
 font-size: 18px;
}
@media screen and (min-width: 1024px) {
 .p-salon___contents-title {
  padding-block: 24px;
  font-size: clamp(24px, 2.5vw, 35px);
 }
}

@media screen and (min-width: 1024px) {
 .p-salon__contents-text {
  font-size: 20px;
 }
}

.p-salon-howto__img {
 width: clamp(318px, 80vw, 450px);
}

.p-salon-howto__contents-title {
 font-family: "Inter", sans-serif;
 font-size: clamp(18px, 3vw, 24px);
}
@media screen and (min-width: 1024px) {
 .p-salon-howto__contents-title {
  font-size: 24px;
 }
}

.p-salon-howto__contents-text {
 font-size: clamp(14px, 2vw, 20px);
}
@media screen and (min-width: 1024px) {
 .p-salon-howto__contents-text {
  font-size: 20px;
 }
}

.p-salon-faq__title {
 width: clamp(42px, 10vw, 80px);
}
@media screen and (min-width: 1024px) {
 .p-salon-faq__title {
  width: clamp(100px, 10vw, 120px);
 }
}

.p-salon-faq__subtitle {
 font-size: clamp(11px, 2vw, 20px);
}

.p-salon-faq__card {
 display: grid;
 grid-template-columns: 30px 1fr;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
 row-gap: 16px;
 border-top: 1px solid #333333;
 padding-block: 16px;
}
@media screen and (min-width: 1024px) {
 .p-salon-faq__card {
  grid-template-columns: 68px 1fr;
  padding-left: 16px;
  padding-block: 40px;
 }
}

.p-salon-faq__card-question,
.p-salon-faq__card-answer {
 width: clamp(20px, 2vw, 35px);
 padding-top: 4px;
}

.p-salon-faq__card-question--text,
.p-salon-faq__card-answer--text {
 font-size: clamp(14px, 2vw, 20px);
}

.p-salon-faq__card-answer {
 color: #f15a24;
}

.p-salon-faq__card-answer--text {
 font-size: clamp(14px, 2vw, 20px);
}

.p-salon-menu__head-btn {
 display: grid;
 place-items: center;
}
.p-salon-menu__head-btn a {
 width: clamp(145px, 40vw, 272px);
 border: 1px solid #333333;
 font-size: clamp(11px, 1.5vw, 16px);
 padding-block: 10px;
 text-align: center;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
}
@media screen and (min-width: 1024px) {
 .p-salon-menu__head-btn a {
  font-size: 19px;
 }
}

.p-salon-menu__line {
 width: 80%;
 background-color: #333333;
 height: 1px;
 margin-top: -12px;
}
@media screen and (min-width: 1024px) {
 .p-salon-menu__line {
  display: none;
 }
}

.p-salon-menu__wrapper img {
 -o-object-fit: contain;
 object-fit: contain;
}
.p-salon-menu__wrapper .c-menu-card {
 border-top: 1px dashed #333333;
}
.p-salon-menu__wrapper .c-menu-card:last-child {
 border-bottom: 1px dashed #333333;
}
.p-salon-menu__wrapper .p-salon-menu-img__box,
.p-salon-menu__wrapper .p-salon-menu__line {
 margin-right: auto;
 margin-left: -12px;
 -webkit-box-align: start;
 -ms-flex-align: start;
 align-items: flex-start;
}
.p-salon-menu__wrapper .c-title--h3 {
 padding-left: 0;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
}
@media screen and (min-width: 1024px) {
 .p-salon-menu__wrapper {
  grid-template-columns: auto auto;
  grid-template-rows: auto auto auto;
 }
 .p-salon-menu__wrapper .c-title--h3 {
  grid-column-start: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: none;
 }
 .p-salon-menu__wrapper .c-title--h3::before {
  display: inline-block;
  content: "";
  background-color: #333333;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-left: -240px;
  left: -50%;
  width: 57%;
  height: 1px;
  z-index: -1;
 }
 .p-salon-menu__wrapper .p-salon-menu-img__box {
  grid-row: 1/4;
  gap: 32px;
 }
 .p-salon-menu__wrapper .p-salon-menu-img__box > *:nth-child(1) {
  margin-left: auto;
  margin-right: 0;
 }
 .p-salon-menu__wrapper .p-salon-menu-img__box > *:nth-child(2) {
  margin-right: auto;
  margin-left: 0;
 }
 .p-salon-menu__wrapper .p-salon-menu-img__box > *:nth-child(3) {
  margin-left: auto;
  margin-right: 0;
 }
 .p-salon-menu__wrapper .p-salon-menu-img__box > *:nth-child(4) {
  margin-right: auto;
  margin-left: 0;
 }
 .p-salon-menu__wrapper .p-salon-menu-img__box > *:nth-child(5) {
  margin-left: auto;
  margin-right: 0;
 }
 .p-salon-menu__wrapper .p-salon-menu-img__box > *:nth-child(6) {
  margin-right: auto;
  margin-left: 0;
 }
 .p-salon-menu__wrapper .p-salon-menu-img__box > *:nth-child(7) {
  margin-left: auto;
  margin-right: 0;
 }
 .p-salon-menu__wrapper .p-salon-menu-img__box > *:nth-child(8) {
  margin-right: auto;
  margin-left: 0;
 }
 .p-salon-menu__wrapper .p-salon-menu-img__box > *:nth-child(9) {
  margin-left: auto;
  margin-right: 0;
 }
 .p-salon-menu__wrapper .p-salon-menu-img__box > *:nth-child(10) {
  margin-right: auto;
  margin-left: 0;
 }
 .p-salon-menu__wrapper .p-menu__content {
  grid-column-start: 2;
 }
 .p-salon-menu__wrapper .p-menu__contents {
  grid-column-start: 2;
  grid-row-start: 3;
 }
}

.p-salon-menu__wrapper--reverse .c-menu-card {
 border-top: 1px dashed #333333;
}
.p-salon-menu__wrapper--reverse .c-menu-card:last-child {
 border-bottom: 1px dashed #333333;
}
.p-salon-menu__wrapper--reverse .p-salon-menu-img__box,
.p-salon-menu__wrapper--reverse .p-salon-menu__line {
 margin-left: auto;
 margin-right: -12px;
 -webkit-box-align: end;
 -ms-flex-align: end;
 align-items: flex-end;
}
.p-salon-menu__wrapper--reverse .c-title--h3 {
 padding-left: 0;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
}
@media screen and (min-width: 1024px) {
 .p-salon-menu__wrapper--reverse {
  grid-template-columns: auto auto;
  grid-template-rows: auto auto auto;
 }
 .p-salon-menu__wrapper--reverse .c-title--h3 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  border-bottom: none;
 }
 .p-salon-menu__wrapper--reverse .c-title--h3::after {
  display: inline-block;
  content: "";
  background-color: #333333;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-right: -240px;
  margin-left: 16px;
  right: -50%;
  width: 57%;
  height: 1px;
  z-index: -1;
 }
 .p-salon-menu__wrapper--reverse .p-salon-menu-img__box {
  grid-row: span 3/span 3;
  grid-column-start: 2;
  grid-row-start: 1;
  gap: 32px;
 }
 .p-salon-menu__wrapper--reverse .p-salon-menu-img__box > *:nth-child(1) {
  margin-right: auto;
  margin-left: 0;
 }
 .p-salon-menu__wrapper--reverse .p-salon-menu-img__box > *:nth-child(2) {
  margin-left: auto;
  margin-right: 0;
 }
 .p-salon-menu__wrapper--reverse .p-salon-menu-img__box > *:nth-child(3) {
  margin-right: auto;
  margin-left: 0;
 }
 .p-salon-menu__wrapper--reverse .p-salon-menu-img__box > *:nth-child(4) {
  margin-left: auto;
  margin-right: 0;
 }
 .p-salon-menu__wrapper--reverse .p-salon-menu-img__box > *:nth-child(5) {
  margin-right: auto;
  margin-left: 0;
 }
 .p-salon-menu__wrapper--reverse .p-salon-menu-img__box > *:nth-child(6) {
  margin-left: auto;
  margin-right: 0;
 }
 .p-salon-menu__wrapper--reverse .p-salon-menu-img__box > *:nth-child(7) {
  margin-right: auto;
  margin-left: 0;
 }
 .p-salon-menu__wrapper--reverse .p-salon-menu-img__box > *:nth-child(8) {
  margin-left: auto;
  margin-right: 0;
 }
 .p-salon-menu__wrapper--reverse .p-salon-menu-img__box > *:nth-child(9) {
  margin-right: auto;
  margin-left: 0;
 }
 .p-salon-menu__wrapper--reverse .p-salon-menu-img__box > *:nth-child(10) {
  margin-left: auto;
  margin-right: 0;
 }
 .p-salon-menu__wrapper--reverse .p-menu__content {
  grid-column-start: 1;
  grid-row-start: 2;
 }
 .p-salon-menu__wrapper--reverse .p-menu__contents {
  grid-column-start: 1;
  grid-row-start: 3;
 }
}

.p-salon-menu-img__box {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
 -ms-flex-direction: column;
 flex-direction: column;
 -webkit-box-align: start;
 -ms-flex-align: start;
 align-items: flex-start;
}
.p-salon-menu-img__box > * {
 display: none;
 width: clamp(343px, 100%, 500px);
}
.p-salon-menu-img__box > *:first-child {
 display: block;
}
@media screen and (min-width: 1024px) {
 .p-salon-menu-img__box > * {
  display: block;
 }
}

.p-staff-recruit__text--lead,
.p-staff-recruit__list {
 font-size: clamp(14px, 2vw, 20px);
}
@media screen and (min-width: 1024px) {
 .p-staff-recruit__text--lead,
 .p-staff-recruit__list {
  font-size: 24px;
 }
}

.p-staff-recruit__recommendation-wrapper {
 display: block;
 border: solid 1px #333333;
 padding: 3px;
 border-radius: 10px;
 position: relative;
 z-index: 1;
 margin: 0 auto;
 max-width: 600px;
}
@media screen and (min-width: 1024px) {
 .p-staff-recruit__recommendation-wrapper {
  max-width: 1200px;
  border-radius: 35px;
  padding: 11px;
 }
}

.p-staff-recruit__recommendation__list-container {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
 -ms-flex-direction: column;
 flex-direction: column;
 width: 85%;
 margin: 45px auto 27px;
}
@media screen and (min-width: 1024px) {
 .p-staff-recruit__recommendation__list-container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 95%;
  gap: 5%;
 }
}

.p-staff-recruit__recommendation-img {
 position: absolute;
 left: 0;
 top: 0;
 height: 100%;
 width: 100%;
 -o-object-fit: cover;
 object-fit: cover;
 z-index: -1;
 -o-object-position: top center;
 object-position: top center;
}

.p-staff-recruit__recommendation__title {
 position: absolute;
 top: 0;
 left: 50%;
 -webkit-transform: translate(-50%, -50%);
 transform: translate(-50%, -50%);
 font-size: clamp(14px, 2vw, 20px);
 background-color: #ffffff;
 border: solid 1px #333333;
 padding: 6px 12px;
 border-radius: 3px;
 z-index: 1;
}
@media screen and (min-width: 1024px) {
 .p-staff-recruit__recommendation__title {
  font-size: clamp(32px, 3vw, 48px);
  padding: 18px 43px;
  line-height: 1;
 }
}

.p-staff-recruit__recommendation__list {
 font-size: clamp(14px, 2vw, 20px);
}
@media screen and (min-width: 1024px) {
 .p-staff-recruit__recommendation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px 24px;
  font-size: clamp(20px, 2vw, 26px);
  margin-top: 48px;
  margin-bottom: 32px;
 }
}

.p-staff-recruit__recommendation__item {
 display: grid;
 grid-template-columns: 20px 1fr;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 gap: 8px;
}
@media screen and (min-width: 1024px) {
 .p-staff-recruit__recommendation__item {
  grid-template-columns: 30px 1fr;
 }
 .p-staff-recruit__recommendation__item img {
  width: 100%;
  height: 100%;
 }
}

.p-staff-recruit__recommendation__footer {
 background-color: #1f2529;
 color: #ffffff;
 padding: 18px 25px;
 border-radius: 0 0 10px 10px;
 text-align: center;
}
.p-staff-recruit__recommendation__footer img {
 width: 30px;
}
@media screen and (min-width: 1024px) {
 .p-staff-recruit__recommendation__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 31px;
  height: 100%;
  padding-block: 55px;
  border-radius: 0 0 24px 24px;
 }
}

.p-staff-recruit__recommendation__footer__title {
 display: block;
 background-color: #ffffff;
 color: #333333;
 font-size: clamp(14px, 2vw, 20px);
 border-radius: 6px;
 padding: 8px 20px;
}
@media screen and (min-width: 1024px) {
 .p-staff-recruit__recommendation__footer__title {
  font-size: 28px;
  text-align: left;
  border-radius: 0;
 }
}

.p-staff-recruit__recommendation__footer__text {
 margin-top: 18px;
 font-size: 12px;
}
@media screen and (min-width: 1024px) {
 .p-staff-recruit__recommendation__footer__text {
  font-size: 28px;
  text-align: left;
  margin-top: 0;
  height: 100%;
  line-height: 2;
 }
}

.p-staff-recruit__merit-title {
 font-size: clamp(18px, 2vw, 28px);
 text-align: center;
}
@media screen and (min-width: 1024px) {
 .p-staff-recruit__merit-title {
  font-size: clamp(32px, 3vw, 48px);
 }
}

.p-staff-recruit__merit-img {
 max-width: 40%;
 -ms-flex-item-align: end;
 align-self: flex-end;
}
.p-staff-recruit__merit-img img {
 -o-object-fit: contain;
 object-fit: contain;
}
@media screen and (min-width: 1024px) {
 .p-staff-recruit__merit-img {
  max-width: 45%;
 }
}

.p-staff-recruit__merit-contents-lead {
 font-size: 14px;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 gap: 12px;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
}
.p-staff-recruit__merit-contents-lead::before {
 display: block;
 content: "";
 background-color: rgba(26, 26, 26, 0.4);
 width: 20px;
 height: 1px;
}
@media screen and (min-width: 1024px) {
 .p-staff-recruit__merit-contents-lead {
  position: relative;
  font-size: 24px;
 }
 .p-staff-recruit__merit-contents-lead::before {
  position: absolute;
  width: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -50px;
 }
}

.p-staff-recruit__merit-contents-title {
 font-size: 16px;
}
@media screen and (min-width: 1024px) {
 .p-staff-recruit__merit-contents-title {
  font-size: 31px;
 }
}

.p-staff-recruit__merit-contents-text {
 font-size: 14px;
}
@media screen and (min-width: 1024px) {
 .p-staff-recruit__merit-contents-text {
  font-size: 21px;
 }
}

.p-staff-recruit__reward-img {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 -o-object-fit: cover;
 object-fit: cover;
 z-index: -1;
}

.p-staff-recruit__reward-title {
 font-size: clamp(18px, 2vw, 28px);
 text-align: center;
}
.p-staff-recruit__reward-title::after {
 display: block;
 content: "";
 background-color: rgba(26, 26, 26, 0.4);
 width: 60%;
 height: 1px;
 margin: 18px auto;
}
@media screen and (min-width: 1024px) {
 .p-staff-recruit__reward-title {
  font-size: clamp(32px, 3vw, 48px);
 }
 .p-staff-recruit__reward-title::after {
  width: 80%;
 }
}

.p-staff-recruit__reward-text {
 font-size: clamp(12px, 2vw, 18px);
 max-width: 500px;
 margin: 0 auto;
}
.p-staff-recruit__reward-text:nth-of-type(1) {
 margin-block: 16px;
 text-align: center;
}
@media screen and (min-width: 1024px) {
 .p-staff-recruit__reward-text {
  font-size: clamp(22px, 2vw, 25px);
  max-width: 100%;
 }
}

.p-staff-recruit__monthly-income-title {
 font-size: clamp(18px, 2vw, 28px);
 text-align: center;
 margin-bottom: 28px;
}
@media screen and (min-width: 1024px) {
 .p-staff-recruit__monthly-income-title {
  font-size: clamp(32px, 3vw, 48px);
  margin-bottom: 32px;
 }
}

.p-staff-recruit__monthly-income-footer__text {
 text-align: center;
 margin-top: 16px;
}

@media screen and (min-width: 1024px) {
 .p-staff-recruit__training-img {
  max-width: 627px;
 }
}

@media screen and (min-width: 1024px) {
 .p-staff-recruit__training-text {
  font-size: 20px;
  text-align: justify;
 }
}

.p-monthly-income {
 background-color: #02856c;
 color: #ffffff;
 padding: 20px 20px 25px;
}
@media screen and (min-width: 1024px) {
 .p-monthly-income {
  font-size: clamp(20px, 2vw, 24px);
 }
}

.p-staff-recruit__monthly-income-img {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 -o-object-fit: cover;
 object-fit: cover;
 z-index: -1;
}

.p-monthly-income__title {
 font-size: clamp(18px, 2vw, 28px);
 text-align: center;
 margin-bottom: 18px;
}
@media screen and (min-width: 1024px) {
 .p-monthly-income__title {
  text-align: center;
  margin-bottom: 32px;
 }
}

.p-monthly-income__text {
 line-height: 2;
 max-width: 400px;
 margin-inline: auto;
}
@media screen and (min-width: 1024px) {
 .p-monthly-income__text {
  max-width: 600px;
 }
}

.p-staff-recruit__swiper {
 position: relative;
}
.p-staff-recruit__swiper .swiper-wrapper {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
 -ms-flex-direction: column;
 flex-direction: column;
}
.p-staff-recruit__swiper .swiper-slide {
 width: 100%;
 margin-bottom: 20px;
}
.p-staff-recruit__swiper .swiper-button-next,
.p-staff-recruit__swiper .swiper-button-prev {
 display: none;
}
@media screen and (min-width: 768px) {
 .p-staff-recruit__swiper {
  margin-inline: calc(50% - 50vw);
 }
 .p-staff-recruit__swiper .swiper-wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
 }
 .p-staff-recruit__swiper .swiper-slide {
  width: auto;
  margin-bottom: 0;
  padding: 64px 50px 70px;
 }
 .p-staff-recruit__swiper .swiper-button-next,
 .p-staff-recruit__swiper .swiper-button-prev {
  display: block;
  position: absolute;
  top: 55%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
 }
 .p-staff-recruit__swiper .swiper-button-next::after,
 .p-staff-recruit__swiper .swiper-button-prev::after {
  color: #333333;
 }
 .p-staff-recruit__swiper .swiper-button-next {
  right: 20%;
 }
 .p-staff-recruit__swiper .swiper-button-prev {
  left: 20%;
 }
}

.p-staff-recruit__entry-img {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 -o-object-fit: cover;
 object-fit: cover;
 z-index: -1;
}

.p-staff-recruit__entry-text {
 font-size: clamp(14px, 2vw, 18px);
 color: #ffffff;
 text-align: center;
}
@media screen and (min-width: 1024px) {
 .p-staff-recruit__entry-text {
  font-size: clamp(20px, 2vw, 25px);
 }
}

.p-staff-recruit__training-text {
 font-size: clamp(14px, 2vw, 18px);
}

.p-fc-recruit__lead-title {
 font-size: clamp(18px, 2vw, 24px);
}
@media screen and (min-width: 1024px) {
 .p-fc-recruit__lead-title {
  font-size: clamp(32px, 4vw, 48px);
 }
}

.p-fc-recruit__lead-text {
 font-size: clamp(14px, 2vw, 20px);
}
@media screen and (min-width: 1024px) {
 .p-fc-recruit__lead-text {
  font-size: clamp(30px, 3vw, 36px);
 }
}


.youtube-wrap {
  position: relative;
  width: 100%;
  max-width: 1135px; /* 好きな最大幅 */
  margin: 24px auto 80px;
  padding-top: 56.25%; /* 16:9 */
}

.youtube-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.p-fc-recruit__campaign {
 background-color: rgba(16, 48, 30, 0.64);
 color: #ffffff;
 font-size: clamp(14px, 2vw, 20px);
}
.p-fc-recruit__campaign .icon-white {
 -webkit-filter: brightness(0) invert(1);
 filter: brightness(0) invert(1);
}

.p-fc-recruit-features__title {
 font-size: clamp(18px, 2vw, 24px);
 text-align: center;
}
@media screen and (min-width: 1024px) {
 .p-fc-recruit-features__title {
  font-size: clamp(32px, 4vw, 48px);
 }
}

@media screen and (min-width: 1024px) {
 .p-fc-recruit-campaign__lead {
  font-size: clamp(30px, 3vw, 36px);
 }
}

.p-fc-recruit-campaign__item-text {
 text-align: left;
}
@media screen and (min-width: 1024px) {
 .p-fc-recruit-campaign__item-text {
  font-size: clamp(24px, 3vw, 30px);
 }
}

.p-fc-recruit-features__card {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 background-color: #f2f2f2;
 -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
 -ms-flex-direction: column;
 flex-direction: column;
 width: 100%;
 height: 100%;
}
@media screen and (min-width: 1024px) {
 .p-fc-recruit-features__card {
  max-width: 375px;
 }
}

.p-fc-recruit-features__card-img {
 width: 100%;
}
.p-fc-recruit-features__card-img img {
 width: 100%;
}

.p-fc-recruit-features__card-wrapper {
 padding: 16px;
}

.p-fc-recruit-features__card-header {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 gap: 8px;
}
@media screen and (min-width: 1024px) {
 .p-fc-recruit-features__card-header {
  gap: 12px;
 }
}

.p-fc-recruit-features__card-number {
 background-color: #000;
 color: #ffffff;
 font-size: 18px;
 width: 40px;
 height: 40px;
 border-radius: 50%;
 display: inline-grid;
 place-items: center;
}
@media screen and (min-width: 1024px) {
 .p-fc-recruit-features__card-number {
  font-size: 28px;
  width: 60px;
  height: 60px;
 }
}

.p-fc-recruit-features__card-title {
 font-size: 14px;
 font-weight: 400;
}
@media screen and (min-width: 1024px) {
 .p-fc-recruit-features__card-title {
  font-size: 28px;
 }
}

.p-fc-recruit-features__card-text {
 padding-left: 10px;
 font-size: clamp(14px, 2vw, 20px);
 margin-top: 20px;
 font-size: 18px;
}

.p-fc-recruit-worry__head-title {
 z-index: 3;
 font-size: clamp(18px, 2vw, 24px);
 color: #ffffff;
 text-align: center;
 margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
 .p-fc-recruit-worry__head-title {
  font-size: clamp(32px, 4vw, 48px);
 }
}

.p-fc-recruit-worry__list {
 z-index: 3;
 font-size: clamp(12px, 2vw, 16px);
 color: #ffffff;
 display: grid;
 gap: 12px;
}
.p-fc-recruit-worry__list + .p-fc-recruit-worry__list {
 margin-top: 12px;
}
@media screen and (min-width: 768px) {
 .p-fc-recruit-worry__list {
  gap: 45px;
 }
}
@media screen and (min-width: 1024px) {
 .p-fc-recruit-worry__list {
  font-size: 20px;
 }
}

.p-fc-recruit-worry__body-title {
 font-size: clamp(18px, 2vw, 24px);
}
@media screen and (min-width: 1024px) {
 .p-fc-recruit-worry__body-title {
  font-size: clamp(32px, 4vw, 48px);
 }
}

.p-fc-recruit-worry__body-text {
 margin-top: 12px;
 font-size: clamp(12px, 2vw, 16px);
 width: 53vw;
 text-align: justify;
}
@media screen and (min-width: 1024px) {
 .p-fc-recruit-worry__body-text {
  margin-top: 25px;
  font-size: 25px;
  width: 40%;
 }
}

.p-fc-recruit-aim__title {
 font-size: clamp(17px, 2vw, 20px);
}
@media screen and (min-width: 1024px) {
 .p-fc-recruit-aim__title {
  font-size: clamp(32px, 4vw, 48px);
 }
}

@media screen and (min-width: 1024px) {
 .p-fc-recruit-aim__subtitle {
  font-size: clamp(30px, 3vw, 36px);
 }
}

.p-fc-recruit-aim__item-title {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 font-size: clamp(18px, 1.527vw + 12.275px, 24px);
 gap: 11px;
}
.p-fc-recruit-aim__item-title::before {
 display: block;
 content: "";
 background-color: rgba(26, 26, 26, 0.4);
 width: 40px;
 height: 1px;
}
@media screen and (min-width: 1024px) {
 .p-fc-recruit-aim__item-title {
  font-size: clamp(28px, 1.818vw + 9.818px, 32px);
 }
}

@media screen and (min-width: 1024px) {
 .p-fc-recruit-aim__item-img {
  grid-row: span 2/span 2;
 }
}

.p-fc-recruit-aim__item-text {
 font-size: clamp(14px, 2vw, 20px);
}

.p-fc-recruit__merit {
 margin-inline: calc(50% - 50vw);
 background-color: rgba(16, 48, 30, 0.64);
 color: #ffffff;
 font-size: clamp(14px, 2vw, 20px);
}

.p-fc-recruit-merit__item-lead {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 gap: 11px;
}
.p-fc-recruit-merit__item-lead::before {
 display: block;
 content: "";
 background-color: #ffffff;
 width: 13px;
 height: 1px;
}
@media screen and (min-width: 1024px) {
 .p-fc-recruit-merit__item-lead {
  position: relative;
 }
 .p-fc-recruit-merit__item-lead::before {
  position: absolute;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 1px;
 }
}

.p-fc-recruit-merit__title {
 font-size: clamp(18px, 2vw, 24px);
 text-align: center;
}
@media screen and (min-width: 1024px) {
 .p-fc-recruit-merit__title {
  font-size: clamp(32px, 4vw, 48px);
 }
}

.p-fc-recruit-merit__item-lead {
 font-size: clamp(11px, 2vw, 14px);
}
@media screen and (min-width: 1024px) {
 .p-fc-recruit-merit__item-lead {
  font-size: clamp(20px, 3vw, 24px);
 }
}

.p-fc-recruit-merit__item-title {
 font-size: clamp(16px, 2vw, 20px);
}
@media screen and (min-width: 1024px) {
 .p-fc-recruit-merit__item-title {
  font-size: clamp(30px, 5vw, 38px);
 }
}

.p-fc-recruit-merit__item-text {
 font-size: clamp(14px, 2vw, 17px);
}
@media screen and (min-width: 1024px) {
 .p-fc-recruit-merit__item-text {
  font-size: clamp(17px, 3vw, 21px);
 }
}

.p-fc-recruit-flow__item-img {
 position: relative;
 width: 198px;
 height: 198px;
}
.p-fc-recruit-flow__item-img span {
 position: absolute;
 top: 10px;
 left: -10px;
 display: grid;
 place-items: center;
 background-color: #000;
 color: #ffffff;
 width: 68px;
 height: 68px;
 border-radius: 50%;
 font-size: 31px;
}

.p-fc-recruit-flow__title {
 font-size: 20px;
 text-align: center;
 margin-bottom: 38px;
}
@media screen and (min-width: 1024px) {
 .p-fc-recruit-flow__title {
  font-size: clamp(32px, 4vw, 48px);
 }
}

.p-fc-recruit-flow__lead {
 text-align: center;
}
@media screen and (min-width: 768px) {
 .p-fc-recruit-flow__lead {
  font-size: 20px;
 }
}

.p-fc-recruit-flow__item-img {
 margin-inline: auto;
}

.p-fc-recruit-flow__item-title {
 font-size: 20px;
 text-align: center;
}

.p-fc-recruit-flow__item-text {
 text-align: center;
}
@media screen and (min-width: 768px) {
 .p-fc-recruit-flow__item-text {
  font-size: 10px;
 }
}

.p-fc-recruit-model__title {
 text-align: center;
 font-size: clamp(18px, 2vw, 24px);
}
@media screen and (min-width: 1024px) {
 .p-fc-recruit-model__title {
  font-size: clamp(32px, 4vw, 48px);
  margin-block: 30px;
 }
}

.p-fc-recruit-model--sp-head {
 margin-top: 40px;
 margin-bottom: 12px;
 font-size: clamp(14px, 2vw, 20px);
 text-align: center;
}

.p-fc-recruit-model__lead {
 text-align: center;
}

.p-fc-recruit__entry-btn {
 position: relative;
 z-index: 3;
}

.p-fc-recruit-campaign__title {
 font-size: clamp(18px, 2vw, 24px);
}
@media screen and (min-width: 1024px) {
 .p-fc-recruit-campaign__title {
  display: inline;
  font-size: clamp(32px, 4vw, 48px);
 }
}

.p-contact__head-btn {
 font-size: 12px;
}
.p-contact__head-btn .c-button, .p-contact__head-btn .wpcf7-submit {
 width: 219px;
 border: #333333 1px solid;
}
@media screen and (min-width: 1024px) {
 .p-contact__head-btn .c-button, .p-contact__head-btn .wpcf7-submit {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  width: clamp(219px, 30vw, 369px);
  font-size: clamp(14px, 1.591vw - 1.909px, 20px);
  padding: 24px 16px;
 }
}

.p-contact__title {
 font-size: clamp(14px, 2vw, 20px);
 text-align: center;
 margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
 .p-contact__title {
  font-size: clamp(28px, 1.818vw + 9.818px, 36px);
  margin-bottom: 32px;
 }
}

.p-contact__form--dark-blue {
 background-color: #1f2529;
 color: #ffffff;
 margin-inline: calc(50% - 50vw);
}
.p-contact__form--dark-blue .p-contact__item {
 border-top: 1px solid #ffffff;
}

.p-contact__item {
 display: grid;
 grid-template-columns: 140px auto;
 padding-block: 12px;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 border-top: 1px solid #333333;
}
@media screen and (min-width: 1024px) {
 .p-contact__item {
  grid-template-columns: 30% 1fr;
  padding-block: 24px;
 }
}

.wpcf7-submit {
 min-width: 100%;
 background-color: #1f2529;
 color: #ffffff;
 padding: 20px;
 border: 1px solid #1f2529;
 margin-inline: auto;
}
.wpcf7-submit:hover {
 background-color: #ffffff;
 color: #1f2529;
}

.p-contact__btn {
 display: grid;
}

.wpcf7 form .wpcf7-response-output {
 width: 70%;
 margin-inline: auto;
}

#fc-form,
#recruit-form {
 scroll-margin-top: 80px;
}

@media screen and (min-width: 768px) {
 .p-footer__container {
  background-color: #1f2529;
  color: #ffffff;
  font-size: 20px;
 }
}

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

.p-footer__list {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 gap: 10px;
}

.p-footer__menu-line {
 display: grid;
 background-color: #ffffff;
 width: 1px;
 height: 16px;
 align-self: center;
}

.p-footer__menu-link {
 -webkit-transition: opacity 0.3s ease;
 transition: opacity 0.3s ease;
}
.p-footer__menu-link:hover {
 opacity: 0.5;
}

.p-footer__menu-2 {
 grid-row: 2/3;
}

.p-footer__icon-list {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 gap: 24px;
 grid-row: 3/4;
}

.p-footer__icon-list-item {
 width: 44px;
 height: 44px;
 -webkit-transition: scale 0.3s ease;
 transition: scale 0.3s ease;
}
.p-footer__icon-list-item:hover {
 scale: 1.2;
}

.p-footer__icon-link img {
 width: 100%;
}

.p-footer__button--pc {
 grid-row: 1/4;
 width: 100%;
}
.p-footer__button--pc .c-button {
 min-width: 168px;
 min-height: auto;
 width: clamp(160px, 28vw, 460px);
 padding-block: 20px;
}

.c-button {
 display: inline-grid;
 place-items: center;
 min-width: 168px;
 padding: 5px;
 text-align: center;
 color: #333333;
 background-color: #ffffff;
 -webkit-transition: all 0.3s ease;
 transition: all 0.3s ease;
}
.c-button:hover {
 background-color: #1f2529;
 color: #ffffff;
 border: 1px solid #ffffff;
}
@media screen and (min-width: 768px) {
 .c-button {
  font-size: 20px;
  min-width: 460px;
  min-height: 73px;
 }
}

.c-button--dark {
 background-color: #1f2529;
 color: #ffffff;
}
.c-button--dark:hover {
 background-color: #ffffff;
 color: #1f2529;
 border: 1px solid #1f2529;
}

.c-button--header {
 width: 160px;
 font-size: 16px;
 min-width: auto;
 min-height: auto;
 border: 1px solid #333333;
 border-radius: 2px;
}

.c-button--dark {
 background-color: #1f2529;
 color: #ffffff;
}

.c-title--h2 {
 text-align: center;
 font-size: clamp(20px, 5vw, 32px);
 font-weight: 500;
}
.c-title--h2--white {
 color: #ffffff;
}
@media screen and (min-width: 768px) {
 .c-title--h2 {
  font-size: clamp(32px, 4vw, 48px);
 }
}

.c-title--h3 {
 text-align: center;
 font-size: clamp(18px, 2vw, 24px);
 font-weight: 400;
}
@media screen and (min-width: 768px) {
 .c-title--h3 {
  font-size: 40px;
 }
}

.c-menu-card {
 padding-block: 12px;
 border-top: dashed 1px #ffffff;
}
@media screen and (min-width: 768px) {
 .c-menu-card {
  font-size: 20px;
  padding-block: 24px;
 }
}
.c-menu-card:last-child {
 border-bottom: dashed 1px #ffffff;
}

.c-menu-card--lp .c-menu__top {
 display: grid;
 grid-template-columns: 1fr auto auto;
 grid-template-rows: auto auto;
 -webkit-column-gap: 8px;
 -moz-column-gap: 8px;
 column-gap: 8px;
}
.c-menu-card--lp .c-menu__name {
 grid-column: 1/-1;
 grid-row: 1;
}
.c-menu-card--lp .c-menu__time {
 grid-column: 2;
 grid-row: 2;
 text-align: right;
}
.c-menu-card--lp .c-menu__price {
 grid-column: 3;
 grid-row: 2;
 text-align: right;
}

.c-menu__top {
 display: grid;
 grid-template-columns: 1fr auto auto;
}

.c-menu__number {
 display: inline-block;
 padding: 1px 16px;
 background-color: #c1272d;
 color: #ffffff;
 margin-bottom: 8px;
}

.c-menu__price {
 margin-left: 20px;
}

.c-menu__explanation {
 padding-top: 8px;
 font-size: 12px;
}
@media screen and (min-width: 768px) {
 .c-menu__explanation {
  font-size: 18px;
 }
}

.c-menu__top.is-no-name {
 grid-template-columns: auto auto;
 -webkit-box-pack: end;
 -ms-flex-pack: end;
 justify-content: end;
 text-align: right;
}
.c-menu__top.is-no-name .c-menu__time,
.c-menu__top.is-no-name .c-menu__price {
 grid-column: auto;
 display: inline-block;
 margin-left: 8px;
}

.c-menu-card--spcial {
 display: grid;
 grid-template-columns: auto auto auto;
 grid-template-rows: auto auto auto;
 row-gap: 8px;
}
.c-menu-card--spcial .c-menu__name {
 font-size: clamp(15px, 2vw, 20px);
}
.c-menu-card--spcial .c-menu__time {
 grid-column-start: 2;
 grid-row-start: 3;
 text-align: right;
}
.c-menu-card--spcial .c-menu__price {
 grid-column-start: 3;
 grid-row-start: 3;
}
.c-menu-card--spcial .c-menu__explanation {
 font-size: clamp(11px, 2vw, 16px);
 grid-column: span 3/span 3;
 grid-row-start: 2;
 padding-top: 0;
}
@media screen and (min-width: 1024px) {
 .c-menu-card--spcial .c-menu__time {
  grid-column-start: 2;
  grid-row-start: 1;
  text-align: right;
 }
 .c-menu-card--spcial .c-menu__price {
  grid-column-start: 3;
  grid-row-start: 1;
 }
}

.c-staff-card {
 display: grid;
 gap: 24px;
 background-color: #ffebf3;
 padding: 0 24px 34px;
 margin: 0 auto;
 width: 100%;
 max-width: 500px;
 grid-template-rows: auto auto auto;
}
@media screen and (min-width: 1024px) {
 .c-staff-card {
  max-width: 1040px;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  grid-template-areas: "info img" "info btn";
  padding: 64px 35px 64px 64px;
  gap: 40px 80px;
 }
}

.c-staff-card__img {
 -ms-flex-negative: 0;
 flex-shrink: 0;
 margin: -16px auto 0;
 text-align: center;
}
.c-staff-card__img img {
 width: 56%;
 height: auto;
 -o-object-fit: cover;
 object-fit: cover;
 border-radius: 4px;
}
@media screen and (min-width: 1024px) {
 .c-staff-card__img {
  aspect-ratio: 1/1;
  max-width: 446px;
  grid-area: img;
  margin-top: -118px;
 }
 .c-staff-card__img img {
  width: 100%;
 }
}

.c-staff-card__info {
 -webkit-box-flex: 1;
 -ms-flex-positive: 1;
 flex-grow: 1;
}
@media screen and (min-width: 1024px) {
 .c-staff-card__info {
  grid-area: info;
 }
}

.c-staff-card__head {
 display: grid;
 grid-template-columns: auto 1fr;
 margin-bottom: 16px;
 border-bottom: 1px solid #333333;
 -webkit-box-align: end;
 -ms-flex-align: end;
 align-items: flex-end;
 padding-bottom: 12px;
}
@media screen and (min-width: 1024px) {
 .c-staff-card__head {
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
  row-gap: 16px;
  padding-bottom: 24px;
 }
}

.c-staff-card__name {
 font-size: clamp(18px, 3.562vw + 4.641px, 32px);
 font-weight: bold;
}
@media screen and (min-width: 1024px) {
 .c-staff-card__name {
  font-size: clamp(32px, 4vw, 48px);
 }
}

.c-staff-card__name--en {
 font-size: clamp(10px, 4.8vw - 8px, 16px);
 color: #999;
 justify-self: flex-start;
 padding-left: 1%;
}
@media screen and (min-width: 1024px) {
 .c-staff-card__name--en {
  font-size: 20px;
 }
}

.c-staff-card__price {
 font-size: clamp(10px, 4.8vw - 8px, 16px);
}
@media screen and (min-width: 1024px) {
 .c-staff-card__price {
  font-size: 20px;
 }
}

.c-staff-card__desc {
 font-size: clamp(0.875rem, 4.8vw - 0.25rem, 1.25rem);
}
@media screen and (min-width: 1024px) {
 .c-staff-card__desc {
  font-size: 20px;
  letter-spacing: 2;
 }
}

.c-staff-card__desc dt {
 font-weight: bold;
 margin-top: clamp(14px, 2vw, 20px);
}
@media screen and (min-width: 1024px) {
 .c-staff-card__desc dt {
  font-size: 24px;
 }
}

.c-staff-card__desc dd {
 margin: 4px 0 8px;
}
@media screen and (min-width: 1024px) {
 .c-staff-card__desc dd {
  margin: 16px 0;
 }
}

.c-staff-card__btn {
 margin-top: 20px;
 text-align: center;
}
@media screen and (min-width: 1024px) {
 .c-staff-card__btn {
  grid-area: btn;
 }
}
.c-staff-card__btn .c-button {
 min-width: auto;
 width: 100%;
}

.model-table {
 width: 100%;
 border-collapse: collapse;
 background-color: #fef9e6;
}

.model-table th,
.model-table td {
 padding: 12px;
 border-left: 1px solid #333;
 border-right: 1px solid #333;
}

.model-table tr:nth-last-child(2) td {
 border-bottom: 1px solid #333;
}

.model-table th {
 text-align: center;
 border-left: 1px solid #fff;
 border-right: 1px solid #fff;
}

.model-table td {
 color: #732f2f;
}
.model-table td:nth-of-type(1) {
 color: #333;
}

.model-table td:nth-child(2),
.model-table td:nth-child(3) {
 text-align: center;
}

.model-table td:first-child {
 border-left: none;
}

.model-table td:last-child {
 border-right: none;
}

.model-table thead th {
 background-color: #732f2f;
 color: #fff;
 text-align: center;
}

.model-table tbody td:first-child {
 font-weight: bold;
}

.c-form__label {
 font-size: 12px;
}
@media screen and (min-width: 1024px) {
 .c-form__label {
  font-size: clamp(16px, 1.818vw - 2.182px, 24px);
 }
}

.c-form__text,
.c-form__textarea {
 padding: 8px;
 width: 100%;
 background-color: rgba(240, 240, 240, 0.2705882353);
 border-radius: 5px;
 -webkit-box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
 box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.wpcf7-list-item label {
 position: relative;
}

.wpcf7-list-item input {
 opacity: 0;
 position: absolute;
}
.wpcf7-list-item input:checked + label {
 background-color: rgba(26, 26, 26, 0.4);
}

.wpcf7-list-item-label {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 gap: 10px;
}

.wpcf7-list-item .wpcf7-list-item-label {
 position: relative;
 padding-left: 50px;
}
.wpcf7-list-item .wpcf7-list-item-label::before {
 content: "";
 position: absolute;
 left: 0;
 top: 50%;
 -webkit-transform: translateY(-50%);
 transform: translateY(-50%);
 width: 30px;
 height: 30px;
 border: 2px solid #333;
}
.wpcf7-list-item .wpcf7-list-item-label::after {
 content: "";
 position: absolute;
}

.wpcf7-list-item input[type=checkbox]:checked ~ .wpcf7-list-item-label::before {
 background-size: 12px 12px;
}

.wpcf7-list-item input[type=checkbox]:checked ~ .wpcf7-list-item-label::after {
 content: "";
 position: absolute;
 left: 9px;
 top: 50%;
 -webkit-transform: translateY(-60%) rotate(45deg);
 transform: translateY(-60%) rotate(45deg);
 width: 12px;
 height: 21px;
 border: solid #333333;
 border-width: 0 4px 4px 0;
}

.p-contact__form--dark-blue .wpcf7-list-item .wpcf7-list-item-label::before {
 border: 2px solid #ffffff;
}
.p-contact__form--dark-blue .wpcf7-list-item input[type=checkbox]:checked ~ .wpcf7-list-item-label::after {
 border: solid #ffffff;
 border-width: 0 4px 4px 0;
}

.u-z-index-10 {
 z-index: 10;
}

.u-align-items-end {
 -webkit-box-align: end;
 -ms-flex-align: end;
 align-items: flex-end;
}
