/*---------------------------------------------------------
                共通css
---------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
    background-repeat: no-repeat;
    letter-spacing: 0.08em;
}

:root {
    --font-sub: "Junge", cursive;
    --base-color: #E5DCD3;
    --main-color: #6B5C4F;
    --text-color: #4A3C30;
    --text-sub-color: #8B7A6B;
    --text-sub-color2: #DBD3CC;
    --arrow-width: 28px;
}

html {
    color: var(--text-color);
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
    scroll-padding-top: 20px;
    scroll-behavior: smooth;
    scrollbar-color: #DCCEC1 #F7F3EF;
    scrollbar-width: thin;
}

body {
    position: relative;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    word-break: break-word;
    background: var(--base-color);
}

a {
    display: inline-block;
    color: var(--text-color);
    text-decoration: none;
    cursor: pointer;
    transition: .3s;
}

ul {
    list-style: none;
}

p {
    line-height: 1.9;
}

span {
    display: inline-block;
}

img,
iframe {
    max-width: 100%;
    vertical-align: bottom;
}

.container {
    position: relative;
    flex: 1;
}

main {
    min-height: 100vh;
}

.hidden {
    display: none;
    visibility: hidden;
}

/*---------------------------------------------------------
                テキスト
---------------------------------------------------------*/
.ttl_main {
    width: fit-content;
    margin: 0 auto;
    font-size: clamp(18px,2.5vw,24px);
    font-weight: 400;
    text-align: center;
    color: var(--main-color);
}

.ttl_main span {
    display: block;
    font-size: clamp(40px,7vw,64px);
    font-weight: 500;
}

.ttl_main.left {
    margin: 0 auto 0 0;
    text-align: left;
}

.subfont {
    font-family: var(--font-sub);
}

.txt_link {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-sub-color2);
    font-size: 12px;
}
.txt_link .arrow,
.next_link .arrow,
.prev_link .arrow {
    position: relative;
    width: var(--arrow-width);
    height: 4px;
    transition: .5s;
}
.txt_link .arrow::before,
.txt_link .arrow::after,
.next_link .arrow::before,
.next_link .arrow::after,
.prev_link .arrow::before,
.prev_link .arrow::after {
    content: "";
    position: absolute;
    display: inline-block;
    background: var(--text-sub-color2);
    transition: .5s;
}
.txt_link .arrow::before,
.next_link .arrow::before {
    bottom: 0;
    left: 0;
    width: calc(var(--arrow-width) - 10px);
    height: 1px;
}
.prev_link .arrow::before {
    transform: translateY(3px) rotate(-90deg);
    transform-origin: top right;
    width: 1px;
    height: calc(var(--arrow-width) - 10px);
}
.txt_link .arrow::after,
.next_link .arrow::after,
.prev_link .arrow::after {
    bottom: 1.3px;
    left: calc(100% - 14px);
    transform: rotate(45deg);
    width: 5px;
    height: 1px;
}
.prev_link .arrow::after {
    left: 0;
    transform: rotate(-45deg);
}
@media (hover: hover) and (pointer: fine) {
    .hover_item:hover .txt_link .arrow::before,
    .next_link:hover .arrow::before {
        width: 100%;
    }
    .hover_item:hover .txt_link .arrow::after,
    .next_link:hover .arrow::after {
        left: calc(100% - 4px);
    }
    .prev_link:hover .arrow {
        transform: translateX(-10px);
    }
    .hover_item:hover .txt_link .arrow.back::before,
    .prev_link:hover .arrow.back::before {
        height: var(--arrow-width);
    }
}

/*---------------------------------------------------------
                Swiper
---------------------------------------------------------*/
.swiper {
    width: 100%;
    overflow: hidden;
}
.swiper-navigation {
    margin-top: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.swiper-pagination {
    position: relative;
    transform: translateY(-5px);
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: fit-content !important;
}
.swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background-color: var(--main-color);
}
.swiper-button-next,
.swiper-button-prev {
    position: relative;
    display: inline-block;
    width: 15px;
    height: 28px;
}
.swiper-button-next::before,
.swiper-button-next::after,
.swiper-button-prev::before,
.swiper-button-prev::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 20px;
  height: 1px;
  border-radius: 9999px;
  background-color: var(--main-color);
  transform-origin: calc(100% - 0.5px) 50%;
}
.swiper-button-next::before,
.swiper-button-prev::before {
  transform: rotate(45deg);
}
.swiper-button-next::after,
.swiper-button-prev::after {
  transform: rotate(-45deg);
}

.swiper-button-prev {
    transform: rotate(-180deg);
}

