/* ========================================================
   Custom Properties
=========================================================*/
:root {
    --text-color: #3D3D3D;
    --main-color: #72C45F;
    --bg-color: #F9F9F9;
    --gray-color: #F9F9F9;
    --linear-color: linear-gradient(90deg, #57BA71 0%, #97D244 100%);

    --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-xl: 60px;
        --margin-l: 40px;
        --margin-m: 32px;
        --margin-ms: 24px;
        --margin-s: 16px;
        --margin-xs: 8px;
    }
}

@media (max-width: 575.98px) {
    :root {
        --margin-xl: 40px;
        --margin-l: 24px;
        --margin-m: 24px;
    }
}

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

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

main {
    padding-top: 160px;
}

@media (max-width: 991.98px) {
    main {
        padding-top: 64px;
    }
}

@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: 992px) {
    .sp {
        display: none !important;
    }
}

@media (max-width: 991.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;
}

@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;
    }
}

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

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

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

/* Button
-----------------------------------*/
.section_btn {
    display: block;
    margin: 0 auto;
    padding: 12px 24px;
    background: var(--linear-color);
    color: #FFF;
    border-radius: 100vmax;
    font-size: 16px;
    font-weight: 700;
    max-width: 260px;
    text-align: center;
    transition: .3s ease;
    margin-top: 40px;
    transition: .3s ease;
}

.section_btn:hover,
.section_btn:visited {
    color: #FFF;
}

.section_btn:hover {
    opacity: .8;
    color: #FFF;
    letter-spacing: 0.08em;
}

/* Title
-----------------------------------*/
.txt_grad {
    background: linear-gradient(90deg, #57BA71 0%, #97D244 46.39%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section_title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    margin-bottom: var(--margin-l);
}

.section_title.is_align_center {
    justify-content: center;
    align-items: center;
    margin-bottom: 64px;
}

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

    .section_title.is_align_center {
        margin-bottom: 48px;
    }
}

.section_title .ja {
    color: #353535;
    font-size: clamp(30px, calc((48 / 1440) * 100vw), 48px);
    line-height: 1;
    font-weight: 500;
}

.section_title .ja.small {
    font-size: clamp(20px, calc((32 / 1440) * 100vw), 32px);
}

.section_title .en {
    font-family: 'Figtree', sans-serif;
    color: var(--main-color);
    font-size: clamp(16px, calc((20 / 1440) * 100vw), 22px);
    line-height: 1;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.section_title .en::before {
    content: '';
    display: block;
    background: url(../images/section_title_deco.svg) no-repeat center center / contain;
    width: 14px;
    height: 14px;
    margin-right: 12px;
}

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

.post_title {
    color: #353535;
    font-size: clamp(20px, calc((32 / 1440) * 100vw), 34px);
    line-height: 1;
    white-space: nowrap;
    font-weight: 500;
    letter-spacing: 0.2em;
    position: relative;
}

.post_title::before {
    position: absolute;
    content: '';
    display: inline-block;
    bottom: -15px;
    height: 3px;
    left: 0;
    width: 100%;
    background: radial-gradient(circle closest-side, var(--main-color) 90%, transparent 100%) 0 / 7px 100%;
}

/* ========================================================
   Header
=========================================================*/
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000;
    width: 100%;
    padding: 48px 70px 0 70px;
}

.header_container {
    width: 100%;
    max-width: 14400px;
    margin: 0 auto;
    background: #FFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 21px 50px 21px 5.42vw;
    -webkit-filter: drop-shadow(4px 4px 24px rgba(0, 0, 0, 0.04));
    -moz-filter: drop-shadow(4px 4px 24px rgba(0, 0, 0, 0.04));
    -ms-filter: drop-shadow(4px 4px 24px rgba(0, 0, 0, 0.04));
    -o-filter: drop-shadow(4px 4px 24px rgba(0, 0, 0, 0.04));
    filter: drop-shadow(4px 4px 24px rgba(0, 0, 0, 0.04));
    box-shadow: 4px 4px 24px rgba(0, 0, 0, 0.04);
    border-radius: 100vmax;
}

@media (max-width: 1440px) {
    header {
        padding: 24px 40px 0 40px;
    }

    .header_container {
        padding: 16px 24px 16px 40px;
    }
}

@media (max-width: 991.98px) {
    header {
        padding: 12px;
    }

    .header_container {
        padding: 12px 12px 12px 24px;
    }
}

.scrolled .header_container {
    background-color: rgba(255, 255, 255, .8);
    backdrop-filter: blur(4px);
}

