/* ----------------------------------------------------------------header*/
header {
    text-align: left;
}
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 0;
    z-index: 9999;
}
.header_logo {
    display: inline-block;
    padding: 15px;
    border-radius: 0 0 var(--base-radius) 0;
    background: var(--white);
    & img {
        width: auto;
        height: 32px;
    }
}
.header_contact {
    border-radius: 0 0 0 var(--base-radius);
    background: var(--white);
    & ul {
        display: flex;
        height: 100%;
        & li {
            width: 62px;
            height: 100%;
            line-height: 1.3;
            font-family: var(--font-en);
            font-size: 24px;
            color: var(--maincolor);
            & a {
                text-decoration: none;
                color: var(--maincolor);
            }
            &:first-child {
                & .sp {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    height: 100%;
                }
                & .pc {
                    display: none;
                }
            }
            &:last-child {
                & a {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    height: 100%;
                    color: var(--white);
                    background: var(--maincolor);
                    transition: all 0.5s;
                }
                
            }
        }
    }
}

@media print, screen and (min-width: 768px) {
#header {
    min-width: 1170px;
}
.header_logo {
    padding: 15px 30px;
    & img {
        width: auto;
        height: auto;
    }
}
.header_contact {
    & ul {
        & li {
            width: 90px;
            font-size: 40px;
            color: var(--maincolor);
            & a {
                text-decoration: none;
                color: var(--maincolor);
            }
            &:first-child {
                display: flex;
                align-items: center;
                width: auto;
                padding: 0 30px;
                & .sp {
                    display: none;
                }
                & .pc {
                    display: block;
                    line-height: 1.2;
                    font-size: 24px;
                    text-align: justify;
                    color: var(--base-tx-color);
                    & span {
                        display: inline-block;
                        width: 1.8em;
                    }
                    & strong {
                        font-size: 1.25em;
                    }
                }
            }
            &:last-child {
                & a {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    height: 100%;
                    color: var(--white);
                    background: var(--maincolor);
                    &:hover {
                        background: color-mix(in srgb, var(--maincolor), var(--white) 50%);
                    }
                }
                
            }
        }
    }
}
}

/*------------------------------------------------------------content*/
.content_bg01 {
    text-align: left;
    background: var(--bg-color01);
    padding: 45px 0;
}
.content_bg02 {
    text-align: left;
    background: var(--bg-color02);
    padding: 45px 0;
}
.content_bg03 {
    text-align: left;
    background: var(--bg-color03);
    padding: 45px 0;
}
.section {
    clear: both;
    padding-bottom: 10px;
}

@media print, screen and (min-width: 768px) {
    .content_bg01 {
        padding: 90px 0;
    }
    .content_bg02 {
        padding: 90px 0;
    }
    .content_bg03 {
        padding: 90px 0;
    }
    .section {
        padding-bottom: 30px;
    }
}

/* ----------------------------------------------------------------footer*/
footer {
    text-align: center;
    padding: 45px 0 30px;
    color: var(--white);
    background: color-mix(in srgb, var(--maincolor) 85%, white);
    & h2 {
        margin-bottom: 1em;
        line-height: 1.3;
        font-size: 18px;
        font-weight: 900;
        & strong {
            font-size: 1.25em;
        }
    }
    & .tel {
        display: flex;
        flex-direction: column;
        margin-top: 0.3em;
        & li {
            & a {
                text-decoration: none;
                color: var(--white);
            }
        }
    }
    & .link_bn {
        & li {
            & a {
                display: inline-flex;
                color: var(--maincolor);
                background: var(--white);
                & i {
                    color: var(--maincolor);
                }
            }
        }
    }
}
@media print, screen and (min-width: 768px) {
footer {
    text-align: center;
    padding: 90px 0 40px;
    & h2 {
        margin-bottom: 1em;
        font-size: 24px;
        & strong {
            font-size: 1.25em;
        }
    }
    & .tel {
        flex-direction: row;
        justify-content: center;
        gap: 1em;
        margin-top: 0.3em;
        & li {
            & a {
                text-decoration: none;
                color: var(--white);
            }
        }
    }
    & .link_bn {
        & li {
            & a {
                display: inline-flex;
                color: var(--maincolor);
                background: var(--white);
                & i {
                    color: var(--maincolor);
                }
            }
        }
    }
}
}

.copyright {
    padding: 40px 0 0;
    line-height: 1.1;
    text-align: center;
    font-size: 11px;
}
@media print, screen and (min-width: 768px) {
.copyright {
    padding: 90px 0 0;
    font-size: 12px;
}
}

