@charset "UTF-8";
:root {
    --main: #e7380d;
    --bgor: #FEF3E2;
    --txt: #151515;
    --br: #ccc;
}
#lp .pc , #lp .tab , #lp .sp {
    display: none;
}
@media (max-width: 999px) {
    #lp .sp {
        display: block!important;
    }
}
@media (min-width: 1000px) and (max-width: 1399px) {
    #lp .tab {
        display: block!important;
    }
}
@media (min-width: 1400px) {
    #lp .pc {
        display: block!important;
    }
}

#lp {
    line-height: 1.6;
}
#lp a:hover {
    opacity: .8;
    transition: .5s;
}
.lp-inner-wrap {
    margin: 0 auto;
    max-width: 1100px;
    width: 100%;
}
.lp-inner-wrap p {
}
.lp-inner-wrap p img {
    width: auto;
    margin: 0 auto;
}
@media screen and (max-width: 1400px) {
    .lp-inner-wrap {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media screen and (max-width: 999px) {
    .lp-inner-wrap {
        margin: 0 auto;
        max-width: 600px;
        width: 100%;
        padding-left: 5%;
        padding-right: 5%;
    }
    .lp-inner-wrap p {
    }
    .lp-inner-wrap p img {
        width: auto;
        margin: 0 auto;
    }
}

.lp-ttl-wrap , .lp-ttl02-wrap {
    text-align: center;
}
.lp-ttl-wrap p {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1;
}
.lp-ttl-wrap h2 {
    font-size: 4.8rem;
    font-weight: 600;
    color: var(--main);
}
.lp-ttl02-wrap p {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    background: var(--main);
    margin-bottom: 8px;
    line-height: 1;
    display: inline-block;
    padding: 2px 30px;
}
.lp-ttl02-wrap h2 {
    font-size: 4.8rem;
    font-weight: 600;
    color: var(--txt);
}
.lp-ttl02-wrap h2 span {
    color: var(--main);
}
.lp-ttl03-wrap {
    text-align: center;
}
.lp-ttl03-wrap p {
    line-height: 1;
    margin-bottom: 5px;
    font-weight: 600;
}
.lp-ttl03-wrap p span {
    color: var(--main);
}
.lp-ttl03-wrap h2 {
    font-size: 4.8rem;
    color: var(--main);
    line-height: 1;
}
@media screen and (max-width: 999px) {
    .lp-ttl-wrap p {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    .lp-ttl-wrap h2 {
        font-size: 4.2rem;
        line-height: 1;
    }
    .lp-ttl02-wrap p {
        font-size: 1.2rem;
        padding: 2px 20px;
    }
    .lp-ttl02-wrap h2 {
        font-size: 4.2rem;
        line-height: 1.3;
    }
    .lp-ttl03-wrap h2 {
        font-size: 3.8rem;
    }
}

.btn01-wrap {
    margin-top: 20px;
    text-align: center;
}
a.btn01 {
    color: #fff;
}
@media screen and (max-width: 999px) {

}

.lp-cta {
    background: url(img/cta_back.jpg)no-repeat center center/cover;
    padding: 60px 0;
    text-align: center;
}
.lp-cta-txt {
    max-width: 800px;
    margin: 0 auto;
}
.cta-btn-wrap {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
}
.cta-btn-wrap a {
    display: block;
    width: 100%;
    max-width: 400px;
}
@media screen and (max-width: 999px) {
    .lp-cta {
        background: url(img/cta_back-sp.jpg)no-repeat center center/cover;
        padding: 30px 0 30px;
    }
    .cta-fv-under .lp-cta {
        padding: 10px 0 45px;
    }
    .cta-btn-wrap {
        flex-direction: column-reverse;
        gap: 15px;
        margin-top: 5px;
    }
    .cta-btn-wrap a {
        margin: 0 auto;
    }
}


.lp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
}
.lp-header-logo {
    display: flex;
    align-items: center;
}
.lp-header-logo h1 img {
    height: 27px;
}

/* PCナビ */
#lp-navi {
    display: flex;
    align-items: center;
}
.lp-navi-first {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
}
.lp-navi-first li {
    font-size: 1.6rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}
.lp-navi-first li a {
    color: var(--txt);
}
.lp-navi-first li:last-child a {
    display: block;
    color: #fff;
    background: linear-gradient(180deg, rgba(89, 212, 77, 1) 0%, rgba(60, 178, 48, 1) 100%);
    padding: 7px 30px;
    border-radius: 30px;
    border: 1px solid #fff;
    transition: 0.25s;
}

/* ハンバーガー */
.menu-trigger {
    position: relative;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: none;
    z-index: 1000;
}
.menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--txt);
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-trigger span:nth-child(1) {
    top: 0;
}
.menu-trigger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}
.menu-trigger span:nth-child(3) {
    bottom: 0;
}
.menu-trigger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-trigger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.menu-trigger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(10px) rotate(-45deg);
}
@media (max-width: 1399px) {
    .lp-header {
        padding: 7px 5%;
    }
    .menu-trigger {
        display: block;
    }
    #lp-navi {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 75%;
        max-width: 380px;
        height: 100vh;
        padding: 100px 20px 40px;
        background: #fff;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.12);
    }
    #lp-navi.is-open {
        transform: translateX(0);
    }
    .lp-header-logo h1 img {
        height: 24px;
    }
    .lp-navi-first {
        flex-direction: column;
        gap: 28px;
        align-items: center;
        width: 90%;
    }
    .lp-navi-first li {
        display: block;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
    body.is-menu-open {
        overflow: hidden;
    }
}


