@charset "utf-8";
@font-face{
    font-family:"Zen Old Mincho";
    font-style:normal;
    font-weight:700;
    src:url(../fonts/Zen_Old_Mincho/ZenOldMincho-Bold.woff2) format('woff2'),
        url(../fonts/Zen_Old_Mincho/ZenOldMincho-Bold.woff) format('woff'),
        url(../fonts/Zen_Old_Mincho/ZenOldMincho-Bold.ttf) format('opentype');
}
@font-face{
    font-family:"Zen Old Mincho";
    font-style:normal;
    font-weight:400;
    src:url(../fonts/Zen_Old_Mincho/ZenOldMincho-Regular.woff2) format('woff2'),
        url(../fonts/Zen_Old_Mincho/ZenOldMincho-Regular.woff) format('woff'),
        url(../fonts/Zen_Old_Mincho/ZenOldMincho-Regular.ttf) format('opentype');
}
/*==============================
    基本設定
==============================*/
body{
    color:#3e3a39;
    font-size:12px;
    font-family:'YakuHanJP_Narrow','游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', 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;
}
@media only screen and (max-width:767px){
    body{
        min-width: 100%;
    }
}

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;}
.fZen{font-family: "Zen Old Mincho", 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;}

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

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

/*-----------------------------------------------
	jsHide
-----------------------------------------------*/
.jsHide{
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.jsHide:not(.jsShow){
    opacity: 0;
}

/* jsMarker */
.jsMarker{
    display: inline-block;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
}
.jsMarker::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #ccff00;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.18, 1.00, 0.29, 1.00);
    transition: transform 1s cubic-bezier(0.18, 1.00, 0.29, 1.00);
}
.jsMarkerInner{
    position: relative;
    z-index: 10;
    padding: 0 4px;
}
.jsMarker.jsShow::before{
    -webkit-transform: none;
    transform: none;
}
.jsMarker.border::before{
    height: 4px;
}
@media only screen and (max-width:767px){
    .jsMarkerInner{
        padding: 0 2px;
    }
    .jsMarker.border::before{
        height: 2px;
    }
}

/*-----------------------------------------------
    wrapper
-----------------------------------------------*/
.wrapper1550{
    width: 1550px;
    margin: 0 auto;
    max-width: calc(100% - 40px);
}
.wrapper1400{
    width: 1400px;
    margin: 0 auto;
    max-width: calc(100% - 40px);
}
.wrapper1380{
    width: 1380px;
    margin: 0 auto;
    max-width: calc(100% - 40px);
}
.wrapper1050{
    width: 1050px;
    margin: 0 auto;
    max-width: calc(100% - 40px);
}
@media only screen and (max-width:767px){
    .wrapper1550,.wrapper1400,.wrapper1380,.wrapper1050{
        width: 100%;
        margin: 0 auto;
        max-width: none;
    }
    .wrapperSp{
        width: 92%;
        margin: 0 auto;
        max-width: none;
    }
}