/*------------------------------------------------------------list*/
/*basic -----*/
.list_basic {
    text-align: left;

    & > li {
        position: relative;
        padding-left: 1.2em;
        line-height: 1.5;

        & + li {
            margin-top: 0.5em;
        }

        &::before {
            content: "";
            display: block;
            width: 8px;
            height: 8px;
            background: var(--maincolor);
            border-radius: 100px;
            position: absolute;
            inset: 0.5em 0 0 0.2em;
            @media (width >= 768px) {
                width: 10px;
                height: 10px;
                }
        }
    }

    /*small*/
    &.s_tx {
        & > li {
            font-size: var(--font-s);
        }
    }
    &.cent {
        display: inline-block;
    }
}

/*------------------------------------------------------------table*/
.sheet_basic {
    width: 100%;
    border-spacing: 0;
    border-radius: var(--base-radius);
    border: none;
    border-left: 4px solid color-mix(in srgb, var(--maincolor) 50%, white);
    border-top: 4px solid color-mix(in srgb, var(--maincolor) 50%, white);

    /*右寄せ*/
    &.tx_right {
        :is(th),
        :is(td) {
            text-align: right;
        }
    }

    /*左よせ*/
    &.tx_left {
        :is(th),
        :is(td) {
            text-align: left;
        }
    }

    :is(tr) {
        & > th,
        & > td {
            border-right: 4px solid color-mix(in srgb, var(--maincolor) 50%, white);
            padding: 10px;
            line-height: 1.5;
            display: block;

            /*右寄せ*/
            &.tx_right {
                text-align: right;
            }
            /*左よせ*/
            &.tx_left {
                text-align: left;
            }

            /*金額*/
            &.price {
                text-align: right;
                &::after {
                    content: "円";
                }
            }
            & .inblock {
                display: inline-block;
            }
        }
        & > th {
            background: color-mix(in srgb, var(--maincolor) 10%, white);
        }
        & > td {
            background: var(--white);
            &:last-child {
                border-bottom: 2px solid color-mix(in srgb, var(--maincolor) 50%, white);
            }
        }
        &:first-child {
            & *:first-child {
                border-radius: var(--base-radius) var(--base-radius) 0 0;
            }
        }
        &:last-child {
            & td:last-child {
                border-radius: 0 0 var(--base-radius) var(--base-radius);
                border-bottom: 4px solid color-mix(in srgb, var(--maincolor) 50%, white);
            }
        }

        /*右寄せ*/
        &.tx_right {
            & > th,
            & > td {
                text-align: right;
            }
        }

        /*左よせ*/
        &.tx_left {
            & > th,
            & > td {
                text-align: left;
            }
        }
    }

    @media (width >= 768px) {
        :is(tr) {
            & > th,
            & > td {
                display: table-cell;
                padding: 15px;
            }
            & > th {
                width: 24%;
                border-right: 2px dotted color-mix(in srgb, var(--maincolor) 50%, white);
                border-bottom: 2px solid color-mix(in srgb, var(--maincolor) 50%, white);
            }
            & > td {
                border-right: 2px dotted color-mix(in srgb, var(--maincolor) 50%, white);
                border-bottom: 2px solid var(--maincolor);
                &:last-child {
                    border-right: 4px solid color-mix(in srgb, var(--maincolor) 50%, white);
                }
            }
            &:first-child {
                & *:first-child {
                    border-radius: var(--base-radius) 0 0 0;
                }
            }
            &:first-child {
                & *:last-child {
                    border-radius: 0 var(--base-radius) 0 0;
                }
            }
            &:last-child {
                & th:first-child {
                    border-radius: 0 0 0 var(--base-radius);
                    border-bottom: 4px solid color-mix(in srgb, var(--maincolor) 50%, white);
                }
            }
            &:last-child {
                & td:last-child {
                    border-radius: 0 0 var(--base-radius) 0;
                }
                & td:first-child {
                    border-radius: 0 0 var(--base-radius) var(--base-radius)!important;
                }
            }
        }
    }
}
/*------------------------------------------------------------Decoration*/
/*Line*/
hr.line_01 {
    height: 1px;
    clear: both;
    margin: 20px 0px;
    border-top: 1px dotted #ccc;
    border-right: 0 dotted #ccc;
    border-bottom: 0 dotted #ccc;
    border-left: 0 dotted #ccc;
}
.space_10 {
    height: 10px;
    clear: both;
}
.space_20 {
    height: 20px;
    clear: both;
}
.space_30 {
    height: 30px;
    clear: both;
}
.space_10 hr,
.space_20 hr,
.space_30 hr {
    display: none;
}
/*------------------------------------------------------------Text*/
/*title*/
.title01 {
    margin-bottom: 20px;
    line-height: 1.4;
    font-size: 21px;
    font-weight: 900;
    text-align: center;
    & strong {
        color: var(--maincolor);
    }
}
.title02 {
    margin-bottom: 15px;
    line-height: 1.35;
    font-size: 19px;
    font-weight: 900;
    text-align: center;
}

