@charset "UTF-8";
/*=======================================
container
=======================================*/
.container {
    width: 100%;
    padding-right: var(--container-pd);
    padding-left: var(--container-pd);
}
.section {
    max-width: var(--container-max);
    margin-right: auto;
    margin-left: auto;
    padding-top: var(--section-top);
    padding-bottom: var(--section-bottom);
    & + .section {
        padding-top: 0;
    }
}

/*=======================================
header
=======================================*/
:root {
    --size_sp: 45px;
    --size_pc: 76px;
}
.header_wrap {
    position: absolute;
    inset: clamp(15px, 20vw/13.66, 20px) 0 0;
    width: 100%;
    height: var(--size_sp);
    z-index: 2;
    
    @media (width >= 768px) {
        height: var(--size_pc);
    }
    /*固定　-----------*/
    &.fixed {
        position: fixed;
        inset: clamp(15px, 20vw/13.66, 20px) 0 auto;
        transition: all 0.5s;
        animation: hdslide linear .4s 1;
        -webkit-animation: hdslide linear .4s 1;
        z-index: var(--header-z);
        @media (width >= 768px) {
            height: 60px;
        }
    }
}
@keyframes hdslide {
  0% {
    top: -76px;
  }
  100% {
    top: 0;
  }
}
@-webkit-keyframes hdslide {
  0% {
    top: -76px;
  }
  100% {
    top: 0;
  }
}

.header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    border-radius: var(--base-radius);
    box-shadow: 0px 4px 9.46px 1.54px rgba(70, 76, 99, 0.27);
    margin-inline: clamp(15px, 30vw/13.66, 30px);
    overflow: hidden;
}
.header_logo {
    width: clamp(125px, 178vw/13.66, 178px);
    margin-left: clamp(11px, 20vw/13.66, 20px);
    :is(img) {
        width: 100%;
        height: auto;
    }
}
.header_contact {
    width: max-content;
    margin-left: auto;
    display: flex;
    align-items: center;
    .tel {
        @media (width >= 768px) {
            margin-right: 18px;
        }
        .tel_num {
            @media (width >= 768px) {
                display: inline-flex;
                align-items: center;
                line-height: 1;
            }
            a {
                width: var(--size_sp);
                height: var(--size_sp);
                display: flex;
                justify-content: center;
                align-items: center;
                color: var(--white);
                font-size: 26px;
                text-decoration: none;
                background: var(--maincolor-dark);
                
            }
            i {
                @media (width >= 768px) {
                    color: var(--maincolor);
                    font-size: clamp(2.9rem, 31vw/13.66, 3.1rem);
                }
            }
            .num {
                display: none;
                @media (width >= 768px) {
                    display: block;
                    font-family: var(--font-en);
                    font-size: clamp(3.6rem, 40vw/13.66, 4.0rem);
                }
            }
        }
        p:not(.tel_num) {
            display: none;
            @media (width >= 768px) {
                display: block;
                font-size: var(--font-s);
                text-align: right;
                line-height: 1.1;
            }
        }
    }
    .mail {
        a {
            width: var(--size_sp);
            height: var(--size_sp);
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--white);
            font-size: 26px;
            text-decoration: none;
            background: var(--maincolor);
            @media (width >= 768px) {
                width: var(--size_pc);
                height: var(--size_pc);
                font-size: 40px;
                transition: background 0.2s;
                &:hover {
                    background: var(--maincolor-dark);
                }
            }
        }
    }
    .vpoint {
        img {
            width: var(--size_sp);
            height: var(--size_sp);
            @media (width >= 768px) {
                width: var(--size_pc);
                height: var(--size_pc);
            }
        }
    }
}
.header_wrap.fixed {
    .tel {
        .tel_num {
            i {
                @media (width >= 768px) {
                    font-size: calc(clamp(2.8rem, 30vw/13.66, 3.0rem) * 0.78);
                }
            }
            .num {
                @media (width >= 768px) {
                    font-size: calc(clamp(3.6rem, 40vw/13.66, 4.0rem) * 0.78);
                }
            }
        }
        p:not(.tel_num) {
            @media (width >= 768px) {
                font-size: 11px;
            }
        }
    }
    .mail {
        a {
            @media (width >= 768px) {
                width: 60px;
                height: 60px;
                font-size: calc(40px * 0.78);
            }
        }
    }
    .vpoint {
        img {
            @media (width >= 768px) {
                width: 60px;
                height: 60px;
            }
        }
    }
}


