@charset "utf-8";
/* ==================================================================
 *  kurosesgc/css/bundle.css
 *  以下を読み込み順のまま連結。中身は1文字も変更していません。
 *  共通の reset.css は別読み込みのため含みません。
 *
 *    1. css/topslider.css
 *    2. css/layout.css
 *    3. css/popup.css
 *    4. css/index.css
 *    5. css/responsive.css
 * ================================================================== */

/* ---------- ここから css/topslider.css ---------- */
/* Slider */
.slick-slider {
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;

    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;

    height: auto;

    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}


/*==================================================
スライダーのためのcss
===================================*/

#topMain {
    margin: 0;
    padding: 0;
    line-height: 0;
    overflow: hidden;
    width: 100%;
    height: 90vh;
    position: relative;
    z-index: -1;
}

/* #topMain::before {
	content: '';
	position: fixed;
	top: 0;
	right: 0;
	z-index: -1;
	width: 75%;
	height: 80%;
	background-size: cover;
	border-radius: 0 0 0 50px;
}  */

/* 各スライドのサイズ */
.sliderTop .sliderImg,
.sliderBottom .sliderImg {
    width: 100%;
    height: 40vh;
    /* 上下でちょうど半分ずつ */
    background-repeat: no-repeat;
    background-size: auto 200%;


    /* 高さを要素の2倍に → ちょうど半分が見える */
}

/* 原点を揃える：上段＝上基準、下段＝下基準 */
.sliderTop .sliderImg {
    background-position: right top;

}

.sliderBottom .sliderImg {
    background-position: right bottom;

}

/* 画像の割り当て（ペアごとに同じ画像） */
.pair01 {
    background-image: url(../img/img_01.jpg);
}

.pair02 {
    background-image: url(../img/img_02.jpg);

}

.pair03 {
    background-image: url(../img/img_03.jpg);

}

.pair04 {
    background-image: url(../img/img_04.jpg);
}


/* 施設予約 */

/* ----------------------*
 * コンテナー
 * ----------------------*/
.reservationContainer {
    --item-width: 800px;
    --item-height: auto;
    width: var(--item-width);
    position: relative;
    margin-bottom: 40px;
    /* 各パーツ配置をグリッドでレイアウト */
    display: grid;
    grid-template-areas: "item item item" "left markers right";
    grid-template-columns: 1fr 2fr 1fr;
    row-gap: 16px;
}
/* ---------- ここまで css/topslider.css ---------- */

/* ---------- ここから css/layout.css ---------- */
/* *{
    outline: 1px solid magenta;
} */

.reserveTab {
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: center;
    gap: 60px;
    max-width: 85%;
    margin: 0 auto;
}

.reserveTab>li {
    max-width: 100%;
}

.reserveTab li a {
    opacity: 0.3;
}

.reserveTab>li .icon04 {
    line-height: 2;
    width: 2em;
    height: 2em;
    text-align: center;
    color: #fff;
    background: #E26B5D;
    margin: 0 auto 10px;
    display: block;
    border-radius: 100vh;
    position: relative;
}

.reserveTab>li .icon04::before {
    content: "";
    border: solid transparent;
    border-width: 7px;
    border-top-color: #E26B5D;
    position: absolute;
    top: calc(100% - 2px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.reserveTab>li dl {
    padding: 30px 20px;
    margin: 0;
    border: 3px solid #E26B5D;
    position: relative;
}

.reserveTab>li:not(:first-child) dl::before {
    content: "";
    width: 14px;
    height: 14px;
    margin-right: 10px;
    display: inline-block;
    border-top: 4px solid #E26B5D;
    border-right: 4px solid #E26B5D;
    position: absolute;
    top: calc(50% - 14px);
    left: -45px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.reserveTab>li dl dt {
    font-size: 1.3em;
    font-weight: 600;
    color: #E26B5D;
    -ms-flex-preferred-size: 20%;
    margin-bottom: 10px;
    text-align: center;
}

.reserveTab>li dl dd {
    margin-left: 0;
}

@media(max-width: 880px) {
    .reserveTab {
        gap: 20px;
    }

    .reserveTab>li {
        max-width: unset;

    }

    .reserveTab>li dl {
        padding: 10px;

    }

    .reserveTab>li dl dt {
        font-size: 0.8em;

    }

    .reserveTab>li:not(:first-child) dl::before {
        display: none;
    }
}

.reserveArea {
    width: 80%;
    margin: 0 auto;
}

.reserveBox {
    width: 80%;
    margin: 0 auto;
}

.reseveP {
    text-align: center;
    margin: 0 auto 100px;
    max-width: 80%;
}
.reserve02p{
    text-align: center;
    margin: 50px auto;
    max-width: 80%;
}
.reseveBtn {
    text-align: center;
    background-color: #E26B5D;
    margin: 20px;
    color: #fff;
    font-weight: bold;
    border-radius: 10px;
}

.reseveBtn a {
    color: #fff;
    border-radius: 10px;
    padding: 10px 60px;
    display: inline-block;
    transition: 0.4s;
}

.reseveBtn a:hover {
    background-color: #ae483d;

}

/* .reserveTab li {
    font-size: 30px;
} */


.flow_design07 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flow07 {
    padding-left: 0;
}

.flow07>li {

    display: flex;
    align-items: end;
}

.flow07>li:not(:last-child) {
    margin: 0 0 50px;
}

.flow07>li p {
    padding: 0 0 0 30px;
    width: calc(100% - 80%);
}
.caption {
    width: 100% !important;
}
.flow07>li dl {
    padding: 0 0 0 30px;
    width: calc(100% - 20%);
}

.flow07>li dl dt {
    padding: 0 0 5px;
    margin: 0 0 15px;
    font-size: 1.2em;
    font-weight: bold;
    border-bottom: 4px solid #CCCCCC;
    position: relative;
}

.flow07>li dl dt::after {
    content: '';
    width: 20%;
    height: 4px;
    position: absolute;
    bottom: -4px;
    left: 0;
    background-color: #E26B5D;
}

.flow07>li dl .textArea {
    margin: 0;
    display: flex;
    padding: 0 20px;
}



.icon-btn {
    background: url(../img/reservebtn01.png) no-repeat center/cover;
    display: inline-block;
    width: 180px;
    height: 60px;
    border-radius: 10px;
    margin-right: 20px;
    transition: 0.3s;
}

.icon-btn:hover {
    background-image: url(../img/reservebtn02.png);
}

/* floorMapArea */
.floorTab {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0 0 50px 0;
    padding: 0;
    font-size: 36px;
}

.floorTab li,
.resereTab li {
    margin-bottom: 20px;
}

.floorTab li a {
    display: block;
    opacity: 0.3;
    margin: 0 2px;
    padding: 10px 60px;
    position: relative;
    color: #333;
}

/*liにactiveクラスがついた時の形状*/
.floorTab li.active a,
.reserveTab li.active a {
    opacity: 1;
}


.floorTab li a::after

/* ,.reserveTab li a::after */
    {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 0;
    /*線になる丸の形状*/
    width: 100%;
    height: 8px;

    background: #333;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0.04, 1);
    /*X方向0.04、Y方向1*/
    transform-origin: center bottom;
    /*中央下部基点*/
}

/*現在地とhoverの設定*/
.floorTab li.current a::after,
.floorTab li a:hover::after

/* ,.reserveTab li.current a::after,
.reserveTab li a:hover::after  */
    {
    height: 8px;
    /*縦幅を変化*/
    border-radius: 0;
    /*丸みをなくす*/
    transform: scale(0.8, 1);
    /*X方向0.8、Y方向1にスケール拡大*/
}



#floorMap {
    background: #fff;
    padding-top: 150px;
}



#floorMap h3 {
    font-size: 3em;
    position: absolute;
    left: -15%;

}

#floorMap .floorMapArea {
    padding: 70px;
    width: 70%;
    margin: 0 auto;
    position: relative;
}


.floorMapArea2f,
.floorMapArea1f {
    margin: 70px auto 150px auto;
    max-width: 80%;
}

.floor1f,
.floor2f {
    position: relative;
}

.floorMapArea1f {



    margin-bottom: 50px;
}

/* ロビー */
.floorBtn1-1 {
    position: absolute;
    top: 46%;
    left: 15%;
}

.floorBtnText1-1 {
    background-color: #fff;
    border: 2px solid #333;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    padding: 3px 20px;
    position: relative;
    border-radius: 40px;
}

.btn1-1Img {
    max-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    /* ←ふわっと効果 */
    margin: 0 auto;
    position: absolute;
    bottom: 120%;
    left: -30%;
    /* z-index: 1; */
}

.btn1-1Img img {
    border-radius: 50%;
}

#floorMap .floorBtnText1-1:hover+.btn1-1Img {
    opacity: 1;
    visibility: visible;
    width: 170%;
}

/* 客席 */
.floorBtn1-2 {
    position: absolute;
    top: 45%;
    left: 51%;

}

.floorBtnText1-2 {
    background-color: #fff;
    border: 2px solid #333;
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    padding: 3px 20px;
    position: relative;
    border-radius: 40px;
}

.btn1-2Img {
    max-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    /* ←ふわっと効果 */

    margin: 0 auto;
    position: absolute;
    top: 120%;
    left: -30%;
    /* z-index: 1; */
}

.btn1-2Img img {
    border-radius: 50%;
}

#floorMap .floorBtnText1-2:hover+.btn1-2Img {
    opacity: 1;
    visibility: visible;
    width: 170%;

}

/* 舞台 */
.floorBtn1-3 {
    position: absolute;
    top: 48%;
    right: 10%;

}

.floorBtnText1-3 {
    background-color: #fff;
    border: 2px solid #333;
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    padding: 3px 20px;
    position: relative;
    border-radius: 40px;
}

