@charset "UTF-8";

/*-------------------------------------------
共通
-------------------------------------------*/
html {
    /* 1rem = 10pxの設定*/
    font-size: 62.5%;
    min-width: 100%;
}

body {
    color: #383e45;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    object-fit: cover;
}

li {
    list-style: none;
    font-size: clamp(1.1rem, calc(0.9rem + 0.625vw), 1.6rem);
}

h2 {
    font-size: clamp(2.8rem, calc(2.6rem + 0.625vw), 3.3rem);
    margin-top: 40px;
    margin-bottom: 40px;
}

h3 {
    font-size: clamp(2.0rem, calc(1.8rem + 0.625vw), 2.5rem);
    margin-top: 20px;
    margin-bottom: 20px;
}

h4 {
    font-size: clamp(1.9rem, calc(1.7rem + 0.625vw), 2.4rem);
    margin-top: 20px;
    margin-bottom: 20px;
}

h5 {
    font-size: clamp(1.2rem, calc(1.0rem + 0.625vw), 1.6rem);
    margin-top: 10px;
    margin-bottom: 10px;
}

p {
    font-size: clamp(1.2rem, calc(1.0rem + 0.625vw), 1.6rem);
    margin-top: 20px;
    margin-bottom: 20px;
}

section {
    margin-top: 200px;
}

.site-title {
    line-height: 1px;
    padding: 10px 0;
}

.site-title a {
    display: block;
}

.section-title {
    display: inline-block;
    font-weight: 900;
    text-align: center;
    padding-top: 60px;
    margin-bottom: 30px;
    border-bottom: solid 1px #383e45;
}

.wrapper {
    max-width: 1800px;
    margin: 0 auto 100px auto;
    padding: 0 7%;
    text-align: center;
}

.col1 {
    display: block;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.col2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.col2-table {
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
    min-height: fit-content;
}

.col2-cell {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    width: 40vw;
    height: calc(40vw * 9 / 16);
    min-height: fit-content;
}

.col2-flexbox {
    width: 100%;
    height: 100%;
    max-width: 100vw;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
}

.col2-flexbox-child {
    max-width: 50vw;
    min-height: 50vh;
}

.col3-flexbox {
    width: 100%;
    height: 100%;
    max-width: 100vw;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
}

.col3-flexbox-child {
    max-width: 33vw;
    min-height: 50vh;
}

.width-limit {
    max-width: 80%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.left-justification {
    display: table;
    text-align: left;
    margin-left: 30px;
}

.parent-top-align {
    vertical-align: top;
}

.max-width-half {
    max-width: 50%;
}

.max-width-three-quarters {
    max-width: 75%;
}

.underline-yellow {
    text-decoration: underline;
    text-decoration-color: yellow;
    text-decoration-thickness: 20%;
    text-underline-offset: auto;
}

.underline-blue {
    text-decoration: underline;
    text-decoration-color: blue;
    text-decoration-thickness: 10%;
    text-underline-offset: auto;
}

.content-underline-navy {
    border-bottom: 2px solid rgb(40, 50, 65);
    padding-bottom: 10px;
}

.bold-style {
    font-weight: 900;
}

.font-large {
    font-size: 130%;
    font-weight: 900;
}

.font-red {
    color: rgb(234, 47, 43);
}

.font-yellow {
    color: yellow;
}

.opacity-button:hover {
    opacity: 0.7;
}

.comment-title {
    color: black;
    margin-top: 10px;
    margin-bottom: 10px;
}

.comment-content {
    color: black;
    margin-top: 10px;
    margin-bottom: 10px;
}

.comment-underline {
    text-decoration: underline;
    text-decoration-color: rgb(200, 200, 200);
    text-decoration-thickness: 10%;
    text-underline-offset: 5px;
}

.large-margin-top {
    margin-top: 30px;
}

.large-margin-bottom {
    margin-bottom: 30px;
}

.large-margin-left {
    margin-left: 30px;
}

.blur {
    -ms-filter: blur(6px);
    filter: blur(1px);
}

@media screen and (max-width: 960px) {
    .wrapper {
        max-width: 98vw;
        margin: 0 1vw;
        padding: 0;
        text-align: center;
    }

    .col2-table {
        display: block;
        width: 100%;
        max-width: 95vw;
        height: 100%;
        min-height: fit-content;
    }

    .col2-cell {
        display: inline-block;
        vertical-align: middle;
        margin: 5px auto;
        width: 100%;
        max-width: 95vw;
        height: 100%;
        min-height: fit-content;
        text-align: center;
    }

    .col3-flexbox {
        flex-direction: column;
        max-width: 90vw;
    }

    .col3-flexbox-child {
        max-width: 90vw;
        min-height: 50vh;
        margin: 10px auto;
    }

    .width-limit {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}

/*-------------------------------------------
ヘッダー
-------------------------------------------*/
#header {
    align-items: center;
    margin: 0 auto;
}

#header .site-title {
    max-width: 70vw;
    width: fit-content;
    height: auto;
    margin: 0 auto;
    text-align: center;
}

#header .site-title-img img, #header .site-title-img source {
    display: inline-block;
    max-height: 160px;
    margin: 0 auto;
}