/*=======================================
footer
=======================================*/
.footer {
    background: var(--bg-color01);
    padding-top: clamp(24px, 50vw/13.66, 50px);
}
.footer_group {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 24px 40px;
    margin-bottom: var(--section-bottom);
    @media (width >= 768px) {
        flex-direction: row;
        justify-content: space-between;
    }
    .footer_info {
        text-align: left;
        dt {
            margin-bottom: clamp(16px, 28vw/13.66, 28px);
        }
        dd {
            @media (width >= 1200px) {
                display: flex;
                gap: clamp(24px, 30vw/13.66, 52px);
            }
            p {
                letter-spacing: -0.01em;
            }
        }
    }
    .footer_bnr {
        margin-top: calc(43px + clamp(16px, 28vw/13.66, 28px));
        a {
            display: block;
        }
    }
}

/*copyright ------------------------*/
.copyright {
    color: var(--maincolor);
    font-size: clamp(0.8rem, 12vw/13.66, 1.2rem);
    line-height: 1;
    border-top: 1px solid var(--maincolor);
    padding: clamp(16px, 28vw/13.66, 28px) 15px;
}

/*=======================================
layout
=======================================*/
/*align------------------------*/
/*right*/
.tx_right {
    text-align: right;
}
/*left*/
.tx_left {
    text-align: left;
}
/*center*/
.tx_cent {
    text-align: center;
}
/*center　→　left*/
.cent_l {
    text-align: center;
    @media (width >= 768px) {
        text-align: left;
    }
}
/*left　→　center*/
.l_cent {
    text-align: left;
    @media (width >= 768px) {
        text-align: center;
    }
}

/*非表示　------------------------*/
@media print, screen and (min-width: 768px) {
    .md_none {
        display: none;
    }
}
@media print, screen and (min-width: 1200px) {
    .pc_none {
        display: none;
    }
}
.sp_none {
    display: none;

    @media (width >= 768px) {
        display: inline-block;
    }
}

/*phbox------------------------*/
:root {
    --phbox-space: 32px;
}
.phbox_right {
    text-align: center;
    & img {
        max-width: 100%;
        height: auto;
    }

    & > a {
        display: block;
        & + * {
            margin-top: 16px;
        }
    }

    @media (width >= 768px) {
        float: right;
        margin-left: var(--phbox-space);
    }
}
.phbox_left {
    text-align: center;
    & img {
        max-width: 100%;
        height: auto;
    }

    & > a {
        display: block;
        & + * {
            margin-top: 16px;
        }
    }

    @media (width >= 768px) {
        float: left;
        margin-right: var(--phbox-space);
    }
}
.ov_hidden {
    overflow: hidden;
}

/*float------------------------*/
/*left*/
.float_left {
    float: left;
}
/*right*/
.float_right {
    float: right;
}
/*clearfix*/
.clearfix {
    display: flow-root;
}

/*margin------------------------*/
/*top*/
.margin_t05 {
    margin-top: 5px;
}
.margin_t10 {
    margin-top: 10px;
}
.margin_t20 {
    margin-top: 20px;
}
.margin_t30 {
    margin-top: 30px;
}
.margin_t40 {
    margin-top: 40px;
}
.margin_t50 {
    margin-top: 50px;
}
/*bottom*/
.margin_b05 {
    margin-bottom: 5px;
}
.margin_b10 {
    margin-bottom: 10px;
}
.margin_b20 {
    margin-bottom: 20px;
}
.margin_b30 {
    margin-bottom: 30px;
}
.margin_b40 {
    margin-bottom: 40px;
}
.margin_b50 {
    margin-bottom: 50px;
}
/*right*/
.margin_r05 {
    margin-right: 5px;
}
.margin_r10 {
    margin-right: 10px;
}
.margin_r15 {
    margin-right: 15px;
}
.margin_r20 {
    margin-right: 20px;
}
/*left*/
.margin_l05 {
    margin-left: 5px;
}
.margin_l10 {
    margin-left: 10px;
}
.margin_l15 {
    margin-left: 15px;
}
.margin_l20 {
    margin-left: 20px;
}

/*------------------------------------
spacer
--------------------------------------*/
.spacer {
    margin-top: clamp(32px, 48vw/13.66, 48px);
}
.spacer_s {
    margin-top: clamp(24px, 32vw/13.66, 32px);
}
.spacer_l {
    margin-top: clamp(48px, 56vw/13.66, 56px);
}

