.spacer-25 {
    display: block;
    height: 25px;
}
.spacer-50 {
    display: block;
    height: 50px;
}

body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
header,
footer {
    width: 100vw;
    height: 80px;
    background-color: #090400;
}
footer {
    height: 30px;
}

main {
    margin-top: 80px;
    width: 100vw;
    background-color: #000;
    color: #fff;
    /* background-color: #DACDB5; */
    font-family: 'Sawarabi Mincho', 'Noto Sans JP', sans-serif;
}
img {
    width: 100%;
}
main img {
    margin: 10px 0;
}

/* headerまわり */

.header-flexbox,
.navigation-flexbox {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.navigation-flexbox {
    height: 80px;
}
.navigation-flexbox i {
    font-size: 30px;
    /*color: #96650A;*/
    color:#FFF;
}

.logo {
/*    width: 100px;*/
width:110px;
/*    height: 40px;*/
  height:70px;
    margin-left: 20px;
/*    padding: 20px 0;*/
  padding:0;
}
.logo img {
/*    height: 40px;*/
  height:70px;
    object-fit: contain;
}

.tel-icon,
.map-icon,
.menu-icon {
    width: 60px;
    height: 80px;
    position: relative;
    /* background-color: bisque; */
}

.menu-icon {
    text-align: center;
    padding-top: 20px;
    box-sizing: border-box;
}
.tel-icon a,
.map-icon a {
    text-align: center;
}

.tel-icon i,
.map-icon i {
    display: block;
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
}

.tel-icon i::after,
.map-icon i::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -16px;
    display: block;
    width: 100%;
/*    color: #96650A;*/
  color:#FFF;
    font-size: 12px;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
}

.tel-icon i::after {
    content: 'TEL';
}
.map-icon i::after {
    content: 'MAP';
}

    /* hamburger */
    .menu-trigger,
    .menu-trigger span {
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
        z-index: 1000;
    }
    .menu-trigger {
        position: relative;
        width: 36px;
        height: 30px;
        background: none;
        border: none;
        appearance: none;
        cursor: pointer;
    }
    .menu-trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 4px;