/*-------------------------------------------
ナビゲーション
-------------------------------------------*/
#header li a:hover {
    opacity: 0.7;
}

#header .main-menu {
    text-align: center;
    width: 100%;
}

#header .main-menu ul {
    display: flex;
    margin: 0 auto;
    padding: 5px 0;
    width: 100%;
    align-items: center;
    text-align: center;
    justify-content: space-evenly;
}

#header .main-menu ul li {
    list-style: none;
    /*100%➗要素数が最大値*/
    width: 20%;
    min-width: 9rem;
    margin: 0 1%;
}

#header .main-menu ul li a {
    text-decoration: none;
    color: #333;
}

#header .main-menu ul li a:hover {
    color: #f08404;
}

.hamburger-menu {
    position: relative;
}

.hamburger-menu_input {
    display: none;
}

.hamburger-menu_bg {
    background-color: #000;
    cursor: pointer;
    display: none;
    height: 100vh;
    left: 0;
    opacity: 0.4;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

#hamburger:checked~.hamburger-menu_bg {
    display: block;
}

.hamburger-menu_button {
    display: none;
}

.hamburger-menu_button-mark {
    background-color: #000;
    display: block;
    height: 2px;
    transition: 0.3s;
    width: 25px;
}

@media screen and (max-width: 960px) {
    #header .hamburger-menu_list {
        background-color: #e4e2f1f7;
        align-items: flex-start;
        display: flex;
        flex-direction: column;
        left: 0;
        padding: 4rem;
        position: absolute;
        transform: translateX(-100%);
        transition: 0.3s;
        top: 100%;
        width: 100%;
        z-index: 6;
    }

    #header .hamburger-menu .hamburger-menu_list li {
        width: 100%;
        line-height: 3rem;
        border-bottom: dashed 1px rgba(105, 105, 105, 0.8);
    }

    #header .hamburger-menu .hamburger-menu_list li:last-child {
        border-bottom: none;
    }

    #hamburger:checked~.hamburger-menu_list {
        transform: translateX(0%);
        transition: 0.3s;
    }

    #header .hamburger-menu_button {
        align-items: center;
        appearance: none;
        background-color: transparent;
        border: none;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: right;
        position: absolute;
        top: -10vw;
        right: 3vw;
        gap: 7px;
        height: 32px;
        width: 32px;
        z-index: 5;
    }

    #hamburger:checked~.hamburger-menu_button .hamburger-menu_button-mark:nth-of-type(1) {
        transform: translate(2px, 4px) rotate(45deg);
        transform-origin: 0%;
    }

    #hamburger:checked~.hamburger-menu_button .hamburger-menu_button-mark:nth-of-type(2) {
        opacity: 0;
    }

    #hamburger:checked~.hamburger-menu_button .hamburger-menu_button-mark:nth-of-type(3) {
        transform: translate(2px, 4px) rotate(-45deg);
        transform-origin: 0%;
    }
}

/*-------------------------------------------
メイン
-------------------------------------------*/
#main {
    max-width: 1800px;
    margin: 0 auto;
    padding: 30px 4%;
    text-align: center;
}

.delete-main-margin {
    margin: 0 -4.2%;
}

.add-main-margin {
    margin: 0 4%;
}

.appeal-message {
    display: block;
    margin: 3%;
}

.appeal-message .appeal-img {
    width: 70vw;
    height: auto;
}