/*------------------------------------
card layout
--------------------------------------*/
/*card 変数*/
:root {
    --lay_gap_sp: 24px;
    --lay_gap_md: 36px;
}
/*1 →　2*/
.row_col2 {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: var(--lay_gap_sp);

    & > * {
        width: 100%;
    }

    @media (width >= 768px) {
        flex-direction: row;
        gap: var(--lay_gap_md);
        & > * {
            width: calc(50% - var(--lay_gap_md) / 2);
        }
    }
}

/*1 →　3*/
.row_col3 {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: var(--lay_gap_sp);

    & > * {
        width: 100%;
    }

    @media (width >= 768px) {
        flex-direction: row;
        gap: var(--lay_gap_md);
        & > * {
            width: calc(100% / 3 - var(--lay_gap_md) * 2 / 3);
        }
    }
}

/*1 → 2 → 4*/
.row_col4 {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: var(--lay_gap_sp);
    & > * {
        width: 100%;
    }

    @media (width >= 768px) {
        flex-direction: row;
        gap: var(--lay_gap_md);
        & > * {
            width: calc(50% - var(--lay_gap_md) / 2);
        }
    }
    @media (width >= 992px) {
        & > * {
            width: calc(25% - var(--lay_gap_md) * 3 / 4);
        }
    }
}

/*2*/
.row_sm2 {
    display: flex;
    flex-wrap: wrap;
    gap: var(--lay_gap_sp);
    & > * {
        width: calc(50% - var(--lay_gap_sp) / 2);
    }
    @media (width >= 768px) {
        gap: var(--lay_gap_md);
        & > * {
            width: calc(50% - var(--lay_gap_md) / 2);
        }
    }
}

/*2→3*/
.row_sm2_lg3 {
    display: flex;
    flex-wrap: wrap;
    gap: var(--lay_gap_sp);
    & > * {
        width: calc(50% - var(--lay_gap_sp) / 2);
    }
    @media (width >= 768px) {
        gap: var(--lay_gap_md);
        & > * {
            width: calc(50% - var(--lay_gap_md) / 2);
        }
    }
    @media (width >= 992px) {
        gap: var(--lay_gap_md);
        & > * {
            width: calc(calc(100% / 3) - var(--lay_gap_md) * 2 / 3);
        }
    }
}

/*------------------------------------
img layout
--------------------------------------*/
:root {
    --gold_space_sp: 24px;
    --gold_space_pc: 40px;
}

.ly_gold {
    display: flex;
    flex-direction: column;
    gap: var(--gold_space_sp) var(--gold_space_pc);

    /*※　下記指定ないときは設置の通りの順序 */
    /*▽　sを上にしたい ------*/
    &.s_top {
        .ly_gold_s {
            order: -1;
        }
    }
    /*▽　bを上にしたい ------*/
    &.b_top {
        .ly_gold_b {
            order: -1;
        }
    }

    @media (width >= 768px) {
        flex-direction: row;
        justify-content: space-between;

        .ly_gold_s {
            width: 50%;
            order: 0;
        }
        .ly_gold_b {
            width: calc(50% - var(--gold_space_pc));
            order: 0;
        }

        &.s_top {
            .ly_gold_s {
                order: 0;
            }
        }
        &.b_top {
            .ly_gold_b {
                order: 0;
            }
        }

        /*縦center*/
        &.align_cent {
            align-items: center;
        }
    }

    @media (width >= 992px) {
        .ly_gold_s {
            width: 38%;
        }
        .ly_gold_b {
            width: calc(62% - var(--gold_space_pc));
        }
    }
}

/*half-----------------*/
.ly_half {
    display: flex;
    flex-direction: column;
    @media (width >= 768px) {
        flex-direction: row;
        & > * {
            width: 50%;
        }
    }
}

/* -----------
layout set
----------- */
/*上下真ん中よせ*/
.justify_cent {
    @media (width >= 768px) {
        justify-content: center;
    }
}
/*縦まんなかよせ*/
.align_cent {
    @media (width >= 768px) {
        align-items: center;
    }
}

