@charset "utf-8";

@font-face {
    font-family: 'Noto Serif Japanese';
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/NotoSerifCJKjp/NotoSerifCJKjp-Regular.woff2) format('woff2'),
        url(../fonts/NotoSerifCJKjp/NotoSerifCJKjp-Regular.woff) format('woff'),
        url(../fonts/NotoSerifCJKjp/NotoSerifCJKjp-Regular.otf) format('opentype');
}
@font-face {
    font-family: 'Noto Serif Japanese';
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/NotoSerifCJKjp/NotoSerifCJKjp-Medium.woff2) format('woff2'),
        url(../fonts/NotoSerifCJKjp/NotoSerifCJKjp-Medium.woff) format('woff'),
        url(../fonts/NotoSerifCJKjp/NotoSerifCJKjp-Medium.otf) format('opentype');
}
@font-face {
    font-family: 'Noto Serif Japanese';
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/NotoSerifCJKjp/NotoSerifCJKjp-Bold.woff2) format('woff2'),
        url(../fonts/NotoSerifCJKjp/NotoSerifCJKjp-Bold.woff) format('woff'),
        url(../fonts/NotoSerifCJKjp/NotoSerifCJKjp-Bold.otf) format('opentype');
}

/*==============================
    基本設定
==============================*/
body{
    color:#333;
    font-size:12px;
    /* サイトに応じで使用するフォントを読込み */
    font-family:'YakuHanMP_Noto','Noto Serif Japanese', 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: auto;
    }
}
.boxHide{display: none!important;}
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;}

/*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.cursorPointer:hover,
.brt a:hover,a.brt:hover,a .brt:hover{ -webkit-filter: brightness(1.1);filter: brightness(1.1); }
.brt.cursorPointer,
.brt a,
a.brt,
a .brt{
    transition:filter 0.2s ease-out;
}

/*ro無効化*/
.no_ro.cursorPointer:hover,
.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,
.brSpMin,
.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;
    }
}
@media only screen and (max-width:360px){
    .brSpMin{
        display:inline;
    }
}

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

/*-----------------------------------------------
	jsHide
-----------------------------------------------*/
  .jsHide{
    opacity: 0;
    /* transition: opacity 2s cubic-bezier(0.18, 1.00, 0.29, 1.00); */
}
.jsHide.jsShow{
    /* opacity: 1; */
    animation: fade_up 2s 
    ease forwards;
}
@keyframes fade_up {
    0% {
      opacity: 0;
      /* transform: translateY(50px); */
    }
    100% {
      opacity: 1;
      /* transform: translateY(0); */
    }
  }

/*-----------------------------------------------
	アンカーリンク位置調整
-----------------------------------------------*/
/* アンカーリンクのターゲット要素にscroll-margin-topを設定 */
#PlanCategory,
#AccessCategory,
#LocationCategory,
#EquipmentCategory,
#OutLineCategory {
    scroll-margin-top: 100px; /* PC用：固定ヘッダーの高さ分 */
}
@media only screen and (max-width:767px){
    #PlanCategory,
    #AccessCategory,
    #LocationCategory,
    #EquipmentCategory,
    #OutLineCategory {
        scroll-margin-top: 0; /* SP用：固定ヘッダーなし */
    }
}