/*---------------------------------------------------------
                アイキャッチ
---------------------------------------------------------*/
.eyecatch {
    position: relative;
    width: 100%;
    height: 100vh;
}
.eyecatch .eyecatch_img {
    width: 100%;
    height: 100%;
}
.eyecatch .eyecatch_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 90%;
}
.eyecatch .eyecatch_ttl {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}
.eyecatch .eyecatch_ttl h1 {
    line-height: 1.3;
    color: var(--text-color);
    text-wrap: nowrap;
}
.eyecatch .eyecatch_ttl h1 span {
    font-size: 40px;
    font-weight: 400;
}
.eyecatch .eyecatch_ttl p {
    line-height: 1;
    margin-top: 24px;
    color: var(--text-color);
    font-size: clamp(14px,2vw,18px);
}
/* .eyecatch .eyecatch_parts1 {
    position: absolute;
    top: 30%;
    left: 15%;
    width: 5vw;
    height: auto;
}
.eyecatch .eyecatch_parts2 {
    position: absolute;
    top: 80%;
    right: 15%;
    width: 5vw;
    height: auto;
} */
.eyecatch_parts1,
.eyecatch_parts2 {
    position: absolute;
    z-index: 5;
    width: 5vw;
    min-width: 60px;
    height: auto;
    pointer-events: none;
    opacity: 0;
}
.eyecatch_parts1 {
    top: 30%;
    left: 15%;
    animation: flutter1 8s infinite ease-in-out;
}
.eyecatch_parts1.sp {
    display: none;
}
.eyecatch_parts2 {
    top: 50%;
    right: 15%;
    animation: flutter2 8.5s .5s infinite ease-in-out;

}
@keyframes flutter1 {
  0% {
    transform: translate(0, 0) rotate(80deg);
    opacity: 0;
  }
  25% {
    transform: translate(-120px, 50px) rotate(160deg);
    opacity: 1;
  }
  50% {
    transform: translate(0px, 150px) rotate(80deg);
  }
  75% {
    transform: translate(-120px, 250px) rotate(160deg);
  }
  100% {
    transform: translate(0px, 350px) rotate(80deg);
    opacity: 0;
  }
}
@keyframes flutter2 {
    0% {
      transform: translate(0, 0) rotate(0);
      opacity: 0;
    }
    25% {
      transform: translate(160px, 50px) rotate(-90deg);
      opacity: 1;
    }
    50% {
      transform: translate(0px, 150px) rotate(0deg);
    }
    75% {
      transform: translate(160px, 250px) rotate(-90deg);
    }
    100% {
      transform: translate(0px, 350px) rotate(0deg);
      opacity: 0;
    }
}
@media screen and (max-width: 600px) {
    .eyecatch .eyecatch_img {
        position: absolute;
        bottom: 0;
        left: 0;
        height: auto;
    }
    .eyecatch .eyecatch_ttl {
        left: 5%;
        transform: translateX(0);
    }
    .eyecatch .eyecatch_ttl h1 {
        text-align: left;
    }
    .eyecatch .eyecatch_ttl h1 span {
        display: block;
    }
    .eyecatch .eyecatch_ttl h1 span:last-of-type {
        font-size: 50px;
    }
    .eyecatch .eyecatch_ttl p {
        text-align: left;
    }
    .eyecatch_parts1 {
        width: 33px;
    }
    .eyecatch_parts2 {
        width: 42px;
    }
    .eyecatch_parts1 {
        display: none;
        top: 45%;
        left: 120px;
        animation: flutter1 8s infinite ease-in-out;
    }
    .eyecatch_parts1.sp {
        display: inline-block;
    }
    .eyecatch_parts2 {
        top: 60%;
        right: 150px;
        animation: flutter2 8.5s .5s infinite ease-in-out;

    }
}

/*---------------------------------------------------------
                メッセージ
---------------------------------------------------------*/
#message {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 40px;
    margin: 200px 0 180px;
}
#message .ttl_main {
    position: absolute;
    top: 20px;
    left: 20%;
}
#message .img_box_left {
    display: flex;
    flex-direction: column;
    width: 25%;
    margin-top: 140px;
}
#message .img_box_left img:first-of-type {
    width: 80%;
    height: auto;
    margin: 0 auto 0 0;
}
#message .img_box_left img:last-of-type {
    width: 80%;
    height: auto;
    margin: auto 0 0 auto;
}
#message .txt_box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: 140px 0 100px;
}
#message .txt_box img {
    display: none;
}
#message .txt_box h3 {
    line-height: 1.6;
    font-size: clamp(30px,3vw,38px);
    font-weight: 500;
}
#message .txt_box .introduction {
    margin-top: 14px;
    text-align: justify;
}
#message .txt_box .txt {
    margin-top: 56px;
}
#message .txt_box .txt p {
    margin-top: 8px;
    line-height: 1.9;
    font-size: 14px;
    text-align: justify;
}
#message .txt_box .txt p.strong {
    display: block;
    margin-top: 0;
    line-height: 1.7;
    font-size: 18px;
    font-weight: 600;
}
#message .img_box_right {
    display: flex;
    flex-direction: column;
    width: 35%;
    margin-left: 40px;
}
#message .img_box_right img:first-of-type {
    width: 100%;
    height: auto;
}
#message .img_box_right img:last-of-type {
    width: 50%;
    height: auto;
    margin: 20% auto 0 10%;
}
#message .message_parts1 {
    position: absolute;
    top: -7%;
    right: 0;
    z-index: 2;
    width: 20%;
}
#message .message_parts2 {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 2;
    width: 5%;
}
#message .message_parts3 {
    position: absolute;
    bottom: -15%;
    right: 10%;
    z-index: 2;
    width: 5%;
}
@media screen and (max-width: 1200px) {
    #message .img_box_left {
        width: 20%;
    }
    #message .img_box_right {
        width: 30%;
    }
}
@media screen and (max-width: 990px) {
    #message {
        flex-direction: column;
        gap: 40px;
        margin: 180px 0 140px;
    }
    #message .ttl_main {
        position: static;
        margin: 0 auto 0 0;
    }
    #message .ttl_main span {
        font-size: 56px;
    }
    #message .img_box_left {
        display: none;
    }
    #message .img_box_right {
        display: none;
    }
    #message .txt_box {
        margin-top: 0;
        margin-bottom: 0;
    }
    #message .txt_box h3 {
        padding: 0 24px;
    }
    #message .txt_box .introduction {
        margin-top: 18px;
        padding: 0 24px;
    }
    #message .txt_box .txt {
        margin-top: 60px;
        padding: 0 24px;
    }
    #message .txt_box .txt p.strong br {
        display: none;
    }
    #message .txt_box img {
        display: block;
    }
    #message .txt_box .img_message1_sp {
        width: 60%;
        margin: 36px 0 0 auto;
    }
    #message .txt_box .img_message2_sp {
        width: 60%;
        margin: 36px auto 0 0;
    }
    #message .txt_box .img_message3_sp {
        width: 100%;
        height: auto;
        aspect-ratio: 1 /.5;
        object-fit: cover;
        margin: 60px auto 0;
    }
    #message .message_parts1 {
        width: 40%;
        max-width: 356px;
    }
    #message .message_parts2,
    #message .message_parts3 {
        display: none;
    }
}
@media screen and (max-width: 600px) {
    #message .txt_box .introduction {
        font-size: 14px;
    }
    #message .txt_box .txt p.strong {
        font-size: 17px;
    }
    #message .txt_box .txt p.strong br {
        display: inline-block;
    }
    #message .txt_box .img_message3_sp {
        aspect-ratio: 1 / 1;
    }
}

