@charset "utf-8";

@font-face{
    font-family:'Zen Kaku Gothic New';
    font-style:normal;
    font-weight:400;
    src:url(../fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Regular.woff2) format('woff2'),
        url(../fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Regular.woff) format('woff'),
}
@font-face{
    font-family:'Zen Kaku Gothic New';
    font-style:normal;
    font-weight:700;
    src:url(../fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Bold.woff2) format('woff2'),
        url(../fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Bold.woff) format('woff'),
}

/*==============================
    基本設定
==============================*/
body{
    color:#000;
    font-size:12px;
    font-family: 'YakuHanJP_Noto',"Zen Kaku Gothic New", sans-serif;
    margin:0;
    padding:0;
    text-align:left;
    background:url(../img/common/bgAll.png) #fbf9f4 center top;
    -webkit-text-size-adjust:100%;
    -webkit-tap-highlight-color:rgba(0,0,0,0.25);
    position:relative;
    word-break:break-all;
    min-width:1400px;
}
@media only screen and (max-width:767px){
    body{
        background:#fff;
        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;}
.fOswald{font-family: "Oswald", 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による変化)*/
.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;
}
@media only screen and (max-width:767px){
    .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;
    }
}

/* container */
#container{
    overflow:hidden;
    max-width:1920px;
    margin:0 auto;
}

/* lightbox */
#lightbox .lb-dataContainer{
    padding-top: 15px;
}
#lightbox .lb-data .lb-number{
    padding-top: 0.5em;
}

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

/*-----------------------------------------------
    hoverZoom
-----------------------------------------------*/
.hoverZoom .img{
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
.hoverZoom:not([href="javascript:void(0);"]):hover .img{
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

/*-----------------------------------------------
    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;
}
