@charset "utf-8";
/*
Theme Name:LP_mishimaekimaeclinic
Author:yamamoto
Description:三島駅前消化器・肝臓内科クリニックサイトのテーマです。
Version:1.0
*/
/* @import url("wp-native-style.css"); */

/*-------------------------------------------------

base

-------------------------------------------------*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --main-color: #64B0F3;
    --text-color: #333;
}

html {
    scroll-padding-top: 200px;
}

body {
    position: relative;
    font-family: "Zen Kaku Gothic New", sans-serif;
    color: var(--text-color);
    margin-top: 84px;
}

@media screen and (max-width: 1199px) {
    body {
        margin-top: 70px;
    }
}

@media screen and (max-width: 480px) {
    body {
        font-size: 14px;
    }
}

section {
    position: relative;
}

li {
    list-style: none;
}

img,
video,
canvas {
    max-width: 100%;
    vertical-align: middle;
    height: auto;
}

canvas {
    background-size: cover !important;
    background-position: center !important;
    vertical-align: bottom;
}

iframe {
    vertical-align: middle;
}

a {
    text-decoration: none;
    transition: 0.3s;
    color: var(--text-color);
}

a[onclick="return false;"] {
    cursor: unset;
}

p {}

.sp-only {
    display: none;
}

.sp-only-inline {
    display: none;
}

@media screen and (max-width: 768px) {
    .sp-only {
        display: block;
    }

    .sp-only-inline {
        display: inline-block;
    }

    .pc-only {
        display: none;
    }
}

.mt5 {
    margin-top: 5px;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

.mt50 {
    margin-top: 50px;
}

.mt60 {
    margin-top: 60px;
}

.mt70 {
    margin-top: 70px;
}

.mt80 {
    margin-top: 80px;
}

.mt90 {
    margin-top: 90px;
}

.mt100 {
    margin-top: 100px;
}

.mb5 {
    margin-bottom: 5px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb50 {
    margin-bottom: 50px;
}

.mb60 {
    margin-bottom: 60px;
}

.mb70 {
    margin-bottom: 70px;
}

.mb80 {
    margin-bottom: 80px;
}

.mb90 {
    margin-bottom: 90px;
}

.mb100 {
    margin-bottom: 100px;
}

.ml20 {
    margin-left: 20px;
}

.left {
    text-align: left !important;
}

.right {
    text-align: right !important;
}

.center {
    text-align: center !important;
}

.reverse {
    flex-direction: row-reverse;
}

.blue {
    color: var(--main-color);
}

.red {
    color: #FF8080;
}

.white {
    color: #fff;
}

/* ---------------------------------- */
/* HEADER */
/* ---------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: 0.3s;
    padding: 20px 40px;
    background: #fff;
}

.header a {}

.header__logo {
    display: flex;
    align-items: center;
}

.header__logo img {
    height: 26px;
    margin-right: 10px;
}

.header__logo a {
    font-size: 26px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    line-height: 1;
    font-weight: normal;
    color: #fff;
    font-weight: bold;
}

.header__logo a span {
    display: block;
    width: 100%;
    font-size: 14px;
    margin-top: 10px;
    font-family: serif;
    font-weight: bold;
    letter-spacing: 1.7px;

}

@media screen and (max-width: 768px) {
    .header__logo a {
        font-size: 20px;
    }

    .header__logo a span {
        font-size: 10px;
    }

    .header__logo img {
        height: 20px;
    }
}

.header__navi {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    width: 70%;
}

.header__navi>ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.header__navi>ul>li {
    position: relative;
    padding: 10px 0 10px;
    line-height: 1.4;
}

.header__navi>ul>li.current_page_item a {
    color: #1f4a86;
}

.header__navi>ul>li>a {
    font-size: 17px;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    font-weight: bold;
}

.header__navi>ul>li>a:hover {
    text-shadow: 2px 2px 2px #f1f1f1;
}

.header__navi>ul>li>a span {
    font-size: 10px;
    display: block;
}

/* メニューホバー */
/* .header__navi >ul>li.current_page_item:before, */
.header__navi>ul>li:before {
    position: absolute;
    content: '';
    background: #000;
    width: 0;
    height: 1px;
    border-radius: 100px;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    transition: 0.3s;
}