/*----- header -----*/
#header{
    position: relative;
    z-index: 9999;
    width: 100%;
    height: 160px;
    background: #000;
    color: #fff;
}
#header .innerHead{
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#header .logo{
    margin-bottom: 5px;
    display: inline-block;
}
#header .rightBox{
    display: flex;
    align-items: center;
}
#header .rightBox .telBox{
    margin: 0 8px 0 20px;
}
#header .rightBox .infoBox .infoTxt{
    color: #fff;
    font-size: 12px;
}
#header .rightBox .infoBox .infoTxt + .infoTxt{
    margin-top: 6px;
    letter-spacing: .5px;
}
#header .linkList{
    background-color: #fff;
    border-radius: 2px;
    height: 100px;
    box-shadow: 0 3px 6px rgba(79, 75, 70, 0.33);
}
#header .linkList .list{
    display: flex;
    height: 100%;
}
#header .linkList .list .item{
    width: calc(100% / 6);
}
#header .linkList .list .item a,
#header .linkList .list .item .aBox{
    position: relative;
    width: 100%;
    height: 100%;
    display: inline-block;
    color: #000;
    text-decoration: none;
}
#header .linkList .list .item a::after,
#header .linkList .list .item .aBox::after{
    content:"";
    display:inline-block;
    width:1px;
    height:30px;
    background-color:rgba(40, 47, 56, 0.25);
    position:absolute;
    margin: auto;
    top:0;
    bottom: 0;
    right:0;
}
#header .linkList .list .item:last-child a::after,
#header .linkList .list .item:last-child .aBox::after{
    display: none;
}
#header .linkList .list .item .linkBox{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#header .linkList .list .item .linkBox .jpTit{
    font-size: 12px;
    margin-top: 13px;
}
@media only screen and (max-width:767px){
    #main{
        margin-top: 50px;
    }
    #header{
        position: fixed;
        top: 0;
        left: 0;
        min-width: 0;
        height: 50px;
        box-shadow: none;
    }
    #header .innerHead{
        height: 100%;
        padding-right: 0;
    }
    #header .logo{
        width: 180px;
        height: auto;
        margin-bottom: 0;
    }
    #header .rightBox .companyIcon{
        width: 64px;
        height: 20px;
    }
    #header .linkList{display: none;}
}
#btnNavi {
    display: none;
}
@media only screen and (max-width:767px){
    #btnNavi {
        display: flex;
        width: 50px;
        height: 50px;
        align-items: center;
        margin-right: 0;
        margin-left: auto;
        z-index: 9999;
        position: absolute;
        right: 0;
        top: 0;
    }
    #btnNavi .naviBtn{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-decoration: none;
        width: 100%;
        height: 100%;
        color: #1a1a1a;
        cursor: pointer;
    }
    #btnNavi .border {
        position: relative;
        width: 15px;
        height: 17px;
        padding-top: 8px;
    }
    #btnNavi .border .inner::before, 
    #btnNavi .border .inner::after{
        content: '';
        position: absolute;
        transition: all 0.4s ease-out;
    }
    #btnNavi .border .inner, 
    #btnNavi .border .inner::before, 
    #btnNavi .border .inner::after{
        display: block;
        width: 15px;
        height: 1px;
        background: #fff;
    }
    #btnNavi .border .inner::before{
        top: 0;
    }
    #btnNavi .border .inner::after{
        bottom: 0;
    }
    #btnNavi .txt{
        margin-top: 8px;
        font-size: 10px;
        letter-spacing: 1px;
        font-weight: 500;
        color: #6a3906;
    }
}

