@charset "UTF-8";

/* commmon */
.ld-section{
    padding: 160px 0;
    font-size: 1.3rem;
}
.ld-section h2{
    font-weight: 900;
    line-height: 1;
    margin-bottom: 80px;
}
.ld-section__bg{
    background-color: var(--ld-bgg);
}
.ld-text__kome{
    font-size: .9rem;
    color: #999;
}

/* page */
.ld-page{
    padding: 160px 0;
}
.ld-page__inner{
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 1em;
}
.ld-page__title {
    font-size: 2.5rem;
}

/* header */
/* ========== 共通 ========== */
.ld-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1000;
    background: transparent;
    transition: .2s ease-in-out;
}
.ld-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    transition: 0.4s;
    padding: 1em;
}
.ld-header__logo {
    max-width: 160px;
    z-index: 2;
}

/* ハンバーガー */
.ld-header__toggle {
    display: block;
    position: relative;
    width: 25px;
    height: 25px;
    background: 0 0;
    border: none;
    cursor: pointer;
    z-index: 99;
}
.ld-header__toggle-bar {
    display: block;
    position: absolute;
    height: 2px;
    width: 25px;
    background-color: var(--ld-grn);
    right: 0;
    left: 0;
    margin: auto;
    transition: .2s ease-in-out;
}
.ld-header__toggle-bar:nth-child(1){ top: 0;}
.ld-header__toggle-bar:nth-child(2){ top: 9px;}
.ld-header__toggle-bar:nth-child(3){ top: 18px;}


/* ナビ全画面メニュー */
.ld-header__nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding-top: 120px;
}
.ld-nav__list {
    font-size: 1.4rem;
}
.ld-nav__item {
    border-top: 1px solid var(--ld-bgg);
}
.ld-nav__item a {
    display: block;
    padding: 1em 1.5em;
    color: #fff;
    font-size: 1rem;
}


/* open時 */
.ld-header.ld-header__open .ld-header__nav {
    transform: translateX(0);
}
.ld-body__fixed{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
}

/* ハンバーガー開閉アニメ */
.ld-header.ld-header__open .ld-header__toggle-bar:nth-child(1) {
    top: 9px;
    transform: rotate(225deg);
}
.ld-header.ld-header__open .ld-header__toggle-bar:nth-child(2) {
    width: 0;
}
.ld-header.ld-header__open .ld-header__toggle-bar:nth-child(3) {
    top: 9px;
    transform: rotate(-225deg);
}

/* ========== PC ========== */
    @media (min-width: 768px) {
        .ld-toppage .ld-header{
            top: -200px;
        }
        .ld-toppage .ld-header__fixed{
            top: 0;
            background-color: var(--ld-wht);
            border-bottom: 1px solid #eee;
        }
        .ld-header__toggle {
            display: none;
        }
        .ld-header__nav{
            position: static;
            display: inline-block;
            width: auto;
            height: auto;
            background: transparent;
            padding: 0;
            transform: translateX(0);
        }
        .ld-nav__list {
            display: flex;
        }
        .ld-nav__item {
            border: none;
        }
        .ld-nav__item a {
            font-size: 1.1rem;
            font-weight: bold;
            padding: 1em;
            color: var(--ld-txt);
        }
}