.btn1-3Img {
    max-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    /* ←ふわっと効果 */

    margin: 0 auto;
    position: absolute;
    top: 120%;
    left: -30%;
    /* z-index: 1; */
}

.btn1-3Img img {
    border-radius: 50%;
}

#floorMap .floorBtnText1-3:hover+.btn1-3Img {
    opacity: 1;
    visibility: visible;
    width: 170%;
}

/* 展示コーナー */
.floorBtn1-4 {
    position: absolute;
    bottom: 30%;
    left: 12%;
}

.floorBtnText1-4 {
    background-color: #fff;
    border: 2px solid #333;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    padding: 3px 20px;
    position: relative;
    border-radius: 40px;
}

.btn1-4Img {
    max-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    /* ←ふわっと効果 */
    margin: 0 auto;
    position: absolute;
    top: 120%;
    left: -10%;
    /* z-index: 1; */
}

.btn1-4Img img {
    border-radius: 50%;
}

#floorMap .floorBtnText1-4:hover+.btn1-4Img {
    opacity: 1;
    visibility: visible;
    width: 110%;
}

/* 受付 */
.floorBtn1-5 {
    position: absolute;
    bottom: 6%;
    left: 22%;
}

.floorBtnText1-5 {
    background-color: #fff;
    border: 2px solid #333;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    padding: 3px 20px;
    position: relative;
    border-radius: 40px;
}

.btn1-5Img {
    max-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    /* ←ふわっと効果 */
    margin: 0 auto;
    position: absolute;
    top: 120%;
    left: -20%;
    /* z-index: 1; */
}

.btn1-5Img img {
    border-radius: 50%;
}

#floorMap .floorBtnText1-5:hover+.btn1-5Img {
    opacity: 1;
    visibility: visible;
    width: 170%;
}


/* 教養室 */
.floorBtn1-6 {
    position: absolute;
    bottom: 11%;
    right: 15%;
}

.floorBtnText1-6 {
    background-color: #fff;
    border: 2px solid #333;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    padding: 3px 20px;
    position: relative;
    border-radius: 40px;

}

.btn1-6Img {
    max-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    /* ←ふわっと効果 */
    margin: 0 auto;
    position: absolute;
    top: 120%;
    left: -35%;
    /* z-index: 1; */
}

.btn1-6Img img {
    border-radius: 50%;
}

#floorMap .floorBtnText1-6:hover+.btn1-6Img {
    opacity: 1;
    visibility: visible;
    width: 150%;
}

/* 児童室 */
.floorBtn1-7 {
    position: absolute;
    top: 15%;
    left: 22%;
}

.floorBtnText1-7 {
    background-color: #fff;
    border: 2px solid #333;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    padding: 3px 20px;
    position: relative;
    border-radius: 40px;
}

.btn1-7Img {
    max-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    /* ←ふわっと効果 */
    margin: 0 auto;
    position: absolute;
    top: 120%;
    left: -35%;
    /* z-index: 1; */
}

.btn1-7Img img {
    border-radius: 50%;
}

#floorMap .floorBtnText1-7:hover+.btn1-7Img {
    opacity: 1;
    visibility: visible;
    width: 150%;
}

/* 第1会議室 */
.floorBtn1-8 {
    position: absolute;
    top: 15%;
    left: 34%;
}

.floorBtnText1-8 {
    background-color: #fff;
    border: 2px solid #333;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    padding: 3px 20px;
    position: relative;
    border-radius: 40px;
}

.btn1-8Img {
    max-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    /* ←ふわっと効果 */
    margin: 0 auto;
    position: absolute;
    top: 120%;
    left: -5%;
    /* z-index: 1; */
}

.btn1-8Img img {
    border-radius: 50%;
}

#floorMap .floorBtnText1-8:hover+.btn1-8Img {
    opacity: 1;
    visibility: visible;
    width: 110%;
}



/* ここから2F */

/* ホール */
.floorBtn2-1 {
    position: absolute;
    top: 38%;
    left: 15%;
}

.floorBtnText2-1 {
    background-color: #fff;
    border: 2px solid #333;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    padding: 3px 20px;
    position: relative;
    border-radius: 40px;
}

.btn2-1Img {
    max-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    /* ←ふわっと効果 */
    margin: 0 auto;
    position: absolute;
    bottom: 120%;
    left: -18%;
    /* z-index: 1; */
}

.btn2-1Img img {
    border-radius: 50%;
}

#floorMap .floorBtnText2-1:hover+.btn2-1Img {
    opacity: 1;
    visibility: visible;
    width: 170%;
}

/* ホール */
.floorBtn2-2 {
    position: absolute;
    top: 46%;
    left: 21%;
}

.floorBtnText2-2 {
    background-color: #fff;
    border: 2px solid #333;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    padding: 3px 20px;
    position: relative;
    border-radius: 40px;
}

.btn2-2Img {
    max-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    /* ←ふわっと効果 */
    margin: 0 auto;
    position: absolute;
    top: 120%;
    left: -12%;
    /* z-index: 1; */
}

.btn2-2Img img {
    border-radius: 50%;
}

#floorMap .floorBtnText2-2:hover+.btn2-2Img {
    opacity: 1;
    visibility: visible;
    width: 130%;
}

/* 調理室 */
.floorBtn2-3 {
    position: absolute;
    bottom: 14%;
    left: 22%;
}

.floorBtnText2-3 {
    background-color: #fff;
    border: 2px solid #333;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    padding: 3px 20px;
    position: relative;
    border-radius: 40px;
}

.btn2-3Img {
    max-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    /* ←ふわっと効果 */
    margin: 0 auto;
    position: absolute;
    top: 120%;
    left: -18%;
    /* z-index: 1; */
}

.btn2-3Img img {
    border-radius: 50%;
}

#floorMap .floorBtnText2-3:hover+.btn2-3Img {
    opacity: 1;
    visibility: visible;
    width: 150%;
}

/* 第2会議室 */
.floorBtn2-4 {
    position: absolute;
    bottom: 18%;
    left: 38%;
}

.floorBtnText2-4 {
    background-color: #fff;
    border: 2px solid #333;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    padding: 3px 20px;
    position: relative;
    border-radius: 40px;
}

.btn2-4Img {
    max-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    /* ←ふわっと効果 */
    margin: 0 auto;
    position: absolute;
    top: 120%;
    left: -8%;
    /* z-index: 1; */
}

.btn2-4Img img {
    border-radius: 50%;
}

#floorMap .floorBtnText2-4:hover+.btn2-4Img {
    opacity: 1;
    visibility: visible;
    width: 120%;
}

/* 第3会議室 */
.floorBtn2-5 {
    position: absolute;
    top: 16%;
    left: 16%;
}

.floorBtnText2-5 {
    background-color: #fff;
    border: 2px solid #333;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    padding: 3px 20px;
    position: relative;
    border-radius: 40px;
}

.btn2-5Img {
    max-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    /* ←ふわっと効果 */
    margin: 0 auto;
    position: absolute;
    bottom: 120%;
    left: -8%;
    /* z-index: 1; */
}

.btn2-5Img img {
    border-radius: 50%;
}

#floorMap .floorBtnText2-5:hover+.btn2-5Img {
    opacity: 1;
    visibility: visible;
    width: 120%;
}


/* 大研修室 */
.floorBtn2-6 {
    position: absolute;
    top: 18%;
    left: 33%;
}

.floorBtnText2-6 {
    background-color: #fff;
    border: 2px solid #333;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    padding: 3px 20px;
    position: relative;
    border-radius: 40px;
}

.btn2-6Img {
    max-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    /* ←ふわっと効果 */
    margin: 0 auto;
    position: absolute;
    bottom: 120%;
    left: -8%;
    /* z-index: 1; */
}

.btn2-6Img img {
    border-radius: 50%;
}

#floorMap .floorBtnText2-6:hover+.btn2-6Img {
    opacity: 1;
    visibility: visible;
    width: 140%;
}


/* 大研修室 */
.floorBtn2-7 {
    position: absolute;
    top: 44%;
    left: 33%;
}

.floorBtnText2-7 {
    background-color: #fff;
    border: 2px solid #333;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    line-height: 0.9;
    text-align: center;
    padding: 10px;
    position: relative;
    border-radius: 20px;
}

.btn2-7Img {
    max-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    /* ←ふわっと効果 */
    margin: 0 auto;
    position: absolute;
    top: 120%;
    left: -40%;
    /* z-index: 1; */
}

.btn2-7Img img {
    border-radius: 50%;
}

#floorMap .floorBtnText2-7:hover+.btn2-7Img {
    opacity: 1;
    visibility: visible;
    width: 180%;
}
/* ---------- ここまで css/layout.css ---------- */

/* ---------- ここから css/popup.css ---------- */
/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden;
}

.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden
}

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0
}

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 1;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.modaal-wrapper * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.modaal-wrapper .modaal-close {
  border: none;
  background: 0 0;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
}

.modaal-wrapper.modaal-start_none {
  display: none;
  opacity: 1
}

.modaal-wrapper.modaal-start_fade {
  opacity: 0
}

.modaal-wrapper [tabindex="0"] {
  outline: 0 !important
}

.modaal-wrapper.modaal-fullscreen {
  overflow: hidden;
}

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%
}

.modaal-fullscreen .modaal-outer-wrapper {
  display: block
}

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 25px
}

.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: inline-block;
  vertical-align: top;
}

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #000;
  max-width: 750px;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
  cursor: auto
}

.modaal-container .taxTitle,
.modaal-container h4 {
  font-size: 30px;
  font-weight: bold;
  padding-bottom: 10px;
}

.modaal-container .taxTitleP {
  padding: 10px 40px 0 70px;
  font-size: 20px;
}

.modaal-container p {
  font-size: 16px;
  padding: 10px 40px 0 50px;
}

