@charset "utf-8";

@font-face {
    font-family: 'Noto Serif Japanese';
    font-style: normal;
    font-weight: 600;
    src: url(../fonts/NotoSerifCJKjp/NotoSerifCJKjp-SemiBold.woff2) format('woff2'),
        url(../fonts/NotoSerifCJKjp/NotoSerifCJKjp-SemiBold.woff) format('woff'),
        url(../fonts/NotoSerifCJKjp/NotoSerifCJKjp-SemiBold.otf) format('opentype');
}
@font-face {
    font-family: 'Noto Serif Japanese';
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/NotoSerifCJKjp/NotoSerifCJKjp-Bold.woff2) format('woff2'),
        url(../fonts/NotoSerifCJKjp/NotoSerifCJKjp-Bold.woff) format('woff'),
        url(../fonts/NotoSerifCJKjp/NotoSerifCJKjp-Bold.otf) format('opentype');
}

/*==============================
    remの基準
==============================*/
html{
    font-size: 10px;
}
@media only screen and (max-width:1500px){
    html{
        font-size: calc((10 / 1500) * 100vw);
    }
}
@media only screen and (max-width:1215px){
    html{
        font-size: 10px;
    }
}

/*==============================
    変数設定
==============================*/
/* 幅の基準 */
:root {
    --widthBase : 192rem;
}
@media only screen and (max-width:1920px){
    :root {
        --widthBase : 100vw;
    }
}
@media only screen and (max-width:1400px){
    :root {
        --widthBase : 1400px;
    }
}
@media only screen and (max-width:1215px){
    :root {
        --widthBase : 375px;
    }
}
@media only screen and (max-width:374px){
    :root {
        --widthBase : 100vw;
    }
}

:root {
    /* フッターの上の余白 */
    --footerPc: 15rem;
    --footerSp: 8rem;

    /* 色 */
    --textColor: #333;
    --keyColor: #fbde21;
    --bg_color: #01000b;
    --white_color: #fff;
    --red_color: #b20000;

    /* （PC） */
    --pcFontSize10: 1rem;
    --pcLineHeight10_15: calc(15 / 10);
    --pcLetterSpacing10_50: 0.05em;

    --pcFontSize12: 1.2rem;
    --pcLineHeight12_15: calc(15 / 12);
    --pcLetterSpacing12_50: 0.05em;

    --pcFontSize13: 1.3rem;
    --pcLineHeight13_20: calc(20 / 13);
    --pcLineHeight13_26: calc(26 / 13);
    --pcLetterSpacing13_20: 0.02em;

    --pcFontSize14: 1.4rem;
    --pcLetterSpacing14_20: 0.02em;

    --pcFontSize15: 1.5rem;
    --pcFontSize16: 1.6rem;

    --pcFontSize20: 2rem;
    --pcLineHeight20_36: calc(36 / 20);
    --pcLetterSpacing20_20: 0.02em;

    --pcFontSize21: 2.1rem;

    --pcFontSize24: 2.4rem;
    --pcLineHeight24_28: calc(28 / 24);

    --pcFontSize26: 2.6rem;
    --pcLineHeight26_48: calc(48 / 26);
    --pcLetterSpacing26_50: 0.05em;

    --pcFontSize28: 2.8rem;
    --pcLetterSpacing28_50: 0.05em;

    --pcFontSize30: 3rem;
    --pcLineHeight30_46: calc(46 / 30);

    --pcFontSize38: 3.8rem;
    --pcLineHeight38_57: calc(57 / 38);

    /* （SP） */
    --spFontSize10: calc((10 / 375) * var(--widthBase));
    --spLineHeight10_15: calc(15 / 10);
    --spLetterSpacing10_50: 0.05em;

    --spFontSize11: calc((11 / 375) * var(--widthBase));
    --spLineHeight11_14: calc(14 / 11);
    --spLineHeight11_20: calc(20 / 11);
    --spLetterSpacing11_50: 0.05em;

    --spFontSize12: calc((12 / 375) * var(--widthBase));
    --spFontSize13: calc((13 / 375) * var(--widthBase));

    --spFontSize14: calc((14 / 375) * var(--widthBase));
    --spLineHeight14_22: calc(22 / 14);
    --spLetterSpacing14_0: 0;

    --spFontSize15: calc((15 / 375) * var(--widthBase));
    --spFontSize16: calc((16 / 375) * var(--widthBase));
    --spLineHeight16_22: calc(22 / 16);

    --spFontSize17: calc((17 / 375) * var(--widthBase));

    --spFontSize20: calc((20 / 375) * var(--widthBase));
    --spLineHeight20_26: calc(26 / 20);
}

