/* ========================================================
   Custom Properties
=========================================================*/
:root {
    --text-color: #333;
    --main-color: #164070;
    --sub-color: #9ED6FF;
    --bg-color: rgba(225, 241, 253, 0.6);
    --gray-color: #E8E8E8;
    --line-color: #E8E8E8;

    --margin-xxl: 120px;
    --margin-xl: 80px;
    --margin-l: 56px;
    --margin-m: 48px;
    --margin-ms: 32px;
    --margin-s: 24px;
    --margin-xs: 16px;
}

@media (max-width: 767.98px) {
    :root {
        --margin-xxl: 80px;
        --margin-xl: 60px;
        --margin-l: 40px;
        --margin-m: 32px;
        --margin-ms: 24px;
        --margin-s: 16px;
        --margin-xs: 8px;
    }
}


/* ========================================================
   Common
=========================================================*/
html {
    font-size: 62.5%;
    box-sizing: border-box;
}

body {
    font-family: "Lato", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギゴ ProN W3", Arial, nc3Jp, sans-serif;
    background: #FFF;
    color: var(--text-color);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ドロワーメニューが開いた時にbodyのスクロールを防ぐ */
body.drawer-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

@media (min-width: 1280px) {
    body {
        font-size: 1.6rem;
    }
}

section {
    position: relative;
    z-index: 2;
}

p {
    line-height: 1.7;
}

@media (max-width: 991.98px) {
    p {
        line-height: 1.7;
    }
}

@media (min-width: 576px) {
    .xs {
        display: none !important;
    }
}

@media (max-width: 575.98px) {
    .xsnon {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .sp {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    .pc {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    .sp_left {
        text-align: left;
    }
}

.flex_columns {
    display: flex;
    gap: 5vw;
    align-items: center;
    justify-content: space-between;
}

.flex_columns-center {
    align-items: center;
    justify-content: center;
    gap: 24px;
}

@media (max-width: 991.98px) {
    .flex_columns {
        flex-wrap: wrap;
        gap: 24px;
    }

    .flex_column {
        width: 100% !important;
    }
}

@media (min-width: 992px) {
    .row_reverse {
        flex-direction: row-reverse;
    }
}

@media (max-width: 991.98px) {
    .col_reverse {
        flex-direction: column-reverse;
    }
}

.deco {
    position: absolute;
}

.ft_serif {
    font-family: "Noto Serif JP", serif;
}

.mt-1 {
    margin-top: 16px;
}

/* ========================================================
   Components
=========================================================*/

/* Container
-----------------------------------*/
.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

.container.is_slim {
    max-width: 1000px;
}

@media (max-width: 575.98px) {
    .container {
        width: 90%;
    }
}


/* Title
-----------------------------------*/
.section_title.is_large {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: var(--margin-l);
}

.section_title.is_large .en {
    font-size: clamp(48px, calc((106 / 1440) * 100vw), 106px);
    font-weight: 700;
    letter-spacing: 0.09em;
    line-height: 1;
    color: #E1F1FD;
}

.section_title.is_large .ja {
    font-size: clamp(24px, calc((32 / 1440) * 100vw), 32px);
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.5;
    color: #333;
    transform: translateY(-24px);
    margin-bottom: -24px;
}

@media (max-width: 767.98px) {
    .section_title.is_large .ja {
        transform: translateY(-18px);
        margin-bottom: -18px;
    }
}

.section_title.is_small {
    display: flex;
    align-items: flex-end;
    gap: 32px;
    margin-bottom: var(--margin-s);
}

.section_title.is_small .en {
    font-size: clamp(28px, calc((34 / 1440) * 100vw), 34px);
    font-weight: 500;
    line-height: 1;
    color: var(--main-color);
    letter-spacing: 0.09em;
}

.section_title.is_small .ja {
    font-size: 16px;
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.5;
    color: #333;
    line-height: 1;
    color: var(--main-color);
    padding-bottom: 4px;
    position: relative;
}

.section_title.is_small .ja:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -16px;
    width: 1px;
    height: 100%;
    background: var(--main-color);
}

.section_title.is_small.is_white .en,
.section_title.is_small.is_white .ja {
    color: #FFF;
}

.section_title.is_small.is_white .ja:before {
    background: #FFF;
}

/* Button
-----------------------------------*/
.section_btn {
    display: block;
    width: fit-content;
    padding: 16px 70px;
    border: 1px solid var(--main-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.section_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    transition: left 0.3s ease;
    z-index: 1;
}

.section_btn span {
    text-align: center;
    color: var(--main-color);
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.section_btn::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 13px;
    width: 30px;
    height: 6px;
    background: url(../images/btn_arrow.svg) no-repeat center center / contain;
    z-index: 2;
    transition: background-image 0.3s ease;
}


.section_btn:hover::before {
    left: 0;
}

.section_btn:hover span {
    color: white;
}

.section_btn:hover::after {
    background: url(../images/btn_arrow_white.svg) no-repeat center center / contain;
}

.section_btn.is_center {
    margin-left: auto;
    margin-right: auto;
    margin-top: var(--margin-l);
}

.section_btn.is_blue{
    background: var(--main-color);
    color: #FFF;
    border: 1px solid var(--main-color);
}

.section_btn.is_blue::before {
    background: #FFF;
}

.section_btn.is_blue span{
    color: #FFF;
}

.section_btn.is_blue:hover{
    background: var(--main-color);
    color: var(--main-color);
}

.section_btn.is_blue::after{
    background: url(../images/btn_arrow_white.svg) no-repeat center center / contain;
}

.section_btn.is_blue:hover::after{
    background: url(../images/btn_arrow.svg) no-repeat center center / contain;
}

.section_btn.is_blue:hover::before{
    left: 0;
}

.section_btn.is_blue:hover span{
    color: var(--main-color);
}

/* Category Navigation
-----------------------------------*/
.category_navigation {
    margin-bottom: var(--margin-l);
}

.category_nav_buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

@media (max-width: 767.98px) {
    .category_nav_buttons {
        gap: 12px;
    }
}

.category_nav_btn {
    display: inline-block;
    padding: 10px 24px;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.category_nav_btn:visited {
    color: var(--main-color);
}

.category_nav_btn:hover {
    background: var(--main-color);
    color: white;
}

.category_nav_btn.active {
    background: var(--main-color);
    color: white;
}

@media (max-width: 767.98px) {
    .category_nav_btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}


/* ========================================================
   AOS Animation Customization
=========================================================*/
[data-aos="fade-up"] {
    transform: translate3d(0, 20px, 0) !important;
}

[data-aos="fade-up"].aos-animate {
    transform: translate3d(0, 0, 0) !important;
}

/* ========================================================
   Header
=========================================================*/
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
}

@media (max-width: 767.98px) {
    header {
        position: relative;
    }
}

.header_container {
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    transition: all .2s ease;
}

@media (max-width: 991.98px) {
    .header_container {
        padding: 10px 8px;
    }
}

.scrolled .header_container {
    background-color: rgba(255, 255, 255, .8);
}

.header_logo {
    z-index: 100000;
}

.header_logo_img {
    width: 280px;
    transition: width 0.3s ease, max-width 0.3s ease;
}

/* ロゴ画像が300px以上の場合のみ縮小 */
@media (min-width: 1280px) {
    .scrolled .header_logo_img {
        width: 200px;
    }
}

@media (max-width: 991.98px) {
    .header_logo_img {
        width: 200px;
    }
}

body.admin-bar header {
    top: 32px !important;
}

@media screen and (max-width: 782px) {
    body.admin-bar header {
        top: 46px !important;
    }

    body.admin-bar header.scrolled {
        top: 0 !important;
    }
}


/* ========================================================
   PC Navigation
=========================================================*/
.nav_pc {
    display: flex;
    gap: 50px;
    align-items: center;
}

@media (max-width: 767.98px) {
    .nav_pc {
        display: none;
    }
}

.nav_pc_list {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav_pc_list li a {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1;
    transition: .3s ease;
    position: relative;
}

@media (max-width: 991.98px) {
    .nav_pc_list li a {
        font-size: 14px;
    }
}

.nav_pc_list li a::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--main-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav_pc_list li a:hover::after {
    width: 20px;
}

@media (max-width: 1279.98px) {
    .nav_pc {
        gap: 24px;
    }
}


/* ========================================================
   SP Navigation
=========================================================*/
.nav_sp,
.scrolled .nav_sp {
    position: fixed !important;
    bottom: 0;
    right: 0;
    z-index: 10000;
}

.menu_btn {
    position: relative;
    display: block;
    width: 56px;
    height: 56px;
    cursor: pointer;
    z-index: 10000;
    background: var(--main-color);
}

@media (min-width: 768px) {
    .nav_sp {
        display: none;
    }
}

.menu_btn span {
    position: absolute;
    width: 24px;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFF;
    transition: .4s;
}

.top_bar {
    top: calc(35% - 2px / 2);
}

.center_bar {
    top: calc(50% - 2px / 2);
}

.under_bar {
    top: calc(65% - 2px / 2);
}

#open:checked~.menu_btn>.top_bar {
    top: calc(50% - 2px / 2);
    transform: translateX(-50%)rotate(45deg);
}

#open:checked~.menu_btn>.center_bar {
    opacity: 0;
}

#open:checked~.menu_btn>.under_bar {
    top: calc(50% - 2px / 2);
    transform: translateX(-50%)rotate(-45deg);
}

#open {
    display: none;
}

.drawer {
    width: 100vw;
    position: fixed;
    top: -24px;
    left: -40px;
    transition: opacity 0.5s ease;
    background: #FFF;
    padding: 6.94vw;
    z-index: 1000;
    overflow: scroll;
    opacity: 0;
    display: block;
    pointer-events: none;
}

@media (max-width: 991.98px) {
    .drawer {
        top: 0;
        left: 0;
    }
}

.drawer.open {
    opacity: 1;
    min-height: 100vh;
    pointer-events: inherit;
}

.drawer.close {
    opacity: 0;
    pointer-events: none;
}

.drawer_menu {
    display: flex;
    flex-direction: column;
    position: relative;
    list-style: none;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: var(--margin-l);
}

.drawer_menu li {
    width: 100%;
    position: relative;
    text-align: left;
    letter-spacing: 0.06em;
    text-transform: capitalize;
    font-style: normal;
}

@media (min-width: 768px) {
    .drawer_menu {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
    }

    .drawer_menu li {
        width: calc(50% - 12px);
    }
}

.drawer_menu li a {
    display: block;
    font-size: 18px;
    padding: 14px;
    font-weight: 500;
    color: var(--text-color);
    border-bottom: 1px solid var(--line-color);
    position: relative;
    text-align: left;
}

.drawer_menu li a::after {
    background: url(../images/btn_arrow.svg) no-repeat center center / contain;
    content: '';
    display: block;
    width: 20px;
    aspect-ratio: 24 / 17;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s ease;
}

.drawer_menu li a:hover::after {
    right: -4px;
}


/* ========================================================
    Fixed Buttons
=========================================================*/
.fixed_button a {
    position: fixed;
    right: 0;
    bottom: 0;
    top: auto;
    left: auto;
    transform: none;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 140px;
    height: 140px;
    background: var(--main-color);
    transition: all 0.3s ease;
}

.fixed_button a:hover,
.fixed_button a:visited {
    color: #fff;
}

.button_text {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
}

.fixed_arrow {
    width: 37px;
    transition: transform 0.3s ease;
}


@media (min-width: 768px) {
    .fixed_button a:hover {
        background: #134F94;
    }

    .fixed_button a:hover .fixed_arrow {
        transform: translateX(4px);
    }
}

@media (max-width: 767.98px) {
    .fixed_button a {
        width: calc(100% - 56px);
        height: 56px;
        top: auto;
        bottom: 0;
        left: 0;
        right: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        background: #E1F1FD;

    }

    .fixed_button .button_text {
        font-size: 15px;
        font-weight: 500;
        text-align: center;
        color: var(--main-color);
        line-height: 1.2;
    }

    .fixed_arrow {
        width: 20px;
    }
}

/* Fixed Button停止時のスタイル（PC版のみ、フッター手前での絶対位置指定） */
@media (min-width: 768px) {
    .fixed_button.stop_at_footer a {
        position: absolute;
    }
}


/* ========================================================
   Footer
=========================================================*/
footer {
    position: relative;
    z-index: 2;
    background: var(--main-color);
}

@media (max-width: 767.98px) {
    footer {
        padding-bottom: 100px;
    }
}

footer .container {
    padding: 40px 0;
    width: 80%;
    max-width: 1440px;
    margin: 0 auto;
}

@media (max-width: 1226.98px) {
    footer .container {
        width: 90%;
    }
}

@media (max-width: 575.98px) {
    footer .container {
        padding: 40px 0;
    }
}

.footer_logo {
    width: 200px;
}

@media (max-width: 1226.98px) {
    .footer_logo {
        width: 180px;
    }
}

@media (max-width: 767.98px) {
    .footer_logo {
        width: 160px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

.footer_columns {
    display: flex;
    justify-content: space-between;
}

.footer_nav_list {
    list-style: none;
    display: flex;
    gap: 0;
}

@media (max-width: 991.98px) {
    .footer_nav_list {
        gap: 16px;
        row-gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.footer_nav_list li a {
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    transition: .3s ease;
    padding: 0 25px;
    color: #FFF;
}

@media (max-width: 1440px) {
    .footer_nav_list li a {
        font-size: 14px;
    }
}

@media (max-width: 767.98px) {
    .footer_nav_list li a {
        padding: 0;
        border-right: none;
    }
}

.footer_nav_list li a:hover {
    color: #FFF;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer_copyright {
    padding-bottom: 24px;
}

.copyright {
    color: #FFF;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1px;
    text-align: center;
}

@media (max-width: 991.98px) {
    footer .logo_text {
        text-align: center;
    }

    .footer_inner {
        flex-direction: column;
        gap: 20px;
    }

    .footer_columns {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        justify-content: center;
        padding-bottom: 0;
    }

    footer .logo {
        margin-right: inherit;
        width: 100%;
    }

    .copyright {
        font-size: 12px;
    }
}

/* ========================================================
   TOP
=========================================================*/
/* FV
-----------------------------------*/
.fv {
    position: relative;
    padding-top: 100px;
    overflow: visible;
}

@media (max-width: 767.98px) {
    .fv {
        padding-top: 72px;
    }
}

.fv_bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 68.61%;
    height: 90%;
    z-index: 1;
    background: #E1F1FD;
}

@media (max-width: 767.98px) {
    .fv_bg {
        transform: translateY(-72px);
    }
}

.fv_content {
    width: 90.28%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    aspect-ratio: 1300 / 533;
    background: url(../images/fv_bg_pc.jpg) no-repeat center center / cover;
    opacity: 0;
    animation: fvBgFadeIn 500ms ease-out forwards;
}

@media (max-width: 767.98px) {
    .fv {
        padding: 0 15px;
    }

    .fv_content {
        width: 100%;
        aspect-ratio: 690 / 850;
        background: url(../images/fv_bg_sp.jpg) no-repeat center center / cover;
        opacity: 0;
        animation: fvBgFadeIn 500ms ease-out forwards;
    }
}

.fv_txt_wrap {
    position: absolute;
    left: 40px;
    bottom: 83px;
}

@media (max-width: 767.98px) {
    .fv_txt_wrap {
        left: 15px;
        bottom: 10vw;
    }
}

.fv_txt {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
}

.fv_txt span {
    background: #FFF;
    box-shadow: 0 4px 26px 0 rgba(0, 0, 0, 0.25);
    font-weight: 500;
    font-size: clamp(22px, calc((36 / 1440) * 100vw), 48px);
    color: var(--main-color);
    padding: 14px 16px;
    line-height: 1;
}

.fv_eng {
    position: absolute;
    right: -50px;
    bottom: 0;
    transform: translateY(80%);
    width: 25.49vw;
    opacity: 0;
    animation: fvEngFadeIn 500ms ease-out 200ms forwards;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@keyframes fvEngFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fvBgFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 767.98px) {
    .fv_eng {
        width: 60vw;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Message
-----------------------------------*/
.message {
    margin-top: 40px;
    position: relative;
}

.message_bg {
    position: absolute;
    aspect-ratio: 595 / 366;
    background: url(../images/message_bg.jpg) no-repeat center center / cover;
    top: 0;
    right: 0;
    width: 41.32vw;
    z-index: 1;
    opacity: 0.8;
}

@media (max-width: 575.98px) {
    .message_bg {
        width: 61.32vw;
        z-index: 1;
        opacity: 0.6;
    }
}

.message .container {
    position: relative;
    z-index: 2;
}

@media (min-width: 1440px) {
    .message .container.is_slim {
        max-width: 1200px;
    }
}

@media (max-width: 991.98px) {
    .message .container {
        padding-top: 40px;
    }
}

.message_txt_wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: flex-end;
    align-items: flex-end;
    padding-bottom: var(--margin-l);
}

@media (min-width: 1440px) {
    .message_txt_wrap {
        padding-bottom: var(--margin-xxl);
    }
}

.message_txt {
    width: 590px;
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
}

@media (max-width: 991.98px) {
    .message_txt {
        width: 100%;
    }
}

.message_name {
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: flex-end;
    align-items: flex-end;
}

.message_name span {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.message_img_box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32.99vw;
    aspect-ratio: 475 / 306;
}

@media (min-width: 1440px) {
    .message_img_box {
        max-width: 480px;
        left: 10%;
    }
}

@media (max-width: 991.98px) {
    .message_img_box {
        position: relative;
        width: 100%;
        max-width: 360px;
    }
}

.message_img_wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.message_img_box img {
    width: 84%;
    aspect-ratio: 400 / 242;
    margin-left: 0;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.message_img_bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 41.26%;
    aspect-ratio: 196 / 141;
    background: #E1F1FD;
    z-index: 1;
}

/* News
-----------------------------------*/
.news {
    padding: var(--margin-xl) 0;
    position: relative;
}
.news_columns{
    position: relative;
    align-items: flex-start;
    gap: 48px;
}

@media (max-width: 991.98px) {
    .news_columns {
        flex-direction: column;
    }
}

.news_columns .flex_column {
    width: 100%;
}

.news_list {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
}

.news_list article {
    position: relative;
    border-bottom: 1px solid var(--line-color);
}

.news_list article a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    gap: 8px;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .news_list article a {
        padding: 16px;
    }
}

.news_list article:first-child {
    border-top: 1px solid var(--line-color);
}

.news_article_content {
    display: flex;
    gap: 4px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.news_article_info {
    display: flex;
    align-items: center;
    gap: 24px;
}

@media (max-width: 767.98px) {
    .news_article_info {
        gap: 16px;
    }
}

.news_article_date {
    font-weight: 400;
    font-size: 14px;
    white-space: nowrap;
}

.news_item_category {
    min-width: 80px;
    position: relative;
    padding: 2px 8px;
    font-size: 13px;
    white-space: nowrap;
    font-weight: 400;
    border: 1px solid var(--text-color);
    text-align: center;
}

.news_article_title {
    width: 100%;
    line-height: 1.5;
    font-weight: 400;
    transition: color 0.3s ease-in-out;
}

.news_list article a:hover .news_article_title {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.news .section_btn {
    margin-top: 30px;
    margin-right: 0;
    margin-left: auto;
}

@media (max-width: 767.98px) {
    .news .section_btn {
        margin-right: auto;
    }
}


/* Information
-----------------------------------*/
.information {
    padding: var(--margin-l) 0;
    background: var(--main-color);
    position: relative;
}

.information .section_title.is_small {
    margin-bottom: 40px;
}

.information_content {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.information_content li {
    width: 100%;
    max-width: 200px;
}

@media (max-width: 991.98px) {
    .information .section_title.is_small {
        justify-content: center;
    }

    .information_content {
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
        flex-wrap: wrap;
    }

    .information_content li {
        width: calc(33.33% - 8px);
    }
}

@media (max-width: 767.98px) {
    .information_content {
        max-width: unset;
    }

    .information .section_title.is_small {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 8px;
    }

    .information .section_title.is_small .ja:before {
        left: 0;
        bottom: -16px;
        width: 24px;
        height: 1px;
    }
}

@media (max-width: 575.98px) {
    .information_content li {
        width: calc(50% - 6px);
    }
}

.information_content li a {
    display: block;
    width: 100%;
    aspect-ratio: 190 / 227;
    background: #FFF;
    border-radius: 4px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    position: relative;
}

@media (max-width: 767.98px) {
    .information_content li a {
        aspect-ratio: 1 / 1;
    }
}

.information_content li a::after {
    content: '';
    position: absolute;
    bottom: 16px;
    transform: translateY(-50%);
    right: 13px;
    width: 30px;
    height: 6px;
    background: url(../images/btn_arrow.svg) no-repeat center center / contain;
    z-index: 2;
    transition: 0.3s ease;
}

.information_content li a:hover::after {
    right: 8px;
}

.information_content_inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    height: 100%;
}

.information_content_inner span {
    font-size: clamp(16px, calc((18 / 1440) * 100vw), 18px);
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    transition: 0.3s ease;
}

.information_content li a:hover .information_content_inner span {
    letter-spacing: 0.09em;
}

.information_content_inner img {
    width: 50px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    flex-shrink: 0;
    transition: 0.3s ease;
}

@media (max-width: 767.98px) {
    .information_content_inner img {
        width: 40px;
        height: 40px;
    }
}

.information_content li a:hover .information_content_inner img {
    transform: scale(1.1);
}

.information_title_en {
    position: absolute;
    top: 12px;
    right: 9px;
    writing-mode: vertical-rl;
    font-size: 12px;
    line-height: 1;
    color: var(--sub-color);
    font-weight: 400;
    transition: 0.3s ease;
}

@media (max-width: 767.98px) {
    .information_title_en {
        top: 10px;
        right: 6px;
        font-size: 10px;
    }
}

/* Activity
-----------------------------------*/
.activity {
    padding: var(--margin-xl) 0;
    position: relative;
}

.activity_contents.flex_columns {
    align-items: flex-start;
}

.activity_left {
    width: 42vw;
    align-self: flex-start;
}

@media (min-width: 992px) {
    .activity_left {
        position: sticky;
        top: 80px;
    }
}

.activity_right {
    width: 58vw;
    height: 100%;
    overflow-y: auto;
}

.activity_txt {
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
    margin-bottom: 40px;
}

@media (max-width: 991.98px) {
    .activity_txt {
        margin-bottom: 0;
    }
}

.activity_image_box {
    position: relative;
    aspect-ratio: 533 / 434;
    width: 100%;
}

.activity_image_box.sp {
    margin-top: 32px;
}

.activity_image_01 {
    position: absolute;
    top: 0;
    left: 0;
    width: 84.24%;
    aspect-ratio: 449 / 274;
}

.activity_image_02 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50.09%;
    aspect-ratio: 267 / 206;
}

.activity_list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.activity_item {
    background: #E1F1FD;
    padding: 32px;
}

@media (max-width: 767.98px) {
    .activity_item {
        padding: 24px;
    }
}

.activity_item h3 {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 16px;
}

@media (max-width: 767.98px) {
    .activity_item h3 {
        gap: 24px 16px;
    }
}

.activity_item_number {
    font-family: "Jost", sans-serif;
    font-size: clamp(24px, calc((28 / 1440) * 100vw), 28px);
    color: var(--main-color);
    line-height: 1;
    letter-spacing: 0.1em;
}

.activity_item_title {
    font-size: clamp(18px, calc((24 / 1440) * 100vw), 24px);
    color: var(--main-color);
    font-weight: 500;
    position: relative;
    letter-spacing: 0.08em;
    line-height: 1;
}

@media (max-width: 767.98px) {
    .activity_item_title {
        line-height: 1.5;
    }
}

.activity_item_title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -15px;
    width: 1px;
    height: 100%;
    background: var(--main-color);
}

.activity_item_title::before {
    left: -12px;
}

.activity_item_btn .section_btn {
    margin: 16px 0 0 auto;
}

@media (max-width: 767.98px) {
    .activity_item_btn .section_btn {
        margin: 16px auto;
    }
}

/* School Pharmacist
-----------------------------------*/
.school_pharmacist {
    padding: var(--margin-xl) 0;
    position: relative;
    overflow: hidden;
}

.school_pharmacist_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 69.38%;
    height: 100%;
    background: rgba(244, 244, 244, 0.60);
    z-index: 1;
}

.school_pharmacist .container {
    position: relative;
    z-index: 2;
}

.school_pharmacist .message_txt {
    width: 566px;
    margin-bottom: var(--margin-l);
}

@media (max-width: 991.98px) {
    .school_pharmacist .message_txt {
        width: 100%;
    }
}

.school_pharmacist_img_box {
    aspect-ratio: 487 / 523;
    width: 33.82vw;
    max-width: 487px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

@media (max-width: 991.98px) {
    .school_pharmacist_img_box {
        position: relative;
        width: 90%;
        margin-left: auto;
        max-width: 500px;
        top: unset;
        transform: translateY(0);
        margin-top: 32px;
        aspect-ratio: 495 / 416;
    }
}

.school_pharmacist_img_wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.school_pharmacist_img_01_pc {
    position: absolute;
    top: 0;
    right: 0;
    width: 56.67%;
    aspect-ratio: 276.99 / 344.6;
    object-fit: cover;
    z-index: 2;
}

.school_pharmacist_img_01_sp {
    display: none;
}

@media (max-width: 991.98px) {
    .school_pharmacist_img_01_pc {
        display: none;
    }

    .school_pharmacist_img_01_sp {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 56.67%;
        display: block;
        aspect-ratio: 277 / 230;
        object-fit: cover;
        z-index: 2;
    }
}

.school_pharmacist_img_02 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 49.94%;
    aspect-ratio: 243.19 / 243.19;
    object-fit: cover;
    z-index: 2;
}

.school_pharmacist_img_wrap::after {
    content: '';
    position: absolute;
    display: block;
    bottom: 17.59%;
    right: -16%;
    width: 29.98%;
    aspect-ratio: 146 / 132;
    background: #E1F1FD;
    z-index: 1;
}


/* Organization
-----------------------------------*/
.organization {
    margin-top: var(--margin-m);
    padding: var(--margin-l) 0;
    position: relative;
}

.organization_bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 71.25vw;
    height: 100%;
    background: #EDF7FE;
    z-index: 1;
}

.organization .container {
    position: relative;
    z-index: 2;
}


.organization .section_title.is_small {
    margin-bottom: var(--margin-l);
}

.organization_content {
    background: #FFF;
    padding: 32px;
    border: 1px solid var(--main-color);
}

@media (max-width: 767.98px) {
    .organization_content {
        padding: 16px;
        border: 1px solid var(--line-color);
    }
}

.organization_item {
    display: flex;
    align-items: stretch;
}

.organization_item dt {
    font-size: 16px;
    font-weight: 600;
    color: var(--main-color);
    text-align: center;
    width: 130px;
    padding: 24px 0;
    border-bottom: 1px solid var(--main-color);
}

.organization_item dd {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    padding: 24px 32px;
    border-bottom: 1px solid var(--line-color);
}

@media (max-width: 767.98px) {
    .organization_item dd {
        padding: 16px;
    }
}

.organization_item dd ul {
    width: 100%;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 40px;
    row-gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

@media (max-width: 767.98px) {
    .organization_item dd ul {
        gap: 16px;
        row-gap: 8px;
    }
}

/* Contact
-----------------------------------*/
.contact {
    padding: var(--margin-xxl) 0;
    background: url(../images/contact_bg.jpg) no-repeat center top / cover;
}

.contact .container {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 34px 0 rgba(22, 64, 112, 0.21);
    padding: 80px 0 64px;
    display: flex;
    gap: 0;
    align-items: center;
}

@media (max-width: 767.98px) {
    .contact .container {
        flex-direction: column;
        padding: 24px 0 16px;
    }
}

.contact_title{
    color: rgba(22, 64, 112, 0.70);
    font-size: clamp(42px, calc((86 / 1440) * 100vw), 86px);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.1em;
}

.contact_wrap{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

@media (max-width: 767.98px) {
    .contact_wrap{
        padding: 32px 0;
    }
}

.contact_wrap.is_first::after{
    content: '';
    display: block;
    height: 100%;
    width: 1px;
    background: var(--line-color);
    position: absolute;
    top: 0;
    right: 0;
}

@media (max-width: 767.98px) {
    .contact_wrap.is_first::after{
        top:unset;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 1px;
    }
}

.contact_wrap h3{
    margin-bottom: 8px;
}

.contact_wrap h3,
.membership_txt{
    font-size: 18px;
    font-weight: 400;
    color: var(--main-color);
    line-height: 1.5;
    letter-spacing: 0.08em;
    text-align: center;
}

@media (max-width: 575.98px) {
    .contact_wrap h3,
    .membership_txt{
        font-size: 16px;
    }
}

.membership_txt{
    line-height: 2;
}

.contact_tel{
    display: flex;
    align-items: center;
    color: var(--main-color);
    gap: 8px;
}

@media (max-width: 767.98px) {
    .contact_tel{
        flex-direction: column;
        gap: 0;
    }
}

.contact_tel .tel_num{
    font-size: clamp(18px, calc((22 / 1440) * 100vw), 22px);
}

.contact_tel .tel_num a{
    text-decoration: none;
}

.contact_tel .tel_num a:hover,
.contact_tel .tel_num a:visited{
    text-decoration: none;
    color: var(--main-color);
}

.contact_tel .fax_num{
    font-size: 14px;
}

.contact .section_btn{
    margin-top: 16px;
}


/* ========================================================
   PAGE
=========================================================*/
@media (min-width: 768px) {
    .page_content{
        padding-top: 97px;
    }
}

.page_header {
    background: url(../images/page_header_bg.jpg) no-repeat center center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 340px;
}

@media (max-width: 767.98px) {
    .page_header {
        height: 180px;
    }
}

.page_header_container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 991.98px) {
    .page_header_container {
        padding: 0 20px;
    }
}

.page_header h1 {
    background: #FFF;
    font-family : "noto serif jp", serif;
    box-shadow: 0 4px 26px 0 rgba(0, 0, 0, 0.25);
    font-weight: 500;
    font-size: clamp(22px, calc((36 / 1440) * 100vw), 48px);
    color: var(--main-color);
    padding: 14px 32px;
    line-height: 1;
    margin: 0;
}

.page_header h1.not_found_title{
    font-size: clamp(18px, calc((32 / 1440) * 100vw), 32px);
}

.page_container {
    position: relative;
    padding-top: var(--margin-xl);
    padding-bottom: var(--margin-xl);
    margin-left: auto;
    margin-right: auto;
}


/* ========================================================
   ARCHIVE
=========================================================*/
.archive .news_list {
    padding: 0;
}

.archive .news_article_content{
    flex-direction: row;
    gap: 16px;
    align-items: center;
}

.archive .news_list article a{
    padding: 24px;
}


@media (max-width: 767.98px) {
    .archive .news_article_content{
        align-items: flex-start;
        gap: 4px;;
        flex-direction: column;
    }

    .archive .news_list article a{
        padding: 16px;
    }
}

/* Card Layout for 学校薬剤師活動報告
-----------------------------------*/
.news_cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: var(--margin-l);
}

.news_card {
    background: transparent;
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news_card:hover {
    transform: translateY(-2px);
}

.news_card_thumbnail {
    width: 100%;
    height: 200px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.news_card_thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_card_thumbnail.placeholder {
    background: var(--bg-color);
    color: var(--main-color);
    font-size: 14px;
    text-align: center;
}

.news_card_content {
    padding: 16px 0;
}

.news_card_meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.news_card_date {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}



.news_card_title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-color);
    margin: 0;
}

/* Tablet Layout */
@media (max-width: 1024px) {
    .news_cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile Layout */
@media (max-width: 767.98px) {
    .news_cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .news_card_thumbnail {
        height: 180px;
    }
    
    .news_card_content {
        padding: 12px 0;
    }
    
    .news_card_title {
        font-size: 15px;
    }
}


/* Pagination
-----------------------------------*/
.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: var(--margin-l);
}

.pagination {
    text-align: center;
    margin-top: 20px;
    font-optical-sizing: auto;
}

.pagination .page-numbers {
    background: var(--be-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 0x;
    font-weight: 400;
    font-style: normal;
    border: 1px solid var(--line-color);
}

.pagination .page-numbers.current {
    background: var(--main-color);
    color: #fff;
}

.pagination .page-numbers:hover {
    background: var(--main-color);
    color: #fff;
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
    font-weight: bold;
    padding: 8px 16px;
    position: relative;
    background: transparent;
}

.pagination .page-numbers.prev::before,
.pagination .page-numbers.next::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-width: 2px;
    border-style: solid;
    border-color: var(--text-color);
}

.pagination .page-numbers.prev::before {
    transform: rotate(135deg);
    border-width: 0 2px 2px 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
}

.pagination .page-numbers.next::before {
    transform: rotate(-45deg);
    border-width: 0 2px 2px 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* ========================================================
   SINGLE
=========================================================*/

.single_content_info {
    margin-bottom: var(--margin-m);
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line-color);
}

.single_item_category {
    font-family: "Lexend Deca", "Zen Kaku Gothic New", sans-serif;
    font-size: 14px;
    color: var(--main-color);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.single_item_category::before {
    content: "-";
    font-weight: 200;
    font-size: 20px;
}

.post_body {
    width: 100%;
    margin-top: var(--margin-m);
}

/* Image 
-----------------------------------*/

.post_body img {
    width: auto;
    min-width: 400px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    margin-bottom: var(--margin-m);
}

@media (max-width: 767.98px) {
    .post_body img {
        min-width: unset;
        width: 100%;
    }
}

.post_body .flex_columns{
    gap: 24px;
}

.post_body .flex_column img{
    margin-bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 235 / 163
}

/* Link
-----------------------------------*/

.post_body a {
    text-decoration: underline;
    text-underline-offset: 2px;
    color: #2162a1;
}

.post_body a:hover,
.post_body a:visited {
    color: #2162a1;
}

.post_body a:hover {
    opacity: 0.8;
}

/* List (ul, ol)
-----------------------------------*/

.post_body ul,
.post_body ol {
    width: 100%;
    line-height: 1.7;
    text-indent: -1.4em;
    padding-left: 1.6em;
    margin-bottom: var(--margin-s);
}

@media (max-width: 767.98px) {

    .post_body ul li,
    .post_body ol li {
        line-height: 1.5;
    }
}

.post_body ul li,
.post_body ol li {
    list-style-type: none;
    margin-bottom: 8px;
}

.post_body ul li::before {
    content: '●';
    margin-right: 8px;
    color: var(--main-color);
    font-size: 60%;
}

.post_body ol {
    counter-reset: item;
}

.post_body ol li::before {
    counter-increment: item;
    content: counter(item) '.';
    padding-right: .8em;
    font-family: "Lexend Deca", sans-serif;
    font-weight: 500;
    color: var(--main-color);
}

/* Text
-----------------------------------*/
h1.single_title {
    font-weight: 700;
    font-size: clamp(22px, calc((30 / 1440) * 100vw), 30px);
    margin-bottom: 8px;
    margin-top: 8px;
}

.post_body .post_thumbnail img {
    overflow: hidden;
}

.post_body h2 {
    font-weight: 600;
    font-size: clamp(18px, calc((22 / 1440) * 100vw), 22px);
    line-height: 1.5;
    margin-bottom: var(--margin-s);
    position: relative;
    padding: 1.5rem 2rem;
    background: var(--bg-color);
}

.post_body h3 {
    font-weight: 600;
    font-size: clamp(18px, calc((20 / 1440) * 100vw), 20px);
    line-height: 1.5;
    margin-bottom: var(--margin-s);
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 16px;
    position: relative;
}

.post_body h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--main-color);
}

.post_body h4,
.post_body h5 {
    font-weight: 600;
    width: 100%;
    margin-bottom: var(--margin-s);
    margin-top: var(--margin-s);
    color: var(--main-color);
}

.post_body p {
    line-height: 2;
    font-size: 16px;
    margin-bottom: var(--margin-s);
    font-weight: 400;
}

/* ========================================================
   School Pharmacy Page
=========================================================*/

/* School Pharmacy About Section
-----------------------------------*/
.school_pharmacy_about {
    padding: var(--margin-xl) 0;
    background: #fff;
}

.school_pharmacy_about_columns {
    align-items: center;
    gap: var(--margin-l);
    flex: 1;
}

.school_pharmacy_about_text_column {
    width: 60%;
}

.school_pharmacy_about_image_column {
    width: 40%;
}

@media (max-width: 767.98px) {
    .school_pharmacy_about_columns {
        flex-direction: column;
        gap: var(--margin-m);
    }
    .school_pharmacy_about_text_column {
        width: 100%;
    }
    .school_pharmacy_about_image_column {
        width: 100%;
    }
}

.school_pharmacy_about_text {
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
}

.school_pharmacy_about_image {
    width: 100%;
    height: auto;
}

/* Activity Reports Section
-----------------------------------*/
.school_pharmacy_reports {
    padding: var(--margin-xl) 0;
    background: rgba(244, 244, 244, 0.60);
}

.school_pharmacy_reports_list {
    margin-top: var(--margin-l);
    display: flex;
    flex-direction: column;
    gap: var(--margin-s);
}

.school_pharmacy_report_item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.school_pharmacy_report_item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.school_pharmacy_report_content {
    padding: var(--margin-s);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.school_pharmacy_report_date {
    font-family: "Lexend Deca", sans-serif;
    font-size: 14px;
    color: var(--main-color);
    font-weight: 500;
}

.school_pharmacy_report_title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.4;
}

.school_pharmacy_report_excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.school_pharmacy_reports_more {
    margin-top: var(--margin-l);
    text-align: center;
}

.no_posts {
    text-align: center;
    color: #666;
    margin-top: var(--margin-l);
}

/* School List Section
-----------------------------------*/
.school_pharmacy_list{
    padding: var(--margin-l) 0;
}

.school_pharmacy_table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    line-height: 1.6;
    border: 1px solid #ddd;
  }

  .school_pharmacy_table th,
  .school_pharmacy_table td {
    border: 1px solid var(--line-color);
    padding: 10px 12px;
    text-align: left;
    vertical-align: top;
  }
  .school_pharmacy_table thead th {
    background: var(--bg-color);
    font-weight: 600;
  }
  .school_pharmacy_table tbody tr:nth-child(even) {
    background: #fafafa;
  }
  
  /* 担当校リストのスタイル */
  .school_pharmacy_table td ul {
    margin: 0;
    list-style:none;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  .school_pharmacy_table td ul li {
    margin: 2px 0;
  }

  @media (max-width: 767.98px) {
    .school_pharmacy_table td ul {
        flex-direction: column;
        gap: 4px;
    }
    .school_pharmacy_table td ul li{
        width: 100%;
    }
  }
  

/* Page Section Title
-----------------------------------*/
.page_section_title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: var(--margin-l);
    position: relative;
    padding-bottom: 24px;
}