@media print, screen and (min-width: 768px) {
    .title01 {
        margin-bottom: 40px;
        font-size: 40px;
    }
    .title02 {
        margin-bottom: 30px;
        font-size: 30px;
    }
}
/*TextRight*/
.tx_right {
    text-align: right;
}
/*TextLeft*/
.tx_left {
    text-align: left;
}
/*TextCenter*/
.tx_cent {
    text-align: center;
}
/*bold*/
.tx_bold {
    font-style: normal;
    font-weight: bold;
}
/*TextRed*/
.tx_red {
    color: var(--red);
}
.tx_pink {
    color: var(--maincolor);
}
.tx_blue {
    color: var(--blue);
}
/*attention*/
.attention {
    font-size: 12px;
    line-height: 130%;
    margin: 5px 0;
}
/*------------------------------------------------------------Float*/
/*FloatLeft*/
.float_left {
    float: left;
}
/*FloatRight*/
.float_right {
    float: right;
}
/*ClearBoth*/
.clearboth {
    clear: both;
}
/*phbox*/
.phbox_right {
    text-align: center;
}
.phbox_right img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}
.phbox_left {
    text-align: center;
}
.phbox_left img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}
.ov_hidden {
    overflow: hidden;
}

@media print, screen and (min-width: 768px) {
    .phbox_right {
        float: right;
        margin-left: 10px;
        margin-bottom: 0px;
    }
    .phbox_left {
        float: left;
        margin-right: 10px;
        margin-bottom: 0px;
    }
}
/*------------------------------------------------------------Margin*/
/*MarginTop*/
.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;
}
/*MarginBottom*/
.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;
}
/*MarginRight*/
.margin_r05 {
    margin-right: 5px;
}
.margin_r10 {
    margin-right: 10px;
}
.margin_r15 {
    margin-right: 15px;
}
.margin_r20 {
    margin-right: 20px;
}
/*MarginLeft*/
.margin_l05 {
    margin-left: 50px;
}
.margin_l10 {
    margin-left: 10px;
}
.margin_l15 {
    margin-left: 15px;
}
.margin_l20 {
    margin-left: 20px;
}
/*Margin_device*/
.margin-xs-b10 {
    margin-bottom: 10px;
}

@media print, screen and (min-width: 768px) {
    .margin-xs-b10 {
        margin-bottom: 0px;
    }
}
/*------------------------------------------------------------ClearFix*/
.clearfix {
    zoom: 1;
}
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}
/*------------------------------------------------------------Hoverimg*/
a {
    & img.hoverimg {
        transition: all 0.5s;
    }
    &:hover img.hoverimg {
        opacity: 0.6;
        filter: alpha(opacity=60);
        -ms-filter: "alpha( opacity=60 )";
    }
}
/*------------------------------------------------------------other*/
#side_bn {
    position: fixed;
    right: 0;
    bottom: 70px;
    z-index: 999;
    & img {
        width: 62px;
        height: auto;
    }
}
@media print, screen and (min-width: 768px) {
#side_bn {
    position: fixed;
    top: 50%;
    right: 0;
    bottom: auto;
    transform: translateY(-50%);
    & img {
        width: auto;
        height: auto;
    }
}
}
/*Pagetop*/
#pagetop {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 999;
    & img {
        width: 62px;
        height: auto;
    }
}
@media print, screen and (min-width: 768px) {
#pagetop {
    & img {
        width: auto;
        height: auto;
    }
}
}

.anchor_point {
    margin-top: -62px;
    padding-top: 62px;
}
@media print, screen and (min-width: 768px) {
.anchor_point {
    margin-top: -90px;
    padding-top: 90px;
}
}

.link_bn {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    & li {
        line-height: 1.3;
        a {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.2em;
            padding: 8px 10px 8px 15px;
            text-decoration: none;
            font-weight: 900;
            color: var(--white);
            border-radius: var(--base-radius);
            background: var(--maincolor);
            transition: all 0.5s;
            & i {
                font-size: 1.55em;
                color: var(--yellow);
            }
        }
    }
}
@media print, screen and (min-width: 768px) {
.link_bn {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    & li {
        a {
            padding: 7px 20px 7px 30px;
            font-size: 28px;
            &:hover {
                background: color-mix(in srgb, var(--maincolor), var(--white) 50%);
            }
        }
    }
}
}

.sp_none {
    display: none;
    @media print, screen and (min-width: 768px) {
        display: inline;
    }
}