@charset "utf-8";


.num {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 1.14em;
}

p.red {
    color: red;
}

.sp-only {
    display: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

@media (min-width: 1025px) {
    body {
        min-width: 1280px;
    }
}

@media (max-width: 1024px) {
    body {
        min-width: 375px;
    }

    .pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }
}


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


共通 


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

/* セクションタイトル */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title__label {
    color: #FB8510;
    font-weight: 700;
    font-size: 18px;
    display: block;
}

.section-title__text {
    font-size: 40px;
    letter-spacing: 0.02em;
    font-weight: 700;
}

.section-title__text br {
    display: none;
}

/* ライン装飾 */

.line {
    position: relative;
    background: linear-gradient(transparent 85%, #FFFF00 0%);
}

.marker {
    /* background-color: #FFFF00; */
    position: relative;
    background: linear-gradient(transparent 12%, #FFFF00 12% 92%, transparent 0%);
    padding: 0 0.1em;
    margin: 0 0.05em;
}



@media (max-width: 1024px) {
    .section-title__text {
        line-height: 1.5;
    }

    .section-title__text br {
        display: block;
    }

}

@media (max-width: 767px) {
    .section-title {
        margin-bottom: 1.125em;
    }

    .section-title__text {
        font-size: 26px;
    }


}

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


ボタン 


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

.btn {
    font-weight: 700;
    /* width: 200px; */
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5em;
    padding: 0 20px;
    font-size: 20px;

}

.btn:hover {
    color: #fff;
}

.btn--primary {
    background-color: #F4681D;
    color: #fff;
    box-shadow: 0 4px 0 #E1500D;
}

.btn--medium {
    height: 78px;
    font-size: 24px;
}

.btn--large {
    height: 100px;
    font-size: 34px;
    border-radius: 4em;
}

.btn--outline {
    background-color: #fff;
    color: #F97316;
    border: 1px solid #F97316;
    box-shadow: 0 4px 0 #F97316;
}

@media (max-width: 1024px) {}

@media (max-width: 767px) {}

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


ヘッダー 


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

#header {
    padding: 8px 20px;
    position: fixed;
    z-index: 99999;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    height: 70px;
}

#header .container {
    height: 100%;
}

#header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    height: 100%;
}

#header_nav ul {
    display: flex;
    justify-content: start;
    align-items: center;
}

#header_nav ul li a.nav-link {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    /* 下線オフ */
    color: inherit;
    margin-right: 35px;
}


/* アンダーライン（初期状態：幅0） */
#header_nav ul li a.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    /* テキストの下に線を表示 */
    width: 0;
    height: 2px;
    background-color: #0C70CA;
    transition: width 0.3s ease;
}

/* ホバー時に線がにゅっと伸びる */
#header_nav ul li a.nav-link:hover::after {
    width: 100%;
}

#header_nav ul li a.nav-link:hover {
    opacity: 1;
}


.header-spacer {
    width: 100%;
    height: 69px;
    /* headerの高さ */
}

.logo {
    height: 100%;
    width: auto;
}

.logo img {
    max-height: 100%;
    object-fit: contain;
    object-position: center left;
}

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

ハンバーガーメニュー

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

body.no-scroll {
    overflow: hidden;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    min-width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10001;
}

.hamburger span {
    display: block;
    height: 3px;
    background: #000;
    transition: all 0.3s;
    width: 100%;
}

.hamburger.active span {
    background: #fff;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 1024px) {
    #header {
        padding: 15px 15px;
    }

    .logo {
        height: 100%;
        width: auto;
    }

    #header .container {
        padding: 0;
    }

    #header .inner {
        justify-content: space-between;
    }

    #header_nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background: #00479C;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s ease;
        z-index: 1000;
        padding: 100px 35px;
    }

    #header_nav.open {
        right: 0;
    }

    #header_nav ul {
        flex-direction: column;
        gap: 0;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.5s ease;
        max-width: 500px;
        margin: 0 auto;
    }

    #header_nav.open ul {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.5s;
    }

    #header_nav ul li a::after {
        content: none;
    }


    #header_nav ul li+li:before {
        content: none;
    }

    #header_nav ul li {
        position: relative;
        width: 100%;
    }

    #header_nav ul li a.nav-link {
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        padding: 1.5em 0;
        display: block;
        border-bottom: 1px solid #fff;
        margin-right: 0;
    }

    .hamburger {
        display: flex;
    }

    .header-spacer {
        height: 53px;
    }

    .nav-item--button .btn {
        margin: 0;
        width: 100%;
        height: 56px;
    }

    #header_nav ul li .btn--outline {
        font-size: 16px;
        margin-bottom: 20px;
        margin-top: 30px;
    }

    #header_nav ul li .btn--primary {
        margin-left: 0;
        margin-top: 30px;
    }
}


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


メインビジュアル 


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

.hero {
    background-color: #24C2D1;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 60px 0 100px;
    gap: 50px;
}