/*        background-color: #96650A;*/
    background-color:#FFF;
        border-radius: 4px;
    }
    .menu-trigger span:nth-of-type(1) {
        top: 0;
    }
    .menu-trigger span:nth-of-type(2) {
        top: 12px;
    }
    .menu-trigger span:nth-of-type(3) {
        bottom: 2px;
    }

    .menu-trigger::after {
        position: absolute;
        left: 0;
        bottom: -16px;
        content: 'MENU';
        display: block;
        width: 100%;
/*        color: #96650A;*/
      color:#FFF;
        font-size: 12px;
        text-decoration: none;
        text-align: center;
        white-space: nowrap;
        transition: all .4s;
    }
    .menu-trigger.active::after {
        content: 'CLOSE';
        bottom: -16px;
        z-index: 1000;
    }
    .menu-trigger.active span:nth-of-type(1) {
        transform: translateY(12.5px) rotate(-45deg);
    }
    .menu-trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    .menu-trigger.active span:nth-of-type(3) {
        transform: translateY(-12.5px) rotate(45deg);
    }

    /* .hamburger {
        position: absolute;
        top: 18px;
        right: 18px;
        width: 26px;
        height: auto;
        padding-top: 1px;
        box-sizing: border-box;
        z-index: 10000;
        cursor: pointer;
        pointer-events: auto;
        transition: all .5s;
    }
    .hamburger > span {
        display: block;
        width: 100%;
        height: 3px;
        background: #96650A;
        transition: all .5s;
    }
    .hamburger > span {
        position: absolute;
    }
    .hamburger > span.top {
        transform: translateY(10px) rotate(-45deg);
    }
    .hamburger > span.middle {
        top: 10px;
        transform: translateX(50px);
    }
    .hamburger > span.bottom {
        transform: translateY(10px) rotate(45deg);
    }
    .hamburger.close > span.top {
        top: 0px;
        transform: translateY(0px) rotate(0deg);
    }
    .hamburger.close > span.middle {
        top: 10px;
        transform: translateX(0px);
    }
    .hamburger.close > span.bottom {
        top: 20px;
        transform: translateY(0) rotate(0deg);
    }
    .hamburger::after {
        content: 'MENU';
        color: #96650A;
        font-size: .5rem;
    } */
    /* hamburger */

    /* modal */
    .modal {
        position: absolute;
        z-index: 20;
        top: 0;
        bottom: -100vh;
        left: 0;
        right: 0;
        background-color: rgba(0,0,0,0.74);
        animation: fadeIn 0.5s ease-in-out;
        overflow-y: scroll;
    }
    .modal .info {
        position: absolute;
        top: 80px;
        width: 100%;
        height: 50vh;
        background-color: #000;
        color: #fff;
        padding: 20px;
        box-sizing: border-box;
        font-size: 1.1rem;
        line-height: 1.5;
    }
    .modal .info a {
/*        color: #96650A;*/
    color:#FFF;
    }
    .modal .info .phone-info {
        margin-bottom: 10px;
    }

    .modal .info .phone-info a {
      color:#FFF;
      text-decoration: none;
      font-size:1.6rem;
    }

    .modal nav {
        position: absolute;
/*        top: 270px;*/
      top:340px;
        z-index: 30;
        overflow-y: scroll;
    }
    .modal nav ul {
        width: 100vw;
        display: flex;
        flex-wrap: wrap;
    }
    .modal nav ul li {
        cursor: pointer;
        width: 50%;
        height: 60px;
        background-color: #433427;
        border: 0.25px solid #96650A;
        border-collapse: collapse;
        box-sizing: border-box;
    }
    .modal nav ul li a {
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        text-align: center;
        vertical-align: middle;
        color: #fff;
        width: 100%;
        height: 100%;
    }
    .modal.close {
        display: none;
        opacity: 0;
    }
    @keyframes fadeIn {
        0% {opacity: 0}
        100% {opacity: 1}
    }
    /* modal */

/* headerまわり */

/* footerまわり */
footer .copyright {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 0.75rem;
}
/* footerまわり */



/* main 部分（共通） */
.page-title {
    width: 100vw;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    background-color: #96650A;
    background-size: cover;
    color: #fff;
    font-family: 'Sawarabi Mincho', 'Noto Serif JP', serif;
    position: relative;
    z-index: 10;
}
.page-title::after {
    content: '';
    background-color: rgba(0,0,0,.5);
    position: absolute;
    top:0;
    left: 0;
    right: 0;
    bottom: 0;
}
#greetingTitle { background-image: url('/images/greeting-title-back.jpg'); }
#facilityTitle { background-image: url('/images/facility-title-back.jpg'); }
/* #contactTitle { background-image: url('/images/contact-title-back.jpg'); } */
#diningTitle { background-image: url('/images/dining-title-back.jpg?v=1'); }
#bathTitle { background-image: url('/images/bath-title-back.jpg'); }
#roomTitle { background-image: url('/images/room-title-back.jpg'); }
/* #theaterTitle { background-image: url('/images/theater-title-back.jpg'); } */
#theaterTitle { background-image: url('/images/room_p07.jpg'); }
#covidTitle { background-image: url('/images/covid-title-back.jpg'); }
#accessTitle { background-image: url('/images/access-title-back.jpg'); }

