

/*######################################################################
共通設定
######################################################################*/

:root {
    --width__main-content: min(100%, 1000px);
    --color__accent: #FF7BAC;
}

/* 特有フォント読み込み */
/* @font-face {
    font-family: 'Didot';
    src: url('../fonts/didot.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  } */

/* コンテンツ全体の調整 */
body {
    width: min(100%, 1464px);
    margin-inline: auto;
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    color: #333333;

    &.page { /* bodyが .page というクラス名を持っているときだけ */
        margin: 0 auto;
    }
}


h1 {
    margin: 0;
}

p, a, ul, ol, table {
    /* 400-768 */
    font-size: clamp(0.875rem, 0.739rem + 0.543vw, 1rem);
}

/* imgタグの調整 */
img {
    vertical-align: top;
    width: 100%;
    margin-top: -1px;
}

.sp {
    display: none;
}

@media (max-width: 767px) {
    .pc {
        display: none;

    }
 }


/* 折り返し */
/* PC版でのみ表示 */
.pc {
    display: inline; /* PCでは表示 */
}

@media (max-width: 767px) {
    .pc {
        display: none; /* SPでは非表示 */
    }
}
/* SP版でのみ表示 */
.sp {
    display: none; /* PCでは非表示 */
}

@media (max-width: 767px) {
    .sp {
        display: inline; /* SPでは表示 */
    }
}

span.strong {
    font-weight: bold; /* 太字にする */
    font-size: 1em;  /* 強調のためにサイズを若干大きく（任意） */
}




/* 表示 */
.pc_only {
    display: block; /* PCでは表示 */
}

@media (max-width: 767px) {
    .pc_only {
        display: none; /* SPでは非表示 */
    }
}
.sp_only {
    display: none; /* PCでは非表示 */
}
@media (max-width: 767px) {
    .sp_only {
        display: block; /* SPでは表示 */
    }
}


/*------------------------------------------------------------
スクロールアニメーション
------------------------------------------------------------*/

/* フェードイン */
.fadein {
    opacity: 0;
    animation: fadein 1s ease-in forwards;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fadein-scrollin {
    opacity: 0;
    transform: translate(0, 0);
    transition: all 1.5s;


    &.scrollin-left {
        transform: translate(-30px, 0);
    }

    &.scrollin-right {
        transform: translate(30px, 0);
    }

    &.scrollin-bottom {
        transform: translate(0, 30px);
    }

    &.scrollin {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/*######################################################################
コンテンツ
######################################################################*/

/*------------------------------------------------------------
CTA
------------------------------------------------------------*/
.cta {
    position: relative;
}
.cta__btn {
    position: absolute;
    width: 36%;
    top: 30%;
    left: 66%;
}
@media (max-width: 767px) {
    .cta__btn {
        width: 84%;
        top: 39%;
        left: 50%;
        transform: translateX(-50%);

    }
}

/*------------------------------------------------------------
message
------------------------------------------------------------*/
.message{
    position: relative;
}

.message__price {
    position: absolute;
    top: 84%;
    left: 41%;
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
    /* 120-65px */
    font-size: clamp(4.063rem, 0.134rem + 8.185vw, 7.5rem);
    color: #F6E9C9;
}
@media (max-width: 767px) {
    .message__price {
        top: 84.5%;
        left: 32%;
        /*120-50px */
        font-size: clamp(3.125rem, -0.007rem + 15.66vw, 7.5rem);
        color: #F6E9C9;
    }
}

/*------------------------------------------------------------
access
------------------------------------------------------------*/
.access {
    position: relative;

}
.access__content {
    position: absolute;
    width: min(44%, 1440px);
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
}
@media (max-width: 767px) {
    .access__content {
        width: 84%;
        top: 20%;
    }
}
.access__salon-pic {
    width: 100%;
    height: auto;
}
/* 情報ブロック */
.access__info {
    background-color: #fff;
    padding-top: 2%;
}
.access__name {
    /* 32-20px */
    font-size: clamp(1.25rem, 0.393rem + 1.786vw, 2rem);
    font-weight: 700;

}
@media (max-width: 767px) {
    .access__name {
        /* 32-14px */
        font-size: clamp(0.875rem, 0.07rem + 4.027vw, 2rem);
    }
}
.access__name span {
    /* 22-12px */
    font-size: clamp(0.75rem, 0.036rem + 1.488vw, 1.375rem);
    font-weight: 400;
    margin-left: 2%;
}
@media (max-width: 767px) {
    .access__name span {
        /* 22-10px */
        font-size: clamp(0.625rem, 0.088rem + 2.685vw, 1.375rem);
    }
}
.access__address {
    /* 22-12px */
    font-size: clamp(0.75rem, 0.036rem + 1.488vw, 1.375rem);
    /* line-height: 1.8; */
    margin-top: 3%;
}
@media (max-width: 767px) {
    .access__address {
        /* 24-10px */
        font-size: clamp(0.625rem, -0.001rem + 3.132vw, 1.5rem);
        margin-top: 2%;
    }
}
.access__tel {
    width: 68%;
    text-align: left;
    margin: 1rem 0 0;
}
.access__url a {
    display: block;
    /* 22-12px */
    font-size: clamp(0.75rem, 0.036rem + 1.488vw, 1.375rem);
    color: #3D9E70;
    text-decoration: none;
    margin-bottom: 3%;
}
@media (max-width: 767px) {
    .access__url a {
        /* 24-10px */
        font-size: clamp(0.625rem, -0.001rem + 3.132vw, 1.5rem);
    }
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.footer {
    padding: 0.5rem 0 1.5rem;
    background-color: #88C2A7;
    color: #ffffff;
}
@media (max-width: 767px) {
    .footer {
        padding: 0 0 1em 0;
    }
}
.footer__nav {

    font-size: clamp(9px, 2vw, 15px);
    letter-spacing: 0.8px;
    
    ul {
        display: flex;
        justify-content: center;
        list-style: none;
        margin: 1em 0 0.5em;
        padding: 0;

        li:not(:last-child)::after {
            content: "　";
        }
    }

    a {
        text-decoration: none;
        transition: 0.2s;
        font-size: 18px;
        font-weight: 500;

        &:hover {
            color: lightgray;
        }
    }
}
@media (max-width: 767px) {
    .footer__nav {
        ul {
            display: flex;
            justify-content: center;
            list-style: none;
            margin: 0 auto;
            padding: 0.5em 0;

            li:not(:last-child)::after {
                content: "　";
            }
        }
        a {
            font-size: 9px;
        }
    }
}
.copyright__p {
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.6px;
    font-size: 18px;
}
@media (max-width: 767px) {
    .copyright__p {
        margin-top: 0;
        font-size: 9px;
    }
 }