/*==============================
    基本設定
==============================*/
body{
    color:var(--textColor);
    font-size:var(--pcFontSize12);
    font-family: 'YakuHanMP','游明朝体', 'YuMincho', '游明朝', 'Yu Mincho','Hiragino Mincho ProN', 'ヒラギノ明朝 ProN','Noto Serif Japanese',serif;
    font-weight: 600;
    margin:0;
    padding:0;
    text-align:left;
    background:var(--bg_color);
    -webkit-text-size-adjust:100%;
    -webkit-tap-highlight-color:rgba(0,0,0,0.25);
    position:relative;
    word-break:break-all;
    min-width:1180px;
}
@media only screen and (max-width:1215px){
    body{
        min-width:0;
    }
}

body *, body *::before, body *::after{box-sizing:border-box;}
img{vertical-align:bottom;}
h1,h2,h3,h4,h5,h6{font-weight:normal;}
th{
    font-weight:normal;
    text-align:left;
}

/*font layout*/
.fBold{font-weight:bold;}
.fSerif{font-family:'Noto Serif Japanese', serif;}
.fRed{color:var(--red_color);}
.fLine{text-decoration: underline;}

/*rollover*/
.ro a:hover,
a.ro:hover,
a .ro:hover,
.cursorPointer:hover{ opacity:0.8; }
.ro a,
a.ro,
a .ro,
.cursorPointer{
    transition:opacity 0.2s ease-out;
}
.cursorPointer{cursor:pointer;}
@media only screen and (max-width:1215px){
    .ro a:hover,
    a.ro:hover,
    a .ro:hover,
    .cursorPointer:hover{ opacity:1; }
}

/*rollover(brightnessによる変化)*/
.cursorPointer.brt:hover,.cursorPointer .brt:hover,
.brt a:hover,a.brt:hover,a .brt:hover{ -webkit-filter: brightness(1.1);filter: brightness(1.1); }
.cursorPointer.brt,.cursorPointer .brt,
.brt a,
a.brt,
a .brt{
    transition:filter 0.2s ease-out;
}
@media only screen and (max-width:1215px){
    .cursorPointer.brt:hover,.cursorPointer .brt:hover,
    .brt a:hover,a.brt:hover,a .brt:hover{ filter:none; }
}

/*ro無効化*/
.ro .no_ro a:hover,
.ro a.no_ro:hover,
.ro .no_ro .cursorPointer:hover,
.ro .cursorPointer.no_ro:hover{ opacity:1; }

/* 電話リンクの無効化 */
a[href^="tel:"]{
    pointer-events:none;
    cursor:default;
}
@media only screen and (max-width:1215px){
    a[href^="tel:"]{
        pointer-events:auto;
        cursor:pointer;
    }
}

a{color: inherit;text-decoration: none;}

/* container */
#container{
    overflow:hidden;
    width: 100%;
    margin:0 auto;
}

/*========================================
    レスポンシブ用(不要な場合は削除)
========================================*/
.spOnly,
.brSp,
.imgSp{
    display:none;
}
.img100{
    width:100%;
    height:auto;
}
@media only screen and (max-width:1215px){
    .spNone,
    .brPc,
    .imgPc{
        display:none;
    }
    .spOnly{
        display:block;
    }
    .brSp,
    .imgSp{
        display:inline;
    }
    .imgR{
        width:100%;
        height:auto;
    }
}

/*-----------------------------------------------
    imgCover
-----------------------------------------------*/
/* imgCover */
.imgCover,
.imgCont{
    position:relative;
}
.imgCover img {
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    object-fit:cover;
}
.imgCont img{
    width:auto;
    height:auto;
    max-width:100%;
    max-height:100%;
    display:block;
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    margin:auto;
}

/*-----------------------------------------------
    wrapper
-----------------------------------------------*/
.wrapper1000{
    width: 100rem;
    margin: 0 auto;
}
@media only screen and (max-width:1215px){
    .wrapper1000{
        width: 100%;
    }
    .wrapperFit{
        max-width: 40rem;
        margin: 0 auto;
	}
    .wrapperSp{
        width: 92%;
        margin: 0 auto;
	}
}

/*========================================
    jsHide
========================================*/
/* jsHideHero */
.jsHide,
.jsHideHero,
.jsHideHeroSp{
    transition: opacity .6s ease-in;
}
.jsHide:not(.jsShow),
.jsHideHero:not(.jsShow){
    opacity: 0;
}
@media only screen and (min-width:1215px){
    .jsHideHeroSp:not(.jsShow){
        opacity: 0;
    }
}
@media only screen and (max-width:1215px){
    .jsHideHeroSp:not(.jsShowSp){
        opacity: 0!important;
    }
}