.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden
}

.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto
}

.modaal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border-radius: 100%;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out
}

.modaal-close:focus,
.modaal-close:hover {
  outline: 0;
  background: #fff
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #b93d0c
}

.modaal-close span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden
}

.modaal-close:after,
.modaal-close:before {
  display: block;
  content: " ";
  position: absolute;
  top: 14px;
  left: 23px;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: background .2s ease-in-out;
  transition: background .2s ease-in-out
}

.modaal-close:before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg)
}

.modaal-close:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg)
}

.modaal-fullscreen .modaal-close {
  background: #afb7bc;
  right: 10px;
  top: 10px
}

.modaal-content-container {
  padding: 50px
}

.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0
}

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: 0 0
}

.modaal-confirm-btn.modaal-ok {
  padding: 10px 15px;
  color: #fff;
  background: #555;
  border-radius: 3px;
  -webkit-transition: background .2s ease-in-out;
  transition: background .2s ease-in-out
}

.modaal-confirm-btn.modaal-ok:hover {
  background: #2f2f2f
}

.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline
}

.modaal-confirm-btn.modaal-cancel:hover {
  text-decoration: none;
  color: #2f2f2f
}

.modaal-instagram .modaal-container {
  width: auto;
  background: 0 0;
  box-shadow: none !important
}

.modaal-instagram .modaal-content-container {
  padding: 0;
  background: 0 0
}

.modaal-instagram .modaal-content-container>blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important
}

.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  box-shadow: none !important;
  -webkit-animation: instaReveal 1s linear forwards;
  animation: instaReveal 1s linear forwards
}

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px
}

.modaal-image .modaal-container {
  width: auto;
  max-width: 100%
}

.modaal-gallery-wrap {
  position: relative;
  color: #fff
}

.modaal-gallery-item {
  display: none
}

.modaal-gallery-item img {
  display: block
}

.modaal-gallery-item.is_active {
  display: block
}

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff
}

.modaal-gallery-label:focus {
  outline: 0
}

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 100%;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out
}

.modaal-gallery-control.is_hidden {
  opacity: 0;
  cursor: default
}

.modaal-gallery-control:focus,
.modaal-gallery-control:hover {
  outline: 0;
  background: #fff
}

.modaal-gallery-control:focus:after,
.modaal-gallery-control:focus:before,
.modaal-gallery-control:hover:after,
.modaal-gallery-control:hover:before {
  background: #afb7bc
}

.modaal-gallery-control span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden
}

.modaal-gallery-control:after,
.modaal-gallery-control:before {
  display: block;
  content: " ";
  position: absolute;
  top: 16px;
  left: 25px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: background .2s ease-in-out;
  transition: background .2s ease-in-out
}

.modaal-gallery-control:before {
  margin: -5px 0 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg)
}

.modaal-gallery-control:after {
  margin: 5px 0 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg)
}

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px
}

.modaal-gallery-next-outer {
  right: 45px
}

.modaal-gallery-prev:after,
.modaal-gallery-prev:before {
  left: 22px
}

.modaal-gallery-prev:before {
  margin: 5px 0 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg)
}

.modaal-gallery-prev:after {
  margin: -5px 0 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg)
}

.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px
}

.modaal-gallery-prev-outer {
  left: 45px
}

.modaal-video-wrap {
  margin: auto 50px;
  position: relative
}

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, .3);
  background: #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto
}

.modaal-video-container embed,
.modaal-video-container iframe,
.modaal-video-container object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%
}

.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block
}

.modaal-loading-spinner {
  background: 0 0;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  -webkit-transform: scale(.25);
  -ms-transform: scale(.25);
  transform: scale(.25)
}

.modaal-loading-spinner>div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute
}

.modaal-loading-spinner>div>div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff
}

.modaal-loading-spinner>div:nth-of-type(1)>div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0s;
  animation-delay: 0s
}

.modaal-loading-spinner>div:nth-of-type(2)>div,
.modaal-loading-spinner>div:nth-of-type(3)>div {
  animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner>div:nth-of-type(1) {
  -ms-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0)
}

.modaal-loading-spinner>div:nth-of-type(2)>div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .12s;
  animation-delay: .12s
}

.modaal-loading-spinner>div:nth-of-type(2) {
  -ms-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0)
}

.modaal-loading-spinner>div:nth-of-type(3)>div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .25s;
  animation-delay: .25s
}

.modaal-loading-spinner>div:nth-of-type(4)>div,
.modaal-loading-spinner>div:nth-of-type(5)>div {
  animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner>div:nth-of-type(3) {
  -ms-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0)
}

.modaal-loading-spinner>div:nth-of-type(4)>div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .37s;
  animation-delay: .37s
}

.modaal-loading-spinner>div:nth-of-type(4) {
  -ms-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0)
}

.modaal-loading-spinner>div:nth-of-type(5)>div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .5s;
  animation-delay: .5s
}

.modaal-loading-spinner>div:nth-of-type(6)>div,
.modaal-loading-spinner>div:nth-of-type(7)>div {
  animation: modaal-loading-spinner 1s linear infinite;

}

.modaal-loading-spinner>div:nth-of-type(5) {
  -ms-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0)
}

.modaal-loading-spinner>div:nth-of-type(6)>div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .62s;
  animation-delay: .62s
}

.modaal-loading-spinner>div:nth-of-type(6) {
  -ms-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0)
}

.modaal-loading-spinner>div:nth-of-type(7)>div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .75s;
  animation-delay: .75s
}

.modaal-loading-spinner>div:nth-of-type(7) {
  -ms-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0)
}

.modaal-loading-spinner>div:nth-of-type(8)>div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: .87s;
  animation-delay: .87s
}

.modaal-loading-spinner>div:nth-of-type(8) {
  -ms-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0)
}

@media only screen and (min-width: 1430px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 731px
  }
}

@media only screen and (max-width: 1220px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px
  }

  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    background: rgba(0, 0, 0, .7)
  }

  .modaal-gallery-control:after,
  .modaal-gallery-control:before {
    background: #fff
  }

  .modaal-gallery-next {
    left: auto;
    right: 20px
  }

  .modaal-gallery-prev {
    left: 20px;
    right: auto
  }
}

@media screen and (max-width: 880px) {
  .modaal-instagram iframe {
    width: 500px !important
  }
}

@media only screen and (max-width: 550px) {
  .modaal-instagram iframe {
    width: 280px !important
  }
}

@media screen and (max-height:1100px) {
  .modaal-instagram iframe {
    width: 700px !important
  }
}

@media screen and (max-height:1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px
  }

  .modaal-instagram iframe {
    width: 600px !important
  }
}

@media screen and (max-height:900px) {
  .modaal-instagram iframe {
    width: 500px !important
  }

  .modaal-video-container {
    max-width: 900px;
    max-height: 510px
  }
}

@media only screen and (max-height:820px) {
  .modaal-gallery-label {
    display: none
  }
}

@keyframes instaReveal {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@-webkit-keyframes instaReveal {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@-webkit-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5)
  }

  100% {
    opacity: .1;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5)
  }

  100% {
    opacity: .1;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}


/*全て共通：hideエリアをはじめは非表示*/
.hide-area {
  display: none;

}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}



/* popup施設料金表のところ */

.taxTableInfo {
  border-collapse: collapse;
  width: 80;
  margin: 0 auto;
  text-align: center;
}

.mtgroom1 {
  background-color: #fff;
}

.mtgroom2 {
  background-color: #518ddc;
  font-weight: bold;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  margin: 10px;
  color: #fff;
}


.infoImg {
  padding: 50px;
}

.infoTaxText {

  color: #121212;
}

.infoTaxText table caption {
  caption-side: bottom;
  /* キャプションを下に配置 */
  font-size: 13px;
}
/* ---------- ここまで css/popup.css ---------- */

/* ---------- ここから css/index.css ---------- */
:root {
  --main: rgb(239, 234, 135);
  --sub: rgb(244, 239, 150);
  --hover: rgb(213, 208, 118);
  --bg-light: #f7f7f7;
  --text-dark: #333;
  --color-accent: #E26B5D;
  --color-accent-dark: #ae483d;
  --floor-area-max-width: 80%;
}

body {
  font-family: "M PLUS 1", sans-serif;
  color: #333;
  font-size: 1rem;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.roboto {
  font-family: "Roboto", sans-serif;
  font-weight: weight;
}

a {
  color: #333;
}

img {
  width: 100%;
}

.border {
  border: 3px solid #d6d6d6;
  width: 65%;
  margin: 20px auto;
}

.textBr {
  display: none;
}

.topText,
h1,
h2,
h3 span,
#g-nav,
#headerNavPC,
.openbtn,
#footer {
  letter-spacing: 0.2em;
}

#header {
  position: fixed;
  top: 30px;
  left: 0;
  height: 10%;
  width: 80%;
  border-radius: 0 50px 50px 0;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  z-index: 9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  background: #fff;
}
#header h1 {
  display: flex;
  align-items: center;
}
#header h1 img {
  display: block;
  width: 150%;
  height: auto;
}

.container {
  background-color: #fff;
}

#headerNavPC span.bgLRextend::before {
  background: #333;
}

@media screen and (max-width: 880px) {
  #headerNavPC {
    display: none;
  }
}
.headerNavList {
  font-size: 70%;
}

#headerNavPC ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
}
#headerNavPC ul li {
  font-size: 16px;
}

#headerNavPC li a {
  display: block;
  text-decoration: none;
  color: #676767;
  padding: 0 40px;
  transition: all 0.5s;
  line-height: 1.3;
}

#headerNavPC li.current a,
#headerNavPC li a:hover {
  color: var(--hover);
  font-weight: 900;
  transform: scale(1.1);
}