/** hero section **/
.ld-hero{
    width: 100%;
    height: 100svh;
    background-color: var(--ld-blk);
    color: var(--ld-wht);
    background-image: url(../img/ld_main_bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0 30px;
    text-align: center;
}
.ld-hero__logo{
    max-width: 500px;
    margin: 0 auto 2em;
    padding-top: 30vh;
}
.ld-hero__title{
    font-size: 2.2rem;
    margin-bottom: 40px;
}
.ld-mailform{
    text-align: center;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    gap: 10px;
}
.ld-mailform__lead{
    font-size: 1.2rem;
}
.ld-mailform__input{
    padding: 1rem 2.4rem;
    box-shadow: 0 8px 40px #01162414;
    border-radius: 1.2rem;
    font-size: 14px;
    line-height: 20px;
    border-radius: 30px;
    width: 100%;
    display: block;
}
.ld-mailform__submit{
    margin-top: 10px;
    padding: 1rem 2.4rem;
    border-radius: 30px;
    background-color: var(--ld-blk);
    color: var(--ld-grn);
    border: 2px solid var(--ld-grn);
    font-weight: bold;
    cursor: pointer;
    transition: .4s;
    width: 100%;
    display: block;
    font-size: 1rem;
}
.ld-mailform__submit:hover{
    background-color: var(--ld-grn);
    color: var(--ld-wht);
    font-weight: bold;
}
/* cf7設定 */
.wpcf7-form-control-wrap{
    display: block;
}
.wpcf7 form.sent .wpcf7-response-output {
    background-color: var(--ld-grn);
    border-radius: 40px;
    margin: 0;
    padding: 8px 0;
}

/* greeting section */
.ld-greeting__inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ld-greeting__item--center{
    text-align: center;
    font-weight: bold;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}
.ld-greeting__title{
    font-size: 18vw;
    color: var(--ld-grn);
}
.ld-greeting__text p{
    margin-bottom: 1.5em;
    font-size: clamp(1.1rem, 4.5vw, 2rem);
}
.ld-greeting__image{
    max-width: 400px;
    margin: 40px auto 0;
}
.ld-greeting__image img{
    width: 100%;
}
.ld-greeting__item--left,
.ld-greeting__item--right{
    display: none;
}

/* feature section */
.ld-features__inner{
    text-align: center;
}
.ld-features__title{
    font-size: 3rem;
    color: var(--ld-grn);
}
.ld-features__lead{
    margin-bottom: 80px;
}
.ld-features{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin: 0 1em;
    gap: 20px;
}
.ld-feature{
    background-color: var(--ld-wht);
    padding: 80px 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px 0px rgb(80 80 80 / 40%);
}
.ld-feature__text{
    text-align: left;
    font-size: 1rem;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}
.ld-feature__title--jp{
    color: var(--ld-grn);
    line-height: 1;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}
.ld-feature__title--en{
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .1em;
    margin-bottom: .5em;
}
.ld-feature__title-highlight{
    font-size: 1.2rem;
    color: var(--ld-grn);
    font-weight: 700;
}
.ld-feature__image{
    margin: 0 auto 40px;
}

/* subfeature section */
.ld-subfeatures__inner{
    text-align: center;
}
.ld-subfeatures__title{
    font-size: 3rem;
    color: var(--ld-grn);
    padding: 0 10px;
}
.ld-subfeatures__lead{
    margin-bottom: 80px;
    padding: 0 10px;
}
.ld-subfeatures{
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
    align-items: stretch;
    margin: 0 1em;
}
.ld-subfeature{
    border: 1px solid #aaa;
    padding: 40px 16px;
    border-radius: 10px;
    display: grid;
    gap: 16px;
}
.ld-subfeature__title{
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}
.ld-subfeature__title span{
    color: var(--ld-txt);
    display: block;
    font-size: .8rem;
    font-weight: bold;
    letter-spacing: 0.2em;
    margin-bottom: 8px;
}
.ld-subfeature__title span span{
    color: var(--ld-grn);
    display: inline;
}
.ld-subfeature__text{
    font-size: 0.9rem;
}
.ld-subfeature__image{
    max-width: 500px;
    margin: 0 auto;
}

/* lineup section */
.ld-lineup__inner{
    text-align: center;
}
.ld-lineup__title{
    font-size: 3rem;
    color: var(--ld-grn);
}
.ld-lineup__tablist ul{
    display: flex;
    justify-content: space-evenly;
    margin: 0 16px;
}
.ld-lineup__tablist ul li{
    flex: 1;
    margin: 0 4px;
}
.ld-lineup__tablist ul li a{
    display: block;
    line-height: 1;
    border-radius: 5px;
    background-color: #d9d9d9;
    font-size: 0.9rem;
    padding: 12px 0;
}
.ld-lineup__tablist li.active a{
    background-color: var(--ld-grn);
    color: #fff;
    font-weight: bold;
}
.ld-lineup__tabmain{
    margin: 0 16px;
}
.ld-lineup__tabimg{
    padding: 40px;
}
.ld-lineup__tabbox h3{
    margin-bottom: 40px;
    font-size: 2rem;
    line-height: 1;
}
.ld-lineup__tabbox dl{
    width: 100%;
    display: flex;
    margin: 0 auto;
    text-align: left;
    padding: 1.2em 0;
    border-bottom: 1px solid #ddd;
    font-size: .9rem;
    align-items: center;
}
.ld-lineup__tabbox dl dt {
    font-weight: bold;
    width: 35%;
}
.ld-lineup__tabbox dl dd {
    flex: 1;
    margin: 0;
    padding-left: 4px;
}
.ld-lineup__tabbox dl dd.price{
    font-weight: bold;
    font-size: 1.2rem;
}
.ld-lineup__tab {
    display: none;
    opacity: 0;
}
.ld-lineup__tab.is-active {
    display: block;
    animation-name: displayAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* faq section */
.ld-faq__inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}
.ld-faq__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 60px;
}
.ld-faq__list {
    display: grid;
    gap: 20px;
}
.ld-faq__senken{
    margin-top: 1em;
}
.ld-faq__senken--title{
    margin-bottom: .5em;
}
.ld-faq__senken--price {
    display: flex;
    border: 1px solid #ddd;
    margin-bottom: .5em;
}
.ld-faq__senken--price dl{
    text-align: center;
    border-right: 1px solid #ddd;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.ld-faq__senken--price dl:last-child {
    border: none;
}
.ld-faq__senken--price dl dt{
    font-weight: 700;
    border-bottom: 1px solid #ddd;
    padding: 0.5em;
    background-color: #f9f9f9;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ld-faq__senken--price dl dd {
    padding: 1em 0.5em;
}
.ld-lineup__tablink {
    margin-top: 1em;
    display: grid;
    gap: 10px;
}
.ld-lineup__tablink a{
    display: block;
    font-size: 0.9rem;
    color: #fff;
    padding: .5em;
    border-radius: 5px;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}