/*---------------------------------------------------------
                サービス
---------------------------------------------------------*/
#service .service_content:first-of-type {
    margin-top: 72px;
}
#service .service_content {
    display: flex;
    align-items: stretch;
}
#service .service_content .left_box {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
}
#service .service_content .left_box::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}
#service .service_content .left_box::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #635952;
    mix-blend-mode: multiply;
}
#service .service_content .left_box .inner {
    width: fit-content;
    margin: 0 auto;
}
#service .service_content .left_box h3 {
    line-height: 1;
    color: var(--text-sub-color2);
    font-size: clamp(42px,5vw,48px);
    font-weight: 500;
}
#service .service_content .left_box p {
    line-height: 1.7;
    color: var(--text-sub-color2);
    font-weight: 600;
}
#service .service_content .left_box .txt {
    margin-top: 56px;
    font-size: 22px;
}
#service .service_content .left_box .subtxt {
    margin-top: 28px;
    font-size: 16px;
}
#service .service_content .left_box .machine {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    margin-top: 64px;
}
#service .service_content.datsumou .left_box .machine img {
    width: 82px;
    height: auto;
}
#service .service_content.bodymake .left_box .machine img {
    width: 77px;
    height: auto;
}
#service .service_content .left_box .machine .info p {
    line-height: 1;
    color: var(--text-sub-color2);
    font-size: 14px;
    font-weight: 500;
}
#service .service_content .left_box .machine .info h4 {
    margin-top: 2px;
    line-height: 1.4;
    color: var(--text-sub-color2);
    font-size: 24px;
    font-weight: 500;
}
#service .service_content .left_box .machine .info a {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 8px;
    margin: 10px 0 15px;
    color: var(--text-sub-color2);
}
#service .service_content.datsumou .left_box .machine .info img,
#service .service_content.bodymake .left_box .machine .info img {
    width: 12px;
    height: auto;
}
#service .service_content .left_box .machine .info span {
    text-decoration: underline;
}
#service .service_content .right_box {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    width: 50%;
    padding: 80px 8% 80px 80px;
}
#service .service_content .right_box .service_menu dt {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: clamp(20px,3vw,26px);
    font-weight: 500;
}
#service .service_content .right_box .service_menu dt span {
    font-size: 16px;
}
#service .service_content .right_box .service_menu dt span.min {
    display: inline-block;
    padding-left: 20px;
    font-size: 14px;
}
#service .service_content .right_box .service_menu dd {
    padding: 16px 0 50px;
    border-bottom: 1px solid var(--text-sub-color2);
    font-size: 16px;
    font-weight: 500;
}
#service .service_content .right_box .service_menu dt:first-of-type {
    margin-top: 0;
    padding-top: 0;
}
#service .service_content .right_box .service_menu dd:last-of-type {
    border: none;
}
#service .service_content.datsumou .left_box::before {
    background-image: url(../img/img_service1.png);
    background-position: right;
}
#service .service_content.datsumou .left_box .machine {
    margin-bottom: 80px;
}
#service .service_content.bodymake .left_box::before {
    background-image: url(../img/img_service2.png);
    background-position: right;
}
#service .service_content.bodymake .right_box {
    padding: 160px 8% 160px 80px;
}
#service .service_content.bodymake .right_box .service_menu dt span {
    transform: translateX(-10px);
}
@media screen and (max-width: 990px) {
    #service .service_content .right_box {
        padding: 56px 5%;
    }
    #service .service_content.bodymake .right_box {
        padding: 100px 5%;
    }
    #service .service_content .left_box .inner {
        width: 90%;
    }
    #service .service_content .left_box .txt {
        font-size: 20px;
    }
    #service .service_content .left_box .subtxt {
        font-size: 15px;
    }
    #service .service_content .left_box p {
        font-size: 13px;
    }
    #service .service_content .left_box .machine .info h4 {
        font-size: 20px;
    }
    #service .service_content .left_box .machine .info span {
        font-size: 12px;
    }
}
@media screen and (max-width: 768px) {
    #service .service_content {
        flex-direction: column;
    }
    #service .service_content .left_box {
        flex: auto;
        justify-content: flex-start;
        width: 100%;
        height: 1038px;
        padding: 120px 24px 0;
    }
    #service .service_content .right_box {
        width: auto;
        margin: -360px 24px 0;
        padding: 40px 30px;
        background: var(--base-color);
    }
    #service .service_content.bodymake .right_box {
        padding: 40px 30px;
    }
    #service .service_content .left_box .machine {
        flex-direction: row-reverse;
        justify-content: left;
    }
    #service .service_content .left_box .machine .info a {
        justify-content: left;
    }
    #service .service_content .right_box .service_menu dt {
        margin-top: 32px;
    }
    #service .service_content .right_box .service_menu dt span {
        font-size: 12px;
    }
    #service .service_content .right_box .service_menu dd {
        padding: 16px 0 32px;
        font-size: 15px;
    }
    #service .service_content.datsumou .left_box .machine img {
        width: 100px;
    }
}
@media screen and (max-width: 600px) {
    #service .service_content.datsumou .left_box::before {
        background-image: url(../img/img_service1_sp.png);
    }
    #service .service_content.bodymake .left_box::before {
        background-image: url(../img/img_service2_sp.png);
    }
    #service .service_content .left_box .machine {
        justify-content: space-between;
    }
}