#g-nav {
  animation-delay: 0.3s;
  position: relative;
  z-index: 4;
  display: none;
}
#g-nav ul li a::after {
  content: "/";
  padding: 0 10px 0 20px;
}
#g-nav ul li a:hover {
  color: #B25938;
}
#g-nav ul ul li a::after {
  content: "";
  padding: 0;
}
@media screen and (max-width: 880px) {
  #g-nav ul li a::after {
    content: "";
    padding: 0;
  }
  #g-nav ul li a:hover {
    color: #fff;
  }
}
#g-nav ul {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0 0 50px;
}
#g-nav ul ul {
  display: block;
  margin: 0;
}
#g-nav ul li a {
  position: relative;
  display: block;
  text-decoration: none;
  color: #999;
  padding: 10px;
  transition: all 0.3s;
}
#g-nav ul li a:hover {
  color: #fff;
}
#g-nav ul li.has-child > a::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 18px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  transform: rotate(135deg);
}
#g-nav ul li.has-child img {
  max-width: 100%;
  height: auto;
  transition: all 0.5s;
  vertical-align: bottom;
}
#g-nav ul li.has-child img:hover {
  transform: scale(1.2);
}
#g-nav ul li.has-child dt {
  overflow: hidden;
  height: 12vh;
  border-radius: 10px 10px 0 0;
}
#g-nav ul li.has-child dd {
  background: #fff;
  padding: 10px 0;
  text-align: center;
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 1220px) {
  #g-nav ul li.has-child dt {
    height: 10vh;
  }
}
#g-nav li.has-child ul {
  position: absolute;
  left: 5%;
  top: 58px;
  z-index: 4;
  display: none;
  justify-content: space-around;
  flex-wrap: wrap;
  background: #6ea924;
  width: 90%;
  border-radius: 10px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  padding: 10px 0;
}
#g-nav li.has-child ul li {
  width: 18%;
}
#g-nav li.has-child ul li a {
  color: #333;
}
#g-nav li.has-child:hover > ul {
  display: flex;
  visibility: visible;
  opacity: 1;
}
#g-nav p {
  display: none;
}
@media screen and (max-width: 880px) {
  #g-nav p {
    display: block;
    margin: 30px auto 0;
    width: 80px;
  }
  #g-nav ul {
    display: block;
    margin: 0;
  }
  #g-nav li.has-child ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible;
    opacity: 1;
    display: none;
    transition: none;
    border-radius: 0;
    padding: 0;
    transform: translate3d(0, 0, 0);
  }
  #g-nav li.has-child ul li {
    width: 100%;
    text-align: left;
  }
  #g-nav li.has-child ul li dl {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #g-nav li.has-child ul li dt {
    width: 30%;
    height: auto;
    margin: 0;
    border-radius: 0;
  }
  #g-nav li.has-child ul li dd {
    width: 64%;
    border-radius: 0;
    background: transparent;
    padding: 0;
    text-align: left;
    color: #fff;
  }
  #g-nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  }
  #g-nav ul li.has-child img {
    border-radius: 0;
  }
  #g-nav ul li a {
    padding: 10px 20px 10px 40px;
    color: #fff;
  }
  #g-nav ul li a:hover {
    color: #fff;
  }
  #g-nav ul li li a {
    padding: 0;
  }
  #g-nav ul li.has-child > a::before {
    top: 17px;
    left: 20px;
    transform: rotate(135deg);
  }
  #g-nav ul li.has-child.active > a::before {
    transform: rotate(-45deg);
  }
}

@media screen and (max-width: 880px) {
  nav li.has-child:hover > ul {
    display: none;
  }
}

@media screen and (max-width: 880px) {
  #g-nav {
    display: none;
  }
  #g-nav.panelactive {
    display: block;
    position: fixed;
    z-index: 99;
    top: 0;
    width: 100%;
    height: 100vh;
  }
  .circle-bg {
    position: fixed;
    z-index: 5;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #4394b4;
    transform: scale(0);
    right: 30px;
    top: 30px;
    transition: all 0.6s;
  }
  .circle-bg.circleactive {
    transform: scale(50);
  }
  #g-nav-list {
    opacity: 0;
    position: fixed;
    z-index: 5;
    width: 100%;
    height: 100vh;
    margin-top: 200px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #g-nav.panelactive #g-nav-list {
    opacity: 1;
  }
  #g-nav ul {
    opacity: 0;
    width: 90%;
    margin: 0 auto 60px;
  }
  #g-nav ul ul {
    margin: 0;
  }
  #g-nav.panelactive ul {
    opacity: 1;
  }
}
.openbtn {
  display: none;
}
@media screen and (max-width: 880px) {
  .openbtn {
    display: block;
    position: fixed;
    top: 32px;
    right: 30px;
    z-index: 999;
    cursor: pointer;
    width: 70px;
    height: 70px;
    background: #4394b4;
    border-radius: 50%;
  }
  .openbtn span:nth-of-type(3)::after {
    content: "Menu";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.2em;
    text-transform: uppercase;
  }
  .openbtn.active span:nth-of-type(3)::after {
    content: "Close";
  }
}

.pushcircle {
  position: relative;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pushcircle:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 90%;
  border-radius: 10px;
  transform: translate(-50%, -50%) scale(1.1);
  transition: 0.3s ease;
}

.sub-btn-list li:first-child a {
  background: #6ea924;
}
.sub-btn-list li:last-child a {
  background: #457703;
}
.sub-btn-list li:first-child a.pushcircle:after {
  border: 1px solid #6ea924;
}
.sub-btn-list li:last-child a.pushcircle:after {
  border: 1px solid #457703;
}
.sub-btn-list li:first-child a.pushcircle:hover:after,
.sub-btn-list li:last-child a.pushcircle:hover:after {
  transform: translate(-50%, -50%) scale(1);
  border-color: rgba(255, 255, 255, 0.8);
}

.spSlider {
  height: auto;
}
.spSlider img {
  width: 100%;
  height: auto;
  display: block;
}
.spSlider .slick-slide {
  padding: 0 30px;
}

.zoomOut .mask {
  display: block;
  height: auto;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.topText {
  position: fixed;
  z-index: 2;
  top: 40%;
  left: 40%;
  transform: translate(-40%, -40%);
  text-align: center;
  font-size: 5em;
  line-height: 1.4;
  text-transform: uppercase;
  font-family: "BBH Sans Bogle", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.topText span.bgLRextend::before {
  background: #333;
}
@media screen and (max-width: 550px) {
  .topText {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 550px) {
  .topText {
    font-size: 1.8rem;
  }
}

.btnlinestretches3 {
  position: relative;
  color: #333;
  padding: 5px 30px;
  display: inline-block;
  text-decoration: none;
  outline: none;
}
.btnlinestretches3 span {
  position: relative;
  z-index: 2;
}
.btnlinestretches3:hover span {
  color: #fff;
}
.btnlinestretches3::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  background: #333;
  width: 100%;
  height: 3px;
  transition: all 0.3s ease-in-out;
}
.btnlinestretches3:hover::after {
  height: 100%;
}

#page-top {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 2;
  opacity: 0;
  transform: translateX(100px);
}
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #eb6100;
  width: 60px;
  height: 50px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
}
#page-top a:hover {
  background: #777;
}
#page-top.LeftMove {
  animation: LeftAnime 0.5s forwards;
}
#page-top.RightMove {
  animation: RightAnime 0.5s forwards;
}

@keyframes LeftAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes RightAnime {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(100px);
  }
}
.accordion-area {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
}
.accordion-area li {
  margin: 10px 0;
}
.accordion-area section {
  border: 1px solid #ccc;
}

.slider a {
  display: block;
  background: #fff;
  padding: 10px 0;
}
.slider time {
  display: inline-block;
  font-size: 0.8rem;
  margin-right: 10px;
  color: #777;
}
@media screen and (max-width: 880px) {
  .slider {
    padding: 20px;
    background: #fff;
  }
  .slider li {
    border-bottom: 1px dashed #ccc;
  }
  .slider li:last-child {
    border-bottom: none;
  }
  .slider time {
    display: block;
    padding-bottom: 10px;
  }
}

.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #eb6100;
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.flipLeft {
  animation-name: flipLeftAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  perspective-origin: left center;
  opacity: 0;
}

@keyframes flipLeftAnime {
  from {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }
  to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
#vision,
.service-area {
  transform: translate3d(0, 0, 0);
}

.bgLRextendTrigger,
.bgappearTrigger,
.fadeUpTrigger,
.flipLeftTrigger {
  opacity: 0;
}

#container {
  position: relative;
  z-index: 1;
  background: #fff;
}

.btnlinestretches {
  position: relative;
  color: #333;
  border: 1px solid #333;
  padding: 30px 0;
  display: inline-block;
  text-decoration: none;
  outline: none;
  transition: all 0.3s ease-in-out;
}
.btnlinestretches:hover {
  background: #333;
  color: #fff;
  border-color: transparent;
}
.btnlinestretches::before, .btnlinestretches::after {
  content: "";
  position: absolute;
  border: solid #333;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease-in-out;
}
.btnlinestretches::before {
  top: -6px;
  left: -6px;
  border-width: 1px 0 0 1px;
}
.btnlinestretches::after {
  bottom: -6px;
  right: -6px;
  border-width: 0 1px 1px 0;
}
.btnlinestretches:hover::before, .btnlinestretches:hover::after {
  width: calc(100% + 11px);
  height: calc(100% + 11px);
  border-color: #666;
}

#main-area h2 {
  padding-top: 70px;
  padding-bottom: 70px;
  text-align: center;
  text-transform: uppercase;
  font-size: 3rem;
  font-family: "Bruno Ace SC", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 880px) {
  #main-area h2 {
    font-size: 2rem;
  }
}

