/* 画像 */
.top-section-img {
    width: 100%;
    height: auto;
    z-index: -1;
}
.top {
    position: relative;
}
/* 白い枠 */
.top-section-white-box {
    position: absolute;
    bottom: 30px;
    left: 50%;
    padding: clamp(20px, 5vw, 40px) clamp(20px, 8vw, 80px);
    transform: translate(-50%, 50%);
    background-color: #fff;
    border-radius: 20px;
}

/* ホワイトボックス内文字全体 */
.top-section-inner {
    text-align: center;
}

/* タイトル文字 */
.top-section-title {
    min-width: 264px;
    font-size: clamp(24px, 2vw, 40px);
    line-height: clamp(40px, 2vw, 60px);
    letter-spacing: 2.4px;
    font-weight: bold;
    color: #222222;
    text-align: center;
}

/* サブタイトル文字 色のみ各ページ設定 */
.top-section-sub {
    font-size: 16px;
    line-height: clamp(25px, 2vw, 45px);
    letter-spacing: 1.6px;
    font-family: "Ubuntu", sans-serif;
    font-weight: bold;
}

/* タイトル下文字 ないものもあり */
.top-section-text {
    text-align: center;
    font-size: clamp(16px, 2vw, 24px);
    line-height: 2;
    letter-spacing: clamp(1.6px, 2vw, 2.4px);
    font-weight: bold;
    padding: 95px;
    width: 100%;
}

@media screen and (min-width: 960px) {
}
@media screen and (min-width: 520px) and (max-width: 959px) {
}
@media screen and (max-width: 519px) {
    .top-section-img {
        height: 360px;
    }
    .top-section-text {
        padding: 32px;
    }
}