/*---------------------------------------------------------
                料金のご案内
---------------------------------------------------------*/
#price {
    margin-top: 160px;
}
#price .price_menu {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 72px;
}
#price .price_menu .price_item {
    position: relative;
    width: calc(100% / 3);
    height: auto;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

/* パネル式 */
/* #price .price_menu .price_item .card_surface,
#price .price_menu .price_item .card_reverse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: all 1s;
}
#price .price_menu .price_item .card_surface {
    transform: rotateY(0);
    z-index: 2;
}
#price .price_menu .price_item .card_reverse {
    transform: rotateY(-180deg);
    z-index: 3;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    padding: 5%;
    background: #fff;
}
#price .price_menu .price_item .card_reverse .menu_name {
    line-height: 1;
    padding: 0 10px 8px;
    border-bottom: 1px solid var(--text-color);
    font-size: clamp(22px,2.2vw,26px);
}
#price .price_menu .price_item .card_reverse .menu_list {
    width: 80%;
    margin: 40px auto 0 0;
}
#price .price_menu .price_item .card_reverse .menu_list li {
    display: flex;
    align-items: center;
    gap: 24px;
}
#price .price_menu .price_item .card_reverse .menu_list li + li {
    margin-top: 24px;
}
#price .price_menu .price_item .card_reverse .menu_list li .min_name {
    line-height: 1;
    font-size: 18px;
}
#price .price_menu .price_item .card_reverse .menu_list li .border {
    flex: 1;
    height: 2px;
    background-image: radial-gradient(circle, var(--text-color) 1px, transparent 1px);
    background-position: left 6px top;
    background-repeat: repeat-x;
    background-size: 8px 2px;
}
#price .price_menu .price_item .card_reverse .menu_list li .price {
    line-height: 1;
    color: var(--text-sub-color);
    font-size: 18px;
}
#price .price_item.active .card_surface {
    transform: rotateY(-180deg);
}
#price .price_item.active .card_reverse {
    transform: rotateY(0deg);
}
#price .price_menu .price_item .card_surface::before,
#price .price_menu .price_item .card_surface::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#price .price_menu .price_item .card_surface::before {
    z-index: -2;
    background-repeat: no-repeat;
    background-size: cover;
}
#price .price_menu .price_item .card_surface::after {
    z-index: -1;
    background: #968E88;
    mix-blend-mode: multiply;
}
#price .price_menu .price_item:nth-child(1) .card_surface::before {
    background-image: url(../img/img_price1.png);
    background-position: center;
}
#price .price_menu .price_item:nth-child(2) .card_surface::before {
    background-image: url(../img/img_price2.png);
    background-position: 70%;
}
#price .price_menu .price_item:nth-child(3) .card_surface::before {
    background-image: url(../img/img_price3.png);
    background-position: 80%;
}
#price .price_menu .price_item:nth-child(4) .card_surface::before {
    background-image: url(../img/img_price4.png);
    background-position: 70%;
}
#price .price_menu .price_item:nth-child(5) .card_surface::before {
    background-image: url(../img/img_price5.png);
    background-position: 70%;
}
#price .price_menu .price_item:nth-child(6) .card_surface::before {
    background-image: url(../img/img_price6.png);
    background-position: 90%;
}
#price .price_item.active .card_reverse .txt_link {
    display: none;
}
#price .price_menu .price_item .card_surface .menu_ttl {
    line-height: 1.4;
    padding: 80px 20px 0 32px;
    color: var(--text-sub-color2);
    font-size: clamp(20px,2.2vw,26px);
    font-weight: 500;
}
#price .price_menu .price_item .card_surface .menu_ttl span {
    display: block;
    margin-top: 4px;
    color: var(--text-sub-color2);
    font-size: 14px;
}
#price .price_menu .price_item .card_surface .txt_link {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 14px 0 0 32px;
    font-size: 12px;
} */

/* モーダル */
#price .price_menu .price_item .modal_toggle {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
#price .price_menu .price_item .modal_toggle::before,
#price .price_menu .price_item .modal_toggle::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#price .price_menu .price_item .modal_toggle::before {
    z-index: -2;
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform .5s ease-out;
    transform-origin: center center;
}
#price .price_menu .price_item .modal_toggle::after {
    z-index: -1;
    background: #968E88;
    mix-blend-mode: multiply;
}
#price .price_menu .price_item .modal_toggle[data-modal="datsumouModal"]::before {
    background-image: url(../img/img_price1.png);
    background-position: center;
}
#price .price_menu .price_item .modal_toggle[data-modal="facialModal"]::before {
    background-image: url(../img/img_price2.png);
    background-position: 70%;
}
#price .price_menu .price_item .modal_toggle[data-modal="kidsModal"]::before {
    background-image: url(../img/img_price3.png);
    background-position: 80%;
}
#price .price_menu .price_item .modal_toggle[data-modal="courseModal"]::before {
    background-image: url(../img/img_price4.png);
    background-position: 70%;
}
#price .price_menu .price_item .modal_toggle[data-modal="bustModal"]::before {
    background-image: url(../img/img_price5.png);
    background-position: 70%;
}
#price .price_menu .price_item .modal_toggle[data-modal="mensModal"]::before {
    background-image: url(../img/img_price6.png);
    background-position: 90%;
}
#price .price_menu .price_item .modal_toggle .menu_ttl {
    line-height: 1.4;
    padding: 80px 20px 0 32px;
    color: var(--text-sub-color2);
    font-size: clamp(20px,2.2vw,26px);
    font-weight: 500;
}
#price .price_menu .price_item .modal_toggle .menu_ttl span {
    display: block;
    margin-top: 4px;
    color: var(--text-sub-color2);
    font-size: 14px;
}
#price .price_menu .price_item .modal_toggle .txt_link {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 14px 0 0 32px;
    font-size: 12px;
}