/*========================================
    footer
========================================*/
#footer{
    background: right bottom / 100% no-repeat;
    color: var(--white_color);
    text-align: center;
    padding-bottom: 20rem;
}
#footer.lazyloaded{
    background-image: url(../img/common/bgFooter.jpg);
}
#footer .boxList{
    margin-top: 3rem;
}
#footer .titItem,
#footer .txtItem{
    font-size: var(--pcFontSize26);
    line-height: var(--pcLineHeight26_48);
    letter-spacing: var(--pcLetterSpacing26_50);
}
#footer .item:nth-child(n+2){
    margin-top: 4rem;
    padding-top: 4rem;
    position: relative;
}
#footer .item:nth-child(n+2)::before{
    position: absolute;
    content: "";
    top: 0;
    left: calc(50% - 4rem);
    width: 8rem;
    height: 1px;
    background: var(--white_color);
}
#footer .item .bnr{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}
#footer .bnr .bnrItem{
    width: 20rem;
}
#footer .titFooter{
    font-size: var(--pcFontSize30);
    line-height: var(--pcLineHeight30_46);
}
#footer .txtFooter{
    margin-top: 1rem;
    font-size: var(--pcFontSize24);
    line-height: var(--pcLineHeight24_28);
}
#footer .txtFootermin{
    font-size: var(--pcFontSize16);
}
#footer .secHistory .boxList{
    display: flex;
    justify-content: center;
}
#footer .secHistory .itemHistory{
    text-decoration: none;
    font-size: var(--pcFontSize28);
    letter-spacing: var(--pcLetterSpacing28_50);
}
#footer .secHistory .itemHistory:not(:last-child)::after{
    content: "/";
    padding: 0 2rem 0 0.8rem;
    font-size: var(--pcFontSize24);
    letter-spacing: var(--pcLetterSpacing28_50);
}
@media only screen and (max-width:1215px){
    #footer{
        padding-bottom: 7rem;
    }
    #footer .boxList{
        margin: 3rem auto 0;
    }
    #footer .titItem,
    #footer .txtItem{
        font-size: var(--spFontSize14);
        line-height: var(--spLineHeight14_22);
        letter-spacing: var(--spLetterSpacing14_0);
    }
    #footer .item:nth-child(n+2){
        margin-top: 2.5rem;
        padding-top: 2.5rem;
    }
    #footer .item:nth-child(n+2)::before{
        left: calc(50% - 1.75rem);
        width: 3.5rem;
    }
    #footer .item .bnr{
        gap: 1rem;
        margin-top: 2rem;
    }
    #footer .bnr .bnrItem{
        width: 12.5rem;
    }
    #footer .titFooter{
        font-size: var(--spFontSize16);
        line-height: var(--spLineHeight16_22);
    }
    #footer .txtFooter{
        margin-top: 1rem;
        font-size: var(--spFontSize14);
        line-height: var(--spLineHeight14_22);
    }
    #footer .txtFootermin{
        font-size: var(--spFontSize12);
    }
    #footer .secHistory .boxList{
        width: 85%;
        justify-content: flex-start;
        flex-wrap: wrap;
        text-align: left;
        gap: 0.8rem 0;
    }
    #footer .secHistory .itemHistory{
        width: calc(100% / 4);
        text-decoration: none;
        font-size: var(--spFontSize20);
        letter-spacing: var(--spLineHeight20_26);
    }
    #footer .secHistory .itemHistory:not(:last-child)::after{
        content: "/";
        padding: 0 .5rem;
        font-size: var(--spFontSize20);
    }
}
@media only screen and (max-width:767px){
    #footer.lazyloaded{
        background-image: url(../img/common/bgFooter_sp.jpg);
    }
}

/* secFooterSns */
.secFooterSns{
    display: flex;
    justify-content: center;
    margin-top: 10rem;
    gap: 3rem;
}
.secFooterSns .itemSns{
    width: 13rem;
}
@media only screen and (max-width:1215px){
    .secFooterSns{
        margin-top: 4rem;
        gap: 1rem;
    }
    .secFooterSns .itemSns{
        width: 6rem;
    }
}

/* secFooterCopy */
.secFooterCopy{
    margin-top: 13rem;
}
.secFooterCopy .txt01{
    font-size: var(--pcFontSize14);
    letter-spacing: var(--pcLetterSpacing14_20);
    font-weight: normal;
}
.secFooterCopy .txt02{
    font-size: var(--pcFontSize14);
    letter-spacing: var(--pcLetterSpacing14_20);
    margin-top: 2.7rem;
}
@media only screen and (max-width:1215px){
    .secFooterCopy{
        margin-top: 6rem;
    }
    .secFooterCopy .txt01{
        font-size: var(--spFontSize11);
        line-height: var(--spLineHeight11_20);
        letter-spacing: var(--spLetterSpacing11_50);
    }
    .secFooterCopy .txt02{
        font-size: var(--spFontSize12);
        margin-top: 2rem;
    }
}