/* .header__navi >ul>li.current_page_item:before, */
.header__navi>ul>li:hover:before {
    /* width: 50px; */
}

@media screen and (max-width: 1199px) {
    .header__navi>ul {
        gap: initial;
    }

    .header__navi>ul>li.current_page_item a {
        /* color: #1f4a86; */
    }

    .header__navi>ul>li.current_page_item:before,
    .header__navi>ul>li:before {
        display: none;
    }
}

/* /メニューホバー */
@media screen and (min-width: 1200px) {
    .header__navi>ul>li:hover ul {
        visibility: visible;
        opacity: 1;
    }
}

.header__navi>ul>li>ul {
    position: absolute;
    right: 0;
    top: 60px;
    background: rgba(36, 59, 137, 0.9);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index: 20;
}

.header__navi>ul>li>ul li {
    width: 100%;
}

.header__navi>ul>li>ul li:not(:last-child) {
    border-bottom: 1px solid #ddd;
}

.header__navi>ul>li>ul li a {
    color: #fff;
    font-size: 15px;
    padding: 13px;
    display: block;
    text-wrap: nowrap;
}

.header__navi>ul>li>ul li a:before {
    font-family: "Font Awesome 5 Free";
    content: '\f054';
    font-weight: 900;
    margin-right: 7px;
}

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

.hamburger {
    display: none;

}

@media screen and (max-width: 1410px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        padding: 15px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        min-height: 70px;
        transform: none;
    }

    .header:before {
        /* background: #1f4a86; */
    }

    .header__container {
        padding: 0;
    }

    .header__navi {
        position: fixed;
        top: 0;
        right: 0;
        padding: 90px 30px;
        display: block;
        visibility: hidden;
        width: 40%;
        height: 100%;
        transition: 0.3s;
        z-index: -2;
        pointer-events: none;
        overflow: auto;
    }
    .header__navi.open{
        opacity: 0.8;
        background: #fff;
    }
    .header__navi:before {
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
    }

    .header__navi>ul {
        margin: 0;
        padding: 0;
        position: relative;
        z-index: 1;
    }

    .header__navi>ul>li {
        list-style: none;
        text-transform: uppercase;
        font-weight: bold;
        cursor: pointer;
        /* border-bottom: 1px solid #ddd; */
        width: 100%;
        margin-right: 0;
        padding: 0;
    }

    .header__navi>ul>li:first-child {
        /* border-top: 1px solid #ddd; */
    }

    .header__navi>ul>li>a {
        font-size: 18px;
        padding: 13px 15px;
        text-transform: uppercase;
        font-weight: bold;
        cursor: pointer;
        text-decoration: none;
        display: block;
        color: #000;
        text-align: left;
    }

    .header__navi>ul>li>ul {
        width: 100%;
        position: static;
        transition: none;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .header__navi>ul>li>ul.open {
        opacity: 1;
        visibility: visible;
        height: 100%;
    }

    .header__navi>ul>li>ul>li>a {
        color: #fff;
        padding: 10px 15px;
        display: block;
        font-size: 14px;
    }

    .hamburger {
        transition: all 0.3s;
        cursor: pointer;
        padding: 12px;
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        background: var(--main-color);
        height: 50px;
        width: 50px;
        position: absolute;
        top: 10px;
        right: 10px;
        border-radius: 7px;
    }

    .hamburger span {
        transition: all 0.3s;
        box-sizing: border-box;
        height: 3px;
        width: 100%;
        float: left;
        position: relative;
        border-radius: 50px;
        background: #fff;
    }

    .hamburger.open span:nth-child(1) {
        transform: rotate(135deg);
        margin-top: 8px;
    }

    .hamburger.open span:nth-child(2) {
        display: none;
    }

    .hamburger.open span:nth-child(3) {
        transform: rotate(-135deg);
        margin-top: -20px;
    }

    /* メニュークリック */
    .header__navi {
        /* right: -100%; */
        opacity: 0;
    }

    .header__navi.open {
        /* right: 0; */
        visibility: visible;
        pointer-events: all;
        opacity: 1;
    }
}