@media (hover: hover) and (pointer: fine) {
    #price .price_menu .price_item .modal_toggle:hover::before {
        transform: scale(1.1);
    }
}

/* モーダル */
.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 50;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: .5s;
}
.modal.open {
    opacity: 1;
    pointer-events: all;
}
.modal .modal_bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: rgba(99,89,82,.8);
}
.modal .modal_close {
    display: flex;
    align-items: center;
    justify-content: right;
    width: 100%;
    height: 26px;
    padding: 0 15px;
    background: var(--text-color);
    cursor: pointer;
}
.modal .modal_close .txt_link {
    font-size: 14px;
}
.modal .scroll_attention {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 10;
    width: 174px;
    height: auto;
    animation: scaleUp 1.5s linear infinite;
}
@keyframes scaleUp {
    0% {
        transform: translate(-50%,-50%) scale(1);
    }
    50% {
        transform: translate(-50%,-50%) scale(1.1);
    }
    100% {
        transform: translate(-50%,-50%) scale(1);
    }
}
.modal .modal_header {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 460 / 225;
    margin-bottom: 32px;
    background-size: cover;
}
.modal .modal_header .menu_ttl {
    position: absolute;
    top: 40px;
    left: 30px;
    font-size: 22px;
    font-weight: 500;
}
#datsumouModal .modal_header {
    background-image: url(../img/img_price1.png);
    background-position: center;
}
#facialModal .modal_header {
    background-image: url(../img/img_price2.png);
    background-position: 70%;
}
#kidsModal .modal_header {
    background-image: url(../img/img_price3.png);
    background-position: 80%;
}
#courseModal .modal_header {
    background-image: url(../img/img_price4.png);
    background-position: 70%;
}
#bustModal .modal_header {
    background-image: url(../img/img_price5.png);
    background-position: 70%;
}
#mensModal .modal_header {
    background-image: url(../img/img_price6.png);
    background-position: 90% 65%;
}
.modal .modal_content {
    position: relative;
    width: 90%;
    max-width: 600px;
    max-height: 80%;
    transition: .5s;
}
.modal .modal_content .scroll_area {
    overflow-y: auto;
    display: none;
    height: calc(100% - 26px);
    background: #fff;
}
.modal .menu_name {
    line-height: 1;
    margin: 0 30px 0;
    padding: 0 0 10px;
    border-bottom: 1px solid var(--text-color);
    font-size: 20px;
}
.modal .menu_name span {
    padding-left: 8px;
    font-size: 16px;
}
.modal .menu_list {
    margin: 0 30px 30px;
}
.modal .menu_name + .menu_list {
    margin-top: 20px;
}
.modal .menu_list + .menu_name {
    margin-top: 40px;
}
.modal .menu_list li {
    display: flex;
    align-items: center;
    gap: 16px 24px;
}
.modal .menu_list li + li {
    margin-top: 24px;
}
.modal .menu_list li .min_name {
    line-height: 1.4;
    font-size: 18px;
}
.modal .menu_list li .flex {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 24px;
}
.modal .menu_list li .border {
    display: none;
    flex: 1;
    height: 2px;
    background-image: radial-gradient(circle, var(--text-color) 1px, transparent 1px);
    background-position: left 6px top;
    background-repeat: repeat-x;
    background-size: 8px 2px;
}
.modal .menu_list li .price {
    line-height: 1;
    color: var(--text-sub-color);
    font-size: 18px;
    white-space: nowrap;
}

@media screen and (max-width: 1024px) {
    #price .price_menu .price_item {
        width: calc(100% / 2);
    }
}