/*-----------------------------------------------
	header
-----------------------------------------------*/
#header{
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99;

    transition: all 0.4s ease;
    transform: translateY(0);
    opacity: 1;
}
#header.topPage{
    position: fixed;
}
#header.hide {
    transform: translateY(-100%);
    /* opacity: 0; */
}
#header.scrolled {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
#header .headerWrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 40px 20px;
}
#header .headerWrapper .logoLink{
    display: block;
}
#header .headerWrapper .logoLink.scroll{
    display: none;
}
#header.scrolled .headerWrapper .logoLink{
    display: none;
}
#header.scrolled .headerWrapper .logoLink.scroll{
    display: block;
}
#header .headerWrapper.index{
    justify-content: flex-end;
}
#header .rightBox{
    display: flex;
    align-items: center;
    background: #ffffff;
    box-shadow: inset 0px -3px 0px 0px rgba(4, 0, 0, 0.15);
    border-radius: 50px;
    height: 60px;
    min-width: 1040px;
    margin-left: 20px;
}
#header .anchorLink{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}
#header .anchorLink .linkTxt{
    font-size: 16px;
    font-weight: bold;
    color: #3e3a39;
    text-decoration: none;
    padding: 3px 18px;
    position: relative;
    letter-spacing: 2px;
}
#header .anchorLink .linkTxt:before{
    content: '';
    position: absolute;
    height: 28px;
    width: 1px;
    background: #ebebeb;
    top: calc(50% - 14px);
    right: 0;
}
#header .anchorLink .linkItem:last-child .linkTxt:before{
    display: none;
}
#header .imgTel{
    margin: 10px 42px 0 0;
}
#header .btnBox{
    display: flex;
}
#header .linkBtn{
    width: 200px;
    height: 60px;
    border-radius: 30px;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    background: linear-gradient( 90deg, rgb(198,0,128) 0%, rgb(84,27,134) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0px -3px 0px 0px rgba(4, 0, 0, 0.15);
    text-decoration: none;
    margin-left: 10px;
}
#header .linkBtn:first-child{
    margin-left: 0;
}
#header .linkBtn.recruit{
    background-image: linear-gradient( 90deg, rgb(64,209,121) 0%, rgb(7,122,206) 100%);
    box-shadow: inset 0px -3px 0px 0px rgba(4, 0, 0, 0.15);
}
#header .linkBtn.liex{
    background: #ffffff;
    color: #000000;
    box-shadow: inset 0px -3px 0px 0px rgba(4, 0, 0, 0.15);
}
#header .linkBtn.line{
    background: #06c755;
    color: #fff;
    box-shadow: inset 0px -3px 0px 0px rgba(4, 0, 0, 0.15);
}
@media only screen and (max-width:1850px){
    #header .anchorLink .linkTxt {
        font-size: 14px;
    }
}
@media only screen and (max-width:1720px){
    #header .anchorLink .linkTxt {
        padding: 3px 10px;
    }
}
@media only screen and (max-width:1650px){
    #header .anchorLink .linkTxt {
        font-size: 12px;
        padding: 3px 8px;
    }
    #header .anchorLink {
        padding: 0 5px;
    }
}
@media only screen and (max-width:767px){
    #header .headerWrapper{
        padding: 20px 15px 0;
    }
    #header.scrolled {
        position: static;
    }
    #header.topPage{
        position: absolute;
        transform: inherit;
        transition: inherit
    }
    #header .imgTel{
        display: none;
    }
    #header .btnBox{
        /* display: block; */
    }
    #header .rightBox{
        display: none;
    }
    #header .linkBtn{
        width: 120px;
        height: 38px;
        border-radius: 19px;
        font-size: 12px;
        box-shadow: inset 0px -3px 0px 0px rgba(0, 0, 0, 0.07);
        letter-spacing: 0.5px;
    }
    #header .linkBtn{
        display: none;
    }
    #header .linkBtn.liex{
        display: flex;
        width: 120px;
        font-size: 11px;
    }
    #header .logoLink{
        width: 225px;
        display: block;
    }
}

/* footer */
#footer{
    padding: 100px 0;
    text-align: center;
}
#footer .txtAdderss{
    font-size: 16px;
    line-height: 1.75;
    margin-top: 32px;
    letter-spacing: 1.5px;
}
#footer .btnCorporate{
    width: 280px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #3e3a39;
    border: solid 1px #e5e5e5;
    margin: 31px auto 0;
}
#footer #copy{
    font-size: 14px;
    margin-top: 49px;
    letter-spacing: 0px;
}
#footer .fCopy{
    font-family: Verdana,'Droid Sans';
}
#footer .copyLink{
    color: #3e3a39;
    text-decoration: none;
}
@media only screen and (max-width:767px){
    #footer{
        padding: 60px 0;
    }
    #footer .iconFooter{
        width: 245px;
        margin: 0 auto;
    }
    #footer .txtAdderss{
        font-size: 13px;
        line-height: 1.69;
        margin-top: 14px;
        letter-spacing: 0.75px;
    }
    #footer .btnCorporate{
        width: 225px;
        height: 44px;
        border-radius: 3px;
        font-size: 11px;
        margin: 16px auto 0;
    }
    #footer #copy{
        font-size: 10px;
        margin-top: 40px;
    }
    #footer .fCopy{
        font-family: Verdana,'Droid Sans';
    }
    #footer .btnRecruit{
        width: 81.334%;
        margin: 20px auto 0;
        max-width: 305px;
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 23px;
        background-image: linear-gradient( 45deg, rgb(64,209,121) 0%, rgb(7,122,206) 100%);
        box-shadow: inset 0px -3px 0px 0px rgba(4, 0, 0, 0.1);
        color: #fff;
        text-decoration: none;
        font-weight: 700;
        letter-spacing: 1px;
    }
    .fNavi + #footer{
        padding-bottom: 120px;
    }
}