/*----- secFixedNav -----*/
.secFixedNav{
    position:fixed;
    right:0;
    top: 0;
    z-index:10000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100% - 350px);
}
@media only screen and (max-width:767px){
    .secFixedNav{
        right:0!important;
        top: auto;
        bottom: 0;
        width: 100%;
        height: auto;
        background-color: #fff;
        border-top: 1px solid #fff;
        display: block;
    }
    .secFixedNav a{display: inline-block;}
    .secFixedNav .aLink{
        background-color: #f3db11;
        width: 87%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .secFixedNav .aLink:not(.telIcon){
        border-right: 1px solid #fff;
    }
    .secFixedNav .aLink .wrapper{
        width: 196px;
        height: auto;
    }
    .secFixedNav .telIcon{
        background-color: #000;
        width: 13%;
    }
    .secFixedNav .telIcon .wrapper{ 
        width: 30px;
    }
}

/*----- menu -----*/
#menu{
    display: none;
}
@media only screen and (max-width:767px){
    #menu{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 99999;
        width: 100%;
        background: rgba(0, 0, 0, 0.85);
        padding: 11px 0 10px;
        overflow-y: scroll;
    }
    #menu .topBox{
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-right: 37px;
    }
    #menu .linkBox{
        border-top: 1px solid #808080;
        margin-top: 9px;
    }
    #menu .item{
        border-bottom: 1px solid #808080;
    }
    #menu .link{
        width: 100%;
        padding: 16px 0;
        font-size: 12px;
        font-weight: 500;
        display: block;
        text-decoration: none;
        color: #fff;
        letter-spacing: 1px;
        text-align: center;
    }
    #menu .link .img{
        margin-bottom: 15px;
    }
    #menu .icon{
        padding-bottom: 2px;
    }
    #menu .txtBox{
        margin: 52px auto 0;
        text-align: center;
    }
    #menu .botItem{
        display: inline;
        font-size: 12px;
        line-height: 1.5;
        letter-spacing: 0.5px;
        color: #fff;
    }
    #menu .botItem::after{
        content: "/";
        margin: 0 7px;
        color: #fff;
    }
    #menu .botItem:last-child::after{
        display: none;
    }
    #menu .botLink{
        text-decoration: none;
        color: #fff;
    }
    #menu .txtCover{
        text-align: center;
        margin-top: 92px;
    }
    #menu .linkClose{
        color: #fff;
        position: relative;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 1px;
        display: inline-block;
    }
    #menu .linkClose::before,
    #menu .linkClose::after{
        position: absolute;
        content: "";
        width: 2px;
        height: 14px;
        background: #fff;
        top: -22px;
        left: 16px;
    }
    #menu .linkClose::before{
        transform: rotate(45deg);
    }
    #menu .linkClose::after{
        transform: rotate(-45deg);
    }
    #menu .closeIcon{
        display: block;
        position: absolute;
        top: 25px;
        right: 14px;
    }
    #menu .closeIcon::before,
    #menu .closeIcon::after{
        position: absolute;
        content: "";
        width: 22px;
        height: 1px;
        background: #fff;
        top: 0;
        right: 0;
    }
    #menu .closeIcon::before{
        transform: rotate(45deg);
    }
    #menu .closeIcon::after{
        transform: rotate(-45deg);
    }
}
/*========================================
    wrapper
========================================*/
.wrapper1280{
    width: 1280px;
    margin: 0 auto;
}
.wrapper1200{
    width: 1200px;
    margin: 0 auto;
}
.wrapper1000{
    width: 1000px;
    margin: 0 auto;
}
@media only screen and (max-width:767px){
    .wrapper1280,
    .wrapper1200,
    .wrapper1000{
        width: 100%;
    }
    .wrapperSp{
        width: 92%;
        margin: 0 auto;
    }
    .wrapperSp335{
        width: 89.334%;
        margin: 0 auto;
    }
}