@media screen and (max-width: 768px) {
    #price {
        margin-top: 80px;
    }
    #price .price_menu .price_item {
        width: calc(100% / 2);
    }
    #price .price_menu {
        margin-top: 48px;
    }
    #price .price_menu .price_item .modal .menu_name {
        margin: 0 5%;
        padding-bottom: 30px;
    }
    #price .price_menu .price_item .modal .menu_list {
        padding: 0 5%;
    }
    /* #price .price_menu .price_item .card_reverse {
        width: 100vw;
        padding: 0;
    }
    #price .price_item:nth-child(even).active .card_reverse {
        transform: translateX(-50vw) rotateY(0deg);
    }
    #price .price_menu .price_item .card_reverse .menu_name {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        margin: 0 5%;
        padding-bottom: 30px;
    }
    #price .price_item.active .card_reverse .txt_link {
        display: flex;
        color: var(--text-color);
    }
    #price .price_menu .price_item .card_reverse .menu_list {
        padding: 0 5%;
    } */
}
@media screen and (max-width: 600px) {
    #price .price_menu .price_item {
        aspect-ratio: 188 / 346;
    }
    #price .price_menu .price_item .modal_toggle .menu_list li .min_name {
        font-size: 16px;
    }
    #price .price_menu .price_item .modal_toggle .menu_ttl {
        padding: 40px 24px 0;
    }
    #price .price_menu .price_item .modal_toggle .menu_ttl span {
        font-size: 12px;
    }
    #price .price_menu .price_item .modal_toggle .txt_link {
        margin: 10px 0 0 24px;
    }
    .modal .menu_list {
        margin-top: 24px;
    }
    #price .price_menu .price_item .modal .menu_list li .price {
        font-size: 16px;
    }
    #price .price_menu .price_item .modal .menu_name {
        margin: 0 24px;
    }
    #price .price_menu .price_item .modal .menu_list {
        padding: 0 24px;
    }
    .modal .menu_name {
        font-size: 18px;
    }
    .modal .menu_list li .min_name {
        font-size: 16px;
        word-break: auto-phrase;
    }
    /* #price .price_menu .price_item .card_reverse .menu_list li .min_name {
        font-size: 16px;
    }
    #price .price_menu .price_item .card_reverse .menu_list li .price {
        font-size: 16px;
    }
    #price .price_menu .price_item .card_surface .menu_ttl {
        padding: 40px 24px 0;
    }
    #price .price_menu .price_item .card_surface .menu_ttl span {
        font-size: 12px;
    }
    #price .price_menu .price_item .card_surface .txt_link {
        margin: 10px 0 0 24px;
    }
    #price .price_menu .price_item .card_reverse .menu_name {
        margin: 0 24px;
    }
    #price .price_menu .price_item .card_reverse .menu_list {
        padding: 0 24px;
    } */
}

/*---------------------------------------------------------
                サロン
---------------------------------------------------------*/
#salon {
    width: 60%;
    margin: 0 auto;
    padding: 200px 0;
}
#salon .salon_content {
    margin-top: 56px;
}
#salon .salon_content .room_list {
    display: flex;
    align-items: flex-start;
    gap: 56px;
}
#salon .salon_content .room_list li {
    display: flex;
    flex-direction: column;
}
#salon .salon_content .room_list li:last-of-type {
    margin-top: 56px;
}
#salon .salon_content .room_list li .room_area {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 24px;
    color: var(--text-sub-color);
    font-size: 14px;
}
#salon .salon_content .room_list li h3 {
    margin-top: 16px;
    line-height: 1;
    font-size: 22px;
    font-weight: 500;
}
#salon .salon_content .room_list li p {
    margin-top: 12px;
    line-height: 1.7;
    font-size: 16px;
}
@media screen and (max-width: 990px) {
    #salon {
        width: 80%;
        padding: 140px 0;
    }
}
@media screen and (max-width: 768px) {
    #salon {
        width: 100%;
        margin: 0;
    }
    #salon .ttl_main.left {
        margin: 0 auto;
    }
    #salon .ttl_main span {
        text-align: center;
    }
    #salon .salon_content .room_list {
        flex-direction: column;
        gap: 80px;
    }
    #salon .salon_content .room_list .img_box {
        width: 90%;
        margin: 0 auto 0 0;
    }
    #salon .salon_content .room_list li:last-of-type {
        margin-top: 0;
    }
    #salon .salon_content .room_list li:nth-child(even) .img_box {
        margin: 0 0 0 auto;
    }
    #salon .salon_content .room_list li .room_area {
        padding: 0 24px;
    }
    #salon .salon_content .room_list li h3 {
        padding: 0 24px;
    }
    #salon .salon_content .room_list li p {
        padding: 0 24px;
    }
}
@media screen and (max-width: 600px) {
    #salon .salon_content .room_list .img_box {
        width: auto;
        margin: 0 24px 0 0;
    }
    #salon .salon_content .room_list li:nth-child(even) .img_box {
        margin: 0 0 0 24px;
    }
}