.heading {
    text-align: center;
    font-size: 24px;
    line-height: 1.75;
    font-family: 'Sawarabi Mincho', 'Noto Serif JP', serif;
    font-weight: bold;
}
h1 {
    position: absolute;
    z-index: 10;
}
h2 {
    text-align: center;
    font-size: 24px;
    line-height: 1.75;
    font-family: 'Sawarabi Mincho', 'Noto Serif JP', serif;
    font-weight: bold;
    background:linear-gradient(transparent 75%, #96650A 100%);
}
h3 {
    text-align: center;
    font-size: 20px;
    line-height: 1.75;
    font-family: 'Sawarabi Mincho', 'Noto Serif JP', serif;
    font-weight: bold;
    border-bottom: 1px solid #96650A;
    margin-top: 10px;
}
p {
    line-height: 1.75rem;
    letter-spacing: 0.1rem;
    padding: 10px 0;
}
textarea,
input[type=text] {
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    width: calc(100vw - 40px);
    height: 3rem;
    padding: 5px 10px;
    font-size: 1.1rem;
    outline: none;
    border-radius: 10px;
}
textarea {
    height: 10rem;
}
button,
input[type=reset],
input[type=submit],
input[type=button]
 {
    width: calc(100vw - 40px);
    height: 60px;
    /* background-color: #96650A; */
    background-color: #2c2014;
    color: #fff;
    font-size: 20px;
    font-family: 'Sawarabi Mincho', 'Noto Serif JP', serif;
    border-radius: 10px;
    margin: 10px auto;
    outline: none;
    border: none;
    appearance: none;
    -webkit-appearance: none;
}
.content ul li {
    margin: 10px 0 10px 20px;
    line-height: 1.5;
    color: #000;
}
table {
    width: 100%;
    margin-top: 20px;
}
th {
    background-color: #96650A;
}
th,td {
    border: 1px solid #fff;
    padding: 5px 10px;
    vertical-align: middle;
    line-height: 1.5;
}
.memo {
    margin: 10px 0;
    padding: 10px;
    line-height: 1.5;
    letter-spacing: 0.03;
    background-color: #fff;
    border: 1px solid #96650A;
}
.post-date {
    text-align: right;
}
.multi-column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 240px;
    margin: 0 auto;
}
.mini {
    width: 100px;
    margin: 0 auto;
}
.content {
    width: calc(100vw - 40px);
    margin: 0 auto;
}
.embed {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    margin: 10px 0;
}
.embed iframe,
.embed video {
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
.attention {
    color: red;
}

/* main 部分（共通） */




/* 「ご挨拶」ページ */
.manager {
    width: 200px;
    margin: 0 auto;
}
.signature {
    width: 150px;
    margin-left: auto;
}
/* 「ご挨拶」ページ */



/* トップに戻るボタン */
#page_top{
    width: 90px;
    height: 90px;
    position: fixed;
    left: 50%;
    transform: translate(-50%,0);
    bottom: 20px;
    opacity: 0.6;
  }
  #page_top a{
    position: relative;
    display: block;
    width: 90px;
    height: 90px;
    text-decoration: none;
  }
  #page_top a::before{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f102';
    font-size: 25px;
    color: #96650A;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -40px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }
  #page_top a::after{
    content: 'トップに戻る';
    font-size: 13px;
    color: #fff;
    position: absolute;
    top: 45px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
    color: #96650A;
  }
  #page_top {
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
    }
    #page_top.active{
        opacity: 1;
        visibility: visible;
    }
  /* トップに戻るボタン */

  /* 宿泊予約ボタン */
  .booking-button {
      width: 100%;
      position: fixed;
      bottom: 0;
      z-index: 50;
  }
  /* #booking{
    width: 90px;
    height: 60px;
    position: fixed;
    right: 10px;
    bottom: 40px;
    opacity: 0.6;
    border: 3px solid #96650A;
    border-radius: 10px;
    background-color: #fff;
    z-index: 50;
  }
  #booking a{
    position: relative;
    display: block;
    width: 90px;
    height: 60px;
    text-decoration: none;
  }
  #booking a::before{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f594';
    font-size: 25px;
    color: #96650A;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -25px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }
  #booking a::after{
    content: '宿泊予約';
    font-size: 13px;
    color: #96650A;
    position: absolute;
    top: 38px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }
  #booking {
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
    }
    #booking.active{
        opacity: 1;
        visibility: visible;
    } */
  /* 宿泊予約ボタン */

/* トップスライダー追加 */

main .slides li img {
    margin: 0 !important;
    width: 100%;
}
.flexslider .slides img {
    width: 100%;
}
.flexslider {
    margin: 0 !important;
}

/* トップスライダー追加 */

/* トップ・最新情報 */
.latest-news ul li,
.latest-news ul li a {
    color: #fff !important;
}

