@charset "utf-8";

:root {
    --main-color: #00837B;
    --sub-color: #EAF5F4;
    --ac-color: #FCCF00;
    --bg-color: #FFFFFF;
    --line-color: #E3E3E3;
    --font-color: #333333;
    --column-gap-default: 50px;
    /* カラム間のデフォルトの隙間 */
    --container-padding: 15px;
    /* コンテナの左右のパディング */
    --lang-en: "Poppins", sans-serif;
    --lang-jp: "Noto Sans JP", sans-serif;
}

/* -------------------------------------------------------------------
Modern CSS Reset
------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul,
ol,
pre,
form,
fieldset,
legend {
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    line-height: 1.5;
    font-size: 62.5%;
}

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    font-family: var(--lang-jp);
    line-height: 1.5;
    color: var(--font-color);
    counter-reset: number 0;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
}

ul,
ol {
    list-style: none;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
}

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    transition: .3s;
}

button:hover,
[type="button"]:hover,
[type="reset"]:hover,
[type="submit"]:hover {
    opacity: .7;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

main {
    display: block;
}

a {
    -webkit-tap-highlight-color: transparent;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: var(--main-color);
}

a:hover {
    opacity: .7;
    text-decoration: none;
}

p {
    margin-bottom: 10px;
}

address {
    font-style: normal;
}

/* -------------------------------------------------------------------
utility
------------------------------------------------------------------- */
.m-0 {
    margin: 0px !important;
}

.m-10 {
    margin: 10px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mb-0 {
    margin-bottom: 0px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.ml-10 {
    margin-left: 10px !important;
}

.mr-10 {
    margin-right: 10px !important;
}

.mx-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
}

.mx-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
}

.my-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.my-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.my-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

.m-auto {
    margin: auto !important;
}

.mt-auto {
    margin-top: auto !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}

.p-0 {
    padding: 0px !important;
}

.p-10 {
    padding: 10px !important;
}

.p-30 {
    padding: 30px !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pb-15 {
    padding-bottom: 15px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}

.pt-60 {
    padding-bottom: 60px !important;
}

.pl-10 {
    padding-left: 10px !important;
}

.pl-20 {
    padding-left: 20px !important;
}

.pr-10 {
    padding-right: 10px !important;
}

.px-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.px-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
}

.py-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.py-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.py-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

.py-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}


.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

.justify-start {
    justify-content: flex-start !important;
}

.justify-end {
    justify-content: flex-end !important;
}

.justify-center {
    justify-content: center !important;
}

.justify-between {
    justify-content: space-between !important;
}

.justify-around {
    justify-content: space-around !important;
}

.justify-evenly {
    justify-content: space-evenly !important;
}

.items-start {
    align-items: flex-start !important;
}

.items-end {
    align-items: flex-end !important;
}

.items-center {
    align-items: center !important;
}

.items-baseline {
    align-items: baseline !important;
}

.items-stretch {
    align-items: stretch !important;
}

.text-justify {
    text-align: justify !important;
}

.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.font-weight-b {
    font-weight: bold !important;
}

@media (max-width: 768px) {
    .p-20sp {
        padding: 20px!important;
    }

    .pt-20sp {
        padding-top: 20px!important;
    }

    .pb-10sp {
        padding-bottom: 10px!important;
    }

    .px-20sp {
        padding-left: 20px!important;
        padding-right: 20px!important;
    }

    .py-20sp {
        padding-top: 20px!important;
        padding-bottom: 20px!important;
    }
}


/* -------------------------------------------------------------------
header
------------------------------------------------------------------- */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-color);
    border-bottom: 1px solid #E3E3E3;
    position: relative;
    z-index: 100;
}

.logo-area {
    padding-left: 16px;
}

.logo-area a {
    display: block;
}

.logo-area img {
    max-width: 220px;
}

.gnavi__wrap {
    display: flex;
}

.gnavi__wrap .gnavi__lists {
    display: flex;
    align-items: center;
    font-weight: bold;
}

.gnavi__list {
    transition: all .3s;
    margin-right: 30px;
}

.gnavi__list:last-child {
    margin-right: 0;
}

.gnavi__list:hover {
    background-color: #ffffff;
}

.gnavi__list:not(:first-child)::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
}

.gnavi__list:hover::before {
    background-color: #FFF;
}

.gnavi__list>a {
    height: 100px;
    line-height: 2.4;
    text-decoration: none;
    color: var(--font-color);
    padding: 30px 20px 30px 5px;
    display: inline-block;
    white-space: nowrap;
    position: relative;
}

.gnavi__list>a.current {
    color: var(--main-color);
}

.gnavi__list>a::after {
    position: absolute;
    top: 50%;
    right: 0;
    display: inline-block;
    content: "";
    color: var(--main-color);
    width: 11px;
    height: 11px;
    border: 2px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-50%) rotate(45deg);
}

.gnavi__list>a.first::after,
.gnavi__list>a.second::after {
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(135deg);
}

.gnavi__list>a::before {
    background-color: var(--main-color);
    content: "";
    width: 100%;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: 16px;
    margin: auto;
    transform-origin: center top;
    transform: scale(0, 1);
    transition: .3s;
}

.gnavi__list>a:hover::before {
    transform-origin: center top;
    transform: scale(1, 1);
}

.dropdown__lists {
    visibility: hidden;
    opacity: 0;
    width: 100%;
    position: absolute;
    top: 101px;
    left: 0;
    right: 0;
    z-index: 10;
    background-color: #FFF;
    transition: .3s;
}

.gnavi__list:hover .dropdown__lists {
    display: block;
    top: 101px;
    visibility: visible;
    opacity: 1;
}

.dropdown__lists_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 40px 0;
}

.dropdown__list {
    flex-grow: 1;
}

.dropdown__list.first {
    flex-basis: 400px;
    border-right: 1px solid var(--line-color);
    padding: 40px 0;
    flex-shrink: 0;
    flex-grow: 0;
}

.dropdown__list a {
    display: block;
    text-decoration: none;
}

.dorop_menu {
    position: relative;
    color: var(--font-color);
}

.dorop_menu::after {
    background-image: url(../img/common/svg_arrow.svg);
    width: 27px;
    height: 27px;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 0;
}

.dorop_menu.first::after {
    position: static;
    vertical-align: bottom;
    margin-left: 10px;
}

.dorop_menu.first::before {
    position: static;
    content: none;
}

.dropdown__list a:hover .dorop_menu {
    text-decoration: underline;
}

.dorop_hstyle {
    color: var(--main-color);
    font-size: 2.6rem;
    font-weight: bold;
    text-decoration: none;
}

.dorop_menu {
    font-weight: normal;
    margin-top: 20px;
}

.cta-buttons {
    display: flex;
    font-weight: bold;
}

.cta-buttons .menu-btn {
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-buttons .menu-orange {
    background-color: var(--ac-color);
    color: var(--font-color);
    text-decoration: none ;
}

.cta-buttons .menu-green {
    background-color: var(--main-color);
    color: #FFF;
    text-decoration: none;
}

.cta-buttons .menu-green::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 20px;
    background-image: url(../img/common/svg_key.svg);
    background-size: contain;
    margin-right: 10px;
}

.gnav-br {
    display: none;
}

/* --- ハンバーガーボタンのスタイル --- */
.hamburger-trigger {
    display: none;
    position: relative;
    z-index: 100;
    width: 60px;
    height: 60px;
    background: none;
    cursor: pointer;
    padding: 0;
    border: none;
    border-left: 1px solid #E3E3E3;
}

.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
    content: "";
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--main-color);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
    position: absolute;
    left: 15px;
}

.hamburger-icon {
    top: 20px;
}

.hamburger-icon::before {
    top: -8px;
    left: 0;
}

.hamburger-icon::after {
    top: 8px;
    left: 0;
}

