/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */


/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

*,
*:before,
*:after {
    /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
    box-sizing: inherit;
}

img {
    height: auto;
    /* Make sure images are scaled correctly. */
    max-width: 100%;
    /* Adhere to container width. */
    vertical-align: bottom;
}


/*a {
    display: inline-block;
}*/

.section-inner {
    max-width: 980px;
    margin: 0 auto;
    width: 95%;
    height: 100%;
}

h2 {
    margin-bottom: 44px;
    font-size: min(2.6vw, 28px);
}



.sp {
    display: none;
}

.fixed-download-btn {
    width: 25vw;
    max-width: 300px;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9999;
    transition: opacity .3s;
    opacity: 0;
    pointer-events: none;
}

.fixed-download-btn.is-show {
    opacity: 1;
    pointer-events: visible;
}


/**********************************************
key-visual
**********************************************/
.kv-section {
    height: calc(100svh - 64.09px);
    max-height: 736px;
    min-height: 600px;
    padding: 0;
    position: relative;
}

.kv-screen-wrap {
    width: min(32vw, 400px);
    position: absolute;
    bottom: 6%;
    right: 50%;
    translate: 148% 0;
    z-index: 1;
    display: flex;
}

.kv-screen-wrap.sp {
    display: none;
}

.kv-screen-img {
    width: 70%;
}

.kv-chara {
    width: 30%;
    align-content: end;
}

.kv-top {
    position: relative;
    height: 20%;
}

.kv-bg-cloud {
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    object-position: 50% 50%;
}

.kv-section h2 {
    width: 96%;
    max-width: 1200px;
    position: absolute;
    top: 20%;
    left: 50%;
    translate: -50% 0;
    font-size: min(1.84vw, 23px);
    letter-spacing: 0.1em;
    margin-bottom: 0;
}

.kv-section h2 img {
    width: min(36vw, 450px);
    margin-top: 10px;
}

.kv-app-wrap {
    width: 96%;
    max-width: 1200px;
    max-height: 57px;
    position: absolute;
    bottom: 20%;
    left: 50%;
    translate: -50% 0;
    display: flex;
    gap: 30px;
}

.kv-app-icon {
    width: 266px;
}

.kv-app-wrap .open_button img {
    width: 380px;
}

.kv-bottom {
    background: url(../img/kv-bg-red.png);
    height: 30%;
    position: relative;
}

.download-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 96%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.download-item {
    background: #fff;
    width: min(28.8vw, 360px);
    border-radius: 10px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-weight: bold;
}

.download-item-left p {
    margin-bottom: 5px;
}

.download-item .qr {
    width: 36%;
}

.w1250 {
    display: none;
}

@media screen and (max-width:1250px) {
    .kv-section {
        height: 58.8vw;
        min-height: fit-content;
    }

    .kv-section h2 {
        width: fit-content;
        left: 12%;
        translate: 0;
    }

    .kv-app-wrap {
        width: fit-content;
        bottom: auto;
        top: 60%;
        left: 12%;
        translate: 0;
        flex-direction: column;
        align-items: center;
        gap: 2vw;
    }

    .kv-app-icon {
        width: min(25.6vw, 320px);
    }

    .kv-app-wrap .open_button img {
        width: min(36.4vw, 455px);
    }

    .w1250 {
        display: block;
    }
}

/*--------------------------------------
モーダル
--------------------------------------*/
.modal_wrap input {
    display: none;
}

.modal_overlay {
    display: flex;
    justify-content: center;
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.5s, transform 0s 0.5s;
    transform: scale(0);
}

.modal_trigger {
    position: absolute;
    width: 100%;
    height: 100%;
}

.modal_content {
    align-self: center;
    width: 820px;
    max-width: 80%;
    box-sizing: border-box;
    transition: 0.5s;
    position: relative;
}

.modal {
    border-radius: 15px;
    position: relative;
    background: url(../img/modal-bg.png) no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    padding: 30px 70px;
    overflow: hidden;
}

.modal-inner {
    display: flex;
    justify-content: space-between;
}

.modal-screen {
    width: 40%;
    position: relative;
}

.modal-screen img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    filter: drop-shadow(6px 2px 10px #00000031);
}

.modal-download-item {
    width: 50%;
}

.modal-download-item p {
    font-weight: bold;
    font-size: 15px;
    margin: 10px 0;
    text-align: center;
}

.modal-download-wrap {
    width: 50%;
}

.mobile-download {
    display: flex;
    gap: 20px;
}

.close_button {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    translate: 50% -50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    background: #DF0100;
    z-index: 1;
    transition: all .3s;
}

.close_button span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.close_button span::before,
.close_button span::after {
    content: "";
    width: 30px;
    height: 2px;
    display: inline-block;
    background: #fff;
    border-radius: 9999px;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}

.close_button span::before {
    transform: rotate(45deg);
}

.close_button span::after {
    transform: rotate(-45deg);
}