.appeal-message .next-arrow source, .appeal-message .next-arrow img {
    height: 5vw;
    width: auto;
    object-fit: contain;
}

#main .campaigns {
    width: 80vw;
    height: calc(80vw * 9 / 16);
    object-fit: cover;
}

@media screen and (max-width: 960px) {

    #main .campaigns {
        height: calc(80vw * 3 / 4);
    }

    .appeal-message .appeal-img {
        width: 85vw;
    }
}

/*-------------------------------------------
ファーストビュー
-------------------------------------------*/
#first-view {
    margin: 0 auto;
    padding: 0 -4.2%;
    text-align: center;
}

/*-------------------------------------------
こんなお悩みの方
-------------------------------------------*/
#problem {
    margin-top: 60px;
    border-radius: 15px;
    background-color: antiquewhite;
    background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
        url("../img/essential-oils.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

#problem .border-box {
    border: solid;
    border-color: #F00;
    border-radius: 15px;
    margin: 0 auto;
    padding: 10px;
}

#problem .problem-list {
    display: inline-block;
    text-align: left;
}

#problem .problem-list h5 {
    display: inline-block;
    border-bottom: 2px solid #000;
    margin: 10px auto;
}

#problem li::before {
    content: "";
    display: inline-block;
    width: clamp(15px, calc(8.3px + 2.2vw), 35px);
    height: clamp(15px, calc(8.3px + 2.2vw), 35px);
    background-image: url(../img/chkbox1.png);
    background-size: contain;
    vertical-align: middle;
    margin-right: 15px;
}

#problem .problem-solving {
    display: inline-block;
    max-width: 95vw;
}

#problem .problem-solving img {
    max-width: 90vw;
    width: 85%;
    height: fit-content;
    max-height: 50vh;
    margin: 0 auto;
    text-align: center;
}

#problem .problem-solving .small-left-margin {
    text-align: left;
    padding-left: 3vw;
}

#problem .feature {
    margin-top: 100px;
    margin-bottom: 100px;
}

#problem .feature img {
    margin-bottom: 30px;
    max-width: 90%;
}

@media screen and (max-width: 960px) {
    #problem .problem-solving .col2-cell {
        text-align: center;
    }

    #problem .feature {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    #problem .feature img {
        max-width: 90vw;
        width: 100%;
    }
}

/*-------------------------------------------
施術実績
-------------------------------------------*/
.customers-voice {
    margin: 4%;
    /*一時的に非表示*/
    display: none;
}

.voice-box {
    border: 2px solid black;
    border-radius: 15px;
}

.supplement-box {
    margin: 4%;
    border: 1px solid rgb(40, 50, 65);
    border-radius: 18px;
    box-shadow: 0 0 5px rgb(99, 99, 99);
}

.supplement-box img {
    max-width: 50%;
    object-fit: cover;
    text-align: center;
}

.supplement-box .supplement-title {
    text-align: center;
    color: white;
    background-color: rgb(40, 50, 65);
    padding: 30px 10px;
    margin: 0;
    border-radius: 15px 15px 0 0;
}

.supplement-box .message-title {
    text-align: center;
    color: rgb(40, 50, 65);
    padding: 10px 0 10px 0;
    margin: 20px 15%;
}

.message-title::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: text-top;
    margin-right: 15px;

    -webkit-mask-image: url(../img/question_icon.png);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;

    mask-image: url(../img/question_icon.png);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;

    background-color: rgb(40, 50, 65);
}

.supplement-box.supplement-box p, .supplement-box h3, .supplement-box h4 {
    text-align: left;
    padding: 10px 5%;
    margin: 20px 10%;
}

.coping-therapy {
    display: inline-block;
    max-width: 60vw;
}

.coping-therapy li {
    display: flex;
    align-items: center;
    right: 1rem;
    width: 100%;
}

.coping-therapy li h4 {
    padding: 0;
    margin: 0.5rem 0;
}

.coping-therapy li::before {
    content: '';
    display: inline-block;
    width: clamp(2.8rem, calc(2.6rem + 0.625vw), 3.3rem);
    height: clamp(2.8rem, calc(2.6rem + 0.625vw), 3.3rem);
    vertical-align: middle;
    margin-right: 15px;

    -webkit-mask-image: url(../img/chkbox_square.png);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;

    mask-image: url(../img/chkbox_square.png);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;

    background-color: rgb(40, 50, 65);
}