#basicinfo {
  background: #fff;
  padding-bottom: 90px;
  width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  transform: translate3d(0, 0, 0);
}
#basicinfo .tab li {
  flex-basis: 48%;
}

#emergency {
  width: 75vw;
  margin: 0 auto;
  padding-top: 80px;
  background-color: #fff;
}

.urgentNewsBox {
  border: 10px solid #ff0000;
  padding: 20px 80px;
}

.urgentNews {
  display: flex;
  padding: 10px;
  color: #ff0000;
  font-weight: bold;
  font-size: 1.5rem;
  align-items: center;
}
.urgentNews p {
  padding: 0 0 0 30px;
}
.urgentNews > p:first-child {
  color: #fff;
  background-color: #ff0000;
  padding: 10px 40px;
  border-radius: 50px;
}

#NewsContainer {
  width: 75vw;
  margin: 0 auto;
  padding: 80px;
}

.news li {
  display: block;
  background: #fff;
  padding: 30px;
  border-left: 30px solid var(--main);
}
.news span {
  display: inline-block;
  font-size: 0.8rem;
  margin-right: 10px;
  color: #777;
}

#event, #reserve, #using, #faq, #contact {
  padding-top: 150px;
}

#using .usingTab {
  background: #fff;
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
  transform: translate3d(0, 0, 0);
}
#using .usingTab li {
  flex-basis: 20%;
}
#using .usingTab li img {
  width: 100%;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}
#using .usingTab li img:hover {
  border-radius: 10%;
}

.infoArea {
  display: none;
  opacity: 0;
  background: #daeaff;
  border-radius: 15px;
  padding: 50px 0;
  width: 65%;
  margin: 100px auto;
}
.infoArea h3 {
  font-size: 26px;
  padding: 10px 40px;
  background-color: #fff;
  width: 40%;
}
.infoArea.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.caption {
  width: 100% !important;
}

.taxTable {
  border-collapse: collapse;
  width: 90%;
  margin: 40px auto;
  text-align: center;
}

.taxTableTh {
  color: #fff;
  background-color: rgb(70, 128, 235);
  margin-bottom: 1vh;
  font-size: 1.1em;
}
.taxTableTh tr th {
  padding: 20px;
  border: 2px solid #fff;
}

.taxTableTb tr td {
  border: 2px solid #fff;
  padding: 20px 5px;
  line-height: 1.2;
}

.taxTableTbTr {
  background-color: rgba(170, 167, 167, 0.1);
}

.taxTableTbTr2 {
  background-color: rgba(170, 167, 167, 0.2);
}

.taxTableCap {
  font-size: 14px;
}

.taxTableInfo {
  border-collapse: collapse;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.mtgroom1 {
  background-color: #fff;
}

.mtgroom2 {
  background-color: #1f60e2;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.maininfoArea {
  flex-basis: 45%;
  margin: 50px auto;
  padding: 0 30px;
}
.maininfoArea li {
  position: relative;
  list-style: none;
  padding: 0 0 20px;
}
.maininfoArea dl {
  margin: 0 0 20px 3em;
}
.maininfoArea dt {
  font-size: 55px;
  vertical-align: top;
}
.maininfoArea dd {
  font-size: 24px;
}
.maininfoArea li::before,
.maininfoArea li::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background: #666;
  border-radius: 50%;
}
.maininfoArea li::before {
  top: 40px;
}
.maininfoArea li::after {
  bottom: -60px;
}

.borderLine {
  position: absolute;
  left: 0.5em;
  top: 40px;
  width: 4px;
  height: 0;
  background: #666;
}

.tabArea {
  flex-basis: 55%;
  margin: 50px auto;
  padding: 0 30px;
}

.tab {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tab li a img {
  width: 15%;
  margin-right: 5px;
  vertical-align: middle;
}
.tab li.active a {
  transition: all 0.8s ease-out 0ms;
}

.tabBtn {
  position: relative;
  color: #5c5c5c;
  padding: 10px 30px;
  display: inline-block;
  text-decoration: none;
  outline: none;
  font-size: 24px;
}
.tabBtn span {
  position: relative;
  z-index: 2;
}
.tabBtn:hover span {
  color: #121212;
}
.tabBtn::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  background: var(--main);
  width: 100%;
  height: 3px;
  transition: all 0.3s ease-in-out;
}
.tabBtn:hover::after {
  height: 100%;
  border-radius: 20px 20px 0 0;
}

.borderbottom::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 0;
  background-color: var(--main);
  transition: all 0.3s;
}

.borderbottom:hover::before {
  height: 100%;
}

#tax, #newEvent {
  border-bottom: 3px solid var(--main);
}

#newEvent img,
.newEventP {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

#newEvent img {
  display: block;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.newEventArea {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  font-weight: bold;
  font-size: 22px;
}

.area {
  display: none;
  opacity: 0;
  padding: 50px 20px;
}
.area.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.taxArea,
.newEventArea {
  display: none;
  opacity: 0;
  padding: 50px 20px;
}

.taxArea.is-active,
.newEventArea.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.accordionTax {
  list-style: none;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.accordionTax > li {
  margin-bottom: 10px;
}
.accordionTax > li.is-open .accordionTax-q-icon::after {
  transform: rotate(0deg);
}

.accordionTax-q button {
  display: block;
  position: relative;
  width: 100%;
  border: none;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: opacity 400ms;
  background-color: var(--sub);
  border-radius: 10px;
  padding: 20px;
}

.accordionTax-q-content {
  display: block;
  font-weight: 400;
  line-height: 1.6;
}
.accordionTax-q-content img {
  width: 8%;
  margin-right: 10px;
  vertical-align: middle;
}
@media print, (min-width: 880.02px) {
  .accordionTax-q-content {
    font-size: 20px;
  }
}

.accordionTax-q-icon {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media print, (min-width: 880.02px) {
  .accordionTax-q-icon {
    right: 20px;
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 880px) {
  .accordionTax-q-icon {
    right: 10px;
    width: 16px;
    height: 16px;
  }
}

.taxP {
  font-size: 22px;
  border-bottom: 5px solid var(--main);
}

.taxBox {
  margin-bottom: 30px;
}

.accordionTax-a {
  display: none;
  overflow: hidden;
}

@media print, (min-width: 880.02px) {
  .accordionTax-a-inner {
    padding: 30px;
  }
}
@media screen and (max-width: 880px) {
  .accordionTax-a-inner {
    padding: 5px 0 25px;
  }
}

.accordionTax-a-body {
  position: relative;
}

.reseveP {
  text-align: center;
  margin: 0 auto 100px;
  max-width: 80%;
}

.reserve02p {
  text-align: center;
  margin: 50px auto;
  max-width: 80%;
}

.reseveBtn {
  display: inline-block;
  text-align: center;
  background-color: var(--color-accent);
  margin: 20px;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  padding: 10px 60px;
  transition: 0.4s;
}
.reseveBtn:hover {
  background-color: var(--color-accent-dark);
}

.reserveTab {
  padding-left: 0;
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 85%;
  margin: 0 auto;
}
.reserveTab > li {
  max-width: 100%;
}
.reserveTab > li a {
  opacity: 0.3;
}
.reserveTab > li .icon04 {
  line-height: 2;
  width: 2em;
  height: 2em;
  text-align: center;
  color: #fff;
  background: var(--color-accent);
  margin: 0 auto 10px;
  display: block;
  border-radius: 100vh;
  position: relative;
}
.reserveTab > li .icon04::before {
  content: "";
  border: solid transparent;
  border-width: 7px;
  border-top-color: var(--color-accent);
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  transform: translateX(-50%);
}
.reserveTab > li dl {
  padding: 30px 20px;
  margin: 0;
  border: 3px solid var(--color-accent);
  position: relative;
}
.reserveTab > li dl dt {
  font-size: 1.3em;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 10px;
  text-align: center;
}
.reserveTab > li dl dd {
  margin-left: 0;
}
.reserveTab > li:not(:first-child) dl::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-right: 10px;
  display: inline-block;
  border-top: 4px solid var(--color-accent);
  border-right: 4px solid var(--color-accent);
  position: absolute;
  top: calc(50% - 14px);
  left: -45px;
  transform: rotate(45deg);
}
.reserveTab li.active a {
  opacity: 1;
}
@media (max-width: 880px) {
  .reserveTab {
    gap: 20px;
  }
  .reserveTab > li {
    max-width: unset;
  }
  .reserveTab > li dl {
    padding: 10px;
  }
  .reserveTab > li dl dt {
    font-size: 0.8em;
  }
  .reserveTab > li:not(:first-child) dl::before {
    display: none;
  }
}

.reserveArea {
  width: 80%;
  margin: 0 auto;
}

.reserveBox {
  width: 80%;
  margin: 0 auto;
}

.flow_design07 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow07 {
  padding-left: 0;
}
.flow07 > li {
  display: flex;
  align-items: flex-end;
}
.flow07 > li:not(:last-child) {
  margin: 0 0 50px;
}
.flow07 > li p {
  padding: 0 0 0 30px;
  width: 20%;
}
.flow07 > li dl {
  padding: 0 0 0 30px;
  width: 80%;
}
.flow07 > li dl dt {
  padding: 0 0 5px;
  margin: 0 0 15px;
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 4px solid #CCCCCC;
  position: relative;
}
.flow07 > li dl dt::after {
  content: "";
  width: 20%;
  height: 4px;
  position: absolute;
  bottom: -4px;
  left: 0;
  background-color: var(--color-accent);
}
.flow07 > li dl .textArea {
  margin: 0;
  display: flex;
  padding: 0 20px;
}

.icon-btn {
  background: url(../img/reservebtn01.png) no-repeat center/cover;
  display: inline-block;
  width: 180px;
  height: 60px;
  border-radius: 10px;
  margin-right: 20px;
  transition: 0.3s;
}
.icon-btn:hover {
  background-image: url(../img/reservebtn02.png);
}

.pdfDown {
  margin: 30px auto;
  text-align: center;
}

.btnchangeline {
  position: relative;
  color: #333;
  padding: 10px 30px;
  display: inline-block;
  text-decoration: none;
  outline: none;
  transition: all 0.3s ease-in-out;
}
.btnchangeline::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
  opacity: 0;
  transform: scale(0, 1);
  transition: all 0.3s;
}
.btnchangeline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #333;
  transition: all 0.3s;
}
.btnchangeline:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}
.btnchangeline:hover::after {
  opacity: 0;
  transform: scale(0, 1);
}
.btnchangeline span {
  position: relative;
  z-index: 2;
  color: #fff;
  transition: all 0.3s;
}
.btnchangeline:hover span {
  letter-spacing: 2px;
  color: #333;
}