.header_logo {
    z-index: 100000;
    width: 13.82vw;
    max-width: 200px;
    min-width: 180px;
}

@media (max-width: 991.98px) {
    .header_logo {
        min-width: 140px;
    }
}

.header_logo a {
    display: flex;
    gap: 4px;
    align-items: center;
}

.logo_icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

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: 1069px) {
    .nav_pc {
        display: none;
    }
}

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

.nav_pc_list li {
    position: relative;
}

.nav_pc_list li::after {
    position: absolute;
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    background: #D2D2D2;
    top: 0;
    right: -25px;
    transition: .3s ease;
}

.nav_pc_list li:last-child::after {
    display: none;
}

.nav_pc_list li a {
    letter-spacing: 0.06em;
    font-size: 16px;
    transition: .2s ease;
}

.nav_pc_list li a:hover {
    color: var(--main-color);
}

@media (max-width: 1360px) {
    .nav_pc_list {
        gap: 24px;
    }

    .nav_pc_list li::after {
        right: -12px;
    }
}

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

    .nav_pc_list li a {
        font-size: 14px;
    }
}

.nav_pc_btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--linear-color);
    color: #FFF;
    border-radius: 100vmax;
    font-size: 16px;
    font-weight: 700;
    min-width: 180px;
    text-align: center;
    transition: .3s ease;
}

a.nav_pc_btn:hover {
    opacity: .8;
    letter-spacing: 0.08em;
    color: #ffffff;
}


/* ========================================================
   SP Navigation
=========================================================*/
.nav_sp {
    position: relative;
}

.menu_btn {
    position: relative;
    display: block;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 10000;
    background: var(--linear-color);
    border-radius: 100vmax;
}

@media (min-width: 1068.98px) {
    .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: url(../images/information_content_bg.jpg) no-repeat center center / cover;
    color: #FFF;
    padding: 6.94vw;
    z-index: 1000;
    overflow: scroll;
    opacity: 0;
    display: block;
    pointer-events: none;
}

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

.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: 80px;
    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 rgba(67, 124, 82, 0.2);
    position: relative;
    text-align: left;
}

.drawer_menu li a::after {
    background: url(../images/sp_nav_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;
}


/* ========================================================
   Footer
=========================================================*/
footer {
    position: relative;
    z-index: 2;
}

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

@media (max-width: 991.98px) {
    footer .container {
        width: 90%;
        padding: 60px 0;
    }
}

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

footer .logo_text {
    display: flex;
    gap: 4px;
    align-items: center;
    text-align: left;
}

.logo_ja {
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
}

@media (max-width: 991.98px) {
    .logo_ja {
        font-size: 24px;
    }
}

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

@media (max-width: 1439.98px) {
    .footer_columns {
        flex-direction: column;
        gap: 32px;
    }
}

.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: 400;
    font-size: 16px;
    line-height: 1;
    transition: .3s ease;
    padding: 0 25px;
    border-right: 1px solid #D2D2D2;
}

@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: var(--main-color);
}

.footer_copyright {
    padding: 24px;
}