@media screen and (max-width: 960px) {
    .supplement-box img {
        max-width: 90%;
    }

    .supplement-box .message-title {
        margin: 10px 3vw;
    }

    .supplement-box.supplement-box p, .supplement-box h3, .supplement-box h4 {
        margin: 10px 3vw;
    }
}

/*-------------------------------------------
当院が選ばれる5つのポイント
-------------------------------------------*/
#point .recommend-title {
    display: inline-block;
    text-align: center;
    color: rgb(40, 50, 65);
    padding: 0;
    margin: 5vw 0;
    position: relative;
    right: 5vw;
}

#point .recommend-title::before {
    content: "";
    display: inline-block;
    width: 10vw;
    height: 10vw;

    -webkit-mask-image: url(../img/point_icon.png);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;

    mask-image: url(../img/point_icon.png);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;

    background-color: #f08404;

    vertical-align: top;
    margin-right: 1.5vw;
    margin-top: -6.5vw;
    transform: rotate(-15deg);
}

#point .recommend-box {
    width: 60vw;
    margin: 2vw auto;
    text-align: center;
}

#point .overlap-image {
    width: 65vw;
    height: 400px;
    position: relative;
}

#point .overlap-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    -ms-filter: blur(4px);
    filter: blur(4px);
}

#point .overlap-image h4 {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    text-align: left;
    align-content: center;
    padding: 3%;
    margin: 0;
    font-size: clamp(1.4rem, calc(1.2rem + 0.625vw), 1.9rem);
    font-weight: 200;
    line-height: 4rem;
    z-index: 4;
    color: rgba(0, 0, 0, 0.8);
    background-color: rgba(255, 255, 255, 0.7);
}


@media screen and (max-width: 960px) {
    #point .recommend-box {
        width: 90vw;
    }

    #point .overlap-image {
        width: 100%;
        height: calc(95vw * 3 / 4);
        text-align: center;
        margin: 0 auto;
        position: relative;
    }

    #point .overlap-image img {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    #point .overlap-image h4 {
        position: absolute;
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        line-height: 2.5rem;
        z-index: 3;
    }
}


/*-------------------------------------------
アクセス
-------------------------------------------*/
#access .google-map {
    margin: 2% auto;
    border: 0;
}

#access .title-img img, #access .title-img source {
    max-width: 200px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

#access .tel::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;

    -webkit-mask-image: url(../img/tell_icon.png);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;

    mask-image: url(../img/tell_icon.png);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;

    background-color: #475257;
}

@media screen and (max-width: 960px) {
    #main #access .google-map {
        width: 100%;
        max-width: 90vw;
        height: calc(90vw * 9 / 16);
        margin: 5% auto;
    }

    #access .title-img img, #access .title-img source {
        max-width: 70vw;
    }
}


/*-------------------------------------------
訴求枠
-------------------------------------------*/
#main .appeal-bg {
    margin-top: 60px;
    padding-bottom: 60px;
    border-radius: 15px;
    background-color: antiquewhite;
    background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
        url("../img/flowers.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    min-height: fit-content;
}

.tell {
    display: block;
    max-width: 90vw;
    width: 100%;
    height: auto;
    margin: 0 auto;
    text-align: center;
    object-fit: contain;
}

.line {
    max-width: 90vw;
    width: 100%;
    height: auto;
    margin: 10% auto;
    text-align: center;
    object-fit: contain;
}

@media screen and (min-width: 960px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}

/*-------------------------------------------
フッター
-------------------------------------------*/
.footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu ul::after {
    content: "";
    display: block;
    clear: both;
}

.footer-menu ul li {
    float: left;
    border-left: 1px solid rgba(0, 0, 0, .1);
}

.footer-menu ul li:first-child {
    border-left: none;
}

.footer-menu ul li a {
    display: block;
    padding: .4em .8em;
    text-decoration: none;
    color: #333;
    background: #fff;
    text-align: center;
}

.footer-menu ul li a:hover {
    background: #eee;
}

.copyright {
    font-size: clamp(0.6rem, calc(0.4rem + 0.625vw), 1rem);
    margin: 1vw;
}