.btn03 {
  position: relative;
  text-decoration: none;
  display: block;
  text-align: center;
  background: transparent;
  width: 65%;
  margin: 0 auto;
  outline: none;
  transition: all 0.2s ease;
}
.btn03:hover {
  border-color: transparent;
}
.btn03 span {
  position: relative;
  z-index: 2;
  display: block;
  padding: 10px 30px;
  background: var(--main);
  transition: all 0.3s ease;
}

.pushdown:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 4px;
  left: 0;
  width: 100%;
  height: 100%;
}
.pushdown:hover span {
  background-color: var(--hover);
  color: #fff;
  transform: translateY(4px);
}

.btnText {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}
.btnText p {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-left: 20px;
}

.btnTextImg {
  width: 5%;
}

.btntextchange {
  position: relative;
  border: 1px solid #555;
  border-radius: 25px;
  min-width: 320px;
  padding: 20px;
  margin-left: 20px;
  text-align: center;
  display: block;
  text-decoration: none;
  color: #333;
  outline: none;
  transition: all 0.2s;
}
.btntextchange:hover {
  background: #333;
  color: #fff;
}
.btntextchange span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
  display: block;
  white-space: nowrap;
  padding: 50px;
}
.btntextchange span:nth-child(2) {
  opacity: 0;
}
.btntextchange:hover span:nth-child(1) {
  opacity: 0;
}
.btntextchange:hover span:nth-child(2) {
  opacity: 1;
}

#faq h2 span.bgLRextend::before {
  background: #333;
}

.faq-bg {
  position: relative;
  height: 55vh;
  background: url("../img/pict_05.jpg") no-repeat center;
  background-size: cover;
  margin: 0 0 200px 25%;
}
.faq-bg::after {
  content: "";
  position: absolute;
  top: 20%;
  left: -32%;
  width: 100%;
  height: 55vh;
  background: #f3f3f3;
  z-index: -1;
}

.require,
.FormBtn:hover {
  background: var(--hover);
}

.sns-fixed {
  position: fixed;
  bottom: 60px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  z-index: 9999;
}
.sns-fixed a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  color: #333;
  font-size: 22px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}
.sns-fixed a:hover {
  transform: scale(1.2);
}

.floorTab {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0 0 50px;
  padding: 0;
  font-size: 36px;
}
.floorTab li {
  margin-bottom: 20px;
}
.floorTab li a {
  display: block;
  opacity: 0.3;
  margin: 0 2px;
  padding: 10px 60px;
  position: relative;
  color: #333;
}
.floorTab li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: #333;
  transition: all 0.3s;
  transform: scale(0.04, 1);
  transform-origin: center bottom;
}
.floorTab li a:hover::after {
  height: 8px;
  border-radius: 0;
  transform: scale(0.8, 1);
}
.floorTab li.active a {
  opacity: 1;
}
.floorTab li.current a::after {
  height: 8px;
  border-radius: 0;
  transform: scale(0.8, 1);
}

.reserveTab li.active a {
  opacity: 1;
}

#floorMap {
  background: #fff;
  padding-top: 150px;
}
#floorMap h3 {
  font-size: 3em;
  position: absolute;
  left: -15%;
}
#floorMap .floorMapArea {
  padding: 70px;
  width: 70%;
  margin: 0 auto;
  position: relative;
}
#floorMap .floorMapArea .floorList {
  display: none;
}
#floorMap .floorMapArea .btnNo {
  display: none;
}

.floorMapArea1f,
.floorMapArea2f {
  margin: 70px auto 150px;
  max-width: var(--floor-area-max-width);
}

.floor1f,
.floor2f {
  position: relative;
}

.floorBtnText2-7, .floorBtnText2-1, .floorBtnText2-2, .floorBtnText2-3,
.floorBtnText2-4, .floorBtnText2-5, .floorBtnText2-6, .floorBtnText1-1, .floorBtnText1-2, .floorBtnText1-3, .floorBtnText1-4,
.floorBtnText1-5, .floorBtnText1-6, .floorBtnText1-7, .floorBtnText1-8 {
  background-color: #fff;
  border: 2px solid #333;
  display: inline-block;
  font-weight: bold;
  position: relative;
  border-radius: 40px;
}

.btn2-1Img, .btn2-2Img, .btn2-3Img, .btn2-4Img,
.btn2-5Img, .btn2-6Img, .btn2-7Img, .btn1-1Img, .btn1-2Img, .btn1-3Img, .btn1-4Img,
.btn1-5Img, .btn1-6Img, .btn1-7Img, .btn1-8Img {
  max-width: 250px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  margin: 0 auto;
  position: absolute;
}
.btn2-1Img img, .btn2-2Img img, .btn2-3Img img, .btn2-4Img img,
.btn2-5Img img, .btn2-6Img img, .btn2-7Img img, .btn1-1Img img, .btn1-2Img img, .btn1-3Img img, .btn1-4Img img,
.btn1-5Img img, .btn1-6Img img, .btn1-7Img img, .btn1-8Img img {
  border-radius: 50%;
}

#floorMap .floorBtnText2-1:hover + .btn2-1Img,
#floorMap .floorBtnText2-2:hover + .btn2-2Img,
#floorMap .floorBtnText2-3:hover + .btn2-3Img,
#floorMap .floorBtnText2-4:hover + .btn2-4Img,
#floorMap .floorBtnText2-5:hover + .btn2-5Img,
#floorMap .floorBtnText2-6:hover + .btn2-6Img,
#floorMap .floorBtnText2-7:hover + .btn2-7Img, #floorMap .floorBtnText1-1:hover + .btn1-1Img,
#floorMap .floorBtnText1-2:hover + .btn1-2Img,
#floorMap .floorBtnText1-3:hover + .btn1-3Img,
#floorMap .floorBtnText1-4:hover + .btn1-4Img,
#floorMap .floorBtnText1-5:hover + .btn1-5Img,
#floorMap .floorBtnText1-6:hover + .btn1-6Img,
#floorMap .floorBtnText1-7:hover + .btn1-7Img,
#floorMap .floorBtnText1-8:hover + .btn1-8Img {
  opacity: 1;
  visibility: visible;
}

.floorBtnText2-7 {
  border-radius: 20px;
}

.accordion {
  list-style: none;
  width: 65%;
  margin: 0 auto;
}
.accordion > li {
  margin-bottom: 10px;
}
.accordion > li.is-open .accordion-q-icon::after {
  transform: rotate(0deg);
}

.accordion-q-prefix {
  display: block;
  position: absolute;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-variation-settings: "wdth" 75;
  line-height: 1;
}
@media print, (min-width: 880.02px) {
  .accordion-q-prefix {
    left: 20px;
    top: 24px;
    font-size: 30px;
    margin: 0 10px;
  }
}
@media screen and (max-width: 880px) {
  .accordion-q-prefix {
    left: 20px;
    top: 18px;
    font-size: 24px;
    margin: 0;
  }
}

.accordion-q-content {
  display: block;
  font-weight: 400;
  line-height: 1.6;
}
@media print, (min-width: 880.02px) {
  .accordion-q-content {
    font-size: 20px;
  }
}
@media screen and (max-width: 880px) {
  .accordion-q-content {
    font-size: 16px;
  }
}