#lp-footer {
    padding: 60px 0 0;
}
.lp-footer-inner {
    text-align: center;
}
.footer-logo {
    max-width: 180px;
    margin: 0 auto;
}
.footer-logo-txt {
    margin-top: 15px;
    font-weight: 600;
    letter-spacing: .2rem;
}
.footer-number {
    margin-top: 40px;
}
.copyright {
    margin-top: 10px!important;
}


#fv {
    position: relative;
}
.fv-main-ttl {
    margin: 0 auto;
    max-width: 1440px;
}
.fv-under-txt-wrap {
    background: var(--main);
}
.fv-under-txt {
    max-width: 1440px;
    margin: 0 auto;
}
@media screen and (max-width: 1399px) {
    .fv-main-ttl-wrap {
        background: url(img/fv-back-sp.jpg) no-repeat center top / 100%;
        padding: 50px;
        padding-left: 5%;
        padding-right: 5%;
        height: auto;
    }
    .fv-under-txt-wrap {
        background: var(--main);
    }
    .fv-main-ttl {
        margin: 0 auto;
        max-width: 55vw;
        margin-left: 0;
        margin-right: auto;
    }
    .fv-under-txt-wrap {
        padding: 15px 0 5px;
        padding-left: 5%;
        padding-right: 5%;
        height: auto;
        background: var(--main);
        display: flex;
        align-items: center;
    }
    .fv-under-txt {
        margin: 0 auto;
        max-width: 55vw;
        margin-left: 0;
        margin-right: auto;
    }
}
@media screen and (max-width: 999px) {
    .fv-main-ttl-wrap {
        background: url(img/fv-back-sp.jpg) no-repeat center top / 100%;
        padding: 50px;
        padding-left: 5%;
        padding-right: 5%;
        height: auto;
    }
    .fv-main-ttl {
        margin: 0 auto;
        max-width: 600px;
    }
    .fv-under-txt {
        margin: 0 auto;
        max-width: 600px;
    }
    .fv-under-txt-wrap {
        padding: 15px 0 5px;
        padding-left: 5%;
        padding-right: 5%;
        height: auto;
        background: var(--main);
        display: flex;
        align-items: center;
    }
}

.fv-form {
    position: absolute;
    top: 50%;
    left: calc(50% + 300px);
    width: 28%;
    max-width: 470px;
    background: #fff;
    padding: 20px 30px;
    border: 1px solid var(--main);
    border-radius: 10px;
    transform: translate(0, -50%);
    filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, .12));
}
#lp .form_document_input {
    display: block;
    margin-top: 15px;
    line-height: 1;
}
#lp .form_document_input .wpcf7-form-control {
    font-size: 1.4rem;
    padding: 3px;
}
#lp .form_document_input .wpcf7-select {
    padding: 4px 3px;
}
#lp .form_policy_wrap {
    margin-top: 15px;
}
#lp .wpcf7-not-valid-tip {
    font-size: 1.2rem;
}
#lp .form_btn_wrap {
    margin: 0 auto;
    margin-top: 20px;
    padding: 15px 0;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    border-radius: 45px;
    box-sizing: border-box;
    background: linear-gradient(180deg, rgba(89, 212, 77, 1) 0%, rgba(60, 178, 48, 1) 100%);
    overflow: hidden;
}
#lp .wpcf7-spinner {
    visibility: hidden;
    display: inline-block;
    background-color: #23282d;
    opacity: 0.75;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 100%;
    padding: 0;
    margin: 0 24px;
    position: absolute;
    bottom: -25px;
    right: 0;
}
#form-sp-wrap {
    background: var(--bgor);
    padding: 60px 0 60px;
}
.form-sp {
    width: 100%;
    background: #fff;
    margin: 0 auto;
    max-width: 600px;
    margin-top: 20px;
    padding: 30px 5%;
    border: 1px solid var(--main);
    border-radius: 10px;
    filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, .12));
}
@media screen and (max-width: 1399px) {
    #lp .form_document_input .wpcf7-form-control {
        font-size: 1.6rem;
    }
    .fv-form {
        width: 30%;
        left: auto;
        right: 5%;
        top: 40px;
        padding: 15px 15px;
        transform: translate(0, 0);
    }
}
@media screen and (max-width: 999px) {
    .fv-form {
        display: none;
    }
}

