@charset "utf-8";

/*==============================
    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:767px){
    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:767px){
    :root {
        --widthBase : 375px;
    }
}
@media only screen and (max-width:374px){
    :root {
        --widthBase : 100vw;
    }
}

:root {
    /* フッターの上の余白 */
    --footerPc: 15rem;
    --footerSp: 8rem;

    /* 色 */
    --mainColor01_blue: #02C3C6;
    --mainColor02_blue: #1BC6FF;
    --main_black: #0F063A;
    --main_LinearColor01: linear-gradient(to right, #91D9F8, #91D9F8, #BFF12C);
    --main_LinearColor02: linear-gradient(to bottom, #71D5CD, #42A9AD, #4A948E);
    --gray_secondary01: #5E6579;
    --gray_secondary02: #E7EDED;
    --gray_secondary03: #F3F5F5;
    --white: #fff;
    --txtLinkBlue: #04A0D9;
    --shadowColor: rgba(98, 46, 0, 0.1);

    /* （PC） */
    --pcFontSize10: 1rem;
    --pcLineHeight10_15: calc(15 / 10);
    --pcLetterSpacing10_50: 0.05em;

    --pcFontSize11: 1.1rem;
    --pcLetterSpacing11_100: 0.1em;

    --pcFontSize12: 1.2rem;
    --pcLetterSpacing12_150: 0.15em;

    --pcFontSize13: 1.3rem;

    --pcFontSize14: 1.4rem;
    --pcLineHeight14_21: calc(21 / 14);

    --pcFontSize15: 1.5rem;

    --pcFontSize16: 1.6rem;
    --pcLineHeight16_24: calc(24 / 16);
    --pcLineHeight16_40: calc(40 / 16);

    --pcFontSize17: 1.7rem;

    --pcFontSize18: 1.8rem;

    --pcFontSize19: 1.9rem;

    --pcFontSize20: 2rem;
    --pcLineHeight20_30: calc(30 / 20);

    --pcFontSize22: 2.2rem;
    --pcLineHeight22_33: calc(33 / 22);

    --pcFontSize24: 2.4rem;
    --pcLineHeight24_36: calc(36 / 24);

    --pcFontSize26: 2.6rem;

    --pcFontSize28: 2.8rem;

    --pcFontSize30: 3rem;

    --pcFontSize32: 3.2rem;
    --pcLineHeight32_48: calc(48 / 32);

    --pcFontSize34: 3.4rem;

    --pcFontSize35: 3.5rem;

    --pcFontSize36: 3.6rem;
    --pcLineHeight36_54: calc(54 / 36);

    --pcFontSize38: 3.8rem;

    --pcFontSize40: 4rem;

    --pcFontSize48: 4.8rem;
    --pcLineHeight48_72: calc(72 / 48);

    --pcFontSize50: 5rem;

    --pcFontSize52: 5.2rem;

    --pcFontSize60: 6rem;

    --pcFontSize70: 7rem;

    /* （SP）*/
    --spFontSize10: calc((10 / 375) * var(--widthBase));
    --spLineHeight10_15: calc(15 / 10);
    --spLetterSpacing10_50: 0.05em;

    --spFontSize11: calc((11 / 375) * var(--widthBase));
    --spLetterSpacing11_100: 0.1em;

    --spFontSize12: calc((12 / 375) * var(--widthBase));
    --spLineHeight12_18: calc(18 / 12);
    --spLetterSpacing12_150: 0.15em;

    --spFontSize13: calc((13 / 375) * var(--widthBase));
    --spLineHeight13_19: calc(19 / 13);

    --spFontSize14: calc((14 / 375) * var(--widthBase));
    --spLineHeight14_21: calc(21 / 14);

    --spFontSize15: calc((15 / 375) * var(--widthBase));

    --spFontSize16: calc((16 / 375) * var(--widthBase));
    --spLineHeight16_24: calc(24 / 16);

    --spFontSize17: calc((17 / 375) * var(--widthBase));

    --spFontSize18: calc((18 / 375) * var(--widthBase));
    --spLineHeight18_27: calc(27 / 18);

    --spFontSize19: calc((19 / 375) * var(--widthBase));

    --spFontSize20: calc((20 / 375) * var(--widthBase));
    --spLineHeight20_30: calc(30 / 20);

    --spFontSize22: calc((22 / 375) * var(--widthBase));

    --spFontSize24: calc((24 / 375) * var(--widthBase));
    --spLineHeight24_36: calc(36 / 24);

    --spFontSize26: calc((26 / 375) * var(--widthBase));

    --spFontSize28: calc((28 / 375) * var(--widthBase));
    --spLineHeight28_42: calc(42 / 28);

    --spFontSize30: calc((30 / 375) * var(--widthBase));

    --spFontSize32: calc((32 / 375) * var(--widthBase));
    --spLineHeight32_48: calc(48 / 32);

    --spFontSize34: calc((34 / 375) * var(--widthBase));

    --spFontSize36: calc((36 / 375) * var(--widthBase));

    --spFontSize38: calc((38 / 375) * var(--widthBase));

    --spFontSize40: calc((40 / 375) * var(--widthBase));

    --spFontSize50: calc((50 / 375) * var(--widthBase));

    --spFontSize60: calc((60 / 375) * var(--widthBase));

    --spFontSize70: calc((70 / 375) * var(--widthBase));
}

/*==============================
    基本設定
==============================*/
body{
    color:var(--main_black);
    font-size:var(--pcFontSize12);
    font-family: "Noto Sans JP", sans-serif;
    margin:0;
    padding:0;
    text-align:left;
    background:#fff;
    -webkit-text-size-adjust:100%;
    -webkit-tap-highlight-color:rgba(0,0,0,0.25);
    position:relative;
    word-break:break-all;
    min-width:118rem;
}
@media only screen and (max-width:767px){
    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;}
.fInter{font-family: "Inter", sans-serif;}

/*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:767px){
    .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:767px){
    .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:767px){
    a[href^="tel:"]{
        pointer-events:auto;
        cursor:pointer;
    }
}

a{color: inherit;text-decoration: none;}

/* container */
#container{
    overflow:hidden;
    max-width:1920px;
    width: 100%;
    margin:0 auto;
}