/*---------------------------------------------------------
                ご来店までの流れ
---------------------------------------------------------*/
#flow .flow_content {
    position: relative;
}
#flow .flow_content h2 {
    position: absolute;
    top: 18%;
    left: 8vw;
    z-index: 3;
}
#flow .flow_content .bg_box {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1440 / 593;
}
#flow .flow_content .bg_box.sp {
    display: none;
}
#flow .flow_content .bg_box img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .5s;
}
#flow .flow_content .bg_box img.show {
    opacity: 1;
}
#flow .flow_content .bg_box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, #685544, transparent 52%);
}
#flow .flow_content .flow_box {
    position: absolute;
    top: 0;
    right: 8vw;
    z-index: 3;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    width: 23%;
    min-width: 200px;
    height: 100%;
}
#flow .flow_content .flow_box .flow_item {
    position: relative;
    order: 1;
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    aspect-ratio: 288 / 119;
    padding: 20px 10px;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    box-shadow: 4px 4px 8px rgba(99,89,82,.5);
}
#flow .flow_content .flow_box .flow_item.show {
    order: 4;
}
#flow .flow_content .flow_box .flow_item.prev_show {
    order: 1;
}
#flow .flow_content .flow_box .flow_item.hidden {
    display: none;
}
#flow .flow_content .flow_box .flow_item.flow_1 {
    background-image: url(../img/img_flow_min1.png);
}
#flow .flow_content .flow_box .flow_item.flow_2 {
    background-image: url(../img/img_flow_min2.png);
}
#flow .flow_content .flow_box .flow_item.flow_3 {
    background-image: url(../img/img_flow_min3.png);
}
#flow .flow_content .flow_box .flow_item.flow_4 {
    background-image: url(../img/img_flow_min4.png);
}
#flow .flow_content .flow_box .flow_item .txt_box {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding-left: 10px;
}
#flow .flow_content .flow_box .flow_item .step {
    font-size: 32px;
    text-align: center;
}
#flow .flow_content .flow_box .flow_item .step span {
    display: block;
    font-size: 13px;
}
#flow .flow_content .flow_box .flow_item .flow_ttl {
    line-height: 2.2;
    font-size: 16px;
    font-weight: 500;
}
#flow .flow_content .flow_box .flow_item .txt_link {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: var(--text-color);
}
#flow .flow_content .flow_box .flow_item .txt_link .arrow::before,
#flow .flow_content .flow_box .flow_item .txt_link .arrow::after {
    background: var(--main-color);
}
#flow .flow_content .flow_info {
    position: absolute;
    bottom: -100px;
    left: 0;
    z-index: 5;
    width: 60%;
    min-width: 500px;
    max-width: 900px;
    height: auto;
    aspect-ratio: 709 / 288;
    background: var(--main-color);
}
#flow .flow_content .flow_info .flow_info_item {
    position: absolute;
    opacity: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 32px 40px 32px 8vw;
    transition: opacity .5s;
}
#flow .flow_content .flow_info .flow_info_item.show {
    opacity: 1;
    z-index: 5;
}
#flow .flow_content .flow_info .ttl {
    display: flex;
    align-items: flex-end;
    gap: 16px;
}
#flow .flow_content .flow_info .ttl .step {
    color: var(--text-sub-color2);
    font-size: clamp(48px,4vw,52px);
    text-align: center;
}
#flow .flow_content .flow_info .ttl .step span {
    display: block;
    font-size: 16px;
}
#flow .flow_content .flow_info .ttl h3 {
    line-height: 2;
    color: var(--text-sub-color2);
    font-size: clamp(20px,2.2vw,22px);
    font-weight: 500;
}
#flow .flow_content .flow_info .txt {
    margin-top: 10px;
    line-height: 1.7;
    color: var(--text-sub-color2);
    font-size: 15px;
}
#flow .flow_content .flow_info .link_box {
    flex: 1;
    display: flex;
    justify-content: space-between;
}
#flow .flow_content .flow_info .prev_link,
#flow .flow_content .flow_info .next_link {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    color: var(--text-sub-color2);
    font-size: 14px;
    cursor: pointer;
}
#flow .flow_content .flow_info .prev_link span,
#flow .flow_content .flow_info .next_link span {
    font-size: 13px;
}
#flow .flow_content .flow_info .prev_link {
    margin: 0 auto 0 0;
}
#flow .flow_content .flow_info .next_link {
    margin: 0 0 0 auto;
}

@media screen and (max-width: 990px) {
    #flow .flow_content h2 {
        left: 5%;
    }
    #flow .flow_content .flow_box {
        right: 5%;
        gap: 8px;
    }
    #flow .flow_content .flow_box .flow_item .txt_box {
        padding-left: 0;
    }
    #flow .flow_content .flow_info {
        bottom: -180px;
        aspect-ratio: 1 / .6;
    }
    #flow .flow_content .flow_info .flow_info_item {
        padding: 32px 5%;
    }
}

@media screen and (max-width: 768px) {
    #flow .flow_content {
        display: flex;
        flex-direction: column;
    }
    #flow .flow_content h2 {
        position: absolute;
        top: 5%;
        left: 5%;
    }
    #flow .flow_content .bg_box {
        aspect-ratio: 1 / .7;
    }
    #flow .flow_content .bg_box.pc {
        display: none;
    }
    #flow .flow_content .bg_box.sp {
        display: block;
    }
    #flow .flow_content .bg_box::before {
        background: linear-gradient(to left, #E4DDD7, transparent 0%);
    }
    #flow .flow_content .flow_box {
        display: none;
    }
    #flow .flow_content .flow_box .flow_item {
        min-width: 220px;
    }
    #flow .flow_content .flow_info {
        position: static;
        width: 90%;
        min-width: auto;
        max-width: 100%;
        height: 100%;
        margin: -20% auto 0;
        aspect-ratio: 1 / .5;
    }
    #flow .flow_content .flow_info .flow_info_item {
        width: 90%;
        height: auto;
        aspect-ratio: 1 / .5;
        padding: 32px;
    }
}
@media screen and (max-width: 600px) {
    #flow .flow_content .flow_info {
        aspect-ratio: 1 / .7;
    }
}
@media screen and (max-width: 500px) {
    #flow .flow_content .bg_box {
        aspect-ratio: 375 / 476;
    }
    #flow .flow_content .flow_info {
        aspect-ratio: 1 / .9;
    }
    #flow .flow_content .flow_info .flow_info_item {
        aspect-ratio: 1 / .9;
    }
    #flow .flow_content .flow_info .ttl {
        gap: 8px;
    }
    #flow .flow_content .flow_info .prev_link,
    #flow .flow_content .flow_info .next_link {
        flex-wrap: wrap;
        margin-top: auto;
    }
    #flow .flow_content .flow_info .next_link {
        justify-content: right;
    }
    #flow .flow_content .flow_info .prev_link span:last-of-type,
    #flow .flow_content .flow_info .next_link span:last-of-type {
        order: 3;
        width: 100%;
    }
    #flow .flow_content .flow_info .next_link span:last-of-type {
        text-align: right;
    }
}
@media screen and (max-width: 400px) {
    #flow .flow_content .flow_info {
        min-height: 330px;
        margin-top: -40%;
        aspect-ratio: 1 / 1;
    }
    #flow .flow_content .flow_info .flow_info_item {
        aspect-ratio: 1 / 1;
    }
    #flow .flow_content .flow_box {
        margin-top: -80%;
    }
}

