body {
    margin: 0;
    padding: 0;
}

main {
    display: block;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
    margin: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none
}

dt {
    font-weight: bold
}

dd {
    margin-left: 0
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    border-top-width: 1px;
    margin: 0;
    clear: both;
    color: inherit
}

pre {
    font-family: monospace, monospace;
    font-size: inherit
}

address {
    font-style: inherit
}

a {
    background-color: rgba(0, 0, 0, 0);
    text-decoration: none;
    color: inherit
}

abbr[title] {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

.salon-header {
    background: rgb(255, 188, 193);
    background: linear-gradient(90deg, rgba(255, 188, 193, 1) 0%, rgba(252, 221, 164, 1) 50%, rgba(246, 191, 190, 1) 100%);
    color: #fff;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

p {
    padding: 3px 5px;
    font-size: 1rem;
    font-family: "Noto Serif JP", serif;
}

@media(min-width: 520px) {
    .sp {
        display: none !important
    }
}

@media(max-width: 519px) {
    .pc {
        display: none !important
    }
}

@media screen and (min-width: 748px) {
    .salon-header {
        p {
            padding: 3px 5px;
            font-size: 1.4rem;
        }
    }
}

.salon-main-vis-sp {
    img {
        width: 100%;
    }
}

.salon-main-vis-pc {
    display: none;
}

@media screen and (min-width: 748px) {
    .salon-main-vis-sp {
        display: none;
    }

    .salon-main-vis-pc {
        display: block;

        img {
            width: 100%;
        }
    }
}

.sub-title {
    margin: 40px auto 10px;
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;

    img {
        width: 100%;
    }

    h2 {
        color: #918950;
        font-size: 4vw;
        font-weight: bold;
        font-family: "Noto Serif JP", serif;
        text-shadow: 5px 5px 5px rgba(255, 255, 255, 1);
        text-align: center;

    }

    @media screen and (min-width: 748px) {
        h2 {
            margin-top: -10px;
            padding-left: 20px;
        }
    }

    @media screen and (min-width: 960px) {
        h2 {
            margin-top: -10px;
        }
    }

    @media screen and (min-width: 1200px) {
        h2 {
            margin-top: -10px;
        }
    }

    @media screen and (min-width: 1400px) {
        h2 {
            margin-top: -10px;
            font-size: 56px;
        }
    }
}

.salon-about,
.salon-menu {
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto 100px;


    .about-text {
        border: 1px solid #918950;
        padding: 20px;
    }

    @media screen and (min-width: 748px) {
        .about-text {
            padding: 40px;
        }

    }

    img {
        width: 100%;
        max-width: 640px;
    }

    .about-text-innner {
        display: flex;
        flex-direction: column;
        margin: 20px 0 0;
        align-items: center;

        p {
            margin-bottom: 10px;
            text-indent: 1.3em;
            font-size: 1.2rem;
            line-height: 1.8rem;
            color: #707070;
        }
    }

    @media screen and (min-width: 748px) {
        .about-text-innner {
            p {
                font-size: 1.4rem;
                line-height: 2rem;
            }
        }

    }

    .about-text-innner-second {
        display: flex;
        flex-direction: column-reverse;
    }

    @media screen and (min-width: 960px) {
        .about-text-innner {
            flex-direction: row;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 60px;

            img {
                width: 40%;
            }
        }

        .about-text-innner-second {
            flex-direction: row;
            margin-bottom: 0;
        }
    }
}

.salon-border {
    width: 100%;
    max-width: 1400px;
    height: 30px;
    background: rgb(255, 188, 193);
    background: linear-gradient(90deg, rgba(255, 188, 193, 1) 0%, rgba(252, 221, 164, 1) 50%, rgba(246, 191, 190, 1) 100%);
}

.salon-details {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto 100px;
    background-color: hsla(0, 0%, 100%, 1);
    background-image:
        radial-gradient(at 51% 49%, hsla(8, 66%, 92%, 1) 0px, transparent 50%),
        radial-gradient(at 1% 57%, hsla(355, 100%, 93%, 1) 0px, transparent 50%),
        radial-gradient(at 100% 78%, hsla(340, 100%, 87%, 1) 0px, transparent 50%),
        radial-gradient(at 54% 99%, hsla(17, 92%, 83%, 1) 0px, transparent 50%),
        radial-gradient(at 0% 97%, hsla(343, 92%, 83%, 1) 0px, transparent 50%);
}

.details-list {
    margin: 60px 0;

    .details-list-innner {
        display: flex;
        gap: 20px;
        align-items: flex-start;
        justify-content: center;
        margin-bottom: 40px;
        border-bottom: #F023BC solid 1px;
        padding-bottom: 30px;

        img {
            width: 30%;
            max-width: 300px;
            height: auto;
        }

    }

    @media screen and (min-width: 748px) {
        .details-list-innner {
            margin: 0 50px 80px;
            align-items: center;
            padding-bottom: 70px;
        }
    }

    .details-list-innner-last {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .details-list-flex h3 {
        color: #F023BC;
        font-family: "Noto Serif JP", serif;
        font-size: 1.4rem;
        font-weight: bold;
        padding-bottom: 10px;
    }

    @media screen and (min-width: 748px) {
        .details-list-flex h3 {
            font-size: 2.4rem;
        }
    }

    .details-list-flex p {
        font-size: 1rem;
    }

    @media screen and (min-width: 748px) {
        .details-list-flex p {
            font-size: 1.4rem;
        }
    }
}

.menu-innner {
    display: block;
}

@media screen and (min-width: 748px) {
    .menu-innner {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.comment-salon {
    font-size: 1.2rem;
    margin: 10px;
    color: #4D4D4D;
}

.menu-box {
    border: #A9A064 solid 10px;
    margin-bottom: 50px;
    font-family: "Noto Serif JP", serif;

    h3 {
        background-color: #A9A064;
        color: #fff;
        padding: 10px 5px;
        text-align: center;
        margin-top: -10px;
        font-size: 5vw;
    }

    .menu-box-innner {
        border: #A9A064 solid 2px;
        margin: 10px;
        padding: 10px 10px 20px;
    }

    h4 {
        display: flex;
        color: #F023BC;
        align-items: center;
        font-size: 1.8rem;
        justify-content: space-between;
        margin: 0 10px 10px;
        max-width: 300px;
    }

    @media screen and (min-width: 748px) {
        .menu-box-innner {
            padding: 10px 30px 20px;
        }

        h4 {
            margin: 20px auto;
        }
    }

    h4 img {
        width: 20%;
        max-width: 80px;
    }

    h4 span {
        color: #4D4D4D;
        display: contents;
        font-size: 1rem;
    }

    .menu-box-innner p {
        border-top: 1px solid #ccc;
        padding-top: 20px;
    }

    .menu-box-innner ul {
        font-family: "Noto Serif JP", serif;
        margin: 10px 0;
    }

    .menu-box-innner li {
        position: relative;
        padding-left: 10px;
    }

    .menu-box-innner li:before {
        content: "";
        position: absolute;
        top: .35em;
        left: 0;
        width: 0;
        height: 0;
        border-width: 5px;
        border-style: solid;
        border-color: transparent transparent transparent #A9A064;
    }

    .menu-box-innner li:first-child:before {
        border-style: none;
    }

    .menu-box-innner li:first-child {
        font-size: 1.4rem;
        position: relative;
        padding: 0.25em 0;
        color: #A9A064;
    }

    .menu-box-innner li:first-child:after {
        content: "";
        display: block;
        height: 4px;
        background: linear-gradient(to right, rgb(248 108 243), transparent);
    }
}

.menu-box-corse {
    text-align: center;
    font-size: 1.4em;
    margin-bottom: 18px;
    display: grid;
    line-height: 1.2em;
}

@media screen and (min-width: 748px) {
    .menu-box {
        width: 45%;

        h3 {
            font-size: 1.4rem;
            padding: 20px 5px;
        }

        h4 img {
            width: 30%;
        }
    }
}

@media screen and (min-width: 960px) {
    .menu-box {

        h3 {
            font-size: 2rem;
        }
    }
}

.menu-another {
    width: 100%;
    text-align: center;

    h3 {
        position: relative;
        display: inline-block;
        padding: 0 55px;
        text-align: center;
        font-size: 1.2rem;
    }

    h3:before,
    h3:after {
        content: '';
        position: absolute;
        top: 50%;
        display: inline-block;
        width: 45px;
        height: 1px;
        background-color: #A9A064;
    }

    h3:before {
        left: 0;
    }

    h3:after {
        right: 0;
    }

    h4 {
        display: flex;
        color: #F023BC;
        align-items: center;
        font-size: 1.8rem;
        justify-content: center;
        margin: 10px;
        gap: 10px;
    }

    h4 img {
        width: 20%;
        max-width: 80px;
    }

    h4 span {
        color: #4D4D4D;
        display: contents;
        font-size: 1rem;
    }

    p {
        font-size: 1.8rem;
        color: #A9A064;
        line-height: 1.8rem;
        margin: 20px 0 10px;
    }

    .menu-another-sml {
        font-size: 1.2rem;
        color: #4D4D4D;
        line-height: 1.4rem;
        margin: 0;
    }
}

@media screen and (min-width: 748px) {
    .menu-another {

        h3:before,
        h3:after {
            width: 200px;
        }
    }

    .menu-another {
        h3:before {
            left: -160px;
        }
    }

    .menu-another {
        h3:after {
            right: -160px;
        }
    }
}

.qandq {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto 30px;
    background-color: hsla(0, 0%, 100%, 1);
    background-image:
        radial-gradient(at 67% 17%, hsla(8, 66%, 92%, 1) 0px, transparent 50%),
        radial-gradient(at 0% 92%, hsla(355, 100%, 93%, 1) 0px, transparent 50%),
        radial-gradient(at 100% 78%, hsla(340, 100%, 87%, 1) 0px, transparent 50%),
        radial-gradient(at 54% 99%, hsla(17, 92%, 83%, 1) 0px, transparent 50%),
        radial-gradient(at 0% 0%, hsla(343, 92%, 83%, 1) 0px, transparent 50%);
    font-family: "Noto Serif JP", serif;

}

.qandq-innner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0 0;
}

.qa-7 {
    max-width: 100%;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 4px rgb(0 0 0 / 2%), 0 2px 3px -2px rgba(0 0 0 / 5%);
    background-color: #fff;
}

@media screen and (min-width: 748px) {
    .qa-7 {
        margin-bottom: 20px;
    }
}

.qa-7 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
    text-align: left !important;
    list-style: none;
}

@media screen and (min-width: 748px) {
    .qa-7 summary {
        font-size: 1.8rem;
    }
}

.qa-7 summary::before,
.qa-7 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}


.qa-7 summary::before {
    color: #b875ff;
    content: "Q";
}

.qa-7 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .5s;
}

.qa-7[open] summary::after {
    transform: rotate(225deg);
}

.qa-7 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
}