.modal_wrap input:checked~.modal_overlay {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.5s;
}

.modal_wrap input:checked~.modal_overlay .modal_content {
    transform: translateY(20px);
}

.open_button {
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    text-decoration: none;
}

.open-button:active {
    /*ボタンを押したとき*/
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
    /*下に動く*/
}

.modal-mobile-btn,
.download-btn {
    transition: opacity .3s;
}

@media (any-hover: hover) {

    .open_button:hover,
    .download-btn:hover,
    .modal-mobile-btn:hover,
    .close_button:hover {
        opacity: 0.6;
    }

}


/**********************************************
worries-section
**********************************************/
.worries-section {
    text-align: center;
}

.worries-item-wrap {
    position: relative;
}

.worries-item {
    filter: drop-shadow(0 3px 6px #a2a2a22d);
}

.worries-chara {
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50% 0;
    width: min(17vw, 180px);
    min-width: 80px;
}

/**********************************************
point-section
**********************************************/
.point-section {
    text-align: center;
}

.point-section h2 img {
    max-width: 80%;
    margin: 0 auto;
}

.point-wrap {
    width: 1200px;
    max-width: 95%;
    background: #fff;
    margin: auto;
    padding: 22px 0;
    border-radius: 15px;
    filter: drop-shadow(0 3px 6px #a2a2a22d);
    position: relative;
    overflow: hidden;
}

.point-wrap.point_01 {
    padding-bottom: 30px;
}

.point-wrap .section-inner {
    max-width: none;
    width: 100%;
}

.point-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 55% 0;
    z-index: -1;
}

.point_02 .point-bg {
    object-position: 30% 100%;
}

.point-wrap:nth-of-type(n+2) {
    margin-top: 52px;
}

.point-content {
    display: flex;
    justify-content: flex-end;
    text-align: left;
    gap: 20px;
    padding-right: 10px;
}

.point-section h3 {
    font-size: min(2.6vw, 24px);
    margin: 20px 0;
}

.text-red {
    color: #DF0100;
}

.point-text {
    width: 43%;
}

.point-01-text:nth-of-type(2) {
    margin-top: 15px;
}

.text-strong {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 4px;
}

.point-img-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 15px;
    width: 44%;
}

.point-img {
    width: 37%;
}

.point_01 .point-img.beside-img {
    width: 63%;
    text-align: center;
}

.point-img img {
    height: 340px;
    object-fit: contain;
}

/**********************************************
red-section
**********************************************/

.red-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.red-section h2 {
    text-align: center;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.red-section ul {
    padding: 0 26px;
    display: flex;
    gap: 2%;
}

.red-section ul li {
    background: #fff;
    padding: 25px 30px;
    border-radius: 10px;
    width: 32%;
    filter: drop-shadow(0 3px 6px #a2a2a22d);
}

.icon-wrap {
    height: 88px;
    text-align: center;
    align-content: center;
}

.red-section h3 {
    font-size: 18px;
    text-align: center;
    align-content: center;
    line-height: 1.5;
    height: 4em;
    text-wrap: nowrap;
}

.text-small {
    font-size: 12px;
    display: block;
}

/**********************************************
method-section
**********************************************/
.method-section h2 {
    margin-bottom: 20px;
}

.slider-area {
    margin: 0 auto;
    max-width: 100%;
    position: relative;
}

.slide {
    margin: 0 auto;
    padding: 35px 35px 0;
    position: relative;
    height: 370px;
    max-width: 980px;
    width: 80vw;
}

.step-screen {
    width: 26%;
    object-fit: contain;
    margin-top: -4%;
}

.step-screen img {
    height: 100%;
}

.slide-content {
    background: #fff;
    border-radius: 10px;
    height: 100%;
    filter: drop-shadow(0 3px 6px #a2a2a22d);
}

.slide-content-inner {
    display: flex;
    justify-content: center;
    gap: 4%;
}

.step-text {
    padding-top: 46px;
    width: 50%;
}

.step-text img {
    margin-bottom: 25px;
}

.step-text h3 {
    font-size: min(2.34vw, 20px);
    margin-bottom: 20px;
    line-height: 1.2;
}

.step-text .e-mail {
    margin-top: 1em;
}

/* dotsを丸くカスタマイズするCSS */
.dots-wrap {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.dots-wrap li {
    width: 16px;
    height: 16px;
    margin: 0 10px;
    background: #CDAEB1;
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s;
}

.dots-wrap li.slick-active {
    background: #EA5565;
}

@media (any-hover: hover) {
    .dots-wrap li:hover {
        background: #EA5565;
    }
}

.dots-wrap li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}

.method-chara {
    position: absolute;
    left: 50%;
    bottom: 120px;
    translate: -490px 0;
    width: 100px;
}

@media screen and (max-width:1225px) {
    .method-chara {
        translate: 0;
        left: 10%;
    }
}

.method-section .text-red {
    position: absolute;
    right: 50%;
    bottom: 90px;
    max-width: 980px;
    width: 80vw;
    text-align: end;
    translate: calc(50% - 35px) 0;
    z-index: -1;
    font-weight: bold;
}

/**********************************************
qa-section
**********************************************/
.qa-section {
    background: #fff;
}

.accordion-wrap {
    padding: 0 30px;
}

.accordion {
    border-radius: 10px;
    background: #FFF6F6;
}

.accordion:nth-of-type(n+2) {
    margin-top: 10px;
}

.qestion {
    display: flex;
    gap: 35px;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    padding: 16px 30px;
}

.qestion h3 {
    width: 90%;
    font-size: 16px;
    line-height: 1.5;
}

.qestion .arrow-wrap {
    transition: transform .3s;
}

.qestion.open .arrow-wrap {
    transform: rotate(180deg);
}

.arrow {
    position: relative;
    display: inline-block;
}

.arrow::before,
.arrow::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 1px);
    width: 3px;
    height: 12px;
    border-radius: 9999px;
    background-color: #DF0100;
    transform-origin: 50% calc(100% - 1px);
}

.arrow::before {
    transform: rotate(45deg);
}

.arrow::after {
    transform: rotate(-45deg);
}

.answer {
    padding: 0 45px 35px 122px;
    display: none;
}

/**********************************************
table
**********************************************/

.table-wrap {
    background: #fff;
    border-radius: 10px;
    padding: 42px 26px;
}

table th {
    width: 12em;
    text-align: left;
}

table td {
    font-size: 14px;
}

table td li.red-list {
    position: relative;
    padding-left: 0.2em;
    margin-left: 1em;
}

table td li {
    line-height: 1.6;
}

table td li:last-child {
    margin-bottom: 24px;
}

table tr:last-child td li:last-child {
    margin-bottom: 0;
}

li.red-list::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: #DF0100;
    border-radius: 9999px;
    position: absolute;
    top: 0.5em;
    left: 0;
    translate: -100% 0;
}