.page_section_title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 1px;
    background-color: var(--main-color);
}

.page_section_title .ja {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(24px, calc((32 / 1440) * 100vw), 32px);
    font-weight: 400;
    color: var(--main-color);
    display: block;
    margin-bottom: 8px;
    line-height: 1;
}

.page_section_title .en {
    font-size: 14px;
    font-weight: 400;
    color: var(--main-color);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1;
}

@media (max-width: 767.98px) {
    .page_section_title .ja {
        font-size: clamp(20px, calc((24 / 768) * 100vw), 24px);
    }
    
    .page_section_title .en {
        font-size: 12px;
    }
}

/* Related Links Section
-----------------------------------*/
.school_pharmacy_links {
    padding: var(--margin-l) 0;
    background: var(--bg-color);
}

.school_pharmacy_single_link {
    margin-top: var(--margin-l);
    display: flex;
    justify-content: center;
}

.school_pharmacy_link_item {
    background: #fff;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 600px;
    width: 100%;
}

.school_pharmacy_link_item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    color: inherit;
}

.school_pharmacy_link_logo {
    flex-shrink: 0;
    width: 100px;
    aspect-ratio:1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.school_pharmacy_link_logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.school_pharmacy_link_content_single {
    flex: 1;
}

.school_pharmacy_link_content_single h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 8px;
    line-height: 1.4;
}

.school_pharmacy_link_content_single p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 767.98px) {

    .school_pharmacy_link_item {
        padding: 16px;
    }
    
    .school_pharmacy_link_logo {
        width: 70px;
    }
    
    .school_pharmacy_link_content_single h3 {
        font-size: 18px;
    }
    
    .school_pharmacy_link_content_single p {
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .school_pharmacy_link_content_single h3 {
        font-size: 16px;
    }
}