@charset "utf-8";

/*==============================
    基本設定
==============================*/
body{
    color:#101010;
    font-size:12px;
    font-family: 'Shippori Mincho', serif;
    margin:0;
    padding:0;
    text-align:left;
    background:#fff;
    -webkit-text-size-adjust:100%;
    position:relative;
    word-break:break-all;
    min-width:1400px;
}
@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;
}
select,input,textarea{
	font-family:inherit;
	font-weight:inherit;
}

/*font layout*/
.fBold{font-weight:bold;}
.fSerif{font-family:'Noto Serif Japanese', serif;}
.fBebas {
    font-family: 'Bebas Neue', cursive;
}

/*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{
    width: 100%;
    min-width: 1400px;
    overflow: hidden;
    max-width: 1920px;
    margin: 0 auto;
}
@media only screen and (max-width:767px){
    #container{
        min-width:auto;
    }
    .fixedBnr + #container{
        padding-bottom: 70px;
    }
}

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

/*-----------------------------------------------
    imgCover
-----------------------------------------------*/
/* imgCover */
.imgCover,
.imgCont{
    position:relative;
}
.imgCover img {
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    object-fit:cover;
    font-family:'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
-----------------------------------------------*/
.wrapper1420{
    width: 1420px;
    margin: 0 auto;
}
.wrapper1280{
    width: 1280px;
    margin: 0 auto;
}
.wrapper1180{
    width: 1180px;
    margin: 0 auto;
}
.wrapper1160{
    width: 1160px;
    margin: 0 auto;
}
.wrapper900{
    width: 900px;
    margin: 0 auto;
}
@media only screen and (max-width:767px){
    .wrapper1420 {
        width:100%;
        max-width: none;
    }
    .wrapper1280{
        width: 100%;
        max-width: none;
    }
    .wrapper1180{
        width: 100%;
    }
    .wrapper1160{
        width: 100%;
    }
    .wrapper900{
        width: 100%;
    }
    .wrapperSp{
        width: 92%;
        margin: 0 auto;
    }
    .wrapperSp335{
        width: 89.334%;
        margin: 0 auto;
	}
    .wrapperSp315{
        width: 84%;
        margin: 0 auto;
	}
}
.hoverZoom{
	overflow: hidden;
}
.hoverZoom img{
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
.hoverZoom:hover img{
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

/*-----------------------------------------------
    btnTop
-----------------------------------------------*/
#btnTop{
    position: fixed;
    right: 110px;
    bottom: 25px;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    opacity: 0;
    z-index: 999;
}
#btnTop.jsShow{
    opacity: 1;
    animation: btnTop ease 4s infinite; 
}
@media only screen and (max-width:1750px){
    #btnTop{
        right: 100px;
    }
}
@media only screen and (max-width:767px){
    #btnTop{
        width: 34px;
        bottom: 93px;
        right: 4%;
    }
}

/* secCmnFormBtn */
.cmnBtn .btnlinestretches2{
	position:relative;
	color:#101010;
    padding: 10px 30px;
    display: flex;
    text-decoration: none;
    outline: none;
    width: 470px;
    height: 80px;
    justify-content: center;
    align-items: center;
    letter-spacing: 2.5px;
    font-size:18px;
    font-weight: 700;
    margin: 50px auto 0;
    background-color: #fff;
}
.cmnBtn .btnlinestretches2::before,
.cmnBtn .btnlinestretches2::after {
	content:'';
	position:absolute;
	border:solid #101010;
	width:10px;
	height:10px;
	transition:all 0.3s ease-in-out;
}
.cmnBtn .btnlinestretches2::before{
	top:0;
	left:0;
	border-width:1px 0 0 1px;
}
.cmnBtn .btnlinestretches2::after{
	bottom:0;
	right:0;
	border-width:0 1px 1px 0;
}
.cmnBtn .btnlinestretches2:hover::before,
.cmnBtn .btnlinestretches2:hover::after{
	width:calc(100% - 10px);
	height:100%;
	border-color:#666
}
.cmnBtn .inner{
    position: relative;
    padding-left:10px;
}
.secCmnFormBtn{
    position: relative;
    text-decoration: none;
    width: 470px;
    height: 80px;
    margin: 50px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2.5px;
    color: #101010;
    background: #fff;
}
.cmnBtn .secCmnFormBtn::before,
.cmnBtn .secCmnFormBtn::after {
	content:'';
	position:absolute;
	border:solid #101010;
	width:10px;
	height:10px;
	transition:all 0.3s ease-in-out;
}
.cmnBtn .secCmnFormBtn::before{
	top:0;
	left:0;
	border-width:1px 0 0 1px;
}
.cmnBtn .secCmnFormBtn::after{
	bottom:0;
	right:0;
	border-width:0 1px 1px 0;
}
.cmnBtn .secCmnFormBtn:hover::before,
.cmnBtn .secCmnFormBtn:hover::after{
	width:calc(100% - 10px);
	height:100%;
	border-color:#666
}
.secCmnFormBtn .inner{
    position: relative;
    padding-left:10px;
}
.cmnBtn .inner::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3px 4px 3px 0;
    border-color: transparent #101010 transparent transparent;
    position: absolute;
    bottom: calc(50% - 2px);
    left:0;
    transform: scale(-1, 1);
}
@media only screen and (max-width:767px){
	.cmnBtn{
        margin-left:10px;
    }
    .cmnBtn .btnlinestretches2{
        padding: 10px 30px;
        width: 275px;
        height: 55px;
        letter-spacing:0.5px;
        font-size:13px;
        margin: 28px auto 0;
    }
    .cmnBtn .inner {
        padding-left: 10px;
        padding-right: 12px;
    }
    .secCmnFormBtn{
        width: 73.334%;
        height: 55px;
        margin: 30px auto 0;
        font-size: 13px;
        letter-spacing: 0.5px;
    }
    .cmnBtn .secCmnFormBtn::before,
    .cmnBtn .secCmnFormBtn::after{
        width:calc(100% - 10px);
        height:100%;
        border-color:#666
    }
    .cmnBtn .btnlinestretches2::before,
    .cmnBtn .btnlinestretches2::after {
        width: calc(100% - 10px);
        height: 100%;
        border-color: #666;
    }
    .secCmnFormBtn .inner{
        padding-left:10px;
        padding-right: 12px;
    }
}
/* noneTxt */
.noneTxt{
    font-size: 16px;
    text-align: center;
    padding: 30px 0;
}
@media only screen and (max-width:767px){
    .noneTxt{
        font-size: 12px;

        padding: 20px 0;
    }
}