/**********************************************
download-section
**********************************************/
.download-section {
    background: url(../img/bg-download-section.png) no-repeat;
    background-size: cover;
    overflow: hidden;
    padding: 0;
}

.download-section-inner {
    max-width: 1185px;
    width: 95%;
    margin: 0 auto;
    display: flex;
    gap: 15px;
}

.download-screen-img {
    width: 45%;
    height: 34.11vw;
    max-height: 365px;
}

.download-screen-img img {
    translate: -16% 0;
    transform: scale(1.1);
}

.download-sec-content {
    position: relative;
    width: 40%;
    padding: 30px 0;
}

.download-section h2 {
    font-size: min(2.34vw, 24px);
    text-align: center;
    color: #fff;
    text-wrap: nowrap;
    margin-bottom: 16px;
}

.download-section h2 img {
    height: 1.5em;
    vertical-align: middle;
    margin-right: 0.5em;
}

.download-sec-wrap {
    display: flex;
    gap: 30px;
}

.download-sec-item {
    background: #ffffff33;
    border-radius: 15px;
    padding: 15px 20px;
}

.download-sec-item img {
    display: block;
}

.download-sec-chara {
    position: absolute;
    bottom: 30px;
    right: 0;
    width: min(12vw, 160px);
    translate: 110% 0;
}

.qr-img {
    margin-top: 18px;
}

/**********************************************
contact-section
**********************************************/
.contact-wrap {
    width: 95%;
    max-width: 590px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    border: 2px solid #DF0100;
    padding: 28px 40px;
    font-weight: bold;
    letter-spacing: 0.24em;
}

.contact-tel {
    font-size: 55px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.contact-tel img {
    height: 1em;
}

.contact-tel a {
    text-decoration: none;
    color: #000;
}

.contact-wrap p {
    text-align: center;
    margin-top: 20px;
    font-size: 22px;
}

.contact-time {
    font-size: 1.045em;
}

/**********************************************
footer
**********************************************/
.footer {
    background: #fff;
}

.footer-content {
    width: 1185px;
    max-width: 95%;
    margin: 0 auto;
    padding: 50px 0;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-text {
    font-size: 14px;
}

.footer-logo {
    max-width: 375px;
    width: 36.62vw;
}

.copyright {
    background: #DF0100;
    color: #fff;
    text-align: center;
    padding: 0.8em 0;
    font-size: 12px;
    font-family: 'din-2014';
    letter-spacing: 0.1em;
}

.w1000 {
    display: none;
}

@media screen and (max-width: 1023px) {

    .modal {
        padding: 30px 40px;
    }

    .modal-download-wrap {
        width: 58%;
    }


    .red-section ul {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }

    .red-section ul li {
        max-width: 500px;
        width: 100%;
    }

    .red-section h3 {
        height: auto;
        margin: 15px 0;
    }

    .slide-content-inner {
        gap: 3%;
    }

    .step-text {
        padding-top: 25px;
    }

    .step-text img {
        margin-bottom: 15px;
        width: 100px;
    }
}