#voice {
    padding: 100px 0;
    background: var(--bgor);
}
.voice-inner {
    margin-top: 30px;
    text-align: center;
}
.voice-con {
    margin: 0 auto;
    background: #fff;
    border: solid 1px var(--main);
    padding: 30px 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
    max-width: 910px;
    margin-top: 20px;
}
.voice-con:first-child {
    width: 100%;
    max-width: 985px;
    margin-top: 0;
}
.voice-txt-wrap {
    max-width: 548px;
}
.voice-con:first-child .voice-txt-wrap {
    max-width: 985px;
    margin-top: 0;
}
.voice-img {
    border: 1px solid var(--main);
    border-radius: 10px;
    background: #fff;
    filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, .12));
    transition: .5s;
}
.voice-img img {
    border-radius: 10px;
}
.voice-con:first-child .voice-img {
    padding: 30px 15px 20px;
    max-width: 316px;
}
.voice-img:hover {
    filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, .3));
}
.youtube-link {
    position: relative;
}
.youtube-link figure {
    width: 70%;
    margin: 0 auto;
}
.youtube-link .circle-arrow {
    position: absolute;
    bottom: 10px;
    right: 10px;
}
@media screen and (max-width: 999px) {
    #voice {
        padding: 60px 0;
    }
    .voice-inner {
        margin-top: 20px;
    }
    .voice-con {
        margin-top: 10px;
        padding: 15px 5%;
        flex-direction: column;
        gap: 10px;
    }
    .voice-con:first-child {
        padding: 15px 5% 15px;
    }
    .voice-img {
        border-radius: 5px;
        filter: drop-shadow(5px 5px 2px rgba(0, 0, 0, .12));
    }
    .voice-con:first-child .voice-img {
        padding: 20px 35px 20px;
        filter: drop-shadow(5px 5px 2px rgba(0, 0, 0, .12));
    }
    .voice-img:hover {
        filter: drop-shadow(0 0 0 rgba(0, 0, 0, .3));
    }
}


#worries {
    background: #fff;
    padding: 100px 0 30px;
}
.worries-inner {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}
.worries-under-wrap {
    margin: 0 auto;
    margin-top: 60px;
    max-width: 600px;
}
@media screen and (max-width: 999px) {
    #worries {
        background: #fff;
        padding: 60px 0 30px;
    }
    .worries-inner {
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }
    .worries-under-wrap {
        margin-top: 40px;
    }
}


#about {
    background: var(--bgor);
    padding: 100px 0;
    text-align: center;
}
.about-txt , .region-txt , .comparison-txt {
    margin-top: 30px;
    font-size: 2rem;
    font-weight: 600;
}
.about-outline {
    margin-top: 30px;
}
.about-con {
    margin-top: 60px;
}
.about-con-item {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5%;
}
.about-con-item:nth-child(even) {
    flex-direction: row-reverse;
}
.about-con-item-txt-wrap {
    width: 45%;
    text-align: left;
}
.about-con-item-txt-number {
    color: var(--main);
    border-bottom: 1px solid var(--main);
    padding-bottom: 5px;
    font-size: 2rem;
    font-weight: 600;
    font-family: var(--en);
    line-height: 1;
    display: inline-block;
}
.about-con-item-txt-ttl {
    margin-top: 15px;
    font-size: 4rem;
    line-height: 1.3;
}
.about-con-item-txt-ttl span {
    color: var(--main);
}
.about-con-item-txt-normal {
    margin-top: 30px;
    line-height: 1.6;
}
.about-con-item-txt-normal span {
    font-weight: 600;
}
.about-con-item-img {
    width: 50%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--main);
}
@media screen and (max-width: 999px) {
    #about {
        padding: 60px 0;
    }
    .about-txt , .region-txt , .comparison-txt {
        margin-top: 15px;
        font-size: 1.6rem;
    }
    .about-outline {
        margin-top: 30px;
    }
    .about-con {
        margin-top: 60px;
    }
    .about-con-item {
        margin-top: 60px;
        flex-direction: column;
        gap: 20px 20px;
    }
    .about-con-item:nth-child(even) {
        flex-direction: column;
    }
    .about-con-item-txt-wrap {
        width: 100%;
    }
    .about-con-item-txt-number {
        font-size: 1.4rem;
    }
    .about-con-item-txt-ttl {
        margin-top: 15px;
        font-size: 2.6rem;
        line-height: 1.3;
    }
    .about-con-item-txt-ttl span {
    }
    .about-con-item-txt-normal {
        margin-top: 30px;
        line-height: 2;
    }
    .about-con-item-txt-normal span {
    }
    .about-con-item-img {
        width: 100%;
    }
}