@media screen and (max-width: 768px) {
    .header__navi {
        width: 100%;
    }
}

/* ---------------------------------- */
/* FOOTER */
/* ---------------------------------- */

.footer {
    position: relative;
    z-index: 3;
    background: #434343;
    text-align: center;
    padding-top: 40px;
}

.footer,
.footer a {
    color: #fff;
}

.copyright {
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    padding: 20px;
}

.footer__logo {
    margin-bottom: 20px;
    line-height: 1;
}

.footer__logo img {
    height: 30px;
}

.footer__logo h3 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
}

.footer__logo h3 span {
    display: block;
    width: 100%;
    font-size: 14px;
    margin-top: 3px;
    color: #1f4a86;
    font-family: sans-serif;
    font-weight: bold;
    letter-spacing: 1.7px;
}

.footer__instagram {
    margin-top: 20px;
    display: inline-block;
}

@media screen and (max-width: 991px) {
    .footer__instagram {
        max-width: 240px;
    }
}

.main {
    position: relative;
}

.inner {
    max-width: 1150px;
    margin: auto;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 1199px) {
    .inner {
        width: 90%;
    }
}

/* ---------------------------------- */
/* TOP MAIN VISUAL */
/* ---------------------------------- */
.lp-main-visual {}

.lp-main-visual__image {
    width: 100%;
    height: 597px;
    overflow: hidden;
    margin-left: auto;
    position: relative;
}

.lp-main-visual__image img {
    object-fit: cover;
    width: 100%;
}

.lp-main-visual__slider {
    display: none;
}

.lp-main-visual__slider.slick-initialized {
    display: block;
}


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

    .lp-main-visual__image,
    .lp-main-visual__image img {
        height: 500px;
    }
}

.lp-main-visual__item {
    position: absolute;
    left: 50%;
    bottom: -80px;
    transform: translate(-50%, 0);
    z-index: 1;
    width: 880px;
}

.lp-main-visual__item img {
    width: 100%;
}

@media screen and (max-width: 991px) {
    .lp-main-visual__item {
        width: 100%;
        position: relative;
        bottom: auto;
        top: -70px;
    }
}

.lp-title01 {
    text-align: center;
    margin-bottom: 30px;
}

.lp-title01 h2 {
    font-size: 60px;
    text-shadow: 5px 5px 0 #fff;
}

.lp-title01--white h2 {
    text-shadow: none;
}

@media screen and (max-width: 991px) {
    .lp-title01 h2 {
        font-size: 30px;
    }
}

.lp-title02 {
    margin-bottom: 30px;
    color: var(--main-color);
}

.lp-title02 h2 {
    font-size: 60px;
}

@media screen and (max-width: 991px) {
    .lp-title02 h2 {
        font-size: 32px;
        text-align: center;
    }
}

.lp-title03 {
    text-align: center;
    margin-bottom: 30px;
}

.lp-title03 h2 {
    font-size: 35px;
}

@media screen and (max-width: 991px) {
    .lp-title03 h2 {
        font-size: 24px;
    }
}

.lp-title04 {
    text-align: center;
}

