@charset "utf-8";

/* accessibility common */
.accessibility_page {
    --access-navy: #1D4763;
    --access-blue: #5FC1C7;
    --access-blue-dark: #174968;
    --access-blue-bg: #EFFAFC;
    --access-green-bg: #F0F7E7;
    --access-red: #C55E60;
    color: var(--access-navy);
}
.accessibility_page sup {
    font-size: 0.65em;
}
.accessibility_page .section {
    padding: 72px 0;
}
.access_section_head {
    margin-bottom: 48px;
    text-align: center;
}
.access_section_head h2 {
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 28px;
}
.access_section_head h2:last-child {
    margin-bottom: 0;
}
.access_section_head p {
    font-size: 14px;
    line-height: 2;
}
/* accessibility commonここまで */

/* access_hero */
.access_hero.section {
    padding: 112px 0 80px;
}
.access_hero_inner {
    display: flex;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}
.access_hero_visual {
    width: 58%;
    padding-right: 64px;
    box-sizing: border-box;
}
.access_hero_visual img {
    display: block;
    width: 100%;
    height: auto;
}
.access_hero_text {
    width: 42%;
}
.access_eyebrow {
    margin-bottom: 16px;
    letter-spacing: 4px;
}
.access_hero_text h1 {
    margin-bottom: 28px;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.65;
}
.access_hero_text p:not(.access_eyebrow) {
    font-weight: 400;
    font-size: 14px;
    line-height: 2.15;
}
/* access_heroここまで */

/* access_features */
.access_features.section {
    padding-top: 48px;
}
.access_feature_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}
.access_feature_card {
    min-height: 320px;
    padding: 32px 24px 28px;
    box-sizing: border-box;
    text-align: center;
    background-color: var(--access-blue-bg);
}
.access_feature_img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
    margin-bottom: 22px;
}
.access_feature_img img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.access_feature_img_wide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.access_feature_card h3 {
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 18px;
}
.access_feature_card p {
    font-size: 13px;
    line-height: 1.85;
    text-align: center;
}
/* access_featuresここまで */

/* access_cases */
.access_cases {
    background-color: var(--access-green-bg);
}
.access_cases.section {
    padding: 80px 0 96px;
}
.access_case_list {
    max-width: 1160px;
    margin: 0 auto;
}
.access_case_item {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) 380px;
    gap: 32px;
    align-items: center;
    margin-bottom: 40px;
    padding: 32px;
    box-sizing: border-box;
    background-color: #FFF;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(29, 71, 99, 0.06);
}
.access_case_item:last-child {
    margin-bottom: 0;
}
.access_case_num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 28px;
    color: #FFF;
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    background-color: var(--access-navy);
    border-radius: 4px;
}
.access_case_category {
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.6;
}
.access_case_meta h3 {
    margin-bottom: 18px;
    font-weight: 500;
    font-size: 21px;
}
.access_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.access_tags li {
    padding: 3px 8px;
    font-weight: 500;
    font-size: 11px;
    line-height: 1.4;
    background-color: #F0F6F7;
}
.access_case_block {
    position: relative;
    margin-bottom: 20px;
}
.access_case_block:last-child {
    margin-bottom: 0;
}
.access_case_block h4 {
    position: relative;
    margin-bottom: 8px;
    padding-left: 32px;
    font-weight: 500;
    font-size: 14px;
}
.access_case_block h4::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: contain;
}
.access_requests_block h4::before {
    background-image: url("../img/accessibility/access-icon-requests.svg");
}
.access_initiatives_block h4::before {
    background-image: url("../img/accessibility/access-icon-initiatives.svg");
}
.access_case_block p {
    font-size: 13px;
    line-height: 1.9;
}
.access_case_effect {
    padding: 24px;
    box-sizing: border-box;
    background-color: #F2FBFC;
    border: 1px solid #CFECEF;
    box-shadow: 8px 8px 16px rgba(29, 71, 99, 0.08);
}
.access_case_effect h4 {
    margin-bottom: 14px;
    color: var(--access-blue);
    font-weight: 500;
    font-size: 14px;
}
.access_case_effect li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 36px;
    color: var(--access-blue);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
}
.access_case_effect li:last-child {
    margin-bottom: 0;
}
.access_case_effect li::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    width: 24px;
    height: 24px;
    background-color: #83D9DC;
    border-radius: 50%;
}
.access_case_effect li::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 7px;
    width: 9px;
    height: 5px;
    border-bottom: 2px solid #FFF;
    border-left: 2px solid #FFF;
    transform: rotate(-45deg);
}
/* access_casesここまで */