/*========================================
    レスポンシブ用(不要な場合は削除)
========================================*/
.spOnly,
.brSp,
.imgSp{
    display:none;
}
.img100{
    width:100%;
    height:auto;
}
@media only screen and (max-width:767px){
    .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
-----------------------------------------------*/
.wrapper1100{
    width: 110rem;
    margin: 0 auto;
}
@media only screen and (max-width:767px){
    .wrapper1100{
        width: 100%;
    }
    .wrapperFit{
        max-width: 40rem;
        margin: 0 auto;
	}
    .wrapperSp{
        width: 92%;
        margin: 0 auto;
	}
}

/*-----------------------------------------------
	jsHide
-----------------------------------------------*/
.jsHide{
    opacity: 0;
    transform: translate(0, 2rem);
    transition: opacity 3s cubic-bezier(0.22, 1, 0.36, 1), 
    transform 3s cubic-bezier(0.22, 1, 0.36, 1);
}
.jsHide.jsShow{
    transform: none;
    opacity: 1;
}

/*-----------------------------------------------
	footer
-----------------------------------------------*/
#footer{
    padding: 5.3rem 0;
    background: var(--gray_secondary03);
    font-size: var(--pcFontSize13);
    font-weight: 400;
    text-align: center;
    margin-top: 12rem;
}
@media only screen and (max-width:767px){
    #footer{
        padding: 2rem 0;
        font-size: var(--pcFontSize13);
        margin-top: 6rem;
    }
}

/*-----------------------------------------------
	btnEntryLink
-----------------------------------------------*/
.btnEntryLink{
    width: 12rem;
    height: auto;
    position: fixed;
    bottom: 6.9rem;
    right: -35rem;
    z-index: 999;
    transition: all 0.5s ease-out!important;
}
.btnEntryLink.active{
    right: 0;
    transition: opacity 0.2s ease-out;
}
@media only screen and (max-width:767px){
    .btnEntryLink{
        width: 5.3rem;
        bottom: 3rem;
        right: -5.3rem;
    }
    .btnEntryLink.active{
        right: 0;
    }
}