/*----- footer -----*/
footer{
    background-color: #000;
    color: #fff;
}
footer .wrapper {
    padding-top: 70px;
    text-align: center;
    
}
footer .top .tit{
    font-size: 20px;
}
footer .top .tel{
    margin: 14px 0 30px;
    display: block;
}
footer .top .txtLogo{
    font-size: 14px;
    margin-top: 15px;
}
footer .top .txt{
    font-size: 12px;
}
footer .top .txt + .txt{
    margin-top: 15px;
    letter-spacing: 1px;
}
footer .linkListBox {
    margin-top: 66px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-clip: padding-box;
    border-right: none;
    border-left: none;
}
footer .linkList {
    display: flex;
    height: 122px;
}
footer .linkList .item {
    width: 20%;
}
footer .linkList .item a,
footer .linkList .item .aBox {
    position: relative;
    width: 100%;
    height: 100%;
    display: inline-block;
    color: #000;
    text-decoration: none;
}
footer .linkList .item .linkBox {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
footer .linkList .item:first-child a::before,
footer .linkList .item a::after,
footer .linkList .item:first-child .aBox::before,
footer .linkList .item .aBox::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.3);
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
}
footer .linkList .item:first-child a::before,
footer .linkList .item:first-child .aBox::before{
    right: auto;
    left: 0;
}
footer .linkList .item .linkBox .jpTit {
    font-size: 12px;
    margin-top: 13px;
    color: #fff;
}
#copy {
    text-align: center;
    color: #fff;
    padding: 54px 0;
    letter-spacing: 0.5px;
    font-size: 12px;
}
@media only screen and (max-width:767px){
    footer{
        padding-bottom: calc((50 / 375 * 100vw) + 50px);
    }
    footer .wrapper {
        padding-top: 50px;
    }
    footer .top .tit{
        width: 264px;
        height: auto;
        margin: 0 auto;
    }
    footer .top .tel{
        margin: 13px 0 30px;
        display: block;
    }
    footer .top .txtLogo{
        font-size: 11px;
        margin-top: 14px;
        letter-spacing: .5px;
    }
    footer .top .txt + .txt{
        margin-top: 10px;
        letter-spacing: 1px;
    }
    footer .linkListBox {
        display: none;
    }
    #copy {
        padding: 47px 0;
        letter-spacing: 0.5px;
    }
}

/*----- pnkz -----*/
#pnkz{
    padding: 30px 0 0 0;
    font-size: 0;
    background: #000;
}
#pnkz li{
    display: inline;
    font-size: 12px;
    color: #fff;
}
#pnkz li::after{
    content: ">";
    margin: 0 5px;
}
#pnkz li:last-child::after{
    display: none;
}
#pnkz a{
    text-decoration: none;
    color: #fff;
    padding-bottom: 2px;
    border-bottom: 1px solid #1d1d1d;
}
@media only screen and (max-width:767px){
    #pnkz{
        padding: 15px 0 0 0;
        letter-spacing: 0;
    }
    #pnkz .boxList{
        white-space: nowrap;
        overflow-y: scroll;
        padding: 4px 0;
    }
    #pnkz li{
        font-size: 11px;
    }
    #pnkz a{
        padding-bottom: 0;
    }
}

/*----- secPageTit -----*/
.secPageTit{
    margin-bottom: 1px;
}
.secPageTit .bgBox{
    position: relative;
    height: 500px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 60px;
    background: url(../img/bgTop.jpg) no-repeat center / cover;
    border-bottom: 1px solid #94959b;
}
.secPageTit .bgBox::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,.8), transparent);
}
.secPageTit .bgBox .txtBox{
    z-index: 2;
}
.secPageTit .bgBox .tit{
    font-size: 22px;
    line-height: 44px;
    margin-top: 20px;
    letter-spacing: 1px;
}
.secPageTit .bgBox .titMin + .tit{
    margin-top: 2px;
}
.secPageTit .bgBox .titMin{
    font-size: 15px;
    margin-top: 28px;
}
@media only screen and (max-width:767px){
    .secPageTit{
        margin-bottom: 0;
    }
    .secPageTit .bgBox{
        height: 275px;
        padding-bottom: 25px;
        background: url(../img/bgTopSp.jpg) no-repeat center / cover;
        border-bottom: none;
    }
    .secPageTit .bgBox .engTit{
        width: 235px;
        height: auto;
    }
    .secPageTit .bgBox .tit{
        font-size: 15px;
        line-height: 30px;
        margin-top: 10px;
        letter-spacing: 1px;
    }
    .secPageTit .bgBox .titMin + .tit{
        margin-top: 5px;
    }
    .secPageTit .bgBox .titMin{
        font-size: 12px;
        margin-top: 15px;
    }
    .secPageTit .bgBox::before{
        background: linear-gradient(to right, rgba(0,0,0,.6), transparent);
    }
}

