@charset "utf-8";

@font-face{
    font-family:'Noto Sans JP';
    font-style:normal;
    font-weight:400;
    src:url(../fonts/NotoSansCJKjp/NotoSansCJKjp-Regular.woff2) format('woff2'),
        url(../fonts/NotoSansCJKjp/NotoSansCJKjp-Regular.woff) format('woff'),
        url(../fonts/NotoSansCJKjp/NotoSansCJKjp-Regular.otf) format('opentype');
}
@font-face{
    font-family:'Noto Sans JP';
    font-style:normal;
    font-weight:700;
    src:url(../fonts/NotoSansCJKjp/NotoSansCJKjp-Bold.woff2) format('woff2'),
        url(../fonts/NotoSansCJKjp/NotoSansCJKjp-Bold.woff) format('woff'),
        url(../fonts/NotoSansCJKjp/NotoSansCJKjp-Bold.otf) format('opentype');
}

/*==============================
    基本設定
==============================*/
body{
    color:#000;
    font-size:12px;
    font-family:'YakuHanJP_Noto','Noto Sans JP', sans-serif;
    margin:0;
    padding:0;
    text-align:left;
    background:#fff;
    -webkit-text-size-adjust:100%;
    position:relative;
    word-break:break-all;
    min-width:1400px;
    overflow-y: scroll;
}
@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;}
.fOswald{font-family: 'Oswald', sans-serif;}

/*rollover*/
.ro a:hover,
a.ro:hover,
a .ro:hover{ opacity:0.8; }
.ro a,
a.ro,
a .ro{
    transition: opacity 0.2s ease-out;
}

/*rollover(brightnessによる変化)*/
.brt a:hover,a.brt:hover,a .brt:hover{ -webkit-filter: brightness(1.1);filter: brightness(1.1); }
.brt a,
a.brt,
a .brt{
    transition: filter 0.2s ease-out;
}

/*ro無効化*/
.ro .no_ro a:hover,
.ro a.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;
    }
}

/* container */
#container{
    overflow: hidden;
    max-width: 1920px;
    margin: 0 auto;
}
@media only screen and (max-width:767px){
    #container{
        width: 100%;
    }
}

/*========================================
    レスポンシブ用(不要な場合は削除)
========================================*/
.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;
    }
}

/*========================================
    wrapper
========================================*/
.wrapper800{
	width:800px;
	margin:0 auto;
}
.wrapper1280{
    width: 1280px;
    margin: 0 auto;
    max-width: calc(100% - 40px);
}
@media only screen and (max-width:767px){
    .wrapper800{
        width:100%;
    }
    .wrapper1280{
        width: 100%;
        max-width: none;
    }
    .wrapperSp{
        width: 92%;
        margin: 0 auto;
        max-width: none;
    }
    .wrapperSp335 {
        width: 89.334%;
        margin: 0 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;
}
/*-----------------------------------------------
    btnNavi
-----------------------------------------------*/
#btnNavi {
    display: none;
}
@media only screen and (max-width:767px){
    #btnNavi {
        display: block;
        position: fixed;
        top: 9px;
        right: 15px;
        z-index: 9999;
    }
}

/*-----------------------------------------------
    menu
-----------------------------------------------*/
#menu {
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    background: rgba(25,25,25,0.2);
    top: 0;
    left: 0;
    display: none;
    z-index: 150;
    padding: 60px 0 120px;
    -webkit-overflow-scrolling: touch;
}
@media only screen and (max-width:767px){
    #header{
        height: 60px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        background: #fff;
    }
    .secView{
        margin-top: 60px;
    }
    #menu .boxMenu{
        background: #fff;
        border: 1px solid #333;
        border-bottom: 4px solid #333;
        border-radius: 10px;
        width: 67.73%;
        float: right;
        position: relative;
        padding: 38px 10px 36px 28px;
        margin-right: 15px;
    }
    #menu .btnClose{
        position: absolute;
        top: -10px;
        right: -1px;
    }
    #menu .boxMenuList{}
    #menu .txtLink{
        display: flex;
        font-size: 16px;
        font-weight: bold;
        color: #000;
        text-decoration: none;
    }
    #menu .txtLink:nth-child(n+2){
        margin-top: 25px;
    }
    #menu .txtLink .txtIn{
        margin-right: 10px;
    }
    #link01,
    #secVoice,
    #secAfter,
    #secColumn{
        position: relative;
    }
    #link01::before,
    #secVoice::before,
    #secAfter::before,
    #secColumn::before{
        content: "";
    display: block;
    height: 80px;
    margin-top: -80px;
    visibility: hidden;
    }
}