.ld-lineup__tablink .ld-lineup__link--online a{
    background-color: #006835;
}
.ld-lineup__tablink .ld-lineup__link--dealers a{
    background-color: var(--ld-grn);
}
/* 記事一覧 */
.ld-current__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 60px;
}
.ld-article__list {
    display: flex;
    overflow-x: auto;
    margin: 0 16px;
}
.ld-current__thumb img {
    width: 300px;
}
.ld-list__content {
    width: 300px;
    margin-right: 2em;
}
.ld-current__info {
    margin-top: 1em;
    font-size: .9rem;
}
.ld-current__info a {
    display: grid;
    gap: 10px;
    color: #333;
}
.current__excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/* アコーディオン本体 */
.ld-faq__item {
    border-bottom: 1px solid #ccc;
}
.ld-faq__question {
    width: 100%;
    text-align: left;
    padding: 20px 44px 20px 20px;
    font-size: 1.2rem;
    font-weight: 700;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    color: var(--ld-txt);
}
.ld-faq__question {
    position: relative;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
}
.ld-faq__question::before,
.ld-faq__question::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 16px;
    height: 2px;
    background-color: currentColor;
    transition: transform 0.3s;
}
.ld-faq__question::after {
    transform: rotate(90deg);
}
.ld-faq__item.active .ld-faq__question::after {
    transform: rotate(-360deg);
}
.ld-faq__answer {
    display: none;
    padding: 0 20px 20px;
    font-size: 1rem;
    line-height: 1.6;
}