.hamburger-text {
    font-size: 10px;
    color: #333;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

/* メニューを開いた時のボタン（×印） */
.hamburger-trigger.is-active .hamburger-icon {
    background-color: transparent;
}

.hamburger-trigger.is-active .hamburger-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.hamburger-trigger.is-active .hamburger-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

.header-right-sp,
.nav-wrapper,
.nav-mask {
    display: none;
}

/* 組合員メニュー全体（初期非表示） */
.cta-buttons .menu-member {
    background-color: var(--main-color);
    color: #FFF;
    position: relative;
}

.member-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 1100;
}

/* メニュー本体 */
.member-menu__panel {
    position: absolute;
    top: 101px;
    right: 0;
    width: 100%;
    background: var(--main-color);
    color: #fff;
    padding: 50px 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

/* 背景オーバーレイ */
.member-menu__overlay {
    width: 100%;
    height: 100%;
}

/* 表示状態（JSで追加） */
.member-menu.open .member-menu__panel {
    transform: translateX(0);
}

/* 閉じるボタン */
.member-menu__close {
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

/* メニュータイトル */
.member-menu__title__wrap {
    display: flex;
    flex-wrap: wrap;
    gap: var(--column-gap-default);
    align-items: center;
    justify-content: space-between;
}

.member-menu__title {
    font-size: 4.2rem;
    font-weight: bold;
}

/* メニュー項目（グリッド） */
.member-menu__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-top: 30px;
}

.member-menu__grid a {
    display: flex;
    height: 160px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #333;
    text-decoration: none;
    padding: 26px;
    text-align: center;
}

.member-menu__grid a img {
    width: auto;
    height: 56px;
    margin: 0 0 8px 0;
}

.member-menu__grid a>span {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 50px;
}

.member-menu__grid a>span::after {
    position: absolute;
    top: 50%;
    right: -16px;
    display: inline-block;
    content: "";
    color: var(--main-color);
    width: 11px;
    height: 11px;
    border: 2px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-50%) rotate(45deg);
}

.member-menu__grid a[target="_blank"]>span::after {
    background-image: url(../img/common/svg_tab.svg);
    border: none;
    width: 15px;
    height: 14px;
    right: -20px;
    background-repeat: no-repeat;
    transform: translateY(-50%) rotate(0deg);
}

.menu-text {
    padding-left: 20px;
}