.copyright {
    font-family: 'Figtree', sans-serif;
    color: #353535;
    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
=========================================================*/
.content {
    position: relative;
}

.content::before {
    background: url(../images/fv_deco_01.svg) no-repeat center center / contain;
    content: '';
    aspect-ratio: 386 / 346;
    position: absolute;
    top: 0;
    left: 0;
    width: 26.81vw;
    z-index: -1;
    filter: blur(50px);
}

.content::after {
    background: url(../images/fv_deco_02.svg) no-repeat center center / contain;
    content: '';
    aspect-ratio: 653 / 662;
    position: absolute;
    top: 0;
    right: 0;
    width: 45.35vw;
    z-index: -1;
    filter: blur(50px);
}

/* FV
-----------------------------------*/
.fv {
    padding-top: 64px;
    overflow-x: hidden;
}

.fv_txt {
    display: flex;
    flex-direction: column;
    gap: 22px;
    line-height: 1.3;
    padding-left: 12.92vw;
    margin-bottom: 5.76vw;
    position: relative;
    z-index: 2;
}

@media (max-width: 767.98px) {
    .fv_txt {
        padding-left: 8%;
        margin-bottom: 100px;
    }
}

.fv_txt_main {
    font-size: clamp(32px, calc((58 / 1440) * 100vw), 60px);
    font-weight: 700;
    line-height: 115%;
}

.fv_txt_sub {
    font-size: clamp(16px, calc((24 / 1440) * 100vw), 28px);
    font-weight: 500;
}

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

.fv_slider {
    position: relative;
    overflow: visible;
}

.fv_slider::after {
    content: '';
    background: url(../images/information_separator.svg) no-repeat center center / contain;
    position: absolute;
    aspect-ratio: 1440 / 278;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 0;
}

.fv_slider_deco_03 {
    position: absolute;
    top: 0;
    left: 5.69vw;
    aspect-ratio: 38 / 125;
    width: 2.64vw;
    object-fit: contain;
    transform: translateY(-86.4%);
    z-index: 2;
}

@media (max-width: 767.98px) {
    .fv_slider_deco_03 {
        width: 5.64vw;
        max-width: 28px;
        left: 10%;
    }
}

.fv_slider_deco_04 {
    position: absolute;
    top: 0;
    right: 11.25vw;
    aspect-ratio: 175 / 214;
    width: 12.15vw;
    object-fit: contain;
    transform: translateY(-85.05%);
    z-index: 2;
}

@media (max-width: 767.98px) {
    .fv_slider_deco_04 {
        width: 18.15vw;
        max-width: 100px;
    }
}

.swiper.fv_swiper {
    overflow-y: visible;
}

.fv_swiper .swiper-slide {
    padding-bottom: 40px;
}


.fv_slider_img {
    width: 100%;
    aspect-ratio: 591 / 322;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 4px 4px 24px 0px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767.98px) {
    .fv_slider_img {
        border-radius: 20px;
    }
}

/* Information
-----------------------------------*/
.information {
    padding-top: var(--margin-l);
    padding-bottom: 12.99vw;
    background: #FFF;
}

@media (max-width: 767.98px) {
    .information {
        padding-bottom: 26.32vw;
    }
}

.information::after {
    content: '';
    background: url(../images/information_deco_02.svg) no-repeat center center / contain;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    max-width: 1349px;
    aspect-ratio: 1349 / 156;
}

@media (max-width:1440px) {
    .information::after {
        left: unset;
        right: 0;
        transform: translateX(0);
    }
}

@media (max-width: 767.98px) {
    .information::after {
        aspect-ratio: 846.16 / 154.78;
        background: url(../images/information_deco_02_sp.svg) no-repeat center center / contain;
        width: 95vw;
        left: 50%;
        transform: translateX(-50%);
    }
}

.information_ttl_wrap {
    position: relative;
    width: 20.69vw;
}

@media (max-width: 767.98px) {
    .information_ttl_wrap {
        width: 100%;
    }
}

.information_deco_01 {
    position: absolute;
    bottom: 12px;
    right: -7.15vw;
    width: 11.04vw;
}

@media (max-width: 767.98px) {
    .information_deco_01 {
        right: 0;
        width: 22vw;
    }
}

.information_content_wrap {
    border-radius: 20px;
    border: 1px solid rgba(67, 124, 82, 0.43);
    background: url(../images/information_content_bg.jpg) no-repeat center center / cover;
    padding: 32px;
    margin-bottom: var(--margin-xl);
}

@media (max-width: 1109.98px) {
    .information_content_wrap {
        padding: 24px;
    }
}

.information_content {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.information_content li {
    position: relative;
}

.information_content li::after {
    background: rgba(67, 124, 82, 0.24);
    width: 1px;
    height: 46px;
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.information_content li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 30px 62px 30px 44px;
    font-size: clamp(20px, calc((24 / 1440) * 100vw), 26px);
    transition: transform 0.3s ease-in-out;
}

@media (max-width: 1109.98px) {
    .information_content li a {
        padding: 32px;
    }
}

.information_content li a::after {
    background: url(../images/icon_arrow.svg) no-repeat center center / contain;
    content: '';
    display: block;
    width: 46px;
    height: 46px;
    transition: transform 0.3s ease-in-out;
}

@media (max-width: 767.98px) {
    .information_content li a::after {
        width: 32px;
        height: 32px;
    }
}

.information_content li a:hover {
    color: var(--main-color);
}

.information_content li a:hover::after {
    transform: translateX(4px);
}

@media (min-width: 992px) {

    /* 3列表示 */
    .information_content li {
        width: 33.33%;
    }

    /* 3の倍数の要素に対しては区切り線を非表示にする */
    .information_content li:nth-child(3n)::after {
        display: none;
    }

    .information_content li:nth-child(-n+3) {
        border-bottom: 1px solid rgba(67, 124, 82, 0.24);
    }
}

/* タブレット表示（2列） */
@media (max-width: 991.98px) {
    .information_content li {
        width: 50%;
    }

    /* 3の倍数の要素に対するdisplay:noneを解除 */
    .information_content li:nth-child(3n)::after {
        display: block;
    }

    /* 2の倍数の要素に対しては区切り線を非表示にする */
    .information_content li:nth-child(2n)::after {
        display: none;
    }

    /* 3列表示の下線を削除 */
    .information_content li:nth-child(-n+3) {
        border-bottom: none;
    }

    /* 最初の2行に下線を追加 */
    .information_content li:nth-child(-n+4) {
        border-bottom: 1px solid rgba(67, 124, 82, 0.24);
    }
}

/* モバイル表示（1列） */
@media (max-width: 575.98px) {
    .information_content li {
        width: 100%;
    }

    .information_content li::after {
        display: none;
    }

    .information_content li {
        border-bottom: 1px solid rgba(67, 124, 82, 0.24);
    }

    .information_content li:last-child {
        border-bottom: none;
    }

    .information_content li a {
        padding: 16px;
    }

    .information_content li:nth-child(3n)::after {
        display: none;
    }
}

/* 薬局一覧 */
.pharmacy_list {
    margin: 0 auto;
    background: #FFF;
    border-radius: 20px;
    box-shadow: 4px 4px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.pharmacy_list h3 {
    font-size: clamp(18px, calc((24 / 1440) * 100vw), 24px);
    font-weight: 500;
    padding: 16px 24px;
    letter-spacing: 0.5em;
    color: #FFF;
    background: var(--linear-color);
    text-align: center;
}

@media (max-width: 767.98px) {
    .pharmacy_list h3 {
        padding: 12px 16px;
    }
}

.pharmacy_list_inner {
    display: flex;
    gap: 0;
}

.pharmacy_list_items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.pharmacy_list_items li {
    padding: 16px 24px;
    font-size: 14px;
    border-bottom: 1px solid #ECECEC;
    border-right: 1px solid #ECECEC;
}

/* 最後の列の右線を消す */
.pharmacy_list_inner>.pharmacy_list_items:last-child li {
    border-right: none;
}


@media (max-width: 1039.98px) {
    .pharmacy_list_items li {
        padding: 8px 16px;
    }
}

@media (min-width: 768px) {
    .pharmacy_list_items li:last-child {
        border-bottom: none;
    }
}

@media (max-width: 767.98px) {
    .pharmacy_list_items:last-child li:last-child {
        border-bottom: none;
    }
}



/* News
-----------------------------------*/
.news {
    padding-top: 8.47vw;
    padding-bottom: 60px;
}

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

.news::before {
    background: url(../images/news_deco_01.svg) no-repeat center center / contain;
    content: '';
    aspect-ratio: 386 / 346;
    position: absolute;
    top: 0;
    left: 0;
    width: 26.81vw;
    z-index: -1;
    filter: blur(50px);
}

.news_columns {
    position: relative;
    align-items: flex-start;
}

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

.news_title_column {
    width: 21.58%;
}

.news_list_column {
    width: 78.42%;
}

.news_list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news_list article {
    border-radius: 20px;
    background: #FFF;
    -webkit-filter: drop-shadow(4px 4px 24px rgba(0, 0, 0, 0.04));
    -moz-filter: drop-shadow(4px 4px 24px rgba(0, 0, 0, 0.04));
    -ms-filter: drop-shadow(4px 4px 24px rgba(0, 0, 0, 0.04));
    -o-filter: drop-shadow(4px 4px 24px rgba(0, 0, 0, 0.04));
    filter: drop-shadow(4px 4px 24px rgba(0, 0, 0, 0.04));
    box-shadow: 4px 4px 24px rgba(0, 0, 0, 0.04);
}

.news_list article a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 64px;
    gap: 8px;
}

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

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

.news_list article a::after {
    background: url(../images/icon_arrow.svg) no-repeat center center / contain;
    content: '';
    display: block;
    width: 46px;
    min-width: 46px;
    height: 46px;
    transition: transform 0.3s ease-in-out;
}

.news_list article a:hover::after {
    transform: translateX(4px);
}

@media (max-width: 767.98px) {
    .news_list article a::after {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 575.98px) {
    .news_list article a::after {
        display: none;
    }
}


.news_article_content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.news_article_date {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, calc((18 / 1280) * 100vw), 18px);
}

.news_item_category {
    font-weight: 700;
    background: var(--Linear, linear-gradient(90deg, #57BA71 0%, #97D244 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding: 4px 16px;
    display: inline-block;
    font-size: clamp(14px, calc((16 / 1280) * 100vw), 16px);
}

.news_item_category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    background: linear-gradient(90deg, #57BA71 0%, #97D244 100%) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    border-radius: 100vmax;
}

.news_article_title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    font-weight: 400;
    transition: color 0.3s ease-in-out;
}

.news_list article a:hover .news_article_title {
    color: var(--main-color);
}

.news_deco_02 {
    position: absolute;
    bottom: 5vw;
    left: -2.29vw;
    width: 14.17vw;
    aspect-ratio: 204 / 197;
    object-fit: contain;
    z-index: 1;
}

@media (max-width: 991.98px) {
    .news_deco_02 {
        width: 25.17vw;
        max-width: 126px;
        bottom: unset;
        top: 0;
        left: unset;
        right: 0;
    }
}

/* 投稿数が3件以下の場合 */
@media (min-width: 992px) {
    .is_less_posts {
        min-height: 300px;
    }

    .news_columns.is_less_posts .news_deco_02 {
        max-width: 160px;
        bottom: 0;
    }
}


/* Message
-----------------------------------*/
.message {
    padding: var(--margin-l) 0;
}

.message_title {
    position: relative;
}

.message_deco_01 {
    position: absolute;
    bottom: 12px;
    right: 17.92vw;
    width: 13.89vw;
}

@media (max-width: 767.98px) {
    .message_deco_01 {
        right: 0;
        width: 22vw;
    }
}

.message_txt {
    width: 50.07vw;
    max-width: 720px;
    line-height: 2.2;
    font-weight: 400;
}

@media (max-width: 1279.98px) {
    .message_txt {
        width: 58vw;
        line-height: 2;
    }
}

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

@media (max-width: 767.98px) {
    .message_txt {
        font-size: 14px;
    }
}

.message_images {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 34.1vw;
    aspect-ratio: 491.53 / 373.11;
}

@media (max-width: 991.98px) {
    .message_images {
        position: relative;
        top: 0;
        transform: translateY(0);
        width: 90%;
        margin-right: 0;
        margin-left: auto;
    }
}

.message_image_wrap {
    display: block;
    width: 100%;
    aspect-ratio: 491.53 / 373.11;
    position: relative;
}

.message_image_01 {
    width: 70.33%;
    aspect-ratio: 491.53 / 373.11;
    object-fit: cover;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 20px 0 0 20px;
    -webkit-filter: drop-shadow(4px 4px 24px rgba(0, 0, 0, 0.08));
    -moz-filter: drop-shadow(4px 4px 24px rgba(0, 0, 0, 0.08));
    -ms-filter: drop-shadow(4px 4px 24px rgba(0, 0, 0, 0.08));
    -o-filter: drop-shadow(4px 4px 24px rgba(0, 0, 0, 0.08));
    filter: drop-shadow(4px 4px 24px rgba(0, 0, 0, 0.08));
    box-shadow: 4px 4px 24px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

.message_image_02 {
    width: 41.87%;
    aspect-ratio: 205.8 / 197.11;
    object-fit: cover;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 20px;
    -webkit-filter: drop-shadow(4px 4px 24px rgba(0, 0, 0, 0.08));
    -moz-filter: drop-shadow(4px 4px 24px rgba(0, 0, 0, 0.08));
    -ms-filter: drop-shadow(4px 4px 24px rgba(0, 0, 0, 0.08));
    -o-filter: drop-shadow(4px 4px 24px rgba(0, 0, 0, 0.08));
    filter: drop-shadow(4px 4px 24px rgba(0, 0, 0, 0.08));
    box-shadow: 4px 4px 24px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.message_deco_02 {
    width: 14.5vw;
    max-width: 203px;
    aspect-ratio: 203.04 / 138.01;
    object-fit: contain;
    position: absolute;
    bottom: 0;
    transform: translateY(65.22%);
    left: 32.35%;
    z-index: 3;
}

.message_deco_03 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 39.44vw;
    aspect-ratio: 559 / 665;
    z-index: -1;
    filter: blur(50px);
}

@media (max-width: 767.98px) {
    .message_deco_03 {
        width: 40vw;
    }
}

/* Business
-----------------------------------*/
.business {
    padding: 64px 0;
    position: relative;
}

.business_deco_04 {
    position: absolute;
    top: 40%;
    right: 0;
    width: 25.76vw;
    min-width: 69px;
    aspect-ratio: 382 / 421;
    object-fit: contain;
    filter: blur(50px);
}

@media (max-width: 767.98px) {
    .business_deco_04 {
        width: 40vw;
    }
}

.business_container {
    width: 85%;
    max-width: 1030px;
    margin: 0 auto;
}

@media (max-width: 767.98px) {
    .business_container {
        width: 90%;
    }
}

.business_contents {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.section_title.is_align_center.business_title {
    margin-bottom: 40px;
}

@media (max-width: 991.98px) {
    .section_title.is_align_center.business_title {
        margin-bottom: 24px;
    }
}

.business_box {
    width: 100%;
    padding-top: 60px;
    height: 100%;
}

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

.business_box_inner {
    width: 100%;
    height: 100%;
    background: #FFF;
    border-radius: 0px 20px 20px 20px;
    padding: 32px 48px;
    filter: drop-shadow(4px 4px 24px rgba(0, 0, 0, 0.04));
    position: relative;
}

@media (max-width: 991.98px) {
    .business_box_inner {
        padding: 32px 24px;
    }
}

@media (max-width: 575.98px) {
    .business_box_inner {
        padding: 32px 16px;
    }
}

.business_box_inner_05,
.business_box_inner_04 {
    padding-bottom: 80px;
}

.business_box_inner ul {
    list-style: none;
    padding-left: 0;
}

.business_box_inner ul li {
    padding-left: 24px;
    position: relative;
    font-weight: 400;
    line-height: 1.8;
}

@media (max-width: 575.98px) {
    .business_box_inner ul li {
        line-height: 1.5;
        font-size: 14px;
    }
}

.business_box_inner ul li::before {
    content: '・';
    position: absolute;
    left: 0px;
    color: var(--text-color);
}

.business_list_columns ul {
    width: 100%;
}

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

.business_content.flex_columns {
    align-items: stretch;
    gap: 27px;

}

.business_box_title {
    position: absolute;
    top: 2px;
    left: 0;
    transform: translateY(-100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.business_box_title .txt_grad {
    font-size: clamp(19px, calc((24 / 1440) * 100vw), 24px);
    font-weight: 500;
    padding-left: 32px;
}

@media (max-width: 991.98px) {
    .business_box_title .txt_grad {
        padding-left: 24px;
    }
}

@media (max-width: 767.98px) {
    .business_box_title .txt_grad {
        padding-left: 16px;
    }
}

.business_box_title_01 {
    width: 486px;
    top: 2px;
    aspect-ratio: 477 / 53;
    background: url(../images/business_title_bg_01.svg) no-repeat left bottom / contain;
}

.business_box_title_01 span {
    transform: translateY(9px);
    padding-left: 60px;
}

@media (max-width: 991.98px) {
    .business_box_title_01 span {
        padding-left: 32px;
    }
}

@media (max-width: 767.98px) {
    .business_box_title_01 span {
        padding-left: 16px;
    }
}

.business_box_deco_01 {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(10%)translateY(-79.61%);
    width: 13.33vw;
    min-width: 69px;
    aspect-ratio: 192 / 152;
    object-fit: contain;
}

.business_box_title_02 {
    width: 372px;
    top: 1px;
    aspect-ratio: 396 / 60;
    background: url(../images/business_title_bg_02.svg) no-repeat left bottom / contain;
}

.business_box_deco_02 {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(-30%) translateY(-79.61%);
    width: 4.94vw;
    min-width: 47px;
    aspect-ratio: 71.12 / 43.72;
    object-fit: contain;
}

.business_box_title_03 {
    width: 325px;
    top: 1px;
    aspect-ratio: 355 / 60;
    background: url(../images/business_title_bg_03.svg) no-repeat left bottom / contain;
}

.business_box_deco_03 {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(-30%) translateY(-79.61%);
    width: 7.99vw;
    min-width: 64px;
    aspect-ratio: 115 / 70;
    object-fit: contain;
}

.business_box_title_04 {
    width: 421px;
    top: 1px;
    aspect-ratio: 449 / 61;
    background: url(../images/business_title_bg_04.svg) no-repeat left bottom / contain;
}


.business_box_title_05 {
    width: 229px;
    top: 1px;
    aspect-ratio: 263 / 60;
    background: url(../images/business_title_bg_05.svg) no-repeat left bottom / contain;
}

.business_box_num {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 13.19vw;
    max-width: 192px;
    min-width: 120px;
    object-fit: contain;
}

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

    .business_box_title_01,
    .business_box_title_02,
    .business_box_title_03,
    .business_box_title_04,
    .business_box_title_05 {
        background: url(../images/business_title_bg_03.svg) no-repeat left bottom / contain;
        width: 300px;
        aspect-ratio: 366 / 60;
    }

    .business_box_title_01 span,
    .business_box_title_02 span,
    .business_box_title_03 span,
    .business_box_title_04 span,
    .business_box_title_05 span {
        transform: translateY(0);
    }

    .business_box_inner_05,
    .business_box_inner_04 {
        padding-bottom: 24px;
    }
}

/* Organization
-----------------------------------*/
.organization {
    padding: 64px 0 var(--margin-xl) 0;
    position: relative;
}

.organization_deco_01 {
    position: absolute;
    aspect-ratio: 390 / 514;
    top: 0;
    left: 0;
    width: 23.68vw;
    object-fit: contain;
    filter: blur(50px);
}

.organization_deco_02 {
    position: absolute;
    aspect-ratio: 390 / 514;
    top: 0;
    right: 0;
    width: 23.68vw;
    object-fit: contain;
    filter: blur(50px);
}

.organization_container {
    width: 90%;
}

/* PC tree */
.organization_tree {
    background: #FFF;
    padding: 64px;
    border-radius: 32px;
    margin-bottom: var(--margin-xl);
    position: relative;
    z-index: 2;
}

@media (max-width: 991.98px) {
    .organization_tree {
        padding: 32px;
        border-radius: 20px;
        max-width: 600px;
        margin: 0 auto var(--margin-xl);
    }
}

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

/* SP tree */
.organization_tree_sp_title {
    padding: 8px 24px;
    border-radius: 4px;
    background: var(--linear-color);
    color: #FFF;
    font-size: 16px;
    position: relative;
    z-index: 2;
}

.organization_tree_sp ul {
    list-style-type: none;
    margin: 2px 0 0 24px;
    padding: 0;
    position: relative;
}

@media (max-width: 575.98px) {
    .organization_tree_sp ul {
        margin: 2px 0 0 8px;
    }
}

.organization_tree_sp>ul {
    margin: 0 !important;
}

.organization_tree_sp>ul>li {
    padding: 0 !important;
}

.organization_tree_sp ul li {
    position: relative;
    margin: 0;
    padding: 8px 7px 8px 24px;
}

@media (max-width: 575.98px) {
    .organization_tree_sp ul li {
        padding: 8px 4px 8px 16px;
    }
}

.organization_tree_sp>ul>li>ul>li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.organization_tree_sp>ul>li>ul>li:first-child {
    padding-top: 16px;
}

.tree_child dl {
    font-size: 12px;
    background: #F6F6F6;
    padding: 4px 16px;
    border-radius: 4px;
    position: relative;
    display: flex;
    gap: 8px;
    align-items: center;
}

@media (max-width: 575.98px) {
    .tree_child dl {
        padding: 4px 8px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
    }
}

.tree_child dl dt {
    font-size: 14px;
}

.tree_child dl dd {
    font-weight: 400;
}


.organization_tree_sp ul li:before {
    content: "";
    display: block;
    position: absolute;
    top: 24px;
    left: 0;
    width: 32px;
    height: 0;
    border-top: 1px solid #E2E2E2;
}

.organization_tree_sp ul li:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    height: 110%;
    border-left: 1px solid #E2E2E2;
}

.organization_tree_sp ul li:last-child:after {
    height: 25px;
}

.organization_tree_sp>ul>li:before,
.organization_tree_sp>ul>li:after {
    /* 最上位も線を表示する時はコメント化 */
    border: none;
}

.organization_tree_sp i {
    margin-right: 8px;
}

/* 役員一覧 */
.organization_list {
    max-width: 846px;
    margin: 0 auto;
    background: #FFF;
    border-radius: 20px;
    overflow: hidden;
    background: #FFF;
    box-shadow: 4px 4px 24px 0px rgba(0, 0, 0, 0.04);
}

.organization_list h3 {
    font-size: clamp(18px, calc((24 / 1440) * 100vw), 24px);
    font-weight: 500;
    padding: 16px 24px;
    letter-spacing: 0.5em;
    color: #FFF;
    background: var(--linear-color);
    text-align: center;
}

@media (max-width: 767.98px) {
    .organization_list h3 {
        padding: 12px 16px;
    }
}

.organization_list_inner dl {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-weight: 400;
    font-size: clamp(14px, calc((16 / 1440) * 100vw), 16px);
}

.organization_list_inner dl dt {
    width: 16.08%;
    text-align: center;
    padding: 16px 0;
    border-right: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
    background: #F5FEEE;
}

.organization_list_inner dl dd {
    width: 33.81%;
    padding: 16px 32px;
    border-right: 1px solid #ECECEC;
    border-bottom: 1px solid #ECECEC;
}

.organization_list_inner dl dd.dd_last {
    border-right: none;
}

@media (max-width: 767.98px) {
    .organization_list_inner dl dt {
        padding: 8px 0;
        width: 40%;
    }

    .organization_list_inner dl dd {
        padding: 8px 0 8px 24px;
        width: 60%;
    }

    .organization_list_inner dl dd {
        border-right: none;
    }
}

/* Contact
-----------------------------------*/
.contact {
    background: url(../images/contact_bg.jpg) no-repeat center center / cover;
}

.contact_inner {
    padding: 48px 0;
    background: var(--linear-color);
    opacity: 0.85;
    height: 100%;
    width: 100%;
}

.contact_columns {
    max-width: 1440px;
    margin: 0 auto;
    gap: 0;
    justify-content: center;
}

.contact_column {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 32px;
}

.contact_column:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.85);
}

@media (max-width: 991.98px) {
    .contact_column {
        width: 80% !important;
        padding: var(--margin-xl) 0;
    }

    .contact_column:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.85);
    }
}

.section_title.contact_title {
    margin-bottom: 32px;
}

.contact_title .ja,
.contact_title .en {
    color: #FFF;
}

.section_title.contact_title .en::before {
    content: '';
    display: block;
    background: #FFF;
    border-radius: 100vmax;
    width: 14px;
    height: 14px;
    margin-right: 12px;
}

.contact_txt {
    text-align: center;
    color: #FFF;
    margin-bottom: 40px;
}

.contact_btn {
    width: 57.36%;
    min-width: 360px;
    max-width: 413px;
    border-radius: 100vmax;
    background: rgba(255, 255, 255, 0.90);
    padding: 16px 32px;
    color: #FFF;
    font-size: clamp(18px, calc((22 / 1440) * 100vw), 22px);
    font-weight: 700;
    text-align: center;
    position: relative;
    transition: 0.3s ease-in-out;
}

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

@media (max-width: 575.98px) {
    .contact_btn {
        font-size: clamp(14px, calc((16 / 380) * 100vw), 18px);
    }
}

.contact_btn::after {
    background: url(../images/icon_arrow.svg) no-repeat center center / contain;
    content: '';
    display: block;
    height: 75%;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    transition: transform 0.3s ease-in-out;
}

.contact_btn:hover {
    background: rgba(255, 255, 255, 1);
    letter-spacing: 0.08em;
}

.contact_btn:hover::after {
    transform: translateY(-50%) translateX(2px);
}

/* ========================================================
   PAGE
=========================================================*/
.page_content {
    position: relative;
    padding-top: 60px;
    padding-bottom: 80px;
    max-width: 880px;
}


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

/* 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: 100vmax;
    font-family: "Montserrat Alternates", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.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 {
    border-radius: 20px;
    background: #FFF;
    -webkit-filter: drop-shadow(4px 4px 24px rgba(0, 0, 0, 0.04));
    -moz-filter: drop-shadow(4px 4px 24px rgba(0, 0, 0, 0.04));
    -ms-filter: drop-shadow(4px 4px 24px rgba(0, 0, 0, 0.04));
    -o-filter: drop-shadow(4px 4px 24px rgba(0, 0, 0, 0.04));
    filter: drop-shadow(4px 4px 24px rgba(0, 0, 0, 0.04));
    box-shadow: 4px 4px 24px rgba(0, 0, 0, 0.04);
    padding: 64px;
}

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

@media (max-width: 575.98px) {
    .single_content {
        padding: 24px;
    }
}

.single_content_info {
    margin-bottom: var(--margin-m);
}

.post_body {
    width: 100%;
}

/* 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%;
    }
}

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

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

/* 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;
        font-size: 14px;
    }
}

.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: 'Figtree', sans-serif;
    font-weight: 500;
    color: var(--main-color);
}

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

.post_body .post_thumbnail img {
    border-radius: 20px;
    overflow: hidden;
}

.post_body h2 {
    font-weight: 500;
    font-size: clamp(18px, calc((22 / 1280) * 100vw), 22px);
    line-height: 1.5;
    margin-bottom: var(--margin-s);
    position: relative;
    padding: 1.5rem 2rem;
    background: url(../images/information_content_bg.jpg) no-repeat center center / cover;
    border-radius: 4px;
}

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

.post_body h3::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--linear-color);
    height: 100%;
    width: 4px;
}

.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: clamp(14px, calc((16 / 1280) * 100vw), 16px);
    margin-bottom: var(--margin-s);
}