#features {
    background: #fff;
    padding: 100px 0 0;
    text-align: center;
}
.features-con {
    display: flex;
    justify-content: center;
    gap: 3%;
    margin-top: 30px;
}
.features-con-item {
    overflow: hidden;
    border-radius: 10px;
    filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, .12));
}
#region {
    padding: 100px 0 0;
    text-align: center;
}
.region-con {
    margin-top: 20px;
}
#comparison {
    padding: 100px 0;
    text-align: center;
}
.comparison-con {
    margin: 0 auto;
    margin-top: 20px;
    max-width: 900px;
}
.comparison-con-item img {
    width: auto;
    margin: 0 auto;
}
@media screen and (max-width: 999px) {
    #features {
        padding: 60px 0 0;
    }
    .features-con {
        flex-direction: column;
        gap: 20px 20px;
        margin-top: 20px;
    }
    .features-con-item {
        filter: drop-shadow(4px 4px 5px rgba(0, 0, 0, .12));
    }
    #region {
        padding: 60px 0 0;
    }
    .region-con , .comparison-con {
        margin-top: 15px;
    }
    #comparison {
        padding: 60px 0;
    }
}

#flow {
    padding: 100px 0 30px;
}
.flow-con-list {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.flow-under-txt {
    margin: 0 auto!important;
    margin-top: 60px!important;
    max-width: 330px!important;
}
@media screen and (max-width: 999px) {
    #flow {
        padding: 60px 0 20px;
    }
    .flow-con-list {
        margin-top: 40px;
        flex-direction: column;
        gap: 20px 20px;
    }
    .flow-under-txt {
        margin-top: 60px;
        max-width: 100%;
    }
}

#faq {
    padding: 100px 0;
}
.faq-wrap {
    max-width: 900px;
    margin: 0 auto;
}
.faq {
    margin-top: 30px;
    border-bottom: 1px solid var(--br);
    border-top: 1px solid var(--br);
}
dt.faq-q {
    font-weight: 400;
}
.faq-q {
    background: #fff;
    padding: 40px 30px;
    padding-left: 60px;
    position: relative;
}
.faq-a {
    background: var(--bgor);
    padding: 40px 30px;
    padding-left: 60px;
    position: relative;
}
.faq-q::before , .faq-a::before {
    position: absolute;
    font-size: 3.4rem;
    top: 50%;
    left: 30px;
    font-family: "Arial";
    transform: translate(-50%, -50%);
}
.faq-q::before {
    content: "Q";
    color: var(--txt);
}
.faq-a::before {
    content: "A";
    color: var(--main);
}
.faq-q:after {
    content:"";
    display:block;
    width:8px;
    height:8px;
    border-top: var(--main) 3px solid;
    border-right: var(--main) 3px solid;
    transform: rotate(135deg) translate(0, -50%);
    position:absolute;
    right: 15px;
    bottom: 50%;
    transition-duration: .5s;
}
.open .faq-q:after{
    transform: rotate(-45deg) translate(0, -50%);
    top: 50%;
}
@media screen and (max-width: 999px) {
    #faq {
        padding: 60px 0;
    }
    .faq-wrap {
    }
    .faq {
        margin-top: 30px;
    }
    dt.faq-q {
    }
    .faq-q {
        padding: 20px 26px;
        padding-left: 30px;
    }
    .faq-a {
        padding: 20px 26px;
        padding-left: 30px;
    }
    .faq-q::before , .faq-a::before {
        font-size: 2rem;
        top: 50%;
        left: 16px;
    }
    .faq-q:after {
        right: 12px;
    }
}