.hero-section {
    width: 100%;
    position: relative;
}

.hero-section img {
    width: 100%;
    height: auto;
}

.hero-section .pc-image {
    display: block;
}

.hero-section .sp-image {
    display: none;
}

.hero-section .title-box {
    background-color: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -100%);
    text-align: center;
    display: inline-block;
}

.hero-section .title-box .catchphrase {
    color: white;
    text-align: center;
    font-weight: bold;
    padding: 6px 10px;
    background-color: black;
    border-radius: 50px;
    font-size: .6em;
    display: inline-block;
}

.hero-section .title-box h1 {
    margin: 0;
    margin-top: -13px;
    margin-bottom: 15px;
    letter-spacing: 6px;
    font-size: 1.8em;
    color: black;
    background-color: white;
    padding: 30px 0px;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    min-width: 300px;
}


/* コンテナのスタイル */

.title-section {
    box-sizing: border-box;
    background-color: white;
    border-radius: 15px 15px 0 0;
    padding: 50px 20px;
    width: 100%;
    max-width: 100%;
    text-align: center;
    position: relative;
    left: 50%;
    margin-top: -20px;
    /* hero-sectionの下から50px外に出す */
    transform: translateX(-50%);
    z-index: 10;
}

.title-section h1 {
    font-size: 38px;
    margin-bottom: 10px;
    margin-top: 0;
    display: inline-block;
    /* タイトルの幅を取得 */
    padding: 10px 50px;
    letter-spacing: 6px;
}


/* タイトル下の線のスタイル */

.title-section .title-line {
    width: 100%;
    /* タイトル文字の幅に合わせる */
    max-width: 100%;
    /* タイトル文字を超えないようにする */
    height: 1px;
    background-color: #333;
    margin: 10px auto 0;
    /* 上に少しの余白 */
}


/* 説明文のスタイル */

.title-section .description {
    font-size: 18px;
    margin-top: 20px;
}

@media (max-width: 980px) {
    .hero-section .title-box .catchphrase {
        font-size: 12px;
        padding: 4px 8px;
    }
    .hero-section .title-box h1 {
        font-size: 24px;
    }
    .title-section h1 {
        font-size: 24px;
        padding: 10px 20px;
    }
    .title-section .description {
        font-size: 16px;
    }
    .hero-section .pc-image {
        display: none;
    }
    .hero-section .sp-image {
        display: block;
    }
}


/*780px以下の場合*/

@media (max-width: 780px) {
    .hero-section .title-box .catchphrase {
        font-size: 10px;
        padding: 4px 8px;
    }
    .hero-section .title-box h1 {
        font-size: 20px;
    }
    .title-section h1 {
        font-size: 20px;
        padding: 10px 20px;
    }
    .title-section .description {
        font-size: 14px;
        margin-top: 0;
    }
}