/*=======================================
title
=======================================*/
/*pagetitle-----------------*/
.pagetitle_wrap {
    display: grid;
    place-items: center;
    height: 240px;
    background: #989898;

    .pagetitle {
        font-size: 4rem;
        font-weight: 700;
    }
}
/*title-----------------*/
.title01 {
    font-size: clamp(2.4rem, 60vw/13.66, 6.0rem);
    font-weight: 700;
    text-align: left;
    margin-bottom: 0.6em;
    position: relative;
    &:before {
        content: "";
        width: clamp(58px, 137vw/13.66, 137px);
        height: 1px;
        background: var(--base-tx-color);
        transform: rotate(-45deg);
        position: absolute;
        top: 0.4em;
        left: -20px;
        @media (width >= 768px) {
            height: 2px;
            top: 0.4em;
            left: -28px;
        }
        @media (width >= 992px) {
            left: -36px;
        }
        @media (width >= 1200px) {
            left: -43px;
        }
    }
    .en {
        display: block;
        font-family: var(--font-en);
        color: var(--maincolor);
        font-size: 0.46em;
        line-height: 1;
    }
}
.title02 {
    font-size: clamp(2rem, 40vw/13.66, 4.0rem);
    font-weight: 700;
    padding-top: clamp(12px, 26vw/13.66, 26px);
    margin-bottom: 0.79em;
    position: relative;
    &:before {
        content: "";
        width: 2em;
        height: 3px;
        background: var(--maincolor);
        position: absolute;
        top: 0;
        left: 50%;
        -ms-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    small {
        font-size: 0.9em;
    }
}
.title03 {
    color: var(--maincolor-dark);
    font-size: clamp(1.8rem, 34vw/13.66, 3.4rem);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.85em;
}
.title04 {
    font-size: clamp(1.8rem, 36vw/13.66, 3.6rem);
    font-weight: 700;
    margin-bottom: 0.75em;
}

/*=======================================
text
=======================================*/
.cts_p {
    text-align: left;
    line-height: 1.6;

    /*center*/
    &.tx_cent {
        text-align: center;
    }
    /*right*/
    &.tx_right {
        text-align: right;
    }
    /*space*/
    & + .cts_p {
        margin-top: 1em;
    }
    /*center → left*/
    &.cent_l {
        text-align: center;
    }

    @media (width >= 992px) {
        /*left → center*/
        &.l_cent {
            text-align: center;
        }
        /*center → left*/
        &.cent_l {
            text-align: left;
        }
    }
}
/*decoration -------------*/
/*bold*/
.tx_bold {
    font-weight: 700;
}

/*color -------------*/
/*color red*/
.tx_red {
    color: var(--error-color);
}
/*color mian*/
.tx_main {
    color: var(--maincolor);
}
/*color gray*/
.tx_gray {
    color: var(--gray);
}

/*size -------------*/
/*s size*/
.s_tx {
    font-size: var(--font-s);
}
.s_em {
    font-size: 0.8em;
}
/*l size*/
.l_tx {
    font-size: var(--font-l);
}
.l_em {
    font-size: 1.2em;
}

/*english -------------*/
.en_tx {
    font-family: var(--font-en);
    font-weight: var(--font-en-weight);
}

/*------------------------------------
attention
--------------------------------------*/
.attention {
    font-size: var(--font-s);
}

/*=======================================
img
=======================================*/
/*fluid */
.img_fluid {
    max-width: 100%;
    height: auto;
}
/*round*/
.img_round {
    border-radius: var(--base-radius);
}
/*hoverimg */
.hoverimg {
    transition: 0.2s;
    &:hover {
        opacity: 0.6;
    }
}

/*※画像の親要素に追加*/
.img_max {
    :is(img) {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

/*=======================================
decoration
=======================================*/
/*background color -------------*/
.content_bg01 {
    background: var(--bg-color01);
}
.content_bg02 {
    background: var(--bg-color02);
}

/*Line -------------*/
hr.line_01 {
    height: 1px;
    clear: both;
    margin: 32px 0px;
    border: none;
    border-bottom: 1px dotted var(--border-color);
}

/*=======================================
parts
=======================================*/
/*------------------------------------
list
--------------------------------------*/
.list_basic01 li {
    text-align: left;
    padding-left: 1.2em;
    position: relative;
    &::before {
        content: "";
        width: 6px;
        height: 6px;
        background: var(--subcolor);
        border-radius: var(--btn-radius);
        position: absolute;
        top: 10px;
        left: 0;
        @media (width >= 768px) {
            width: 8px;
            height: 8px;
        }
        @media (width >= 992px) {
            top: 11px;
        }
    }
}

/*------------------------------------
anchorlink
--------------------------------------*/
.anchor {
    /*scroll-margin-top: var(--header-h);*/
    margin-top: -76px;
	padding-top: 76px;
}

/*------------------------------------
pankuzu
--------------------------------------*/
.pankuzu_area {
    width: 100%;
    overflow-x: auto;
    .pankuzu {
        width: min(100%, var(--container-max));
        list-style: none;
        display: flex;
        gap: 1.5em;
        & > li {
            font-size: var(--font-s);
            &:not(:last-of-type) {
                position: relative;
                &::before {
                    content: "";
                    width: 1em;
                    height: 1em;
                    display: block;
                    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23333333" d="M13.1717 12.0007L8.22192 7.05093L9.63614 5.63672L16.0001 12.0007L9.63614 18.3646L8.22192 16.9504L13.1717 12.0007Z" /></svg>');
                    position: absolute;
                    inset: 52% -1.4em auto auto;
                    transform: translateY(-50%);
                    line-height: 1;
                }
            }

            :is(a) {
                &:link,
                &:visited,
                &:hover,
                &:active {
                    text-decoration: underline;
                }
            }
        }
    }
}

/*------------------------------------
table
--------------------------------------*/
/*table 変数*/
:root {
    --table-padding: 0.8em 1em;
    --table-bg: #fff;
    --table-border-color: #6d6d6d;
    --th-bg: #ececec;
}
/*sheet_basic -------------*/
.sheet_basic {
    width: 100%;
    border-collapse: collapse;
    background: var(--table-bg);
    border: 1px solid var(--table-border-color);
    border-bottom: none;

    :where(th, td) {
        padding: var(--table-padding);
        border-bottom: 1px solid var(--table-border-color);
        display: block;
    }

    :where(th) {
        background: var(--th-bg);
    }

    @media (width >= 768px) {
        :where(th, td) {
            display: table-cell;
        }
        :where(th) {
            border-right: 1px solid var(--table-border-color);
        }
    }
}
/*table_basic -------------*/
.table_basic {
    width: 100%;
    border-collapse: collapse;
    background: var(--table-bg);
    border: 1px solid var(--table-border-color);
    border-bottom: none;
    border-right: none;
    :where(th, td) {
        padding: var(--table-padding);
        border-bottom: 1px solid var(--table-border-color);
        border-right: 1px solid var(--table-border-color);
    }
    :where(th) {
        background: var(--th-bg);
    }
}

/*set -------------*/
.nowrap {
    white-space: nowrap;
}

tr.nowrap > th,
tr.nowrap > td {
    white-space: nowrap;
}

/*------------------------------------
pagetop
--------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 99;
    @media (width >= 768px) {
        bottom: 20px;
        right: 20px;
    }
    img {
        width: 45px;
        height: auto;
        @media (width >= 768px) {
            width: auto;
            height: ;
        }
    }
}

/*------------------------------------
table_scroll
--------------------------------------*/
.table_scroll {
    width: 100%;
    overflow-x: auto;
    position: relative;
}
.scroll_hint {
    display: none;
    color: #fff;
    font-size: 1.8rem;
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    padding: 0.5em 1em;
    background: color-mix(in srgb, #000, transparent 30%);
    border-radius: var(--base-radius);
}
.scroll_hint_show {
    display: block;
}

/*------------------------------------
pdf link（他ファイルも対応）
--------------------------------------*/
.pdf_link > li {
    line-height: 1.4;
    position: relative;
    padding-left: 1.6em;
    text-align: left;
    & + li {
        margin-top: 0.6em;
    }

    /*その他　file*/
    &::before {
        content: "";
        display: inline-block;
        width: 1.4em;
        height: auto;
        aspect-ratio: 1;
        position: absolute;
        inset: 0 auto auto 0;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23888" d="M21 8V20.9932C21 21.5501 20.5552 22 20.0066 22H3.9934C3.44495 22 3 21.556 3 21.0082V2.9918C3 2.45531 3.4487 2 4.00221 2H14.9968L21 8ZM19 9H14V4H5V20H19V9Z" /></svg>');
    }

    /*pdf*/
    &:has(a[href$=".pdf"]) {
        &::before {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23D35230" d="M5 4H15V8H19V20H5V4ZM3.9985 2C3.44749 2 3 2.44405 3 2.9918V21.0082C3 21.5447 3.44476 22 3.9934 22H20.0066C20.5551 22 21 21.5489 21 20.9925L20.9997 7L16 2H3.9985ZM10.4999 7.5C10.4999 9.07749 10.0442 10.9373 9.27493 12.6534C8.50287 14.3757 7.46143 15.8502 6.37524 16.7191L7.55464 18.3321C10.4821 16.3804 13.7233 15.0421 16.8585 15.49L17.3162 13.5513C14.6435 12.6604 12.4999 9.98994 12.4999 7.5H10.4999ZM11.0999 13.4716C11.3673 12.8752 11.6042 12.2563 11.8037 11.6285C12.2753 12.3531 12.8553 13.0182 13.5101 13.5953C12.5283 13.7711 11.5665 14.0596 10.6352 14.4276C10.7999 14.1143 10.9551 13.7948 11.0999 13.4716Z" /></svg>');
        }
    }
    /*word*/
    &:has(a[href$=".doc"]),
    &:has(a[href$=".docx"]),
    &:has(a[href$=".docm"]) {
        &::before {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23185ABD" d="M16 8V16H14L12 14L10 16H8V8H10V13L12 11L14 13V8H15V4H5V20H19V8H16ZM3 2.9918C3 2.44405 3.44749 2 3.9985 2H16L20.9997 7L21 20.9925C21 21.5489 20.5551 22 20.0066 22H3.9934C3.44476 22 3 21.5447 3 21.0082V2.9918Z" /></svg>');
        }
    }
    /*excel*/
    &:has(a[href$=".xls"]),
    &:has(a[href$=".xlsx"]),
    &:has(a[href$=".xlsm"]) {
        &::before {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23107C41" d="M13.2 12L16 16H13.6L12 13.7143L10.4 16H8L10.8 12L8 8H10.4L12 10.2857L13.6 8H15V4H5V20H19V8H16L13.2 12ZM3 2.9918C3 2.44405 3.44749 2 3.9985 2H16L20.9997 7L21 20.9925C21 21.5489 20.5551 22 20.0066 22H3.9934C3.44476 22 3 21.5447 3 21.0082V2.9918Z" /></svg>');
        }
    }
    /*power point*/
    &:has(a[href$=".pptx"]),
    &:has(a[href$=".pptm"]),
    &:has(a[href$=".potx"]),
    &:has(a[href$=".ppt"]) {
        &::before {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23D35230" d="M3 2.9918C3 2.44405 3.44749 2 3.9985 2H16L20.9997 7L21 20.9925C21 21.5489 20.5551 22 20.0066 22H3.9934C3.44476 22 3 21.5447 3 21.0082V2.9918ZM5 4V20H19V8H16V14H10V16H8V8H15V4H5ZM10 10V12H14V10H10Z" /></svg>');
        }
    }
}

/*------------------------------------
pagenavi
--------------------------------------*/
:root {
    --pagenavi-span-border: #ccc;
    --pagenavi-span-tx: #666;
    --pagenavi-span-bg: #e4e4e4;
    --pagenavi-a-border: #ccc;
    --pagenavi-a-tx: #666;
    --pagenavi-a-bg: #f2f2f2;
    --pagenavi-padding-block: 3px;
    --pagenavi-padding-inline: 10px;
    --pagenavi-radius: var(--inner-radius);
}
.pagenavi {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    & > li {
        :is(span) {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: var(--pagenavi-padding-block) var(--pagenavi-padding-inline);
            color: var(--pagenavi-span-tx);
            border: 1px solid var(--pagenavi-span-border);
            background: var(--pagenavi-span-bg);
            border-radius: var(--pagenavi-radius);
        }
        :is(a) {
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            padding: var(--pagenavi-padding-block) var(--pagenavi-padding-inline);
            color: var(--pagenavi-a-tx);
            border: 1px solid var(--pagenavi-a-border);
            background: var(--pagenavi-a-bg);
            border-radius: var(--pagenavi-radius);
            transition: 0.2s;

            &:hover {
                opacity: 0.8;
            }
        }
    }
}

/*------------------------------------
tel
--------------------------------------*/
.tel-link a {
    text-decoration: underline;
    color: inherit;
}
.tel-link a:hover {
    opacity: 0.8;
}