/* access_reasons */
.access_reasons.section {
    padding: 104px 0 80px;
}
.access_reason_grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 56px;
}
.access_reason_item {
    text-align: center;
}
.access_reason_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 210px;
    height: 210px;
    margin: 0 auto 32px;
}
.access_reason_icon img {
    display: block;
    width: 100%;
    height: auto;
}
.access_reason_item h3 {
    margin-bottom: 14px;
    font-weight: 500;
    font-size: 20px;
}
.access_reason_item p {
    font-size: 13px;
    line-height: 1.85;
    text-align: left;
}
/* access_reasonsここまで */

/* access_faq */
.access_faq.section {
    padding: 48px 0 104px;
}
.access_faq_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 40px;
}
.access_faq_item dt,
.access_faq_item dd {
    position: relative;
    min-height: 48px;
    padding-left: 64px;
    box-sizing: border-box;
}
.access_faq_item dt {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    padding-top: 12px;
    padding-right: 48px;
    padding-bottom: 12px;
    color: #FFF;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    background-color: #7BC6CA;
    border-radius: 4px;
}
.access_faq_item dd {
    padding-right: 16px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.9;
}
.access_faq_item dt span,
.access_faq_item dd span {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #FFF;
    font-weight: 500;
    font-size: 18px;
}
.access_faq_item dt span {
    background-color: var(--access-blue-dark);
    border-radius: 4px;
}
.access_faq_item dd span {
    background-color: var(--access-red);
    border-radius: 4px;
}
/* access_faqここまで */

/* レスポンシブ */
@media screen and (max-width: 959px) {
    .access_hero_inner {
        max-width: 720px;
    }
    .access_hero_visual {
        width: 52%;
        padding-right: 36px;
    }
    .access_hero_text {
        width: 48%;
    }
    .access_hero_text h1 {
        font-size: 28px;
    }
    .access_feature_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .access_case_item {
        grid-template-columns: 220px minmax(0, 1fr);
    }
    .access_case_effect {
        grid-column: 1 / -1;
    }
    .access_reason_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 48px 40px;
    }
    .access_faq_grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 599px) {
    .accessibility_page .section {
        padding: 56px 0;
    }
    .access_section_head {
        margin-bottom: 32px;
    }
    .access_section_head h2 {
        font-size: 23px;
    }
    .access_section_head p br {
        display: none;
    }
    .access_hero.section {
        padding: 64px 0 48px;
    }
    .access_hero_inner {
        display: block;
    }
    .access_hero_visual {
        width: 100%;
        margin-bottom: 32px;
        padding-right: 0;
    }
    .access_hero_text {
        width: 100%;
    }
    .access_hero_text h1 {
        font-size: 27px;
    }
    .access_hero_text h1 br,
    .access_hero_text p br {
        display: none;
    }
    .access_feature_grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .access_feature_card {
        min-height: auto;
    }
    .access_cases.section {
        padding: 56px 0 64px;
    }
    .access_case_item {
        display: block;
        margin-bottom: 24px;
        padding: 24px;
    }
    .access_case_meta {
        margin-bottom: 24px;
    }
    .access_case_num {
        margin-bottom: 18px;
    }
    .access_case_body {
        margin-bottom: 24px;
    }
    .access_case_effect {
        padding: 20px;
    }
    .access_case_effect li {
        font-size: 16px;
    }
    .access_reason_grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .access_reason_icon {
        width: 180px;
        height: 180px;
        margin-bottom: 24px;
    }
    .access_reason_item p {
        text-align: center;
    }
    .access_faq.section {
        padding-bottom: 72px;
    }
    .access_faq_item dt,
    .access_faq_item dd {
        padding-left: 52px;
    }
    .access_faq_item dt {
        padding-right: 40px;
        font-size: 14px;
    }
    .access_faq_item dt span,
    .access_faq_item dd span {
        width: 40px;
        height: 48px;
    }
}