/*-----------------------------------------------
	fNavi
-----------------------------------------------*/
.fNavi{
    display: none;
}
@media only screen and (max-width:767px){
    .fNavi{
        bottom: -110px;
        position: fixed;
        width: 100%;
        background: #2c2c2c;
        right: 0;
        z-index: 999;
        transition: .5s;
        transition: all .2s ease-out;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-end;
    }
    .fNavi.active{ bottom:0;}
    .fNavi .wrapper{
        display: flex;
        width: 100%;
    }
    .fNavi .contactBtn{
        width: 64%;
        height: 60px;
        color: #fff;
        text-decoration: none;
        background: rgb(0, 7, 80);
        box-shadow: inset 0px -3px 0px 0px rgba(4, 0, 0, 0.08);
        font-size: 14px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .fNavi .iconMail{
        position: relative;
        padding-left: 30px;
    }
    .fNavi .iconMail::after{
        position: absolute;
        content: "";
        width: 20px;
        height: 14px;
        left: 0;
        top: 0.5px;
    }
    .fNavi .iconMail.lazyloaded::after{
        background: url(../img/common/iconNaviMail.png) center top / cover;
    }
    .fNavi .telBtn{
        width: 36%;
        height: 60px;
        color: #fff;
        text-decoration: none;
        background: #3e3a39;
        box-shadow: inset 0px -3px 0px 0px rgba(4, 0, 0, 0.15);
        font-size: 14px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .fNavi .iconTel{
        position: relative;
        padding-left: 22px;
    }
    .fNavi .iconTel::after{
        position: absolute;
        content: "";
        width: 16px;
        height: 16px;
        left: 0;
        top: -0.5px;
    }
    .fNavi .iconTel.lazyloaded::after{
        background: url(../img/common/iconNaviTel.gif) center top / cover;
    }

}
/*-----------------------------------------------
    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;
}
/* 240527 */
#footer .footerlist{
    background-color: #f8f8f8;
    padding: 50px;
    margin-top: 53px;
}
#footer .footerlist .list{
    display: flex;
    flex-wrap: wrap;
}
#footer .footerlist .list .item{
    width: calc((100% - 80px) / 3);
    margin-right: 40px;
}
#footer .footerlist .list .item:nth-child(3n){
    margin-right: 0;
}
#footer .footerlist .list .item:nth-child(n + 4){
    margin-top: 30px;
}
#footer .footerlist .list .item .link{
    display: block;
    text-decoration: none;
}
@media only screen and (max-width:767px){
    #footer .footerlist{
        padding: 15px;
        margin-top: 21px;
    }
    #footer .footerlist .list .item{
        width: calc((100% - 5px) / 2);
        margin-right: 5px;
    }
    #footer .footerlist .list .item:nth-child(3n){
        margin-right: 5px;
    }
    #footer .footerlist .list .item:nth-child(2n){
        margin-right: 0;
    }
    #footer .footerlist .list .item:nth-child(n + 3),
    #footer .footerlist .list .item:nth-child(n + 4){
        margin-top: 5px;
    }
}


.hamburger {display: none;}
.sp-menu{
    display: none;
}
@media only screen and (max-width:767px){
    #header{
        position: absolute;
    }
    /* ハンバーガーボタン */
    .hamburger {
        display: block;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 10001;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgb(255, 255, 255);
        box-shadow: inset 0px -2px 0px 0px rgba(4, 0, 0, 0.15);
        cursor: pointer;
    }
    .hamburger::before,
    .hamburger::after,
    .hamburger span {
        content: "";
        display: block;
        position: absolute;
        width: 12px;
        height: 1px;
        background-color: #b0aeae;
        transition: 0.3s;
        top: 20px;
        right: 14px;
    }

    .hamburger::before {
        transform: translateY(-5px);
    }

    .hamburger::after {
        transform: translateY(5px);
    }

    .hamburger span {
        background-color: #b0aeae;
    }

    /* メニュー全体 */
    .sp-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10000;
        width: 100%;
        height: 100%;
        background: rgb(0, 7, 80);
        box-sizing: border-box;
        overflow-y: auto;
    }

    /* ヘッダー内のロゴと閉じるボタン */
    .sp-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 22px;
        height: 80px;
        background: #fff;
        padding: 20px 15px;
    }
    .hamburger.close {
        border: 1px solid #dad9d9;
        box-shadow:none;
    }
    .hamburger.close::before {
        transform: rotate(45deg);
        top: 19px;
        right: 13px;
    }
    .hamburger.close::after {
        transform: rotate(-45deg);
        top: 19px;
        right: 13px;
    }
    .hamburger.close::after:last-child {
        display: none;
    }

    /* ナビゲーションリンク */
    .anchorLink {
    list-style: none;
    padding: 0;
    width: 92%;
    margin: 0 auto;
    }
    .linkItem {
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    }
    .linkItem:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    }
    .linkTxt {
        font-size: 15px;
        display: block;
        padding: 19px;
        color: #fff;
        text-align: center;
        text-decoration: none;
        font-weight: bold;
    }
    .linkTxt:hover {
    background-color: rgba(255, 255, 255, 0.1);
    }
}