/* 　　　　　　　　　　　　　　　　　　　　　
　　■■■　　　　■■■　　　　■■■　　
　■■　■■　　■■　■■　　■　　■■　
　■　　　■　　■　　　■　　　　　　■　
　■　　　■　　■　　　■　　　　　　■　
　■　　　■　　■　　　■　　　　　■　　
　■　　　■　　■　　　■　　　　■　　　
　■　　　■　　■　　　■　　　■　　　　
　■　　　■　　■　　　■　　■　　　　　
　　■■■　　　　■■■　　　■■■■■　
　　　　　　　　　　　　　　　　　　　　　
　　　　　　　　　　　　　　　　　　　　　 */

/* 変数定義 */
:root {
    --black90: #1c1a1b;
    --black80: #333333;
    --black70: #433b3b;
    --black30: #cccccc;
    --orange: #ff5b00;
    --orange-2: #f95b01;
    --ffjp:
        "Hiragino Sans ProN", "ヒラギノ角ゴシック ProN", "Hiragino Sans Pro",
        "Yu Gothic UI", "游ゴシック", "MSゴシック", "メイリオ", Meiryo, Osaka,
        sans-serif;
    --ffNoto: "Noto Sans JP", sans-serif;
}

/* ====================================================== */
/*                     Header                             */
/* ======================================================= */
.header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 80px;
    transition: background 0.3s;
    position: fixed;
    top: 0;
    z-index: 99;
}

.header .header__logo {
    display: flex;
    align-items: end;
    gap: 20px;
    margin-left: 40px;
}

.header .header__logo .logo--image path {
    fill: #fff;
}