@media screen and (min-width: 748px) {
    .qa-7 p {
        font-size: 1.8rem;
    }
}

.qa-7[open] p {
    transform: none;
    opacity: 1;
}

.qa-7 p::before {
    color: #ff8d8d;
    line-height: 1.2;
    content: "A";
}

.end-comment {
    padding: 0 20px 20px;
    font-family: "Noto Serif JP", serif;
}

.end-comment ul {
    margin-left: 1em;
}

@media screen and (min-width: 748px) {
    .end-comment ul {
        margin-left: 100px;
        font-size: 1.4rem;
    }
}

.end-comment li {
    position: relative;
    margin-bottom: 10px;
}

.end-comment li:before {
    position: absolute;
    content: "※";
    margin-left: -1em;
}

.end-comment p {
    padding: 10px;
    border: #A9A064 solid 2px;
    margin: 30px 0;
    font-size: 3.6vw;
    text-align: center;
}

@media screen and (min-width: 748px) {
    .end-comment p {
        padding: 50px;
        margin: 30px auto;
        max-width: 1100px;
        font-size: 1.4rem;
        text-align: center;
    }
}

footer {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    background: rgb(252, 221, 164);
    background: linear-gradient(90deg, rgba(252, 221, 164, 1) 0%, rgba(254, 169, 175, 1) 50%, rgba(252, 221, 164, 1) 100%);
    color: #fff;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 20px 0;
}