.hero-content__text,
.hero-content__image {
    flex: 1;
}

.hero-content__text {
    max-width: 550px;
}

.hero-content__image {
    max-width: 580px;
}

.hero-title {
    font-size: 62px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.35;
}

.hero-title .marker {
    padding-right: 0.05em;
}

.hero-title .num {
    letter-spacing: 0.03em;
    font-size: 1.14em;
}

.hero-lead {
    font-size: 22px;
    color: #2C2C2C;
    line-height: 1.5;
    margin-top: 1em;
    margin-bottom: 1.5em;
    font-weight: 600;
}

.hero-actions__btn .btn__number {
    font-size: 1.2em;
}

.hero-actions__btn .btn__strong {
    display: inline-block;
    background-color: #FFFA00;
    border-radius: 2px;
    color: #FB5A10;
    padding: 0 0.5em;
    margin-left: 0.35em;
    margin-right: 0.1em;
    letter-spacing: 0.05em;
}



@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        align-items: center;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 52px;
    }
}

@media (max-width: 767px) {
    .hero-content {
        padding-bottom: 20px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-lead {
        font-size: 14px;
    }

    .btn--large {
        font-size: 22px;
        height: 70px;
    }

}



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


フォーム 


----------------------------------------------*/
.section--form {
    background-color: #22B8C6;
}

.form_inner {
    max-width: 800px;
    margin: 0 auto;
}

#form-title {
    font-size: 42px;
    color: #fff;
    font-weight: 700;
}

#form-title br {
    display: none;
}

.form-content {
    background-color: #fff;
    padding: 100px 160px;
    border-radius: 18px;
}

.form-intro {
    margin-bottom: 1.875em;
}

.form-notes {
    margin-bottom: 50px;
}

.form-notes__item {
    position: relative;
    padding-left: 1em;
    font-size: 15px;
}

.form-notes__item:before {
    content: '※';
    position: absolute;
    left: 0;
}


/* フォーム本体 */
/* .trial-form {

}

.trial-form input[type="text"],
.trial-form input[type="email"],
.trial-form input[type="tel"],
.trial-form textarea {
    border: 1px solid #CFCFCF;
    padding: 5px;
    border-radius: 2px;
} */



form .table {
    margin-bottom: 50px;
    width: 100%;
}

form .table th,
form .table td {
    color: #121212;
    text-align: left;
    padding-top: 15px;
    padding-bottom: 15px;
}

form .table tr {
    padding-top: 20px;
    padding-bottom: 20px;
}

form .table tr {
    border-bottom: 1px solid #E8E8E8;
}

form .table tr:first-of-type {
    border-top: 1px solid #E8E8E8;
}

form .table tr:first-of-type th {
    border-top: 1px solid #E8E8E8;
}

form .table tr:first-of-type th {
    border-top: none;
}

form .table input,
form .table textarea,
form .table select {
    padding: 5px 0;
    padding-left: 8px;
    color: #222222;
    border: 1px solid #E8E8E8;
    background-color: #eee;
    width: 100%;
}

form .table select {
    padding: 6px 8px;
    width: 100%;
}

::placeholder {
    color: #d1d1d1;
}


/* 必須 */
form .table .need::after {
    color: red;
    content: '*';
    background-color: inherit;
    padding: 0;
    margin: 0;
    font-size: 1.6rem;
}

/* 送信ボタン */

.agreeBox,
.formBtn {
    text-align: center;
}

.agreeBox a {
    text-decoration: underline;
    letter-spacing: 0.1em;
    padding-left: 8px;
}

.formBtn .form-btn {
    background-color: inherit;
    /* border: 1px solid #0C70CA; */
    border: none;
    color: #0C70CA;
    padding: 15px 80px;
    text-align: left;
    position: relative;
    margin: 0 auto;
    width: inherit;
    font-weight: 500;
    background-color: #E2EFFD;
    font-size: 18px;
    border-radius: 4px;
}

.formBtn .form-btn:hover {
    opacity: 0.8;
}

.formBtn .form-btn .fas {
    font-size: 2.0rem;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.1s;
}

.formBtn .form-btn:hover .fas {
    right: 5px;
}


@media (max-width: 1024px) {
    .form-content {
        padding: 40px 40px;
    }
}

@media (max-width: 767px) {
    #form-title {
        font-size: 26px;
    }

    #form-title br {
        display: block;
    }

    .form-content {
        padding: 20px;
    }

    .form-intro__text {
        line-height: 1.75;
    }

    .form-notes__item {
        font-size: 13px;
    }

    form .table th,
    form .table td {
        display: block;
        border: none;
        padding-right: 0;
        padding-left: 0;
    }

    form .table th {
        padding-bottom: 0;
    }

    form .table td {
        padding-top: 5px;
    }

    .formBtn .form-btn {
        padding: 15px 60px;
    }
}