.accordion-q-icon {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media print, (min-width: 880.02px) {
  .accordion-q-icon {
    right: 20px;
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 880px) {
  .accordion-q-icon {
    right: 10px;
    width: 16px;
    height: 16px;
  }
}
.accordion-q-icon::before, .accordion-q-icon::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
}
@media print, (min-width: 880.02px) {
  .accordion-q-icon::before, .accordion-q-icon::after {
    top: 9px;
  }
}
@media screen and (max-width: 880px) {
  .accordion-q-icon::before, .accordion-q-icon::after {
    top: 7px;
  }
}
.accordion-q-icon::after {
  transform: rotate(90deg);
  transition: transform 400ms;
}

.accordion-q button {
  display: block;
  position: relative;
  width: 100%;
  border: none;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  transition: opacity 400ms;
  background-color: var(--accordion-q-bg);
  border-radius: 10px;
}
@media print, (min-width: 880.02px) {
  .accordion-q button {
    padding: 20px 100px;
  }
  .accordion-q button:hover, .accordion-q button:active {
    opacity: 0.7;
  }
}
@media screen and (max-width: 880px) {
  .accordion-q button {
    padding: 20px 36px 20px 50px;
  }
}

.accordion-a {
  display: none;
  overflow: hidden;
}
@media print, (min-width: 880.02px) {
  .accordion-a-inner {
    padding: 5px 0 30px;
  }
}
@media screen and (max-width: 880px) {
  .accordion-a-inner {
    padding: 5px 0 25px;
  }
}
.accordion-a-body {
  position: relative;
}
@media print, (min-width: 880.02px) {
  .accordion-a-body {
    padding-left: 70px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 880px) {
  .accordion-a-body {
    padding-left: 50px;
    padding-right: 25px;
  }
}
.accordion-a-prefix {
  position: absolute;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-variation-settings: "wdth" 75;
  line-height: 1;
}
@media print, (min-width: 880.02px) {
  .accordion-a-prefix {
    left: 20px;
    top: -4px;
    font-size: 30px;
    margin: 0 10px;
  }
}
@media screen and (max-width: 880px) {
  .accordion-a-prefix {
    left: 20px;
    top: -2px;
    font-size: 24px;
    margin: 0;
  }
}
@media print, (min-width: 880.02px) {
  .accordion-a-content p {
    font-size: 18px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 880px) {
  .accordion-a-content p {
    font-size: 15px;
    line-height: 1.7;
  }
}
@media print, (min-width: 880.02px) {
  .accordion-a-content p:first-child {
    margin-top: 25px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 880px) {
  .accordion-a-content p:first-child {
    margin-top: 15px;
    margin-bottom: 10px;
  }
}
@media print, (min-width: 880.02px) {
  .accordion-a-content p + p {
    margin-top: 25px;
  }
}
@media screen and (max-width: 880px) {
  .accordion-a-content p + p {
    margin-top: 20px;
  }
}
.accordion-a-close {
  line-height: 1.5;
}
@media print, (min-width: 880.02px) {
  .accordion-a-close {
    width: 160px;
    margin: 25px auto 0;
    font-size: 16px;
  }
}
@media screen and (max-width: 880px) {
  .accordion-a-close {
    width: 140px;
    margin: 20px auto 0;
    font-size: 15px;
  }
}
.accordion-a-close button {
  display: block;
  position: relative;
  width: 100%;
  border: none;
  background: #000;
  color: #fff;
  font: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  transition: opacity 400ms;
  border-radius: 7px;
}
@media print, (min-width: 880.02px) {
  .accordion-a-close button {
    height: 45px;
    text-align: center;
  }
  .accordion-a-close button:hover, .accordion-a-close button:active {
    opacity: 0.5;
  }
}
@media screen and (max-width: 880px) {
  .accordion-a-close button {
    height: 40px;
    text-align: center;
  }
}
.accordion-a-close button > span {
  display: inline-block;
  position: relative;
  padding-left: 17px;
  vertical-align: top;
}
.accordion-a-close button > span > span {
  display: block;
  position: absolute;
  left: -5px;
  top: 50%;
  width: 13px;
  height: 13px;
  margin-top: -6.5px;
  transform: rotate(45deg);
}
.accordion-a-close button > span > span::before, .accordion-a-close button > span > span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 6px;
  width: 100%;
  height: 1px;
  background: #fff;
}
.accordion-a-close button > span > span::after {
  transform: rotate(90deg);
}

.parent {
  width: 65%;
  margin: 20px auto;
  text-align: center;
}
.parent a {
  display: block;
  text-decoration: none;
  background: #eee;
  padding: 20px;
}
.parent a:hover {
  background: #ccc;
}

.map {
  width: 930px;
  max-width: 90%;
  margin-top: 75px;
  margin-left: auto;
  margin-right: auto;
}
.map iframe {
  display: block;
  width: 100%;
  height: 320px;
  margin-top: 25px;
}

#formWrap {
  margin-top: 80px;
  padding-bottom: 120px;
  margin-left: auto;
  margin-right: auto;
  max-width: 750px;
}

.FormItem {
  border-top: 1px solid #ddd;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
.FormItem:nth-child(5) {
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 550px) {
  .FormItem {
    padding: 16px 14px;
    flex-wrap: wrap;
  }
}

.FormItem-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
}
.FormItem-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 550px) {
  .FormItem-Label.isMsg {
    margin-top: 0;
  }
}
@media screen and (max-width: 550px) {
  .FormItem-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}

.require {
  border-radius: 6px;
  margin-right: 8px;
  padding: 8px 0;
  width: 48px;
  display: inline-block;
  text-align: center;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 550px) {
  .require {
    border-radius: 4px;
    padding: 4px 0;
    width: 32px;
    font-size: 10px;
  }
}

#name,
#mail,
#tel {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}

@media screen and (max-width: 550px) {
  .FormItem-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}

#message {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 550px) {
  #message {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}

.FormBtn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 0;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: var(--main);
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  transition: all 0.3s ease-out;
}
.FormBtn:hover {
  color: #ffffff;
}
@media screen and (max-width: 550px) {
  .FormBtn {
    margin-top: 24px;
    padding: 8px 0;
    width: 160px;
    font-size: 16px;
  }
}

#footer {
  border-top: 1px solid #333;
  text-align: center;
  background: #fff;
  position: relative;
}
#footer small {
  color: #fff;
  font-size: 15px;
  letter-spacing: -0.05em;
  font-weight: bold;
}

.copyright {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

#wrapper {
  height: 25vh;
}

.footerAd address p {
  line-height: 1.8;
}

.footerLogo img {
  max-width: 20%;
  margin-top: 80px;
  margin-bottom: 50px;
}

.hhgrowFooter {
  width: 25%;
  margin: 80px auto 30px;
}

.agreement {
  margin: 20px 0;
  font-size: 13px;
  letter-spacing: -0.03em;
}

.site-menu {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
}

.policy {
  font-size: 13px;
  margin-top: 20px;
  margin-bottom: 20px;
}

:root {
  --main: rgb(251, 220, 255);
  --sub: rgb(251, 224, 245);
  --hover: rgb(215, 169, 194);
  --bg-light: #f7f7f7;
  --text-dark: #333;
  --accordion-q-bg: rgb(251, 224, 245);
}

:root {
  --floor-area-max-width: 80%;
}

.floorBtn1-1 {
  position: absolute;
  top: 46%;
  left: 15%;
}

.floorBtn1-2 {
  position: absolute;
  top: 45%;
  left: 51%;
}

.floorBtnText1-2 {
  font-size: 20px;
}

.btn1-1Img {
  bottom: 120%;
  left: -30%;
}

#floorMap .floorBtnText1-1:hover + .btn1-1Img {
  width: 170%;
}/*# sourceMappingURL=index.css.map */
/* ---------- ここまで css/index.css ---------- */

/* ---------- ここから css/responsive.css ---------- */
@media screen and (max-width: 1680px) {


    /* #floorMap .floorMapArea {
        width: 90%;
margin: 0 auto;
        padding: 80px 20px 30px;
    } */

    #headerNavPC li a {
        padding: 0 25px;
    }
}

@media screen and (max-width: 1430px) {
    #headerNavPC li a {
        padding: 0 20px;
    }

    .headerNavList {
        font-size: 60%;

    }
}

@media screen and (max-width: 1430px) {
    #headerNavPC ul li {
        font-size: 14px;
        letter-spacing: -0.05em;
    }
}

@media screen and (max-width: 1220px) {
    #header {
        /* display: block; */
        height: 12%;
        width: 70%;
        border-radius: 0 70px 70px 0;
    }

    #headerNavPC li a {
        padding: 0 5px;

    }

    #header h1 {
        /* display: block; */
        margin: 15px 0;
    }

    /* #header h1 img {
        width: 70%;
    } */

    #headerNavPC ul {
        justify-content: space-between;
        width: 95%;

    }

    #headerNavPC ul li {
        letter-spacing: -0.05em;
        padding-bottom: 20px;
    }

}

@media screen and (max-width: 880px) {
    #headerNavPC ul li {
        font-size: 13px;
    }

    #service header {
        width: 100%;
    }

    #service .serviceInfo {
        width: 80%;
        left: 10%;
        padding: 80px 20px 30px 20px;
    }

    #service .serviceInfo li {
        width: 40%;
    }

}