/* footer */
.ld-footer{
    color: var(--ld-wht);
    background-color: var(--ld-blk);
    padding: 120px 0 10px;
    background-image: url(../img/ld_main_footer_bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.ld-footer__inner{
    display: grid;
    gap: 80px;
}
.ld-footer__logo{
    width: 300px;
    margin: 0 auto;
}
.ld-footer__sns{
    display: flex;
    justify-content: center;
}
.ld-footer__sns li{
    margin: 0 16px;
}
.ld-footer__sns li img{
    height: 35px;
    width: auto;
} 
.ld-footer__info{
    font-size: 0.8rem;
    border-top: 1px solid #fff;
    padding-top: 1em;
}
.ld-footer__policy{
    display: flex;
    justify-content: center;
    margin-bottom: 1em;
}
.ld-footer__policy li{
    margin: 0 1em;
}
.ld-footer__policy a{
    color: var(--ld-wht);
}
.ld-footer__copyright{
    text-align: center;
}


.backtotop{
    display: none;
    position: fixed;
    bottom: 16px;
    right: 9px;
    z-index: 99;
    background-color: var(--ld-grn);
    color: var(--ld-wht);
    cursor: pointer;
    border-radius: 25px;
    height: 50px;
    width: 50px;
    opacity: 0.8;
}
.backtotop span{
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 15px;
    height: 15px;
    border-bottom: 2px solid var(--ld-wht);
    border-right: 2px solid var(--ld-wht);
    transform: rotate(-135deg);
}
.grecaptcha-badge{
    bottom: 80px !important;
}
.ld-section--luck {
    padding: 200px 0;
    background-color: var(--ld-bgg);
}
.ld-luck__copy {
    text-align: center;
    color: #666;
    font-size: 1.5rem;
    font-weight: 300;
    padding: 1em 3em;
}
.ld-luck__copy span {
    color: var(--ld-grn);
    font-weight: 600;
    font-size: 1.8rem;
}
@media screen and (min-width: 481px) {
    .sp{
        display: none;
    }
    .tab{
        display: block;
    }
    .ld-feature__image {
        max-width: 300px;
    }
}

@media screen and (min-width: 768px) {
    .ld-hero__logo{
        padding-top: 35vh;
    }
    .ld-greeting__text p{
        font-size: 1.5rem;
    }
    .ld-features{
        grid-template-columns: repeat(3, 1fr);
    }
    .ld-feature{
        width: 100%;
        margin: 0 auto;
    }
    .ld-feature__reverse .ld-feature__text{
        padding-left: 0;
        padding-right: 2em;
    }
    .ld-subfeatures{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .ld-lineup__inner{
        max-width: 600px;
        margin: 0 auto;
    }
    .ld-lineup__tabbox{
        max-width: 600px;
        margin: 0 auto;
    }
    .ld-lineup__tabimg{
        max-width: 400px;
        margin: 0 auto;
    }
    .ld-article__list {
        flex-direction: column;
        gap: 1em;
        max-width: 1080px;
        margin: 0 auto;
        overflow: hidden;
    }
    .ld-list__content {
        display: flex;
        margin: 0;
        align-items: center;
        width: 100%;
    }
    .ld-current__thumb img {
        width: 400px;
    }
    .current__title {
        font-size: 1.2rem;
    }
    .ld-current__info {
        padding-left: 1em;
    }
    .ld-footer__info-inner{
        display: flex;
        justify-content: space-between;
        padding: 0 2em;
    }
    .ld-footer__policy li{
        margin-right: 1em;
    }
    .ld-footer__policy{
        margin-bottom: 0;
    }
}
@media screen and (min-width: 1030px) {
    .tab{
        display: none;
    }
    .pc{
        display: block;
    }
    .ld-greeting__title{
        font-size: 8vw;
    }
    .ld-greeting__text p{
        margin-bottom: 80px;
    }
    .ld-greeting__item--left,
    .ld-greeting__item--right{
        display: block;
    }
    .ld-greeting__item--left img,
    .ld-greeting__item--right img{
        height: 100%;
        object-fit: contain;
    }
    .ld-features__title{
        font-size: 5rem;
        color: var(--ld-grn);
    }
    .ld-feature{
        max-width: 800px;
    }
    .ld-feature__image{
        max-width: 400px;
    }
    .ld-subfeatures{
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .ld-lineup__inner{
        max-width: 800px;
    }
    .ld-lineup__tablist ul li{
        flex: 1;
        margin: 0 8px;
    }
    .ld-lineup__tablist ul li a{
        font-size: 1.2rem;
    }
    .ld-footer__info-inner{
        max-width: 1440px;
        margin: 0 auto;
    }
    .ld-footer__logo {
        max-width: 400px;
        width: 100%;
    }
    .footer__copyright{
        text-align: right;
    }

}