/* ハンバーガーアイコン（組合員メニュー用） */
.menu-member .hamburger-icon {
    position: relative;
    width: 24px;
    height: 18px;
    margin-right: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.menu-member .hamburger-icon::before,
.menu-member .hamburger-icon::after,
.menu-member .hamburger-icon {
    content: "";
    display: block;
    width: 14px;
    height: 2px;
    background-color: white;
    border-radius: 2px;
    position: absolute;
    left: 20px;
    transition: all 0.3s ease;
}

.menu-member .hamburger-icon {
    top: 50%;
}

.menu-member .hamburger-icon::before {
    top: -8px;
    left: initial;
}

.menu-member .hamburger-icon::after {
    top: 8px;
    left: initial;
}

/* ハンバーガーが「×」に変化 */
.menu-member.is-active .hamburger-icon {
    background-color: transparent;
}

.menu-member.is-active .hamburger-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-member.is-active .hamburger-icon::after {
    transform: rotate(-45deg);
    top: 0;
}



@media (max-width: 1460px) {
    .all {
        margin-bottom: 50px;
        /* お問い合わボタンのフッタ隠れ防止 */
    }

    .pc-navi,
    .pc-cta {
        display: none;
        /* PC用ナビとCTAを非表示 */
    }

    .header-container.member {
        margin-bottom: 60px;
    }

    .nav-wrapper {
        display: block;
        /* SP用メニューパネルを表示 */
    }

    .logo-area {
        margin-right: auto;
    }

    .logo-area a>img {
        max-height: 40px;
    }

    .hamburger-trigger {
        display: block;
    }

    .nav-mask {
        position: fixed;
        top: 61px;
        /* ヘッダーの高さ分、下に配置 */
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        z-index: 99;
        overflow: hidden;
        /* ★これが重要。はみ出した子要素を隠します */

        /* 非表示のときはクリックなどをできないようにする */
        visibility: hidden;
        pointer-events: none;
        transition: visibility 0s 0.4s;
        /* 閉じるときに即座に隠す */
        display: block;
    }

    .nav-mask.is-active {
        visibility: visible;
        pointer-events: auto;
        transition-delay: 0s;
    }

    /* 【変更】メニューパネル本体のスタイル */
    .nav-wrapper {
        position: absolute;
        /* 親(.nav-mask)を基準に配置 */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* 親の高さに合わせる */
        background-color: #FFF;
        overflow-y: auto;
        /* パネル内のスクロールは維持 */

        /* ★transformで上下に動かすのはそのまま */
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .nav-wrapper.is-active {
        transform: translateY(0);
    }

    .nav-sp {
        text-align: center;
    }

    .menu-sp {
        width: 100%;
        height: auto;
        margin-top: 60px;
    }

    .menu-in {
        color: var(--main-color);
        font-weight: bold;
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .menu-in:last-child {
        margin-bottom: 0;
    }

    .menu-in.arrow::after {
        content: "";
        display: inline-block;
        width: 27px;
        height: 27px;
        margin-left: 10px;
        background-image: url(../img/common/svg_arrow.svg);
        background-repeat: no-repeat;
        vertical-align: bottom;
    }

    .menu-in a {
        text-decoration: none;
    }

    .acd-check {
        display: none;
    }

    .acd-label {
        color: var(--main-color);
        display: block;
        margin-bottom: 5px;
        padding: 10px;
        box-sizing: border-box;
        height: 52px;
        cursor: pointer;
    }

    .acd-label::after {
        content: '';
        display: inline-block;
        vertical-align: bottom;
        box-sizing: border-box;
        width: 27px;
        height: 27px;
        border: 1px solid var(--main-color);
        background-image:
            linear-gradient(var(--main-color), var(--main-color)),
            linear-gradient(var(--main-color), var(--main-color));
        background-size: 14px 2px, 2px 14px;
        background-position: center, center;
        background-repeat: no-repeat;
        transition: all 0.5s;
        margin-left: 10px;
    }

    .acd-check:checked+.acd-label::after {
        /* --- linear-gradientを使って「-」を描画（縦棒をなくす） --- */
        background-image:
            /* 横棒のみ */
            linear-gradient(var(--main-color), var(--main-color));

        background-size: 14px 2px;
        /* 横棒のサイズのみ指定 */
    }

    .acd-content {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .acd-content li {
        font-size: 1.6rem;
        font-weight: normal;
        color: var(--font-color);
        height: 0;
        overflow: hidden;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
        opacity: 0;
    }

    .acd-content li::after {
        content: "";
        display: inline-block;
        width: 27px;
        height: 27px;
        margin-left: 10px;
        background-image: url(../img/common/svg_arrow_gray.svg);
        background-repeat: no-repeat;
        vertical-align: bottom;
    }

    .acd-check:checked~.acd-content li {
        height: 50px;
        padding: 12px 0;
        opacity: 1;
    }

    .cta-buttons.cta-buttons-member {
        width: 100%;
    }

    .cta-buttons .menu-orange {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 50px;
        z-index: 5;
    }

    .cta-buttons .menu-btn.menu-green {
        width: 60px;
        height: 60px;
        position: relative;
        text-align: center;
        font-size: 1rem;
        padding-top: 20px;
        line-height: 1.2;
        z-index: 100;
    }

    .cta-buttons .menu-green::before {
        position: absolute;
        top: 5px;
        left: 50%;
        transform: translateX(-50%);
    }

    .cta-buttons.cta-buttons-member {
        position: absolute;
        top: 61px;
    }

    .cta-buttons.cta-buttons-member .menu-btn.menu-member {
        width: 100%;
        height: 60px;
    }

    .gnav-br {
        display: block;
    }

    .menu-btn.menu-member .gnav-br {
        display: none;
    }

    .member-menu__panel {
        top: 120px;
        padding: 0 20px 50px;
    }

    .member-menu_posi {
        display: flex;
        flex-direction: column-reverse;
    }

    .member-menu__title__wrap {
        margin: 0 auto;
        padding-top: 50px;
    }

    .member-menu__title {
        display: none;
    }

    .menu-member .hamburger-icon {
        position: relative;
        left: 15px;
        top: 1px;
    }



}

@media (max-width: 1024px) {
    .member-menu__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .member-menu__panel {
        padding: 0 0 150px;
    }
}

@media (max-width: 768px) {

    .member-menu__grid a {
        height: 110px;
        padding: 26px 23px;
    }

    .member-menu__grid a img {
        height: 40px;
    }

    .member-menu__grid a > span {
        font-size: 1.2rem;
    }

    .member-menu__grid a > span::after {
        width: 8px;
        height: 8px;
        right: -15px;
    }
}

/* -------------------------------------------------------------------
module
------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1270px;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.wrapper {
    width: 100%;
    max-width: 1030px;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.cols {
    display: flex;
    flex-wrap: wrap;
    gap: var(--column-gap-default);
}

.cols>* {
    flex-grow: 0;
    flex-shrink: 1;
    min-width: 0;
}

/* 2カラム */
.cols-2>* {
    /* 計算式: (100% - (ギャップの合計幅)) / カラム数 */
    /* 2カラムの場合、ギャップは1つなので (100% - ギャップ * 1) / 2 */
    flex-basis: calc((100% - var(--column-gap-default)) / 2);
}

/* 3カラム */
.cols-3>* {
    /* 3カラムの場合、ギャップは2つなので (100% - ギャップ * 2) / 3 */
    flex-basis: calc((100% - (var(--column-gap-default) * 2)) / 3);
}

/* 4カラム */
.cols-4>* {
    /* 4カラムの場合、ギャップは3つなので (100% - ギャッ プ * 3) / 4 */
    flex-basis: calc((100% - (var(--column-gap-default) * 3)) / 4);
}



@media (max-width: 1023px) {

    .cols-2>*,
    .cols-3>*,
    .cols-4>* {
        flex-basis: calc((100% - var(--column-gap-default)) / 2);
    }
}

@media (max-width: 767px) {

    .cols-2>*,
    .cols-3>*,
    .cols-4>* {
        flex-basis: 100%;
    }
}

/* 見出し関連 */
.h-style-01 {
    font-size: 8rem;
    font-weight: bold;
    font-family: var(--lang-en);
    line-height: 1.4;
}

.h-style-01 .initials {
    color: var(--main-color);
}

.h-style-02 {
    color: #FFF;
    font-size: 8rem;
    font-weight: bold;
    font-family: var(--lang-en);
    line-height: 1.4;
}

.h-style-03 {
    font-size: 7rem;
    font-weight: bold;
    font-family: var(--lang-en);
    margin-bottom: 20px;
}

.h-style-03.login {
    text-align: center;
}

.h-style-03 .initials {
    color: var(--main-color);
}

.h-style-04 {
    font-size: 4.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.h-style-05 {
    font-size: 3rem;
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-bottom: 4px solid var(--line-color);
    position: relative;
}

.h-style-05::after {
    position: absolute;
    content: "";
    display: block;
    border-bottom: 4px solid var(--main-color);
    bottom: -4px;
    width: 100px;
}

.h-style-06 {
    font-size: 2.4rem;
    background-color: #F3F3F3;
    padding: 10px 14px 12px;
    margin-bottom: 30px;
    position: relative;
}

.h-style-06::before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 30px;
    background-color: var(--main-color);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.h-style-07 {
    font-size: 2.2rem;
    padding-bottom: 10px;
    border-bottom: 2px dashed #E8E8E8;
    font-weight: bold;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.h-style-07 span {
    color: var(--main-color);
    font-size: 1.6rem;
    margin-right: 20px;
    padding: 4px 16px;
    border: 1px solid var(--main-color);
}

.h-style-08 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}




/* ボタン関連 */
.btn {
    font-weight: bold;
    position: relative;
    display: inline-block;
    padding: 2rem 2.5rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
    vertical-align: middle;
    letter-spacing: 0.1em;
    text-decoration: none;
}

.btn.btn-arrow-01 {
    background-color: var(--main-color);
    color: #FFFFFF;
}

.btn.btn-arrow-01::after {
    content: "";
    display: inline-block;
    color: #FFF;
    width: 11px;
    height: 11px;
    border: 2px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: rotate(45deg);
    margin-left: 10px;
}

.btn.btn-arrow-01.prev::after {
    display: none;
}

.btn.btn-arrow-01.prev::before {
    content: "";
    display: inline-block;
    color: #FFF;
    width: 11px;
    height: 11px;
    border: 2px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: rotate(-135deg);
    margin-right: 10px;
}

.btn.btn-arrow-01.btn-long {
    width: 100%;
    position: relative;
}

.btn.btn-arrow-01.btn-long::after {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.btn.btn-arrow-02 {
    background-color: #FFF;
    color: var(--main-color);
}

.btn.btn-arrow-02::after {
    content: "";
    display: inline-block;
    color: var(--main-color);
    width: 11px;
    height: 11px;
    border: 2px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: rotate(45deg);
    margin-left: 10px;
}

.btn.btn-arrow-03 {
    font-weight: bold;
    color: var(--font-color);
    background-color: var(--ac-color);
}

.btn.btn-arrow-03::after {
    content: "";
    display: inline-block;
    color: var(--font-color);
    width: 11px;
    height: 11px;
    border: 2px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: rotate(45deg);
    margin-left: 10px;
}

.btn.btn-arrow-04 {
    background-color: var(--main-color);
    color: #FFF;
    border: 1px solid #FFF;
}

.btn.btn-arrow-04::after {
    content: "";
    display: inline-block;
    color: #FFF;
    width: 11px;
    height: 11px;
    border: 2px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: rotate(45deg);
    margin-left: 10px;
}

.btn.btn-arrow-04:hover {
    background-color: rgba(255, 255, 255, .3);
    opacity: 1;
}

.btn.btn-arrow-04.btn-w {
    padding: 20px 40px;
    background-color: transparent;
}

.btn.btn-arrow-04.btn-w:hover {
    background-color: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.btn.btn-pdf {
    color: #FFF;
    border: 1px solid #FFF;
    padding: 20px 40px;
}

.btn.btn-pdf::after {
    content: "";
    display: inline-block;
    width: 23px;
    height: 28px;
    padding-right: 35px;
    background-image: url(../img/common/svg_pdf.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    vertical-align: bottom;
}



/* kv */
.kv-area {
    margin-bottom: 80px;
    position: relative;
}

.kv-lead {
    width: auto;
    position: absolute;
    left: 4%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    line-height: 1.8;
}

.kv-lead-txt {
    color: var(--main-color);
    font-size: 6rem;
    font-weight: bold;
    padding: 0 10px 10px 16px;
    background: linear-gradient(transparent 0%, #FFFFFF 0%);
    display: inline;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    line-height: 2;
}

.kv-lead-txt2 {
    color: #FFF;
    font-size: 2.4rem;
    padding: 0 6px 4px 8px;
    background: linear-gradient(transparent 0%, #00837B 0%);
    display: inline;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    line-height: 2.2;
}

.kv-lead-inr {
    color: #333;
}

.kv-lead-bg02 {
    color: #FFF;
    background-color: var(--main-color);
    display: inline;
}

/* slider */
.swiper-pagination {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.2rem 0.8rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 25px;
    text-align: center;
    bottom: -50px !important;
}

.swiper-pagination-bullet {
    width: 80px;
    height: 6px;
    cursor: pointer;
    vertical-align: top;
    background-color: #D8D8D8;
}

.swiper-pagination-bullet-active {
    background-color: var(--main-color);
}


/* 記事 */
.card-link {
    transition: all 0.3s;
    text-decoration: none;
}

.card-link:hover {
    transform: scale(1.05);
}

.card {
    position: relative;
    padding-bottom: 50px;
}

.card::after {
    content: "";
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #FFF;
    border: 1px solid var(--main-color);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.3s;
}

.card::before {
    content: "";
    display: inline-block;
    width: 11px;
    height: 11px;
    color: var(--main-color);
    border: 2px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    left: 17px;
    bottom: 14px;
    z-index: 1;
    transition: all 0.3s;
}

a.card-link:hover .card {
    opacity: 1;
}

a.card-link:hover .card::after {
    background-color: var(--main-color);
    opacity: 1;
}

a.card-link:hover .card::before {
    color: #FFF;
    opacity: 1;
}

.card-thumbnail-container {
    overflow: hidden;
    position: relative;
    text-align: center;
}

.card-thumbnail {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    max-height: 236px;
}

.card-thumbnail.vertical {
    object-fit: contain;
}

.card-thumbnail-caption {
    color: var(--font-color);
    margin-top: 15px;
    display: inline-block;
}

.card-content {
    padding: 15px 0;
}

.card-content h3 {
    color: var(--main-color);
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 2.2rem;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellipsis {
    color: var(--font-color);
    margin-bottom: 15px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* 任意の行数を指定 */
}

.card-date {
    color: #9B9B9B;
}

.bg-trape {
    position: relative;
    overflow: hidden;
}

.bg-trape::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50px;
    right: -5%;
    z-index: -1;
    background: var(--sub-color);
    -webkit-transform: skewX(-30deg);
    -moz-transform: skewX(-30deg);
    transform: skewX(-30deg);
    transform-origin: bottom;
}

.bg-image-01 {
    position: relative;
    background-image: url(../img/common/bg-image.png);
    background-position: center bottom 50%;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.bg-image-01::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 117, 110, 0.7);
    z-index: 1;
}

.bg-image-01::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, #02756E 0%, rgba(2, 117, 110, 0) 100%);
    z-index: 2;
}

.bg-image-01>* {
    position: relative;
    z-index: 3;
}

.bg-green {
    background-color: #004f4a;
}

.bg-sub-color {
    background-color: var(--sub-color);
}

.bg-gray {
    background-color: #F6F6F6;
}


/* news&topics */
.news_container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--column-gap-default);
    align-items: center;
}

.news_wrap {
    margin-bottom: 4rem;
    flex-basis: calc((100% - var(--column-gap-default)) / 2);
    flex-grow: 0;
    flex-shrink: 1;
    min-width: 0;
}

.sub-title {
    font-size: 2.2rem;
    font-family: var(--lang-jp);
    font-weight: bold;
}

.lead-text {
    margin: 30px 0;
}

.sub-title-02 {
    color: #FFF;
    font-size: 2.2rem;
    font-weight: bold;
}

.lead-text-02 {
    color: #FFF;
    margin: 30px 0;
}

.list-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    padding: 50px;
}

.list-box li {
    width: 14%;
    border: 1px solid #FFF;

}

.list-box li a {
    color: #FFF;
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 15px;
    position: relative;
}

.list-box li a::after {
    position: absolute;
    top: 50%;
    right: 18px;
    display: inline-block;
    content: "";
    color: #FFF;
    width: 11px;
    height: 11px;
    border: 2px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-50%) rotate(45deg);
}

.list-box li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.footer {
    margin-top: 80px;
}

.banner-area {
    background-color: var(--sub-color);
    padding: 60px 0;
}

.banner-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.address-area {
    padding: 50px 0;
    border-bottom: 1px solid var(--line-color);
}

.foot-box {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.address-box {
    display: flex;
    align-items: center;
}

.address-box>img {
    width: 150px;
    height: auto;
    margin-right: 50px;
}

.address-box li {
    line-height: 2;
}

.footer-nav {
    flex-basis: 420px;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
}

.footer-nav ul li {
    flex-basis: 210px;
}

.footer-nav ul li a {
    text-decoration: none;
    color: var(--font-color);
    padding: 10px 5px 10px 20px;
    display: inline-block;
    white-space: nowrap;
    position: relative;
}

.footer-nav ul li a::before {
    position: absolute;
    top: 50%;
    left: 0;
    display: inline-block;
    content: "";
    color: var(--main-color);
    width: 11px;
    height: 11px;
    border: 2px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-50%) rotate(45deg);
}

.footer-nav ul li a:hover {
    text-decoration: underline;
}

.copyright {
    color: #969696;
    text-align: center;
    padding: 30px 0;
    font-size: 1.4rem;
}

.pagetop {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: var(--ac-color);
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
    z-index: 10;
}

.pagetop::after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    content: "";
    color: var(--font-color);
    width: 11px;
    height: 11px;
    border: 2px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translate(-50%, -50%) rotate(-45deg);
    margin-top: 4px;
}

.pagetop:hover {
    opacity: .7;
}

/* クラス付与時の指定 */
.pagetop.is-active {
    opacity: 1;
    visibility: visible;
}

.pan {
    width: 100%;
    max-width: 1270px;
    margin: 0 auto;
    padding: 20px 0 10px;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.pan ul {
    display: flex;
    flex-wrap: wrap;
}

.pan li {
    padding-left: 10px;
    padding-bottom: 10px;
}

.pan li::before {
    content: "／";
    color: #D8D8D8;
    padding-right: 10px;
}

.pan li:first-child {
    padding-left: 0;
}

.pan li:first-child::before {
    display: none;
}

.pan li a {
    color: var(--main-color);
    font-size: 1.4rem;
    text-decoration: underline;
}

.pan li a:hover {
    text-decoration: none;
}

.title-area {
    background-color: var(--sub-color);
    margin-bottom: 50px;
}

.title-wrap {
    padding: 70px 0;
}

.title-inner {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

.title-inner::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -80px;
    content: "";
    display: inline-block;
    width: 80px;
    height: 5px;
    background-color: var(--main-color);
}

.post-list {
    margin-bottom: 40px;
}

.post-list li {
    margin-bottom: -1px;
    border-top: 1px solid var(--line-color);
    border-bottom: 1px solid var(--line-color);
    transition: .3s;
}

.post-list li:hover {
    background-color: rgba(157, 157, 157, 0.1);
}

.post-list li a {
    display: block;
    padding: 40px 0;
    text-decoration: none;
    color: var(--font-color);
}

.post-list-iner {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-right: 50px;
    position: relative;
}

.post-list-iner::before {
    content: "";
    display: inline-block;
    width: 11px;
    height: 11px;
    color: var(--main-color);
    border: 2px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    right: 21px;
    top: 50%;
    z-index: 1;
}

.post-list-iner::after {
    content: "";
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #FFF;
    border: 1px solid var(--main-color);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.post-thumbnail .card-thumbnail {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 215px;
    object-fit: cover;
    object-position: center;
}

.post-thumbnail {
    width: 100%;
    max-width: 350px;
}

.post-content {
    padding-right: 5%;
}

.post-content>h3 {
    color: var(--main-color);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.pagination-area,
.btn-area {
    border-top: 1px solid var(--line-color);
    padding: 50px 0;
    text-align: center;
}

.btn-area {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.btn-area.l-none {
    border-top: none;
}

.pagination-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 8px;
    list-style-type: none;
    padding: 0;
}

.pagination-1 a {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2em;
    height: 2em;
    border-radius: 1px;
    color: var(--font-color);
}

.pagination-1 a:not(:hover) {
    text-decoration: none;
}

.pagination-1 .current a {
    background-color: var(--main-color);
    color: #fff;
    pointer-events: none;
}

.pagination-1 a:hover {
    background-color: var(--main-color);
    color: #FFF;
    opacity: 1;
}

.pagination-1 .prev,
.pagination-1 .next {
    width: 32px;
    height: 32px;
}

.pagination-1 .prev a,
.pagination-1 .next a {
    display: block;
    text-align: center;
    position: relative;
    color: var(--main-color);
}

.pagination-1 .prev a::before,
.pagination-1 .next a::before {
    width: 11px;
    height: 11px;
    display: inline-block;
    content: "";
    vertical-align: bottom;
    border: 2px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    position: absolute;
    top: 50%;
}

.pagination-1 .prev a::before {
    transform: translateY(-50%) rotate(-136deg);
    left: 12px;
}

.pagination-1 .next a::before {
    transform: translateY(-50%) rotate(45deg);
    left: 8px;
}

.pagination-1 .prev a:hover,
.pagination-1 .next a:hover {
    color: #FFF;
}

.content-detail {
    padding-bottom: 40px;
    display: flow-root;
}

figure {
    width: 440px;
    float: left;
}

figure img {
    width: 100%;
    max-width: 400px;
    padding-bottom: 20px;
}

figcaption {
    text-align: center;
    padding-bottom: 40px;
    padding-right: 40px;
}

.content-image {
    margin-bottom: 40px;
}

.content-image ul {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.content-image li {
    flex-basis: calc((100% - (50px * 3)) / 4);
    text-align: center;
}

.content-image span {
    display: inline-block;
    margin-top: 16px;
}

.content-image .img-thumb {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Lightbox の拡大画像を元に戻す */
.lb-image {
    max-width: 90vw !important;
    max-height: 90vh !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block;
    margin: 0 auto;
}

.lb-prev,
.lb-next {
    transition: none !important;
}

.lb-nav a {
    opacity: 1 !important;
    top: 50% !important;
    transition: none !important;
}


.content-file {
    padding: 30px;
    margin-bottom: 70px;
}

.content-file li {
    margin-bottom: 10px;
}

.content-file li:last-child {
    margin-bottom: 0;
}

.content-file li a {
    color: var(--main-color);
    text-decoration: underline;
}

.content-file li a:hover {
    text-decoration: none;
}

a[href$=".pdf"]::after, a[data-file-name*="."]::after {
    content: "";
    display: inline-block;
    padding-right: 30px;
    background-image: url(../img/common/svg_other.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    width: 22px;
    height: 27px;
    vertical-align: middle;
}

a[data-file-name$=".xls"]::after,
a[data-file-name$=".xlsx"]::after,
a[data-file-name$=".xlsm"]::after,
a[data-file-name$=".xlsb"]::after, 
a[href$=".xls"]::after,
a[href$=".xlsx"]::after,
a[href$=".xlsm"]::after,
a[href$=".xlsb"]::after {
    background-image: url(../img/common/svg_xls.svg);
}

a[data-file-name$=".docx"]::after,
a[data-file-name$=".doc"]::after,
a[href$=".docx"]::after,
a[href$=".doc"]::after {
    background-image: url(../img/common/svg_docx.svg);
}

a[href$=".pdf"]::after,
a[data-file-name$=".pdf"]::after {
    background-image: url(../img/common/svg_pdf.svg);
}

a[data-file-name$=".jpg"]::after,
a[data-file-name$=".jpeg"]::after,
a[data-file-name$=".png"]::after,
a[data-file-name$=".gif"]::after,
a[href$=".jpg"]::after,
a[href$=".jpeg"]::after,
a[href$=".png"]::after,
a[href$=".gif"]::after {
    background-image: url(../img/common/svg_img.svg);
}

a[data-file-name$=".ppt"]::after,
a[href$=".ppt"]::after,
a[data-file-name$=".pptx"]::after,
a[href$=".pptx"]::after {
    background-image: url(../img/common/svg_ppt.svg);
}

a[data-file-name$=".xwd"]::after,
a[href$=".xwd"]::after {
    background-image: url(../img/common/svg_xwd.svg);
}

a[data-file-name$=".mp3"]::after,
a[data-file-name$=".mp4"]::after,
a[href$=".mp3"]::after,
a[href$=".mp4"]::after {
    background-image: url(../img/common/svg_movie.svg);
}

.progressbar {
    position: relative;
    width: 650px;
    margin: 0 auto 60px auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.progressbar li {
    position: relative;
    list-style-type: none;
    text-align: center;
    text-transform: uppercase;
    width: 33.333%;
    color: #999999;
    font-weight: bold;
}

.progressbar li:before {
    display: block;
    width: 50px;
    height: 50px;
    margin: 7px auto 20px auto;
    padding: 12px;
    text-align: center;
    background-color: #CFCFCF;
    color: #FFF;
}

.progressbar li.first:before {
    content: "1";
}

.progressbar li.second:before {
    content: "2";
}

.progressbar li.third:before {
    content: "3";
}

.progressbar li:after {
    position: absolute;
    z-index: -1;
    top: 31px;
    left: -31%;
    width: 60%;
    height: 3px;
    content: '';
    background-color: #CFCFCF;
}

.progressbar li:first-child:after {
    content: none;
}

.progressbar li.active,
.progressbar li.comp {
    color: var(--main-color);
}

.progressbar li.active:before,
.progressbar li.comp:before {
    background-color: var(--main-color);
}

.progressbar li.active:after,
.progressbar li.comp:after {
    background-color: var(--main-color);
}

.normal_list {
    list-style-type: disc;
    padding-left: 16px;
    margin-bottom: 30px;
}

.normal_list li {
    margin-bottom: 10px;
}

.normal_list li::marker {
    color: var(--main-color);
}

span.required {
    color: #FFF;
    background-color: #E50202;
    padding: 3px 10px 4px;
    font-weight: bold;
}

.form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    border: 1px solid var(--line-color);
    margin-bottom: -1px;
}

.form-row dt {
    width: 34%;
    font-weight: bold;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F5F5F5;
    border-right: 1px solid var(--line-color);
}

.form-row dd {
    width: 66%;
    margin: 0;
    padding: 23px 20px 20px;
}

input[type="text"],
input[type="password"],
textarea {
    width: 80%;
    padding: 1rem;
    box-sizing: border-box;
    border: 1px solid var(--line-color);
}

input[type=text]:focus,
input[type="password"]:focus,
textarea:focus {
    border: 2px solid #3388F7;
    background-color: #E8F8FF;
    outline: 0;
}

select {
    width: 80%;
    padding: 1rem;
    box-sizing: border-box;
    border: 1px solid var(--line-color);
    -webkit-appearance: none;
    appearance: none;
    background-color: #FFF;
    background-image: url(../img/common/svg_arrow_u.svg);
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 14px;
}

select:focus {
    border: 2px solid #3388F7;
    outline: 0;
}

.half {
    width: 50% !important;
}

.long {
    width: 100% !important;
}

.radioItem {
    display: inline-flex;
    cursor: pointer;
}

.radioButton {
    appearance: none;
    position: relative;
    width: 24px;
    height: 24px;
    border: 1px solid #E3E3E3;
    border-radius: 9999px;
    cursor: pointer;
    margin-right: 10px;
}

.radioButton:checked::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 12px;
    height: 12px;
    margin: auto;
    border-radius: 9999px;
    background-color: var(--main-color);
}

.checkItem {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.checkButton {
    appearance: none;
    position: relative;
    width: 30px;
    height: 30px;
    border: 1px solid #E3E3E3;
    background-color: #FFF;
    cursor: pointer;
    margin-right: 10px;
}

.checkButton:checked::after {
    border-right: 3px solid var(--main-color);
    border-bottom: 3px solid var(--main-color);
    content: '';
    display: block;
    width: 12px;
    height: 18px;
    position: absolute;
    top: 2px;
    left: 8px;
    transform: rotate(45deg);
}


.errorMsg {
    padding: 20px;
    margin-bottom: 20px;
    background-color: #FFEAEA;
    border: 1px solid #E50202;
}

.errorMsg ul {
    color: #E50202;
    list-style: circle;
    padding-left: 16px;
}

.errorMsg ul li {
    margin-bottom: 10px;
}

.errorMsg ul li:last-child {
    margin-bottom: 0;
}

.form-error {
    background-color: #FFEAEA !important;
    border: 2px solid #E50202 !important;
}

.errorMsg2,
.msgArea {
    color: #E50202;
    margin-top: 10px;
}

.complete {
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
}

.complete-contet {
    background-color: var(--sub-color);
    padding: 20px 40px;
    margin-bottom: 40px;
}

.complete-msg {
    color: #E50202;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.msg-sample {
    margin-top: 30px;
}

.msg-sample img {
    margin: 0 auto;
}

.inner-link {
    margin-bottom: 30px;
}

.inner-link ul {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.inner-link ul li {
    background-color: var(--sub-color);
}

.inner-link ul li a {
    text-decoration: none;
    color: var(--font-color);
    padding: 10px 30px 12px 15px;
    display: inline-block;
    white-space: normal;
    position: relative;
}

.inner-link ul li a::after {
    position: absolute;
    top: 50%;
    right: 16px;
    display: inline-block;
    content: "";
    color: var(--main-color);
    width: 8px;
    height: 8px;
    border: 2px solid currentColor;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: currentcolor;
    border-left-width: 2px;
    border-left-style: solid;
    border-left-color: currentcolor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-50%) rotate(135deg);
}

.table-responsive {
    overflow-x: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch;
}

/* 横スクロール用テーブル */
.data-table {
    width: 100%;
    min-width: 780px;
    border-collapse: collapse;
    background-color: #FFFFFF;
    margin-top: 0;
}

/* tableそのまま縮小表示 */
.data-table.origin {
    min-width: initial;
}

/* table　th折り返し */
.data-table.turn {
    min-width: initial;
}

.data-table th {
    padding: 15px;
    font-weight: bold;
    color: #333;
    white-space: nowrap;
    border: 1px solid var(--line-color);
    text-align: center;
}

.data-table .table-title th {
    background-color: var(--sub-color);
}

.data-table td {
    padding: 15px;
    border: 1px solid var(--line-color);
    vertical-align: middle;
}

.data-table .table-subtitle th {
    background-color: #F5F5F5;
}

.table-bg {
    background-color: var(--sub-color);
}

/* 横スクロール案内のスタイル */
.scroll-notice {
    display: none;
    align-items: center;
    gap: 8px;
    padding-bottom: 20px;
    border-radius: 4px;
}

.scroll-notice::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url('../img/common/svg_swipe.svg') no-repeat center;
    background-size: contain;
}

.wrap-box1 {
    padding: 20px 40px;
    background-color: #F6F6F6;
}

.wrap-box2 {
    padding: 20px 40px;
    background-color: var(--sub-color);
}

.login-box {
    width: 60%;
    margin: 0 auto;
}

.loginForm dt {
    margin-bottom: 10px;
    font-weight: bold;
}

.loginForm dd {
    margin-bottom: 20px;
}

.link-list {
    text-align: center;
    margin-top: 20px;
}

.link-list ul {
    display: flex;
    flex-direction: column;
}

.link-list ul li a {
    text-decoration: none;
    color: var(--font-color);
    padding: 10px 5px 10px 20px;
    display: inline-block;
    white-space: nowrap;
    position: relative;
}

.link-list ul li a::after {
    position: absolute;
    top: 50%;
    right: -10px;
    display: inline-block;
    content: "";
    color: var(--main-color);
    width: 11px;
    height: 11px;
    border: 2px solid currentColor;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: currentcolor;
    border-left-width: 2px;
    border-left-style: solid;
    border-left-color: currentcolor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-50%) rotate(45deg);
}

.link-list ul li a:hover {
    text-decoration: underline;
}

.pickup_wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-box {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 40px;
}

.article-box a {
    display: inline-block;
}

.article-box img {
    max-width: 200px;
}

.bg-pr {
    background-color: #150100;
    position: relative;
    overflow: hidden;
    color: #FFF;
    margin-bottom: 70px;
}

.bg-pr::before,
.bg-pr::after {
    position: absolute;
    top: 0;
    content: "";
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    width: 242px;
    height: 386px;
    z-index: 0;
}

.bg-pr::before {
    left: 0;
    background-image: url(../img/pr/bg_curtain_l.png);
    background-position: left top;
}

.bg-pr::after {
    right: 0;
    background-image: url(../img/pr/bg_curtain_r.png);
    background-position: right top;
}

.title-call {
    position: relative;
    text-align: center;
    z-index: 1;
    padding: 60px 0;
}

.title-call::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.00) 100%);
}

.rank,
.pr-title {
    font-family: serif;
}

.rank {
    font-size: 3.2rem;
    font-weight: bold;
    padding: 12px 0;
    border-top: 1px solid #745A58;
    border-bottom: 1px solid #745A58;
    max-width: 680px;
    margin: 0 auto;
}

.pr-title {
    font-size: 6.8rem;
    font-weight: bold;
    padding: 30px 0;
}

.pr-title>span {
    display: block;
    font-size: 4rem;
}

.comment-box {
    margin-bottom: 50px;
    padding: 30px;
    display: flex;
    gap: 30px;
    border: 1px solid #745A58;
    background: #2C1A19;
}

.comment-box img {
    width: 200px;
    height: 200px;
}

.comment-inner {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    line-height: 2;
}

.comment-name {
    font-size: 3rem;
    font-family: serif;
    margin-bottom: 30px;
    font-weight: bold;
}

.comment-sub {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.award-titl {
    color: #C8A51A;
}

/* 金賞 */
.award-title {
    color: #C8A51A;
    font-family: serif;
    font-size: 5rem;
    text-align: center;
    margin-bottom: 40px;
}

.award-title::before,
.award-title::after {
    content: "";
    display: inline-block;
    width: 34px;
    height: 72px;
    background-size: cover;
    background-repeat: no-repeat;
    vertical-align: bottom;
}

.award-title.rank1::before {
    background-image: url(../img/pr/rank_01_l.svg);
    margin-right: 20px;
}

.award-title.rank1::after {
    background-image: url(../img/pr/rank_01_r.svg);
    margin-left: 20px;
}

.magazine-card {
    position: relative;
    padding: 50px 0;
    text-align: center;
    color: white;
    font-family: serif;
}

.magazine-image {
    position: relative;
    z-index: 1;
    box-shadow: 0 40px 30px -20px rgba(0, 0, 0, 0.5);
    /* 下に向かって四角く落ちる影 */
}

.magazine-wrap {
    width: 100%;
}

.rank-badge {
    position: relative;
    max-width: 260px;
    margin: 0 auto;
}

.rank-badge::before {
    counter-increment: number 1;
    content: counter(number) " ";
    display: inline-block;
    position: absolute;
    top: -48px;
    left: -50px;
    background-color: #b5912f;
    color: #FFFFFF;
    font-weight: bold;
    width: 70px;
    height: 70px;
    font-size: 3.6rem;
    z-index: 2;
    padding: 10px;
}

.rank-badge.no2::before {
    counter-increment: number 2;
}

.rank-badge img {
    width: 100%;
    max-width: 260px;
    display: block;
    margin: 0 auto;
    position: relative;
}

.trapezoid-shadow {
    position: absolute;
    bottom: -50px;
    /* 画像の下に影を出す */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 475px;
    height: 120px;
    background: RGBA(255, 255, 255, 0.20);
    background: linear-gradient(185deg, rgba(255, 255, 255, 0.00) 3.78%, rgba(255, 255, 255, 0.20) 95.53%);
    clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
    z-index: 0;
}

.magazine-info {
    margin-top: 70px;
}

.magazine-info>p {
    font-size: 2rem;
}

.magazine-info h3 {
    font-size: 3.2rem;
    margin: 8px 0 16px;
}

.magazine-info small {
    font-size: 1.6rem;
}

/* 銀賞 */
.award-title.rank2 {
    color: #8A98A1;
}

.award-title.rank2::before {
    background-image: url(../img/pr/rank_02_l.svg);
    margin-right: 20px;
}

.award-title.rank2::after {
    background-image: url(../img/pr/rank_02_r.svg);
    margin-left: 20px;
}

.rank2 .magazine-info {
    margin-top: 50px;
}

.rank2 .magazine-info p {
    font-size: 1.8rem;
}

.rank2 .magazine-info h3 {
    font-size: 2.6rem;
}

.rank2 .rank-badge::before {
    background-color: #8A98A1;
    font-size: 3.4rem;
    width: 60px;
    height: 60px;
    top: -45px;
    left: -45px;
    padding: 6px;
}

.rank2 .rank-badge.no3::before {
    counter-increment: number 3;
}

.rank2 .rank-badge.no4::before {
    counter-increment: number 4;
}

.rank2 .rank-badge.no5::before {
    counter-increment: number 5;
}

.rank2 .rank-badge.no6::before {
    counter-increment: number 6;
}

.rank2 .rank-badge.no7::before {
    counter-increment: number 7;
}

.rank2 .rank-badge {
    max-width: 180px;
}

.rank2 .rank-badge img {
    max-width: 180px;
}

.rank2 .trapezoid-shadow {
    bottom: -30px;
    height: 90px;
}


/* 銅賞 */
.award-title.rank3 {
    color: #9F8144;
}

.award-title.rank3::before {
    background-image: url(../img/pr/rank_03_l.svg);
    margin-right: 20px;
}

.award-title.rank3::after {
    background-image: url(../img/pr/rank_03_r.svg);
    margin-left: 20px;
}

.rank3 {
    margin-bottom: 50px;
}

.rank3 .magazine-info {
    margin-top: 40px;
}

.rank3 .magazine-info p {
    font-size: 1.6rem;
}

.rank3 .magazine-info h3 {
    font-size: 2rem;
}

.rank3 .rank-badge::before {
    background-color: #9F8144;
    font-size: 3rem;
    width: 50px;
    height: 50px;
    top: -35px;
    left: -35px;
    padding: 5px 6px 5px 4px;
}

.rank3 .rank-badge.no8::before {
    counter-increment: number 8;
}

.rank3 .rank-badge.no9::before {
    counter-increment: number 9;
}

.rank3 .rank-badge.no10::before {
    counter-increment: number 10;
}

.rank3 .rank-badge.no11::before {
    counter-increment: number 11;
}

.rank3 .rank-badge.no12::before {
    counter-increment: number 12;
}

.rank3 .rank-badge.no13::before {
    counter-increment: number 13;
}

.rank3 .rank-badge.no14::before {
    counter-increment: number 14;
}

.rank3 .rank-badge {
    max-width: 140px;
}

.rank3 .rank-badge img {
    max-width: 140px;
}

.rank3 .trapezoid-shadow {
    height: 70px;
    bottom: -25px;
}

.text-link li a, .link-under a {
    color: var(--main-color);
    text-decoration: underline;
    display: inline-block;
    margin-bottom: 10px;
}

.text-link li a[target="_blank"]::after, .link-under a[target="_blank"]::after {
    content: "";
    display: inline-block;
    background-image: url(../img/common/svg_tab.svg);
    width: 15px;
    height: 14px;
    background-repeat: no-repeat;
    margin-left: 4px;
    margin-right: 4px;
}

.text-link li a:hover {
    text-decoration: none;
}

.text-link li a img {
    display: inline-block;
}

.box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
}

.box .box-iner-txt {
    width: calc(100% - 440px);
}

.box img {
    width: 400px;
}

.box img.action-img {
    width: 100px;
}

.box-img {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.box-txt>ol {
    margin-bottom: 10px;
    padding-left: 30px;
    list-style: conic-gradient;
}

.box-txt>ol>li {
    margin-bottom: 10px;
}

.box-txt>ol>li::marker {
    color: var(--main-color);
    font-weight: bold;
}

.box-txt>ul {
    margin-bottom: 10px;
    padding-left: 20px;
    list-style: disc;
}

.box-txt>ul>li>a {
    color: var(--main-color);
    text-decoration: underline;
}

.box-txt>ul>li>a:hover {
    text-decoration: none;
}

.line-add {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border: 4px solid #00B900;
    border-radius: 8px;
}

.line-add>p {
    flex-basis: 50%;
    text-align: center;
    color: #00B900;
    font-weight: bold;
    font-size: 6rem;
}

.line-add .line-qr {
    flex-basis: 50%;
    padding: 20px;
    text-align: center;
}

.officer-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.officer-list dt, .officer-list dd {
    padding: 10px;
}

.officer-list dt {
    width: 15%;
    border-bottom: 1px solid var(--line-color);
}

.officer-list dd {
    color: var(--main-color);
    width: 85%;
    border-bottom: 1px solid var(--line-color);
}

.rows2-list {
    column-count: 2;
    column-gap: 2em;
    margin-bottom: 40px;
}

.rows2-iner {
    display: flex;
}

.rows2-iner dt, .rows2-iner dd {
    padding: 10px;
}

.rows2-iner dt {
    width: 25%;
    color: var(--main-color);
    border-bottom: 1px solid var(--line-color);
}

.rows2-iner dd {
    width: 75%;
    border-bottom: 1px solid var(--line-color);
}

.pcDisp {
    display: block;
}

.spDisp {
    display: none;
}

.nw-select {
    text-align: right;
    margin-bottom: 20px;
}

.nw-select select {
    width: 30%;
}

.dl-date-list {
    display: flex;
    flex-wrap: wrap;
}

.dl-date-list dt {
    width: 140px;
    font-weight: bold;
    margin-bottom: 10px;
}

.dl-date-list dd {
    width: calc(100% - 140px);
    margin-bottom: 10px;
}

.img-line {
    border: 1px solid var(--line-color);
}


@media (max-width: 1460px) {
    .pagetop {
        bottom: 60px;
        width: 50px;
        height: 50px;
    }

}

@media (max-width: 1100px) {
    .news_wrap {
        flex-basis: 100%;
    }

    .news_wrap:first-child {
        text-align: center;
    }

    .news_wrap .card-link {
        max-width: 500px;
        display: block;
        text-align: left;
        margin: 0 auto;
    }

    .list-box {
        gap: 20px;
        padding: 30px;
    }

}

@media (max-width: 1024px) {
    .pcDisp {
        display: none;
    }

    .spDisp {
        display: block;
    }

    .kv-area img {
        height: 350px;
        object-fit: cover;
        object-position: 50% center;
    }

    .kv-lead-txt {
        font-size: 3rem;
    }

    .bg-trape::before {
        top: 330px;
        right: 0;
        -webkit-transform: skewX(0deg);
        moz-transform: skewX(0deg);
        transform: skewX(0deg);
    }

    .banner-list::after {
        content: "";
        display: inline-block;
        width: 224px;
    }

    .title-inner {
        padding: 0 30px 0 60px;
    }

    .title-inner::before {
        left: 0;
        width: 40px;
    }

    figure {
        float: none;
        margin: 0 auto;
        padding-right: 0;
    }

    figure img {
        margin: 0 auto;
    }

    figcaption {
        padding-right: 0;
    }

    .list-box li {
        width: 22%;
    }

    .box {
        flex-direction: column;
    }

    .box .box-iner-txt {
        width: 100%;
    }

    .box img {
        margin: 0 auto;
    }

    .box img.action-img {
        width: 140px;
    }

    .foot-box {
        justify-content: center;
        flex-wrap: wrap;
    }

    .bg-pr::before, .bg-pr::after {
        width: 170px;
        height: 270px;
    }

    .title-call::before {
        top: 0;
        width: 500px;
        height: 500px;
    }

    .rank {
        font-size: 2.8rem;
    }

    .pr-title {
        font-size: 5rem;
    }

    .pr-title > span {
        font-size: 3rem;
    }

    .officer-list dt {
        width: 20%;
    }

    .officer-list dd {
        width: 80%;
    }

    .rows2-iner dt {
        width: 30%;
    }

    .rows2-iner dd {
        width: 70%;
    }

    .content-image li {
        flex-basis: calc((100% - (50px * 3)) / 3);
    }
}

@media (max-width: 768px) {
    .swiper-pagination-bullet {
        width: 40px;
    }
    .kv-lead-txt {
        font-size: 2.8rem;
    }

    .kv-lead-txt2 {
        font-size: 1.6rem;
    }

    .h-style-01 {
        font-size: 4.4rem;
        overflow-wrap: anywhere;
    }

    .h-style-02,
    .h-style-03 {
        font-size: 3.8rem;
    }

    .h-style-03 {
        margin-bottom: 0;
    }

    .h-style-04 {
        font-size: 3.4rem;
    }

    .h-style-05 {
        font-size: 2.4rem;
        padding-bottom: 12px;
    }

    .sub-title {
        font-size: 1.8rem;
    }

    .bg-trape::before {
        top: 290px;
    }

    figure {
        width: 100%;
    }

    .banner-list {
        justify-content: center;
        gap: 20px;
    }

    .card-link {
        max-width: 500px;
        margin: 0 auto;
    }

    .card-link:hover {
        transform: scale(1);
    }

    .form-row {
        flex-direction: column;
    }

    .progressbar {
        width: 100%;
    }

    .progressbar li {
        font-size: 1.4rem;
    }

    .progressbar li::after {
        left: -14%;
        width: 30%;
    }

    .complete-contet {
        padding: 20px;
    }

    .form-row dt,
    .form-row dd {
        width: 100%;
    }

    .form-row dd {
        display: flex;
        flex-direction: column;
    }

    input[type="text"],
    textarea,
    select {
        width: 100%;
    }

    .scroll-notice {
        display: flex;
    }

    .contents-wrap {
        text-align: center;
    }

    .contents-wrap.text-right {
        text-align: center !important;
        margin-top: -50px;
        margin-bottom: 50px;
    }

    .list-box {
        gap: 20px;
        padding: 30px;
    }

    .list-box li {
        width: 44%;
    }

    .box {
        flex-direction: column;
    }

    .box p {
        width: 100%;
    }

    .box img {
        width: 100%;
        padding: 0 20px;
    }

    .post-list-iner {
        flex-direction: column;
        padding-right: 0;
        gap: 23px;
    }

    .post-list li a {
        padding: 23px 0;
    }

    .post-thumbnail {
        max-width: initial;
    }

    .post-content {
        padding-right: 0;
        width: 100%;
        margin-bottom: 50px;
    }

    .post-list-iner::before {
        right: initial;
        top: initial;
        left: 18px;
        bottom: 14px;
    }

    .post-list-iner::after {
        right: initial;
        top: initial;
        left: 0;
        bottom: -25px;
    }

    .post-content>h3 {
        font-size: 2.4rem;
    }

    .post-thumbnail .card-thumbnail {
        max-height: initial;
    }

    .address-box {
        flex-direction: column;
    }

    .address-box > img {
        margin-right: 0;
    }

    .address-box > ul {
        text-align: center;
    }

    .pan li, .pan li a {
        font-size: 1.2rem;
    }

    .line-add {
        flex-direction: column;
        padding-top: 20px;
    }

    .line-add > p {
        font-size: 4rem;
        padding-bottom: 10px;
    }

    .line-add .line-qr img {
        margin: 0 auto;
    }

    .content-image ul {
        gap: 30px;
    }

    .content-image li {
        flex-basis: calc((100% - (30px * 3)) / 2);
    }

    .article-box {
        flex-direction: column;
        gap: 20px;
    }
    
    .article-box a {
        margin: 0 auto;
    }

    .comment-box {
        flex-direction: column;
    }

    .comment-box img {
        margin: 0 auto;
    }

    .officer-list {
        flex-direction: column;
    }

    .officer-list dt {
        width: 100%;
        border-bottom: none;
        padding-bottom: 0;
    }

    .officer-list dd {
        width: 100%;
        padding-top: 0;
    }

    .rows2-iner {
        flex-direction: column;
    }

    .rows2-iner dt {
        width: 100%;
        border-bottom: none;
        padding-bottom: 0;
    }

    .rows2-iner dd {
        width: 100%;
        padding-top: 0;
    }

    .content-file {
        padding: 20px;
    }

    .data-table.row colgroup > col {
        width: 100%;
    }

    .data-table.row .table-title {
        display: flex;
        flex-direction: column;
    }

    .data-table.row tr th, .data-table.row tr td {
        border-bottom: none;
    }

    .data-table.row tr:last-of-type td {
        border-bottom: 1px solid var(--line-color);
    }

    .dl-date-list {
        display: block;
    }

    .dl-date-list dt {
        width: 100%;
        margin-bottom: 0;
    }
    
    .dl-date-list dd {
        width: 100%;
    }
}


@media (max-width: 498px) {
    .banner-list li {
        width: 45%;
    }

    .banner-list::after {
        width: 45%;
    }

    .footer-nav {
        flex-basis: auto;
    }

    .footer-nav ul {
        flex-direction: column;
    }

    .footer-nav ul li {
        flex-basis: initial;
    }

    .line-add {
        width: 80%;
    }

    .line-add > p {
        font-style: 3rem;
    }

    .bg-pr {
        margin-bottom: 0;
    }

    .bg-pr::before, .bg-pr::after {
        width: 70px;
        height: 110px;
    }

    .title-call::before {
        width: 240px;
        height: 80px;
        top: 45px;
    }

    .rank {
        font-size: 2rem;
    }

    .pr-title {
        font-size: 4rem;
    }

    .pr-title > span {
        font-size: 2.6rem;
    }

    .magazine-card {
        padding: 35px 0;
    }

    .rank-badge::before, .rank3 .rank-badge::before {
        width: 60px;
        height: 60px;
        padding: 6px;
    }

    .rank-badge::before, .rank2 .rank-badge::before, .rank3 .rank-badge::before {
        font-size: 3.4rem;
    }

    .rank2 .rank-badge, .rank3 .rank-badge {
        max-width: 260px;
    }

    .rank2 .rank-badge img, .rank3 .rank-badge img {
        max-width: 260px;
    }

    .magazine-info h3 {
        font-size: 2.6rem;
    }

    .magazine-info p, .rank2 .magazine-info p, .rank3 .magazine-info p {
        font-size: 1.8rem;
    }

    .comment-box {
        padding: 15px 20px;
    }

    .comment-name {
        font-size: 2.4rem;
        margin-bottom: 20px;
    }

    .comment-sub {
        font-size: 1.8rem;
    }

    .footer {
        margin-top: 50px;
    }

    .rows2-list {
        column-count: 1;
    }

    .rows2-iner {
        flex-direction: row;
    }

    .rows2-iner dt {
        border-bottom: 1px solid var(--line-color);
        padding-bottom: 10px;
    }

    .rows2-iner dd {
        padding-top: 10px;
    }

}