/* 共通：見出しデコレーション */
.heading-deco {
    width: 24px;
    height: 24px;
    background-image: url('../img/heading-deco.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

/* 共通：コンテナ */
.common-container {    
    max-width: 1100px;
    margin: 60px auto 0px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 80px 110px;
    position: relative;
}
.common-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 24px;
    background-color: #5dabde;
    border-radius: 24px 24px 0 0;
}
/* 共通：カード */
.common-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    overflow: hidden;
    background-color: #ffffff;
}

/* 共通：トップバー */
.common-topbar {
    height: 40px;
    background-color: #5dabde;
}

/* 共通：セクション見出し */
.section__heading {
    margin-bottom: 40px;
}

.section__heading-en {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.section__heading-en span:last-child {
    font-family: 'DIN Alternate', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #3d3a2c;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.section__heading-ja {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #3d3a2c;
    letter-spacing: 1.6px;
    margin: 0;
    line-height: 1.5;
}

/* 共通：セクションコンテンツ */
.section__content {
    margin-bottom: 60px;
}

.section__title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #3d3a2c;
    letter-spacing: 1.2px;
    margin: 0 0 24px 0;
    line-height: 1.5;
}

.section__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #3d3a2c;
    letter-spacing: 0.8px;
    line-height: 2;
    opacity: 0.7;
    margin: 0;
}

/* パンくずリスト */
.breadcrumbs {
    padding: 24px 0;
    background-color: #ffffff;
}

.breadcrumbs__container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.7px;
    line-height: 1.5;
    color: rgba(61, 58, 44, 0.6);
}

.breadcrumbs__item--home {
    color: #3d3a2c;
}

.breadcrumbs__icon {
    width: 16px;
    height: 16px;
}

.breadcrumbs__text {
    white-space: nowrap;
}

.breadcrumbs__arrow {
    width: 16px;
    height: 16px;
}

.breadcrumbs__item--current {
    color: #ffb838;
}

.breadcrumbs__link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.breadcrumbs__link:hover {
    color: #ffb838;
}
.contents-buttons{
    width: 1100px;
    margin: 0 auto;
    padding: 24px;
    border-radius: 24px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
}

.contents-buttons__container {
    max-width: 1024px;
    margin: 0 auto;
}

.contents-buttons__card {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: nowrap;
}

.contents-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background-color: #5dabde;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.3s, opacity 0.3s;
    gap: 12px;
    white-space: nowrap;
}

.contents-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.contents-button__label {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.9px;
    line-height: 1.5;
    color: #ffffff;
}

.contents-button__icon {
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contents-button__arrow {
    width: 16px;
    height: 16px;
}

.hero {
    background: #5dabde;
    border-radius: 0px 0px 100px 100px;
}

.hero__bg-image {
    width: 50%;
    height: 100%;
    float: inline-end;
    border-radius: 100px;
}

.hero__title {
    background: white;
    color: black;
    text-shadow: none;
    padding: 0px 10px;
}


.hero__content {
    top: 50%;
    left: 25%;
}

/* PC: SP用改行を非表示 */
.hero__title .sp-br {
    display: none;
}
/* 説明文セクション */
.page-description {
    padding: 40px 0 60px;
    background-color: #ffffff;
}

.page-description__container {
    max-width: 972px;
    margin: 0 auto;
    padding: 0 40px;
}

.page-description__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-description__content p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.7px;
    line-height: 2;
    color: rgba(61, 58, 44, 0.7);
    margin: 0;
    text-align: left;
}
.section__content h3{
    border-left: 5px solid #5dabde;
    padding-left: 20px;
    margin-bottom: 24px;
}

/* PC版：inputimage */
.inputimage-pc {
    display: block;
}

.inputimage-sp {
    display: none;
}

/* SP対応 */
@media (max-width: 767px) {
    .hero__content {
        left: 45%;
    }


    .hero__title .sp-br {
        display: block;
    }

    .hero__title-nowrap {
        white-space: nowrap;
    }

    .common-container {
        width: 90%;
        max-width: 90%;
        margin: 60px auto 0;
        padding: 40px 20px;
    }

    .contents-buttons {
        width: 90%;
        margin: 0 auto;
        padding: 16px;
    }

    .contents-buttons__container {
        max-width: 100%;
    }

    .contents-buttons__card {
        flex-direction: column;
        align-items: center;
        padding: 0;
        gap: 8px;
    }

    .contents-button {
        width: 95%;
        max-width: 400px;
        min-width: 200px;
    }

    .page-description__container {
        padding: 0 2.5%;
    }

    .section__content {
        padding: 0 2.5%;
    }

    .inputimage-pc {
        display: none;
    }

    .inputimage-sp {
        width: 100%;
        display: block;
        margin: 20px 0;
    }

    .box-in {
        padding: 16px 8px;
    }
}