/*----- secReserve -----*/
.secReserve{
    border-top: 1px solid #9c9c9c;
}
.secReserve .bgBox{
    height: 500px;
}
.secReserve .bgBox.lazyloaded{
    background: url(../img/bgReserve.jpg) no-repeat center / cover;
}
.secReserve .inner{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}
.secReserve .txtBox{
    color: #fff;
}
.secReserve .txtBox .minTit{
    font-size: 17px;
    margin-left: 8px;
}
.secReserve .txtBox .tit{
    font-size: 40px;
    margin: 15px 0 20px;
}
.secReserve .txtBox .priceBox{
    position: relative;
    font-size: 40px;
    padding-left: 95px;
}
.secReserve .txtBox .priceBox::before{
    position: absolute;
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    margin: auto;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    width: 91px;
    height: 58px;
    background-image: url(../img/iconPresent.png);
}
.secReserve .txtBox .priceBox .num{
    font-size: 70px;
}
.secReserve .aLink{
    color: #fff;
    border: 1px solid #fff;
    padding: 21px;
    text-decoration: none;
    width: 550px;
    text-align: center;
    margin: 35px auto 0;
}
.secReserve .aLink .txt{
    font-size: 20px;
}
.secReserve .txtMemo{
    font-size: 12px;
    line-height: 25px;
    margin-top: 32px;
    color: #fff;
    text-align: center;
}
@media only screen and (max-width:767px){
    .secReserve .bgBox{
        min-height: 400px;
        height: auto;
        padding: 20px 0;
        display: flex;
        align-items: center;
    }
    .secReserve .bgBox.lazyloaded{
        background: url(../img/bgReserveSp.jpg) no-repeat center / cover;
    }
    .secReserve .inner{
        width: 81.336%;
        margin: 0 auto;
    }
    .secReserve .txtBox .minTit{
        font-size: 13px;
        line-height: 1.5;
        margin-left: 0;
        text-align: center;
    }
    .secReserve .txtBox .tit{
        font-size: 22px;
        margin: 9px 0 14px;
        white-space: nowrap;
    }
    .secReserve .txtBox .priceBox{
        position: relative;
        font-size: 18px;
        padding-left: 55px;
    }
    .secReserve .txtBox .priceBox::before{
        top: 0;
        bottom: 0;
        left: 0;
        width: 51px;
        height: 32px;
        background-image: url(../img/iconPresentSp.png);
    }
    .secReserve .txtBox .priceBox .num{
        font-size: 30px;
    }
    .secReserve .aLink{
        padding: 15px;
        width: 100%;
        margin: 10px auto 0;
    }
    .secReserve .aLink .txt{
        font-size: 13px;
    }
    .secReserve .txtMemo{
        font-size: 11px;
        line-height: 22px;
        margin-top: 25px;
        white-space: nowrap
    }
}
@media only screen and (max-width:360px){
    .secReserve .txtBox .tit {
        font-size: 19px;
    }
    .secReserve .txtBox .priceBox {
        font-size: 19px;
        padding-left: 44px;
    }
    .secReserve .txtBox .priceBox .num {
        font-size: 32px;
    }
    .secReserve .txtBox .priceBox::before {
        left: -14px;
    }
    .secReserve .aLink {
        padding: 15px 5px;
    }
}
/* 230519 */
.secFixedNav .onbox{
    display: none;
}
@media only screen and (max-width:767px){
    /* .secFixedNav.fixed-hide{
        bottom: -30vw!important;
    } */
    .secFixedNav .onbox{
        display: block;
        width: 100%;
        margin-bottom: 1px;
    }
    .secFixedNav .onbox .Linkbox{
        display: block;
    }
    .secFixedNav .underbox{
        display: flex;
        height: 13.335vw;
        min-height: 45px;
    }
}