@charset 'UTF-8';
@import url(../css/root.css);
/* ----------------------------------------------

基本設定

------------------------------------------------*/
*
{
    font-family: 'Yu Gothic Medium', 'Yu Gothic', 'YuGothic', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;

    box-sizing: border-box;

    color: var(--main-black);
    /* Macでの文字の太さを調整（掠れ防止） */

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body
{
    background-color: rgba(0, 0, 0, .85);
}
body.is-fixed
{
    overflow: hidden;
}

p
{
    font-weight: normal;

    text-align: justify;
}

img
{
    width: 100%;
    max-width: 100%;
    height: auto;

    vertical-align: bottom;
}

a
{
    text-decoration: none;

    color: black;
}

picture
{
    display: block;
}

/*見切れ画像の処理*/
.cut_off
{
    display: flex;
    overflow: hidden;

    align-items: center;
    justify-content: center;
}
.cut_off.cover img
{
    max-width: unset;
    height: 100%;

    -o-object-fit: cover;

       object-fit: cover;
}
.cut_off.contain img
{
    max-width: unset;
    height: 100%;

    -o-object-fit: contain;

       object-fit: contain;
}

/*1行テキストの処理*/
span.br
{
    font-weight: normal;

    display: block;
}
span.br.mb
{
    margin-bottom: 1.25em;
}

/*hoverするとボーダーが出る*/
.hov_border
{
    /*hoverするとボーダーが消える*/
}
.hov_border a:not(:has(.txt))
{
    position: relative;
}
.hov_border a:not(:has(.txt))::after
{
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 1px;

    content: '';
    transition: transform .5s cubic-bezier(.8, 0, .2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;

    background: var(--main-white);
}
.hov_border a.txt,
.hov_border a .txt
{
    position: relative;
}
.hov_border a.txt::after,
.hov_border a .txt::after
{
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 1px;

    content: '';
    transition: transform .5s cubic-bezier(.8, 0, .2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;

    background: var(--main-white);
}
.hov_border a:hover:not(:has(.txt))::after
{
    transform: scale(1, 1);
}
.hov_border a:hover .txt::after
{
    transform: scale(1, 1);
    transform-origin: left top;
}
.hov_border.no_border a:not(:has(.txt))::after
{
    transform: scale(1, 1);
    transform-origin: left top !important;
}
.hov_border.no_border a .txt::after
{
    transform: scale(1, 1);
    transform-origin: left top !important;
}
.hov_border.no_border a:hover:not(:has(.txt))::after
{
    transform: scale(0, 1);
    transform-origin: right top !important;
}
.hov_border.no_border a:hover .txt::after
{
    transform: scale(0, 1);
    transform-origin: right top !important;
}
.hov_border.white a .txt::after
{
    background: var(--main-white);
}
.hov_border.blue a .txt::after
{
    background: var(--mainblue);
}

a.hov_border .border
{
    position: relative;

    display: inline-block;
}
a.hov_border .border::after
{
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 1px;

    content: '';
    transition: transform .5s cubic-bezier(.8, 0, .2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;

    background: var(--brown01);
}
a.hov_border:hover .border::after
{
    transform: scale(1, 1);
    transform-origin: left top;
}
a.hov_border.no_border .border::after
{
    transform: scale(1, 1);
    transform-origin: left top !important;
}
a.hov_border.no_border:hover .border::after
{
    transform: scale(0, 1);
    transform-origin: right top !important;
}

.mgn-l-btm
{
    margin-bottom: var(--m130);
}

.mgn-m-btm
{
    margin-bottom: var(--m90);
}

.mgn-s-btm
{
    margin-bottom: var(--m60);
}

.mgn-l-top
{
    margin-top: var(--m130);
}

.mgn-m-top
{
    margin-top: var(--m90);
}

.mgn-s-top
{
    margin-top: var(--m60);
}

.pdn-l-btm
{
    padding-bottom: var(--m130);
}

.pdn-m-btm
{
    padding-bottom: var(--m90);
}

.pdn-s-btm
{
    padding-bottom: var(--m60);
}

.pdn-l-top
{
    padding-top: var(--m130);
}

.pdn-m-top
{
    padding-top: var(--m90);
}

.pdn-s-top
{
    padding-top: var(--m60);
}

.l-container
{
    overflow: hidden;

    margin: 0;
    padding: 0;
}

.l-main
{
    position: relative;
    z-index: 1;
}

#l-scroll-inner
{
    position: relative;
    z-index: 10;
}

.l-contents
{
    position: relative;
    z-index: 10;
}

h1.none
{
    display: none !important;
}

.wrapper
{
    width: 90%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
}

/*ボタン設定*/
.c-button
{
    width: 100%;
}
.c-button__link
{
    font-size: var(--fs16_18);
    font-weight: 500;
    line-height: 1;

    display: block;

    padding: var(--m12_18) .75em;

    transition: all .5s;
    text-align: center;

    color: var(--main-white);
    border: 1px solid var(--main-col);
    border-radius: var(--m10);
    background-color: var(--main-col);
}
.c-button.opa .c-button__link
{
    color: var(--main-col);
    background-color: unset;
}

/*電話番号*/
.c-tel__link
{
    display: flex;

    align-items: baseline;
    justify-content: center;
    grid-gap: 5px;
}
.c-tel__image
{
    width: 44px;

    background: url(../images/common/icon_tel.svg) center/contain no-repeat;

    aspect-ratio: 43/25;
}
.c-tel__num
{
    font-size: var(--fs26_38);
    font-weight: bold;
    line-height: 1;
}

/*タイトル設定*/
.c-title
{
    font-size: var(--fs22_40);
    font-weight: bold;
}
.c-title.center
{
    text-align: center;
}

/*gsapの機能*/
.l-container .rect
{
    position: relative;

    overflow: hidden;
}
.l-container .rect .curtain
{
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-color: var(--main-col);
}

/*ヘッダー*/
.l-header
{
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;

    width: 100%;

    transition: all .5s;
}
.l-header__inner
{
    position: relative;
    z-index: 1001;

    display: flex;

    width: 100%;
    padding: var(--m45) 3.5%;

    transition: padding .5s;

    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.l-header__logo
{
    width: 60%;
    max-width: 343px;
}
.l-header__logo-link
{
    line-height: 1;

    display: block;

    width: 100%;
}
.l-header.is-scroll .l-header__inner
{
    padding: var(--m16) 3.5%;
}

body.is-fixed .l-header__inner
{
    padding: var(--m16) 3.5%;
}

.c-modal
{
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;

    display: flex;

    width: 100%;
    min-width: unset;
    height: 100vh;
    height: 100dvh;
}
.c-modal__inner
{
    position: relative;
    z-index: 1;

    display: flex;
    overflow: scroll;
    flex-direction: column;

    width: 100%;
    height: 100%;
    margin-left: auto;
    padding-right: var(--m32);
    padding-left: var(--m32);

    transition: opacity .8s;

    background: var(--main-black);

    justify-content: center;
}
.c-modal__inner.close
{
    opacity: 0;
}
.c-modal__menu
{
    display: flex;

    flex-wrap: wrap;
    grid-gap: var(--m40) 0;
}
.c-modal__list
{
    width: 25%;
}
.c-modal__list-link
{
    display: block;

    width: 100%;

    text-align: center;
}
.c-modal__list-text
{
    font-size: var(--fs26_30);
    font-weight: 500;

    color: var(--main-white);
}
.c-modal .c-company
{
    margin-top: 60px;
}
.c-modal.is-open
{
    opacity: 1;
}
.c-modal.nav_none
{
    transform: translateY(-150%);

    opacity: 0;
}

/*ハンバーガーメニュー*/
.c-hamburger
{
    z-index: 10001;

    flex-direction: column;

    width: var(--fs42_60);

    cursor: pointer;

    border-radius: 100%;
    background-color: var(--gray01);

    align-items: center;
    justify-content: center;
    grid-gap: 5px;
    aspect-ratio: 1/1;
}
.c-hamburger__inner
{
    position: relative;

    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;

    transition: all .5s;

    align-items: center;
    justify-content: center;
    grid-gap: var(--m8);
}
.c-hamburger__inner::before,
.c-hamburger__inner::after
{
    right: 0;

    display: block;

    width: 28.3%;
    height: 2px;

    content: '';
    transition: all .5s;
    transform-origin: center;

    background-color: var(--main-black);
}
.c-hamburger__inner.is-open
{
    grid-gap: 0;
}
.c-hamburger__inner.is-open .c-hamburger__bar
{
    display: none;
}
.c-hamburger__inner.is-open.rotate::before
{
    transform: translateY(50%) rotate(45deg);
}
.c-hamburger__inner.is-open.rotate::after
{
    transform: translateY(-50%) rotate(-45deg);
}
.c-hamburger__bar
{
    display: block;

    width: 28.3%;
    height: 2px;

    transform-origin: center;

    background-color: var(--main-black);
}
.c-hamburger__text
{
    font-size: var(--fs14_16);
    font-weight: bold;

    text-align: center;

    color: var(--main-col);
}

/*フッター*/
.l-footer
{
    position: relative;
    z-index: 5;

    padding: var(--m200) 0 var(--m150);
}
.l-footer__menu
{
    display: flex;

    margin-top: var(--m140);

    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    grid-gap: var(--m30) 0;
}
.l-footer__list
{
    width: 25%;
}
.l-footer__list-link
{
    display: block;

    width: 100%;

    text-align: center;
}
.l-footer__list-text
{
    font-size: var(--fs16_20);
    font-weight: 500;

    color: var(--main-white);
}
.l-footer__copy
{
    width: 100%;
    margin-top: var(--m170);

    text-align: center;
}
.l-footer__copy small
{
    font-size: 12px;
    line-height: 1.25;

    display: block;

    color: var(--gray04);
}

/*c-return*/
.c-return
{
    position: fixed;
    z-index: 300;

    width: var(--fs50_60);
    margin-left: auto;

    transition: all .5s;

    aspect-ratio: 1/1;
}
.c-return a
{
    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;

    transition: all .5s;

    border: 1px solid var(--main-white);
    background: var(--main-black);

    align-items: center;
    justify-content: center;
    grid-gap: 5px;
}
.c-return a:hover
{
    border-color: var(--main-col);
    background: var(--main-col);
}
.c-return__image
{
    display: inline-block;

    width: 70%;

    background-image: url(/images/common/logo_only.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    aspect-ratio: 240/150;
}
.c-return__text
{
    font-size: var(--fs12_14);
    font-weight: bold;
    line-height: 1;

    color: #fff;
}
.c-return.return_hide
{
    z-index: -10;

    transform: translateY(110%);

    opacity: 0;
}
.c-return.return_fixed
{
    right: 0;
    bottom: 0;

    transform: translateY(0%);

    opacity: 1;
}

/*パンくず*/
.c-breadcrumb
{
    margin: var(--m20) 0 var(--m120);
}
.c-breadcrumb__inner
{
    display: flex;

    flex-wrap: wrap;
    align-items: center;
    grid-gap: .5rem;
}
.c-breadcrumb__list
{
    font-size: var(--fs12_16);
    font-weight: 500;

    display: flex;

    color: var(--black);

    align-items: center;
}
.c-breadcrumb__list *
{
    font-size: var(--fs12_16);
    font-weight: 500;
}
.c-breadcrumb__list a
{
    color: var(--black);
}
.c-breadcrumb__list:not(:last-of-type)::after
{
    font-size: var(--fs12_16);

    display: inline-block;

    margin-left: .5rem;

    content: '>';

    color: var(--black);
}

.c-radioCheck
{
    position: relative;

    display: flex;

    padding: var(--m8px) var(--m16);

    cursor: pointer;
    transition: all .5s;

    border-radius: 5px;
    background-color: var(--gray03);

    grid-gap: .5rem;
    align-items: center;
}
.c-radioCheck:has(.inp_rdo:checked, .inp_chk:checked)
{
    background-color: var(--main-col);
}
.c-radioCheck:has(.inp_rdo:checked, .inp_chk:checked) .txt,
.c-radioCheck:has(.inp_rdo:checked, .inp_chk:checked) .no-bt
{
    color: var(--main-white);
}
.c-radioCheck .inp_rdo,
.c-radioCheck .inp_chk
{
    display: none;
}
.c-radioCheck .rdo,
.c-radioCheck .chk
{
    position: relative;
}
.c-radioCheck .rdo::before,
.c-radioCheck .chk::before
{
    position: relative;

    display: flex;

    width: 20px;
    height: 20px;

    content: '';

    border: 2px solid var(--gray10);
    border-radius: 5px;
    background-color: var(--main-white);
}
.c-radioCheck .txt
{
    font-size: var(--fs16_18);
    font-weight: bold;
}
.c-radioCheck .chk::after
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: inline-block;

    width: 90%;

    content: '';
    transition: opacity .5s;
    transform: translate(-50%, -50%);

    opacity: 0;
    background: url(../images/common/icon_check.svg) center/100% no-repeat;

    aspect-ratio: 16/12;
}
.c-radioCheck .rdo::before
{
    border-radius: 100%;
}
.c-radioCheck .rdo::after
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: inline-block;

    width: 10px;
    height: 10px;

    content: '';
    transition: background-color .5s;
    transition: all .5s;
    transform: translate(-50%, -50%);

    opacity: 0;
    border-radius: 100%;
    background-color: var(--main-col);
}
.c-radioCheck .inp_rdo:checked + .rdo::after,
.c-radioCheck .inp_rdo:checked + .chk::after,
.c-radioCheck .inp_chk:checked + .rdo::after,
.c-radioCheck .inp_chk:checked + .chk::after
{
    opacity: 1;
}
.c-radioCheck:has(.no-bt)
{
    width: 20%;
    min-width: 100px;
    padding: var(--m8_12);

    border: 1px solid var(--gray04);

    justify-content: center;
}
.c-radioCheck:has(.no-bt) .no-bt
{
    font-size: 18px;
    font-weight: bold;
}

.c-inputCheck .inp_rdo,
.c-inputCheck .inp_chk,
.c-inputCheck .rdo_inp_round
{
    display: none;
}
.c-inputCheck .inp_rdo:checked + .rdo .check::before,
.c-inputCheck .inp_rdo:checked + .chk .check::before,
.c-inputCheck .inp_rdo:checked + .rdo_round .check::before,
.c-inputCheck .inp_rdo:checked + .rdo .check::after,
.c-inputCheck .inp_rdo:checked + .chk .check::after,
.c-inputCheck .inp_rdo:checked + .rdo_round .check::after,
.c-inputCheck .inp_chk:checked + .rdo .check::before,
.c-inputCheck .inp_chk:checked + .chk .check::before,
.c-inputCheck .inp_chk:checked + .rdo_round .check::before,
.c-inputCheck .inp_chk:checked + .rdo .check::after,
.c-inputCheck .inp_chk:checked + .chk .check::after,
.c-inputCheck .inp_chk:checked + .rdo_round .check::after,
.c-inputCheck .rdo_inp_round:checked + .rdo .check::before,
.c-inputCheck .rdo_inp_round:checked + .chk .check::before,
.c-inputCheck .rdo_inp_round:checked + .rdo_round .check::before,
.c-inputCheck .rdo_inp_round:checked + .rdo .check::after,
.c-inputCheck .rdo_inp_round:checked + .chk .check::after,
.c-inputCheck .rdo_inp_round:checked + .rdo_round .check::after
{
    opacity: 1;
}
.c-inputCheck .rdo,
.c-inputCheck .chk
{
    position: relative;

    display: flex;

    grid-gap: .5rem;
    align-items: center;
}
.c-inputCheck .rdo .check,
.c-inputCheck .chk .check
{
    position: relative;

    display: flex;

    width: 20px;
    height: 20px;

    content: '';

    border: 2px solid #c9caca;
    border-radius: 5px;
    background-color: var(--main-white);
}
.c-inputCheck .chk .check::before
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: inline-block;

    width: 130%;

    content: '';
    transition: opacity .5s;
    transform: translate(-30%, -60%);

    opacity: 0;
    background: url(../images/common/check_only.svg) center/100% no-repeat;

    aspect-ratio: 181/135;
}
.c-inputCheck .rdo .check
{
    border-radius: 100%;
}
.c-inputCheck .rdo .check::before
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: inline-block;

    width: 10px;
    height: 10px;

    content: '';
    transition: background-color .5s;
    transition: all .5s;
    transform: translate(-50%, -50%);

    opacity: 0;
    border-radius: 100%;
    background-color: var(--main-col);
}

/*swiper設定*/
#contents .swiper-pagination
{
    line-height: 1;

    position: static;

    display: flex;

    width: -moz-fit-content;

    width: fit-content;
    width: 100%;
    margin-top: var(--m30);

    justify-content: center;
    align-items: baseline;
    grid-gap: var(--m8_12);
}
#contents .swiper-pagination-bullet
{
    width: var(--fs12_14);
    height: auto;
    margin: 0;

    opacity: 1;
    border: 1px solid var(--main-white);
    border-radius: 100%;
    background-color: var(--gray03);

    aspect-ratio: 1/1;
}
#contents .swiper-pagination-bullet-active
{
    background-color: var(--brown01);
}
#contents .swiper-button-next,
#contents .swiper-button-prev
{
    display: block;

    width: var(--fs20_22);
    height: auto;
    margin: 0;

    background: url(/images/common/arrow.svg) center/contain no-repeat;

    aspect-ratio: 1/1;
}
#contents .swiper-button-next
{
    right: 0;
    left: unset;

    transform: translate(110%, -50%);
}
#contents .swiper-button-prev
{
    right: unset;
    left: 0;

    transform: translate(-110%, -50%) rotate(-180deg);
}
#contents .swiper-button-next:after,
#contents .swiper-button-prev:after
{
    content: unset;
}
#contents .scroll-hint-icon-wrap
{
    z-index: 10;
}

#container.contact .c-spcv
{
    display: none !important;
}

/* ----------------------------------------------
独自設定
------------------------------------------------*/
.c-company__logo
{
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
}
.c-company__logo a
{
    display: flex;
    flex-direction: column;

    width: 100%;

    align-items: center;
    grid-gap: var(--m20);
}
.c-company__logo .logo
{
    width: 127px;
}
.c-company__logo .name
{
    width: 250px;
}
.c-company__address
{
    font-size: var(--fs14_16);
    font-weight: 500;
    line-height: 1.8;

    margin-top: var(--m45);

    text-align: center;

    color: var(--gray02);
}
.c-company__address a
{
    font-size: var(--fs14_16);
    font-weight: 500;
    line-height: 1.8;
    color: var(--gray02);
}

/* ----------------------------------------------
画面幅調整
------------------------------------------------*/
@media all and (min-width: 621px)
{
    .sp_only
    {
        display: none !important;
    }
    a[href^='tel:']
    {
        pointer-events: none;
    }
}
@media all and (min-width: 769px)
{
    .tab_under
    {
        display: none !important;
    }
    /*ボタン設定*/
    .c-button__link:hover
    {
        color: var(--main-col);
        background-color: var(--main-white);
    }
    .c-button.opa .c-button__link:hover
    {
        color: var(--main-white);
        background-color: var(--main-col);
    }
    /*spフロートメニュー*/
    .c-spcv
    {
        display: none !important;
    }
}
@media all and (min-width: 1025px)
{
    .pc_under
    {
        display: none !important;
    }
}
@media all and (max-width: 768px), all and (min-width: 1025px)
{
    .fullTb
    {
        display: none !important;
    }
}
@media all and (min-width: 621px) and (max-width: 768px)
{
    .tab_only
    {
        display: none !important;
    }
}
@media all and (max-width: 1024px)
{
    .pc_only
    {
        display: none !important;
    }
    /*ヘッダー*/
}
@media all and (max-width: 768px)
{
    .tab_over
    {
        display: none !important;
    }
    /*spフロートメニュー*/
    .c-spcv
    {
        position: relative;
        z-index: 1200;

        display: flex;

        transition: opacity .5s;

        align-items: stretch;
        justify-content: space-between;
    }
    .c-spcv__bt
    {
        flex: 1;
    }
    .c-spcv__bt-link
    {
        padding: var(--m8_12);

        border-radius: unset;
    }
    .c-spcv__bt-text
    {
        font-size: clamp(16px, 2.73vw, 21px);
        font-weight: 500;

        color: var(--main-white);
    }
    .c-spcv__bt .c-tel__num
    {
        color: var(--main-white);
    }
    .c-spcv.jsfix
    {
        position: fixed;
        bottom: 0;

        width: 100%;

        opacity: 1;
        /* background-color: unset; */
    }
    .c-spcv.opa
    {
        opacity: 0;
    }
    .c-spcv.none
    {
        display: none !important;
    }
    .c-radioCheck
    {
        width: 48%;
    }
    /*ヘッダー*/
    .c-modal__list
    {
        width: 50%;
    }
    /*フッター*/
    .l-footer__list
    {
        width: 50%;
    }
}
@media all and (max-width: 620px)
{
    .sp_over
    {
        display: none !important;
    }
    /*ヘッダー*/
    /*フッター*/
    /*ハンバーガーメニュー*/
}