@media screen and (max-width: 880px) {
    body {
        font-size: 0.8rem;
    }

    #header {
        height: 8%;
        display: flex;

        align-items: center;
    }

    #header h1 {
        margin: 0;
    }

    #header h1 img {
        width: 100%;
    }

    #basicinfo {
        width: 80%;
    }

    .maininfoArea {
        padding: 0px;
    }

    .maininfoArea dt {
        font-size: 32px;


    }

    .maininfoArea dd {
        font-size: 14px;
    }

    .tabArea {
        flex-basis: 50%;
        margin: 50px auto;
        padding: 0px;
    }

    .tabBtn {
        padding: 10px;
        font-size: 14px;
    }


    .accordionTax-q button {
        padding: 10px;
    }

    .accordionTax-q-content {
        font-size: 14px;
    }





    #service {
        padding: 200px 0 0 0;
    }

    .faq-bg,
    .faq-bg::after {
        height: 35vh;
    }

    #contact .form-list dt {
        margin: 0 0 10px 0;
    }

    #contact .form-list dt,
    #contact .form-list dd {
        width: 80%;
        margin: 0 auto;
    }

    #NewsContainer {
        width: 80vw;
        margin: 0 auto;
        padding: 40px 0;


    }

    /*-------------------------------------------
緊急情報css 
  -------------------------------------------*/


    #emergency {
        padding-top: 40px;
    }

    .urgentNewsBox {
        padding: 0;
        border: 0px solid #ff0000;
    }

    .urgentNews {
        display: block;
        padding: 5px;
        color: #ff0000;
        font-weight: bold;
        font-size: 1.1rem;
        text-align: center;
        letter-spacing: -0.05em;
    }

    .urgentNews p {
        padding: 0 0 0 10px;
    }

    .urgentNews>p:first-child {
        color: #fff;
        font-weight: bold;
        background-color: #ff0000;
        padding: 5px;
        border-radius: 50px;
        font-size: 1.6em;
    }

    .news {

        background: #fff;
    }

    .news li {
        border-bottom: 1px dashed #ccc;
    }

    .news li:last-child {
        border-bottom: none;
    }

    .news span {
        display: block;
        padding-bottom: 10px;
    }


    /*-------------------------------------------
  施設予約
  -------------------------------------------*/
    .textBr {
        display: block;
    }

    .reseveP {
        font-size: 12px;
        letter-spacing: -0.1em;
    }

    .reseveBtn a {
        padding: 10px 15px;
    }

    .reserveTab>li dl dt {
        font-size: 0.7em;
        letter-spacing: -0.1em;
        margin: 0;
    }

    .flow07>li {

        display: block;
    }

    .flow07>li dl .textArea {
        margin: 0;
        display: block;
        padding: 0 20px;
    }

    /* .flow07>li p {
        padding: 0 0 0 30px;
        width: calc(100% - 80%);
    } */

    .flow07>li dl {
        padding: 50px 0 0 0;
        width: 100%;
    }



    /*-------------------------------------------
  Map
  -------------------------------------------*/
    .floorTab li a {
        padding: 20px;
    }

    #floorMap .floorMapArea {
        width: 80%;
        left: 0;
        padding: 0;
        margin: 0 auto;
    }

    #floorMap {
        padding: 50px 0;
    }

    .floorMapArea1f,
    .floorMapArea2f {
        margin: 30px auto;
    }

    #floorMap .floorMapArea .floorBtnText2-1,
    #floorMap .floorMapArea .floorBtnText2-2,
    #floorMap .floorMapArea .floorBtnText2-3,
    #floorMap .floorMapArea .floorBtnText2-4,
    #floorMap .floorMapArea .floorBtnText2-5,
    #floorMap .floorMapArea .floorBtnText2-6,
    #floorMap .floorMapArea .floorBtnText2-7,
    #floorMap .floorMapArea .floorBtnText1-1,
    #floorMap .floorMapArea .floorBtnText1-2,
    #floorMap .floorMapArea .floorBtnText1-3,
    #floorMap .floorMapArea .floorBtnText1-4,
    #floorMap .floorMapArea .floorBtnText1-5,
    #floorMap .floorMapArea .floorBtnText1-6,
    #floorMap .floorMapArea .floorBtnText1-7,
    #floorMap .floorMapArea .floorBtnText1-8,
    .flowLiPImag {
        display: none;
    }


    #floorMap .floorMapArea .floorList {
        display: flex;
        flex-wrap: wrap;
        margin: 40px 0 80px;
    }

    #floorMap .floorMapArea .floorList li {
        width: 48%;
    }

    /* #floorMap .floorMapArea .floorList li img {
        border-radius: 50%;
        width: 75%;
        display: block;
        margin: 0 auto;
    } */

    #floorMap .floorMapArea .floorList li .title {
        display: flex;
        align-items: center;
        font-size: 15px;
        font-weight: bold;
        margin-bottom: 5px;
        margin-left: 20px;
    }

    #floorMap .floorMapArea .floorList li .title .no {
        width: 40px;
        height: 40px;
        background-color: #fff;
        border: solid 1px #707070;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 17px;
        margin-right: 10px;
    }

    #floorMap .floorMapArea .btnNo {
        display: block;
        background-color: #fff;
        border: 2px solid #333;
        display: inline-block;
        font-size: 18px;
        font-weight: bold;
        width: 35px;
        height: 35px;
        text-align: center;
        border-radius: 40px;
    }



    .btnText {

        font-size: 16px;
    }

    .btnText p {
        display: block;
    }

    .btnTextImg {
        width: 8%;
    }

    .btntextchange {
        margin-left: 0px;
    }

}

@media screen and (max-width: 550px) {
    .topText {
        color: #fff;
    }

    .sliderTop .sliderImg,
    .sliderBottom .sliderImg {
        width: 100%;
        height: 40vh;
        /* 上下でちょうど半分ずつ */
        background-repeat: no-repeat;
        background-size: auto 200%;
    }

    .sliderBottom .sliderImg {
        background-position: center bottom;

    }

    /* 原点を揃える：上段＝上基準、下段＝下基準 */
    .sliderTop .sliderImg {
        background-position: center top;

    }

    .spSlider .slick-slide {
        padding: 0 10px;
        /*スライド左右の余白調整*/
    }

    .accordion {
        width: 80%;
    }

    #service .service-area {
        width: 90%;
        left: 5%;
    }



    #faq h2 {
        margin: 0;
    }

    .faq-bg {
        margin: 0 0 100px 25%;
    }

    .faq-bg,
    .faq-bg::after {
        height: 20vh;
    }

    #contact h2 {
        margin: 0 0 50px 0;
    }

    /*  NewsContainer*/


    #NewsContainer {
        width: 95vw;
        margin: 0 auto;
        padding: 20px;


    }

    .news {
        padding: 20px;

    }


    .news li {
        border-bottom: 1px dashed #ccc;
        display: block;
        background: #fff;
        padding: 15px;
        border-left: 15px solid rgb(179, 217, 169);
        line-height: 1.4;
        font-size: 18px;
    }

    .news li:last-child {
        border-bottom: none;
    }

    .news span {
        font-size: 16px;
        padding-bottom: 5px;
    }

    /* basicinfo */
    #basicinfo {
        background: #fff;
        padding-bottom: 0;
        width: 100%;
        margin: 0 auto;
        display: block;

    }

    /*タイムライン全体の設定*/
    .maininfoArea {
        width: 80%;
        padding: 0 20px;
    }

    .maininfoArea dl {
        margin: 0 0 20px 3em;
    }

    .maininfoArea dt {
        font-size: 40px;
    }

    .maininfoArea dd {
        font-size: 16px;
    }

    .maininfoArea li:last-of-type {
        padding: 0;
    }

    /*絶対配置で線を設定*/
    .borderLine {
        left: 0.6em;
    }

    /*タイムラインの見出し横の丸の位置と形状*/
    .maininfoArea li::before {
        content: '';
        position: absolute;
        top: 30px;
        left: 0;
        width: 20px;
        height: 20px;
        background: #666;
        border-radius: 50%;
    }

    .maininfoArea li::after {
        content: '';
        position: absolute;
        bottom: -50px;
        left: 0;
        width: 20px;
        height: 20px;
        background: #666;
        border-radius: 50%;
    }

    /* =========================
   タブ本体
   ========================= */

    .tabArea {
        width: 90%;
        margin: 100px auto 0 auto;
    }

    /* タブ見出し（料金表 / 今月の予約表） */
    .tab {
        display: flex;
        justify-content: space-between;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    /* タブ内のアイコン画像 */
    .tab li a img {
        width: 20%;
        margin-right: 5px;
        vertical-align: middle;
    }

    /* liに.activeが付いたとき（JSで制御） */
    .tab li.active a {
        transition: all 0.8s ease-out 0ms;
    }

    /*== 下線が伸びて背景に変わる　*/

    .tabBtn {
        /*線の基点とするためrelativeを指定*/
        position: relative;
        /*ボタンの形状*/
        color: #5c5c5c;
        padding: 10px;
        display: inline-block;
        text-decoration: none;
        outline: none;
        font-size: 16px;
    }

    /*テキストの設定*/
    .tabBtn span {
        /*テキストを前面に出すためz-indexの値を高く設定*/
        position: relative;
        z-index: 2;
    }

    .tabBtn:hover span {
        color: #121212;
    }

    /*線の設定*/
    .tabBtn::after {
        content: '';
        /*絶対配置で線の位置を決める*/
        position: absolute;
        z-index: 1;
        bottom: 0;
        left: 0;
        /*線の形状*/
        background: var(--main);
        width: 100%;
        height: 3px;
        /*アニメーションの指定*/
        transition: all 0.3s ease-in-out;
    }

    /*線が伸びて背景に*/
    .tabBtn:hover::after {
        height: 100%;
        border-radius: 20px 20px 0 0;
    }

    /* aタグ共通ボタンスタイル */

    .taxTableTh {
        font-size: 1em;

    }

    .taxTableTh tr th {
        padding: 10px 5px;
        text-align: center;

    }

    .taxTableTbTr2clear {
        display: none;
    }

    #using .usingInfo li {
        flex-basis: 45%;
    }

    #formWrap {
        width: 80%;
    }

    #footer small {
        color: #fff;
        font-size: 10px;
        letter-spacing: -0.05em;

    }

    #floorMap h3 {
        top: -60%;
    }

    .footerLogo img {
        max-width: 55%;
        margin-top: 50px;
    }

    .hhgrowFooter {
        width: 65%;
        margin-top: 50px;
        margin-top: 50px;
    }

    #wrapper {
        height: 20vh;

    }

    #floorMap .floorMapArea {
        width: 100%;
    }

    #floorMap .floorMapArea .floorList li .title {

        font-size: 14px;

    }

    .floorMapArea1f,
    .floorMapArea2f {
        margin: 0 auto;
    }

    .area {
        padding: 0;
    }


    .btnText {
        font-size: 12px;
    }

    .btnTextImg {
        width: 10%;
    }

    .btntextchange {

        padding: 15px;
    }

    .modaal-content-container {
        padding: 20px;
    }

    .modaal-content-container p {
        padding: 5px 20px 0 25px;
        font-size: 14px;
    }

    .infoImg {
        padding: 25px;
    }

    .modaal-container .taxTitle,
    .modaal-container h4 {
        padding-left: 25px;
    }

    .agreement {

        font-size: 12px;
    }

}

@media screen and (max-width: 550px) {
    #header {
        height: 6%;
    }


}

@media screen and (max-width: 550px) {

    #floorMap .floorMapArea {
        width: 100%;
        left: 0;
        font-size: 0.9rem;
    }


    #service .service-area {
        width: 100%;
        left: 0;
        font-size: 0.9rem;
    }

}
/* ---------- ここまで css/responsive.css ---------- */