/* 過ごし方 */
.timeline h3 span {
    background-color: #96650A;
    padding: 5px 10px;
    display: inline-block;
    margin-bottom: 10px;
}

/* 縦書きタイトル */
.vertical-title {
    width: 30%;
    height: auto;
    margin: 20px auto;
}
.vertical-title img {
    width: 100%;
}

/* カレンダー */
.calendar {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    background-color: black;
    color: white;
    text-align: center;
    overflow-y: scroll;
}
.calendar.close {
    display: none;
    opacity: 0;
}
.calendar-title {
    font-size: 2rem;
}

.calendar label {
    margin: 10px 0 20px;
    font-size: 1.2rem;
    font-weight: bold;
    width: 100%;
    text-align: left;
    display: block;
}
.calendar label.date-select-label {
    padding-left: 20px;
}

.calendar .date-selector {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding-left: 20px;
    box-sizing: border-box;
    justify-content: left;
    align-items: center;
}

.calendar select {
    cursor: pointer;
    border: none;
	outline: none;
    box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
    height: 48px;
    font-size: 16px;
    background-color: white;
    color: #96650A;
    text-align: center;
    border-radius: 0;
    padding: 1em;
}

.calendar .flex-row {
    display: flex;
    flex-direction: row;
    justify-content: left;
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
}
.calendar .flex-box {
    width: 50%;
    text-align: left;
}

.calendar .year select { width: 25vw; }
.calendar .month select { width: calc(25vw - 32px); }
.calendar .day select { width: calc(25vw - 32px); }
.calendar .nights select { width: 64px; }
.calendar .persons select { width: 64px; }

.googlemap{border:1px solid #FFF;display:block;text-align:center;line-height:3;}
.googlemap a{color:FFF !important;}


.accordion-box {
    position: relative;
}
.accordion-box label {
    height: 140px; /* グラデーションの高さ */
    cursor: pointer;
    text-align: center;
    font-size: 12px;
    position: absolute;
    bottom: 0;
    width: 100%;

    /* 以下グラデーションは「背景が白」に併せて設定しています */
    background: -webkit-linear-gradient(top, rgba(0,0,0, 0) 0%, rgba(0,0,0, 0.95) 90%);
    background: -moz-linear-gradient(top, rgba(0,0,0, 0) 0%, rgba(0,0,0, 0.95) 90%);
    background: -o-linear-gradient(top, rgba(0,0,0, 0) 0%, rgba(0,0,0, 0.95) 90%);
    background: -ms-linear-gradient(top, rgba(0,0,0, 0) 0%, rgba(0,0,0, 0.95) 90%);
    background: linear-gradient(to bottom, rgba(0,0,0, 0) 0%, rgba(0,0,0, 0.95) 90%);
}
.accordion-box input:checked + label {
    background: inherit; /* 開いた時には背景グラデーションを消す */
}
.accordion-box label:after {
    content: "続きをよむ"; /* ラベルの文字 */
    letter-spacing: .05em;
    line-height: 2.5rem;
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    color: #fff;
    background-color: #96650A;
    width: 18.75rem;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}
.accordion-box label:before {
    content: "↓";
    font-weight: 700;
    position: absolute;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
    background-color: #fff;
    z-index: 1;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    color:#96650A;
}
.accordion-box input {
    display: none;
}
.accordion-box .accordion-container {
    overflow: hidden;
    height: 240px; /* 開く前に見えている部分の高さ */
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}


.accordion-box input:checked + label {
    /* display: none ; 閉じるボタンは要らないとき */
}
.accordion-box input:checked + label:after {
    content: "閉じる";
}
.accordion-box input:checked + label:before {
    content: "↑";
}
.accordion-box input:checked ~ .accordion-container {
    height: auto;
    padding-bottom: 80px; /* 閉じるボタンのbottomからの位置 */
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}

.fade {
    transition: all 500ms;
    opacity: 0;
    visibility: hidden;
    transform: translate(0px, 50px);
  }
  
  .fadein {
    opacity: 1;
    visibility: visible;
    transform: translate(0px, 0px);
  }