/*===========================================
    全体CSS
============================================*/

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.lp {
    width: 100%;
    margin: 0 auto;
}

picture {
    display: block;
}

picture img {
    display: block;
    width: 100%;
    height: auto;
}

/*===========================================
    パーツCSS
============================================*/
.btn {
    background-color: #262626;
    border-radius: 105px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    line-height: 100%;
    white-space: nowrap;
}

/*===========================================
    各セクション
============================================*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 12px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    z-index: 10;
    @media screen and (max-width: 767px) {
        padding: 12px 24px;
    }
}

.header .logo {
    min-width: 0;
}

.header .logo img {
    display: block;
    width: 252px;
    max-width: 100%;
    height: auto;
}

.header .btn {
    padding: 12px 24px;
    font-size: 20px;
    @media screen and (max-width: 767px) {
        font-size: 16px;
        padding: 12px 16px;
    }
}

.fv {
    text-align: center;
    position: relative;
}

.fv__content {
    position: absolute;
    bottom: 64px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    @media screen and (max-width: 767px) {
        width: 90%;
    }
}

.fv__content h2 img {
    width: 100%;
}

.fv__content .btn {
    padding: 24px 64px;
    font-size: 32px;
    @media screen and (max-width: 767px) {
        padding: 24px 16px;
        font-size: 24px;
    }
}

.fv__content .btn::after {
    content: '';
    display: inline-block;
    margin-left: 1em;
    width: 36px;
    height: 36px;
    background-image: url(/img/icon.svg);
    background-size: contain;
    vertical-align: middle;
}

.cta {
    padding: 40px 24px;
    text-align: center;
}

.cta h2 {
    color: #595959;
    font-size: 24px;
    font-weight: 800;
    line-height: 156%;
}

.cta a {
    display: inline-block;
    text-decoration: none;
    background-color: #ff4000;
    border-radius: 72px;
    padding: 16px 44px;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    white-space: nowrap;
        @media screen and (max-width: 767px) {
            padding: 16px 24px;
        }
}

.cta a::after {
    content: '';
    display: inline-block;
    margin-left: 1em;
    width: 28px;
    height: 28px;
    background-image: url(/img/icon.svg);
    background-size: contain;
    vertical-align: middle;
}

.footer {
    background-color: #262626;
    padding: 12px;
    text-align: center;
    color: #fff;
    line-height: 100%;
}