.header .header--title {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

.header .header__entry--wrap .entry--button {
    width: 100%;
    padding-right: 50px;
    color: #bbbbbb;
    background: #fff;
    border: 1px solid #bbbbbb;
}

.header .header__entry--wrap .entry--button::after {
    background: #bbbbbb;
}

.header .header__entry--wrap .entry--button span {
    background: #bbbbbb;
}

.header .header__entry--wrap .entry--button span {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

/* HOVER */

.header .header__entry--wrap .entry--button:hover {
    color: var(--orange);
    background: #fff;
    border: 1px solid #bbbbbb;
}

.header .header__entry--wrap:hover .entry--button {
    color: var(--orange);
    background: #fff;
    border: 1px solid var(--orange);
}

.header .header__entry--wrap:hover .entry--button::after {
    background: var(--orange);
}

.header .header__entry--wrap:hover .entry--button span {
    background: var(--orange);
}

.header .header__entry--wrap:hover .entry--button span {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

/* -------------- */
/* 固定後のヘッダー */
/* ------------- */
.header.is-passed {
    background: hsl(0, 0%, 100%, 88%);
    border-bottom: 2px solid var(--orange);
}

.header.is-passed .header__logo .logo--image path {
    fill: #fe9a45;
}

.header.is-passed .header--title {
    color: #000;
}

/* エントリーボタン色変わる */
.header.is-passed .header__entry--wrap .entry--button {
    width: 100%;
    padding-right: 50px;
    color: #fff;
    background: var(--orange);
    border: 1px solid var(--orange);
}

.header.is-passed .header__entry--wrap .entry--button::after {
    background: #fff;
}

.header.is-passed .header__entry--wrap .entry--button span {
    background: #fff;
}

.header.is-passed .header__entry--wrap .entry--button span {
    border-top: 2px solid var(--orange);
    border-right: 2px solid var(--orange);
}

/* HOVER */
.header.is-passed .header__entry--wrap:hover .entry--button {
    color: var(--orange);
    background: #fff;
    border: 1px solid var(--orange);
}

.header.is-passed .header__entry--wrap:hover .entry--button::after {
    background: var(--orange);
}

.header.is-passed .header__entry--wrap:hover .entry--button span {
    background: var(--orange);
}

.header.is-passed .header__entry--wrap:hover .entry--button span {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

/* =============================================== */
/*                      HERO                       */
/* =============================================== */
.hero-area {
    height: 720px;
    background: url(../image/hero_bg.jpg) no-repeat center center/cover;
}
.hero-area__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 120px;
}

.hero-area__copy01 {
    font-size: 28px;
    font-weight: 700;
    line-height: 5.2vw;
    padding-left: 3.5vw;
    margin-bottom: 20px;
}
.hero-area__copy01--strong {
    font-size: 42px;
    font-weight: 700;
    color: white;
    display: inline-block;
    position: relative;
    margin-right: 3vw;
    z-index: 0;
}
.hero-area__copy01--strong::before {
    content: "";
    width: calc(100% + 4vw);
    height: 100%;
    background-color: var(--orange);
    position: absolute;
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    top: 0;
    left: -2vw;
    z-index: -1;
}
.hero-area__copy02 {
    font-size: 38px;
    font-weight: 700;
}

.hero-area__copy03 {
    font-size: 58px;
    font-weight: 800;
    font-family: var(--ffNoto);
    line-height: 2;
}
.hero-area__copy03--strong {
    color: var(--orange);
}

.hero-area__copy span {
    font-size: 72px;
}

.hero-area__feature-box {
    width: 50%;
    display: flex;
    gap: 30px;
    margin: 15px 0;
}

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

.hero-area__entry-button,
.entry--button {
    color: #fff;
    padding: 18px 20px;
    display: block;
    background: var(--orange);
    border: 1px solid var(--orange);
    position: relative;
    font-family: var(--ffNoto);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 24px;
    text-align: center;
    box-shadow: 5px 8px 15px -6px #777777;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-area__entry-button:hover,
.entry--button:hover {
    background: #ffffff;
    color: var(--orange);
    border: 1px solid var(--orange);
}

.hero-area__entry-button::after,
.entry--button::after {
    display: block;
    content: "";
    width: 25px;
    height: 25px;
    background: #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    transition: all 0.3s;
}

.hero-area__entry-button span,
.entry--button span {
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--orange);
    border-right: 2px solid var(--orange);
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    right: 25px;
    z-index: 50;
    transition: all 0.3s;
}

.hero-area__entry-button:hover::after,
.entry--button:hover::after {
    background-color: var(--orange);
}

.hero-area__entry-button:hover span,
.entry--button:hover span {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.hero-area__entry-button {
    width: 480px;
    margin: 40px auto 40px 60px;
}

.entry--button {
    width: 560px;
    margin: 20px auto;
}

.under-button {
    margin-bottom: 80px;
}

/* ===================== */
/*      SmartPhone       */
/* ===================== */
@media screen and (max-width: 480px) {
    .header {
        align-items: end;
        padding: 15px 5px;
        background: #e3e7e8;
    }

    .header .header__logo {
        gap: 5px;
        margin-left: 10px;
    }

    .header .header__logo .logo--image {
        width: 47%;
    }

    .header .header--title {
        font-size: 14px;
    }

    .header__entry--wrap {
        min-width: 130px;
    }

    .header .entry--button {
        margin: 0 auto;
        padding: 12px 10px;
        font-size: 12px;
    }

    .hero-area__entry-button::after {
        width: 20px;
        height: 20px;
    }

    .hero-area__entry-button span {
        width: 6px;
        height: 6px;
    }

    /* HERO AREA */
    .hero-area {
        height: 100svh;
        background: radial-gradient(circle,rgba(212, 212, 212, 1) 0%, rgba(212, 210, 210, 1) 50%, rgba(212, 212, 212, 1) 100%);
        background-image: url(../image/hero_bg_sp.png);
        background-size: cover;
        background-position: center bottom; /* ←ここが重要  */
        background-repeat: no-repeat;

        padding-bottom: 10px;
    }

    .hero-area__inner {
        padding: 0 10px;
        padding-top: 100px;
    }

    /* --- copy01 --- */
    .hero-area__copy01 {
        font-size: 14px;
        line-height: 2.2;
        padding-left: 10px;
        margin-bottom: 12px;
    }

    .hero-area__copy01--strong {
        font-size: 18px;
        margin-right: 8px;
    }

    .hero-area__copy01--strong::before {
        width: calc(100% + 12px);
        left: -6px;
    }

    /* --- copy02 --- */
    .hero-area__copy02 {
        font-size: 2.75vh;
        margin-bottom: 8px;
    }

    /* --- copy03 --- */
    .hero-area__copy03 {
        display: flex;
        flex-direction: column;
        font-size: 7.25vh;
        font-weight: 800;
        line-height: 1.2;
        margin: 20px 0;
    }

    /* --- feature --- */
    .hero-area__feature-box {
        width: 60%;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: space-between;
        gap: 15px;
        margin: 0 auto 0 0;
    }

    .hero-area__feature-box img {
        display: block;
        width: auto;
        height: 65px;
        flex-shrink: 0;
    }

    /* --- button --- */
    .hero-area__entry-button {
        width: 70%;
        margin: 40px 0 0;
        font-size: 16px;
        padding: 14px;
        border: 1px solid #fff;
    }

    .hero-area__entry-button::after {
        width: 20px;
        height: 20px;
        right: 10px;
    }

    .hero-area__entry-button span {
        right: 18px;
    }

    .entry--button {
        width: 80%;
        margin: 20px auto;
    }

    .under-button {
        width: 80%;
        margin-bottom: 80px;
    }
}