/*---------------------------------------------------------
                ブログ
---------------------------------------------------------*/
#blog {
    width: 84vw;
    margin: 240px auto 0;
}
#blog .blog_content {
    display: flex;
    align-items: flex-start;
    gap: 8%;
}
#blog .ttl_box p {
    margin-top: 24px;
}
#blog .ttl_box.sp {
    display: none;
}
#blog .left_box {
    flex: 1;
    max-width: 350px;
}
#blog .left_box .txt {
    margin-top: 24px;
    font-size: 14px;
}
#blog .left_box .supervisor_content {
    margin-top: 56px;
}
#blog .left_box .supervisor_content .info {
    margin-top: 20px;
}
#blog .left_box .supervisor_content .info .degree {
    line-height: 1;
    color: var(--text-sub-color);
    font-size: 12px;
    font-weight: 500;
}
#blog .left_box .supervisor_content .info .ttl {
    margin-top: 8px;
    line-height: 1.7;
    font-size: 18px;
    font-weight: 500;
}
#blog .left_box .supervisor_content .info .txt {
    margin-top: 16px;
    line-height: 2;
    font-size: 14px;
}
#blog .left_box .supervisor_content .img_box {
    aspect-ratio: 263 / 160;
}
#blog .left_box .supervisor_content .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#blog .right_box {
    width: 65%;
}
#blog .right_box .img_box {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 2.5;
    overflow: hidden;
}
#blog .right_box .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease-out;
}
#blog .right_box .date {
    margin-top: 16px;
    line-height: 1;
    color: var(--text-sub-color);
    font-size: 12px;
}
#blog .right_box h3 {
    margin-top: 8px;
    line-height: 1.7;
    font-size: 14px;
    font-weight: 500;
}
#blog .right_box .txt_link {
    width: fit-content;
    margin: 16px 0 0 auto;
}
#blog .right_box .txt_link img {
    width: 16px;
    height: 16px;
}
#blog .right_box .txt_link span {
    color: var(--text-sub-color);
    text-decoration: underline;
    font-size: 13px;
}
#blog .right_box .swiper-slide {
    margin-bottom: 16px;
}

@media (hover: hover) and (pointer: fine) {
    #blog .right_box .swiper-slide a:hover .img_box img {
        transform: scale(1.1);
    }
}

@media screen and (max-width: 990px) {
    #blog {
        width: 90%;
        margin-top: 300px;
    }
    #blog .blog_content {
        position: relative;
        flex-direction: column-reverse;
        gap: 0;
    }
    #blog .ttl_box {
        display: none;
    }
    #blog .ttl_box.sp {
        display: block;
    }
    #blog .ttl_box p {
        margin-top: 14px;
    }
    #blog .left_box {
        max-width: 100%;
    }
    #blog .left_box .supervisor_content {
        display: flex;
        gap: 24px;
        margin-top: 62px;
        padding: 32px;
        background: #F7F4F1;
    }
    #blog .left_box .supervisor_content .img_box {
        width: 35%;
    }
    #blog .left_box .supervisor_content .img_box img {
        object-position: 30%;
    }
    #blog .left_box .supervisor_content .info {
        flex: 1;
        margin-top: 0;
    }
    #blog .right_box {
        width: 100%;
        margin-top: 48px;
    }
}
@media screen and (max-width: 768px) {
    #blog {
        margin-top: 100px;
    }
}
@media screen and (max-width: 600px) {
    #blog .left_box .supervisor_content {
        flex-direction: column;
    }
    #blog .left_box .supervisor_content .img_box {
        width: 100%;
    }
    #blog .left_box .supervisor_content .img_box img {
        object-position: center;
    }
    #blog .right_box h3 {
        font-size: 15px;
    }
    #blog .right_box .swiper-slide {
        margin-bottom: 0;
    }
}

/*---------------------------------------------------------
                アニメーション
---------------------------------------------------------*/
.fadeinTrigger {
    opacity: 0;
}
.fadeinTrigger.fadeInAnime {
    animation-name: fadeIn;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}
.fadeinTrigger.delay.fadeInAnime {
    animation-delay: 1s;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
.topslideTrigger {
    overflow: hidden;
    opacity: 0;
}
.topslideTrigger.topSlideAnime {
    animation-name: topSlide;
    animation-duration: 0.8s;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
}
@keyframes topSlide {
    from {
        transform: translateY(100%);
        /*要素を左の枠外に移動*/
        opacity: 0;
    }

    to {
        transform: translateX(0);
        /*要素を元の位置に移動*/
        opacity: 1;
    }
}
.leftslideTrigger {
    opacity: 0;
}
.leftslideTrigger.leftSlideAnime {
    animation-name: leftslide;
    animation-duration: 0.8s;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
}
@keyframes leftslide {
    from {
        transform: translateX(100%);
        /*要素を左の枠外に移動*/
        opacity: 0;
    }

    to {
        transform: translateX(0);
        /*要素を元の位置に移動*/
        opacity: 1;
    }
}
.rightslideTrigger {
    opacity: 0;
}
.rightslideTrigger.rightSlideAnime {
    animation-name: rightslide;
    animation-duration: 0.8s;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
}
@keyframes rightslide {
    from {
        transform: translateX(-100%);
        /*要素を左の枠外に移動*/
        opacity: 0;
    }

    to {
        transform: translateX(0);
        /*要素を元の位置に移動*/
        opacity: 1;
    }
}