.footer-top h2 {
    color: #fff;
    font-size: 2rem;
    font-family: "Noto Serif JP", serif;
}

@media screen and (min-width: 748px) {
    .footer-top h2 {
        font-size: 4rem;
    }
}


@media screen and (min-width: 748px) {
    .footer-add {
        font-size: 1.4rem;
    }
}

.footer-tel {
    color: #fff;
    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;
    gap: 5px;
}

.footer-tel img {
    width: 24px;
    height: auto;
}

.footer-tel p {
    font-size: 1.4rem;
}

@media screen and (min-width: 748px) {
    .footer-tel p {
        font-size: 2rem;
    }
}

.instagram {
    width: 100%;
    display: flex;
    background: #fff;
    padding: 10px 0;
    margin-bottom: 10px;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.instagram img {
    width: 50px;
    height: auto;
}

.instagram p {
    font-size: 1.2rem;
    line-height: 1.4em;
    font-weight: 600;
    text-align: left;
}

footer iframe {
    height: 100%;
    width: 100%;
}

.footer-copylight {
    background: rgb(252, 221, 164);
    background: linear-gradient(90deg, rgba(252, 221, 164, 1) 0%, rgba(254, 169, 175, 1) 50%, rgba(252, 221, 164, 1) 100%);
    color: #fff;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 20px 0;
    font-size: 0.8rem;
}

.about-ul {
    list-style: none;
    font-size: 1.4rem;
    color: #A9A064;
    font-family: "Noto Serif JP", serif;
    margin: 0 0 30px;
}

.about-ul li {
    background-image: url(/assets/imgs/salon/ul_check.png);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: auto 25px;
    padding-left: 30px;
    line-height: 3rem;
}

@media screen and (min-width: 748px) {
    .about-ul {
        font-size: 1.8rem;
    }

    .about-ul li {
        background-size: auto 35px;
        padding-left: 50px;
        line-height: 4rem;
    }
}

@media screen and (min-width: 960px) {
    .about-ul {
        font-size: 2rem;
    }

    .about-ul li {
        background-size: auto 30px;
        padding-left: 50px;
        line-height: 3.4rem;
    }
}

@media screen and (min-width: 1200px) {
    .about-ul {
        font-size: 2.4rem;
        margin: 50px;
    }

    .about-ul li {
        background-size: auto 35px;
        line-height: 4rem;
    }
}

.about_flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

@media screen and (min-width: 748px) {
    .about_flex {
        align-items: center;
        gap: 20px;
    }
}

.about_arrow img {
    width: 20px;
    padding-top: 100px;
}

@media screen and (min-width: 748px) {
    .about_arrow img {
        padding: 100px 20px;
    }
}

@media screen and (min-width: 1200px) {
    .about_arrow img {
        width: 30px;
        padding: 0;
    }
}

.about-face {
    width: 100%;
    margin: 40px auto;
}

.about-face-flex {
    display: flex;
    align-items: center;
    padding: 0 10px;
    justify-content: center;
    gap: 20px;
    flex-direction: column;
}

.child_1 {
    order: 2;
}

.child_2 {
    order: 1;
}

.child_3 {
    order: 3;
}

.about-face-in {
    display: flex;
    flex-direction: column;
    -ms-flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.about-face-in-pink {
    gap: 20px;
}

.about-face-in p {
    font-size: 1rem;
    color: #A9A064;
    font-family: "Noto Serif JP", serif;
    background-color: #EDEDED;
    padding: 10px 15px;
    border-radius: 80px;
    text-align: center;
    width: 100%;
    line-height: 1.2em;
}

.about-face-in-pink p {
    background-color: #FFEDF6;
}

.about-face-in img {
    width: 100px;
}

@media screen and (min-width: 748px) {
    .about-face {
        margin: 50px auto;
    }

    .about-face-flex {
        display: flex;
        align-items: center;
        padding: 0;
        justify-content: center;
        gap: 10px;
        flex-direction: row;
    }

    .child_1 {
        order: 1;
    }

    .child_2 {
        order: 2;
    }

    .child_3 {
        order: 3;
    }

    .about-face-in img {
        width: 120px;
    }
}

@media screen and (min-width: 960px) {
    .about-face-in {
        gap: 60px;
    }

    .about-face-in img {
        width: 140px;
    }

}

@media screen and (min-width: 1200px) {
    .about-face {
        margin: 100px auto;
    }

    .about-face-flex {
        display: flex;
        align-items: center;
        padding: 0 40px;
        justify-content: center;
        gap: 10px;
        flex-direction: row;
    }

    .child_1 {
        order: 1;
    }

    .child_2 {
        order: 2;
    }

    .child_3 {
        order: 3;
    }

    .about-face-in {
        display: flex;
        flex-direction: column;
        -ms-flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 100px;
    }

    .about-face-in-pink {
        gap: 40px;
    }

    .about-face-in p {
        font-size: 1.2rem;
        color: #A9A064;
        font-family: "Noto Serif JP", serif;
        background-color: #EDEDED;
        padding: 20px;
        border-radius: 80px;
        text-align: center;
    }

    .about-face-in-pink p {
        background-color: #FFEDF6;
    }

    .about-face-in img {
        width: 180px;
    }

}

.about-p-center {
    text-align: left;
    background-color: #FDEBD0;
    padding: 10px;
}

.about-p-center p {
    line-height: 1.8rem;
    font-size: 1.2rem;
    color: #89814d;
}

@media screen and (min-width: 748px) {
    .about-p-center {
        text-align: center;
        padding: 20px;
        max-width: 650px;
        margin: 0 auto 50px;
    }

    .about-p-center p span {
        display: block;
    }
}

@media screen and (min-width: 960px) {
    .about-p-center {
        margin: 0 auto 100px;
    }
}

.about-p-center img {
    width: 200px;
    margin-top: 40px;
}