.lp-title04 h3 {
    font-size: 40px;
    line-height: 1.7;
    display: inline-block;
    background: linear-gradient(transparent 60%, #FFE2DC 60%);
    display: inline;
}

.lp-title04__line {}

@media screen and (max-width: 991px) {
    .lp-title04 h3 {
        font-size: 22px;
    }
}

.lp-text01 {
    text-align: center;
    font-size: 30px;
    font-weight: 500;

}

@media screen and (max-width: 991px) {
    .lp-text01 {
        font-size: 17px;
        text-align: left;
    }
}

.lp-text02 {
    text-align: center;
}

.lp-text02 h3 {
    background: var(--main-color);
    color: #fff;
    padding: 6px;
    font-size: 26px;
    max-width: 540px;
    margin: auto;
    margin-bottom: 70px;
    font-weight: 600;
}

@media screen and (max-width: 991px) {
    .lp-text02 h3 {
        font-size: 21px;
    }
}

.lp-button01 {
    font-weight: bold;
    position: relative;
    transition: 0.5s;
    box-sizing: border-box;
    overflow: hidden;
    pointer-events: all;
    text-align: center;
}

.lp-button01 a {
    text-align: center;
    max-width: 900px;
    margin: auto;
    font-size: 26px;
    color: #fff;
    font-weight: 500;
    position: relative;
    display: block;
    padding: 30px 70px;
    overflow: hidden;
    border-radius: 100px;
    background: linear-gradient(to right, var(--main-color) 0%, #1991F8 100%);
    transition: 0.3s;
}

.lp-button01 a:hover {
    opacity: 0.7;
}

.lp-button01 a:before {
    content: '>';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
    z-index: 2;
}

.lp-button01 p {
    font-size: 40px;
    font-weight: bold;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
    .lp-button01 a {
        font-size: 18px;
        padding: 13px 20px;
    }

    .lp-button01 p {
        font-size: 15px;
    }
}

.lp-content01 {
    display: flex;
    flex-wrap: wrap;
    counter-reset: number;
    gap: 40px;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.lp-content01>li {
    width: 100%;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.lp-content01>li>h2 {
    font-size: 30px;
    position: relative;
    padding-left: 120px;
    margin-bottom: 20px;
}

.lp-content01>li>h2:before {
    counter-increment: number;
    content: counter(number, decimal-leading-zero);
    color: var(--main-color);
    font-size: 80px;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
    font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 991px) {
    .lp-content01>li {
        padding: 20px;
    }

    .lp-content01>li>h2:before {
        position: static;
        display: block;
        font-size: 40px;
    }

    .lp-content01>li>h2 {
        padding-left: 0;
        font-size: 21px;
    }
}

.lp-content02 {
    display: flex;
    flex-wrap: wrap;
    counter-reset: number;
    gap: 40px;
}

.lp-content02>li {
    width: 100%;
}

.lp-content02>li>h2 {
    font-size: 30px;
    position: relative;
    margin-bottom: 20px;
    background: var(--main-color);
    color: #fff;
    line-height: 1;
    display: flex;
    align-items: center;
    padding: 4px 18px;
}

.lp-content02>li>h2:before {
    counter-increment: number;
    content: counter(number, decimal-leading-zero);
    color: #fff;
    opacity: 0.7;
    font-size: 50px;
    line-height: 1;
    font-family: "Noto Sans JP", sans-serif;
    margin-right: 15px;
    padding-bottom: 10px;
}

@media screen and (max-width: 991px) {
    .lp-content02>li {
        padding: 20px;
    }

    .lp-content02>li>h2 {
        font-size: 18px;
        padding: 10px 10px;
        line-height: 1.3;
    }

    .lp-content02>li>h2:before {
        font-size: 50px;
        position: absolute;
        top: -55px;
        left: 0px;
        color: #64B0F3;
        opacity: 0.2;
    }
}

.lp-content02__con {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.lp-content02__con>div:first-child {
    width: 45%;
}

.lp-content02__con>div:last-child {
    width: 50%;
}

@media screen and (max-width: 991px) {
    .lp-content02__con>div:first-child {
        width: 100%;
        margin-bottom: 20px;
    }

    .lp-content02__con>div:last-child {
        width: 100%;
    }

}

.lp-content03 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    counter-reset: number;
    gap: 50px 6%;
}

.lp-content03>li {
    width: 47%;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.lp-content03__num {
    position: relative;
    margin-bottom: 15px;
    display: flex;
    padding-top: 17px;
    padding-left: 70px;
    font-size: 21px;
    line-height: 1.2;
}

.lp-content03__num:before {
    counter-increment: number;
    content: counter(number, decimal-leading-zero);
    color: #DDDDDD;
    font-size: 50px;
    font-weight: bold;
    line-height: 1;
    font-family: "Noto Sans JP", sans-serif;
    position: absolute;
    left: 0;
    top: 0;
}

.lp-content03>li>h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.lp-content03__image {
    margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
    .lp-content03>li {
        padding: 20px;
        width: 100%;
    }

    .lp-content03__num:before {
        position: static;
        display: block;
        font-size: 38px;
        margin-right: 10px;
    }

    .lp-content03__num {
        padding: 0;
        font-size: 17px;
        align-items: center;
    }

    .lp-content03>li>h2 {
        font-size: 20px;
    }
}

.lp-list01>li {
    list-style: disc;
    margin-left: 27px;
}

.lp-list01>li::marker {
    font-size: 10px;
}

.lp-box01 {
    width: 90%;
    margin: auto;
}

.lp-box01__menu {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    cursor: pointer;
}

.lp-box01__menu li {
    width: 25%;
    text-align: center;
    background: #fff;
    padding: 15px;
    box-sizing: border-box;
    color: #fff;
    border-radius: 10px 10px 0px 0px;
    font-weight: 600;
}

.lp-box01__menu li:nth-child(1) {
    background: #FF8080;
}

.lp-box01__menu li:nth-child(2) {
    background: #EEA700;
}

.lp-box01__menu li:nth-child(3) {
    background: #EED200;
}

.lp-box01__menu li:nth-child(4) {
    background: #A8A8A8;
    color: #333;
}

.lp-box01__menu li.show {
    opacity: 0.7;
}

.lp-box01__content {
    list-style-type: none;
    position: relative;
    padding: 0;
}

.lp-box01__content>li {
    display: none;
}

.lp-box01__content>li.show {
    display: block;
}

.lp-box01__content>li h4 {
    font-size: 28px;
    margin: 10px 0 15px;
}

.lp-box01__content>li img {
    width: 100%;
}

@media screen and (max-width: 991px) {
    .lp-box01__menu li {
        width: 33.33%;
        font-size: 12px;
        padding: 5px 3px;
        margin-bottom: 2px;
        border-radius: 100px;
    }
}

@media screen and (max-width: 480px) {
    .lp-box01__content>li img {
        width: 700px;
        max-width: initial;
    }
}

/* ---------------------------------- */
/* LP ABOUT */
/* ---------------------------------- */
.lp-about {
    overflow: hidden;
    padding: 120px 0 70px;
    background-image: url(img/lp/bg01.png);
}

@media screen and (max-width: 991px) {
    .lp-about {
        padding: 120px 0 20px;
    }
}

.lp-about__message {
    text-align: center;
}

.lp-about__message h2 {
    text-align: center;
    font-size: 50px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.about-instagram {
    text-align: center;
    color: #fff;
    margin-top: 40px;
}

.about-instagram img {
    height: 80px;
}

.lp-about__text {
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    color: #fff;
    margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
    .lp-about__message {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        flex-flow: column-reverse;
    }

    .lp-about__message h2 {
        font-size: 35px;
    }

    .lp-about__logo {
        margin-top: 70px;
    }
}

/* ---------------------------------- */
/* LP ECOMMENDATION */
/* ---------------------------------- */
.lp-recommendation {
    padding: 100px 0;
}

.lp-recommendation__menu {
    margin-bottom: 100px;
}

/* ---------------------------------- */
/* LP PROBLEMS */
/* ---------------------------------- */
.problems-con img {
    width: 100%;
}

/* ---------------------------------- */
/* LP LADIES */
/* ---------------------------------- */
.lp-ladies {
    padding: 100px 0;
    margin-bottom: 50px;
    background: #FFFDF6;
}

.lp-ladies__message01 {
    max-width: 750px;
    margin-bottom: 70px;
}

.lp-ladies__message01 h3 {
    font-size: 40px;
    margin-bottom: 20px;
}

.lp-ladies__message02 {
    font-size: 35px;
    text-align: center;
    margin-top: 30px;
}

.lp-ladies__text {
    font-size: 20px;
}

.lp-ladies__item01 {
    position: absolute;
    top: -50px;
    right: 0px;
    overflow: hidden;
}

.lp-ladies__item01 img {
    position: relative;
    left: 110px;
}

.lp-ladies__item02 {
    position: absolute;
    top: 50px;
    right: 230px;
    overflow: hidden;
    z-index: 2;
}

.lp-ladies__item03 {
    position: absolute;
    bottom: 0;
    right: 0px;
    overflow: hidden;
}

.lp-ladies__item03 img {
    position: relative;
    right: -260px;
}

@media screen and (max-width: 991px) {
    .lp-ladies {
        padding: 100px 0 30px;
    }

    .lp-ladies__message01 h3 {
        font-size: 20px;
        margin-top: 440px;
    }

    .lp-ladies__message02 {
        font-size: 19px;
    }

    .lp-ladies__item01 img {
        left: 60px;
        width: 290px;
    }

    .lp-ladies__item02 {
        width: 160px;
        top: 160px;
        right: 35%;
    }

    .lp-ladies__text {
        font-size: 16px;
    }
}

/* ---------------------------------- */
/* LP COST */
/* ---------------------------------- */
.lp-cost {
    margin-bottom: 100px;
    margin-top: 60px;
    padding: 80px 0;
    background: #FFFDF6;
}

.lp-cost__con {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 -86px;
}

.lp-cost__con>li {
    width: 33%;
    margin: 0 -19px -42px;
}

.zeroen {
    text-align: center;
}

@media screen and (max-width: 991px) {
    .lp-cost {
        margin-top: 40px;
        margin-bottom: 50px;
        padding: 50px 0;
    }

    .lp-cost__con {
        margin: 0;
    }

    .lp-cost__con>li {
        margin: 0;
        width: 50%;
    }

    .zeroen {
        max-width: 240px;
        margin: auto;
    }
}

/* ---------------------------------- */
/* LP REASONS */
/* ---------------------------------- */
.lp-reasons {
    margin-bottom: 100px;
}

.lp-text01--reasons {
    margin-bottom: 60px;
}

.lp-content02--reasons {
    margin-bottom: 80px;
}

@media screen and (max-width: 991px) {
    .lp-reasons {
        margin-bottom: 50px;
    }

    .lp-content02--reasons {
        margin-bottom: 30px;
    }
}

/* ---------------------------------- */
/* LP DIFFERENCE ESTHETIC */
/* ---------------------------------- */
.lp-difference-esthetic {
    background: #FFFCF5;
    padding: 100px 0;
}

.lp-text01--difference {
    margin-bottom: 60px;
}

.lp-content03--difference {
    margin-bottom: 60px;
}

@media screen and (max-width: 991px) {
    .lp-difference-esthetic {
        padding: 40px 0;
    }
}

/* ---------------------------------- */
/* LP COMPARISON */
/* ---------------------------------- */
.lp-comparison {
    margin-bottom: 100px;
    background: #FFFCF5;
}

.comparison-table img {
    width: 100%;
}

/* ---------------------------------- */
/* LP MECHANISM */
/* ---------------------------------- */
.lp-mechanism {
    margin-bottom: 40px;
    padding: 50px 0;
    background: #FFFCF5;
}

.lp-mechanism__image {
    margin-bottom: 40px;
}

.lp-mechanism__image img {
    width: 100%;
}

.lp-mechanism__text {
    margin-bottom: 60px;
}

.lp-mechanism__text p {
    line-height: 1.9;
    font-size: 20px;
}

.lp-mechanism__period {
    margin-bottom: 20px;
}

.lp-mechanism__text02 {
    margin-top: 60px;
}

@media screen and (max-width: 991px) {
    .lp-mechanism__text {
        margin-bottom: 0;
    }

    .lp-mechanism__text p {
        font-size: 14px;
    }

    .lp-mechanism__text02 {
        margin-top: 20px;
    }
}

/* ---------------------------------- */
/* LP PRICE */
/* ---------------------------------- */
.lp-price {
    margin-top: 60px;
    padding: 50px 0;
    background: #FFFCF5;
}

.price-menu-image {
    margin-bottom: 80px;
}

.price-menu-image img {
    width: 100%;
}

/* ---------------------------------- */
/* LP FLOW */
/* ---------------------------------- */
.lp-flow {
    padding: 50px 0 100px;
    background: #FFFCF5;
}

/* ---------------------------------- */
/* LP THOUGHT */
/* ---------------------------------- */
.lp-thought {
    background: #53ADFA;
    color: #fff;
    padding: 100px 0;
}

.thought-description>li:not(:last-child) {
    margin-bottom: 60px;
}

.thought-description__con {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #fff;
    padding: 40px 50px;
    border-radius: 10px;
    color: var(--text-color);
}

.thought-description__con>div:first-child {
    width: 33%;
}

.thought-description__con>div:first-child img {
    width: 100%;
}

.thought-description__con>div:last-child {
    width: 60%;
    font-size: 20px;
}

.thought-name {
    text-align: right;
    font-weight: bold;
    font-size: 20px;
    margin-top: 30px;
}

@media screen and (max-width: 991px) {
    .thought-description__con {
        padding: 40px 20px;
    }

    .thought-description__con>div:first-child {
        width: 80%;
        margin: 0 auto 20px;
    }

    .thought-description__con>div:last-child {
        width: 100%;
        font-size: 17px;
    }
}

/* ---------------------------------- */
/* FAQ */
/* ---------------------------------- */
.lp-faq {
    padding: 80px 0 20px;
    background: #FFFCF5;
}

.faq-list {
    margin-top: 70px;
}

.faq-list dl {}

.faq-list dl:not(:last-child) {
    margin-bottom: 40px;
}

.faq-list dt {
    cursor: pointer;
    background: #fff;
    display: flex;
    align-items: center;
    position: relative;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 23px;
}

.faq-list dd {
    /* display: none; */
    padding-left: 70px;
    font-weight: 500;
    font-size: 21px;
}

.faq-list dt:before {
    content: 'Q';
    color: #fff;
    font-size: 36px;
    margin-right: 20px;
    background: #64B0F3;
    width: 53px;
    height: 53px;
    text-align: center;
    border-radius: 10px;
    line-height: 1.4;
}

@media screen and (max-width: 991px) {
    .faq-list dt {
        font-size: 17px;
    }

    .faq-list dt:before {
        font-size: 32px;
        margin-right: 15px;
        width: 45px;
        height: 45px;
        line-height: 1.3;
    }

    .faq-list dd {
        padding-left: 0;
        font-size: 14px;
    }
}

/* ---------------------------------- */
/* LP RISK */
/* ---------------------------------- */
.lp-risk {
    padding: 50px 0 100px;
    background: #FFFCF5;
}

.lp-risk__con {
    max-width: 910px;
    margin: auto;
    background: #fff;
    padding: 25px 60px;
    border-radius: 20px;
}

@media screen and (max-width: 991px) {
    .lp-risk__con {
        padding: 40px 21px;
    }
}

/* ---------------------------------- */
/* OTHER */
/* ---------------------------------- */
.download {}

.download-btn {
    background: #ECECEC;
    display: inline-block;
    font-weight: bold;
    padding: 7px 7px 7px 20px;
}

.download-btn a {
    background: #333;
    color: #fff;
    padding: 5px 60px 5px 30px;
    margin-left: 14px;
    font-weight: 500;
    display: inline-block;
    position: relative;
}

.download-btn a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
    background: url(img/lp/arrow01.png) center / cover;
    height: 14px;
    width: 8px;
}

@media screen and (max-width: 991px) {
    .download-btn {
        text-align: center;
    }

    .download-btn a {
        margin-left: 0;
        margin-top: 5px;
    }
}