@charset "UTF-8";
/*スマホ用
----------------------------------*/
/*@media only screen and (max-width: 1035px) {
  .FEATURE-box .text {width: 100%;}
.FEATURE-box .right {width: 100%;}
.FEATURE-box .left {width: 100%;}  
}*/

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

header .head {background: #fff;}
header .read {font-size: 20px;}
header .contents {display: none;}
header .sp-logo-box {display: block;}
header .sp-logo-box h1 {width: 100%; text-align: center; padding: 40px 0; background: #2f373a;}
header .slide-area {padding: 0; background-size: 310%; height: 100vh; animation: none;}
header .slide-area .read {top: 175px;}
.scroll {bottom: 15%;}
.scroll img {width:35px;}
.contents ul.NEWS-area li span {margin-bottom: 15px; display: block;}
.contents {width: 90%; margin:0 5%;}
br.sp-br {display: block;}

header h1.sp-index-logo {width: 100%; position: absolute; float: none; z-index: 999; text-align: center; padding: 100px 0;}
header .sp-navi {display: block;}











/*btn-navi*/
.Btn-navi {padding: 10px 5px; right: 10px; bottom: 60px; position: fixed; background: #3b3b3b; width: 40px; display:block; line-height:1em; z-index:9999; transition: .3s;}
.Btn-navi .name {font-weight: bold; position: relative; bottom: -25px; vertical-align:middle; text-align:center; color:#ffffff; font-size:7.3px; line-height: 1em; }
.Btn-navi .menuBtn {display: inline-block; position: relative; width: 40px; height:30px;}
.menu-icon {display: block; position: absolute; top: 20%; left: 50%; width: 24px; height: 2px; margin: -1px 0 0 -12px; background: #ffffff; transition: .2s;}
.menu-icon:before,.menu-icon:after {display: block; content: ""; position: absolute; top: 50%; left: 0; width: 24px; height: 2px; background: #ffffff; transition: .3s;}
.menu-icon:before {margin-top: -8px;}
.menu-icon:after {margin-top: 6px;}
.menuBtn:hover .menu-icon:before {margin-top: -10px;}
.menuBtn:hover .menu-icon:after {margin-top: 8px;}
.Btn-navi.close .name { color:#ffffff; overflow: hidden; left: 0px; width: 100%; font-size: 7.3px; line-height: 10px; text-align: center; font-weight: bold; height: 8px;}
.Btn-navi.close .name:before {display: block; content: 'CLOSE'; overflow: hidden; margin-right: 0px; }
.Btn-navi.close .menu-icon:before,.Btn-navi.close .menu-icon:after {background: #ffffff;}
.Btn-navi.close .menuBtn .menu-icon {background: transparent;}
.Btn-navi.close .menuBtn .menu-icon:before, .Btn-navi.close .menuBtn .menu-icon:after {margin-top: 0;}
.Btn-navi.close .menuBtn .menu-icon:before { -webkit-transform: rotate(-45deg); transform: rotate(-45deg);}
.Btn-navi.close .menuBtn .menu-icon:after { -webkit-transform: rotate(-135deg); transform: rotate(-135deg);}
#mainhead .Btn-navi{ position: absolute; left:5px; top:5px; }
#mainhead .Btn-navi.close { opacity: 0; display: none;}
#fixBtn-navi {position: fixed;  width: auto; bottom: 20px; right:15px;}
#fixBtn-navi.Btn-navi .menuBtn { display: block; background-color:#333; border-radius: 10px; padding:10px 0px 0px;}
#fixBtn-navi.Btn-navi .menuBtn .menu-icon {margin-top: -6px;}
#fixBtn-navi .menu-icon,#fixBtn-navi .menu-icon:before,#fixBtn-navi .menu-icon:after {background-color: #ffffff;}
#fixBtn-navi .menu-icon:before{margin-top: -7px;}
#fixBtn-navi .menu-icon:after {margin-top: 5px;}
#fixBtn-navi.close .menu-icon:before,#fixBtn-navi.close .menu-icon:after {margin-top: 0;}
#fixBtn-navi.close .menu-icon {background: transparent;}
#fixBtn-navi .name { color: #ffffff; display: block; position: relative; left:0px; bottom: -17px;}
#fixBtn-navi .name:before { display: inline; content: 'MENU';}
#fixBtn-navi.close .name:before { display: inline; content: 'CLOSE';}
#fixBtn-navi.close .name { color: #ffffff;}
#cavor.Btn-navi {width: 100%; height: 100%; position: fixed; top:0px; left: -100%; transition:0s;  z-index: 999;}
#cavor.Btn-navi .menuBtn {display:block; width: 100%; height: 100%; background:rgba(255,255,255,0.6); }
#cavor.close { left: 0px; }
.navi {
    background-color: #fff; /*メニュー背景色*/
    box-sizing: border-box;
    height: 100%;
    padding: 10px 40px; /*メニュー内部上下左右余白*/
    position: fixed;
    left: -100%; /*メニュー横幅①と合わせる*/
    top: 0;
    transition: .2s; /*0.3s は変化するのにかかる時間*/
    width: 100%; /*メニュー横幅①*/
    z-index: 1000;
    overflow-y: auto;          /* 縦方向にスクロールを許可 */
    -webkit-overflow-scrolling: touch;
}
.Btn-navi:hover + .navi-background {
    opacity: 0.5; /*黒背景部分透過度*/
    z-index: 999;
}
/* --- 初期状態：メニューが閉じている時 --- */
.navi ul li {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* --- 表示状態：メニューが開いた時（.openクラスがついた時） --- */
.navi.open ul li {
    opacity: 1;
    transform: translateX(0);
}

/* --- 各項目の表示タイミング（0.05秒ずつずらす） --- */
.navi.open ul li:nth-child(1)  { transition-delay: 0.10s; }
.navi.open ul li:nth-child(2)  { transition-delay: 0.15s; }
.navi.open ul li:nth-child(3)  { transition-delay: 0.20s; }
.navi.open ul li:nth-child(4)  { transition-delay: 0.25s; }
.navi.open ul li:nth-child(5)  { transition-delay: 0.30s; }
.navi.open ul li:nth-child(6)  { transition-delay: 0.35s; }
.navi.open ul li:nth-child(7)  { transition-delay: 0.40s; }
.navi.open ul li:nth-child(8)  { transition-delay: 0.45s; }
.navi.open ul li:nth-child(9)  { transition-delay: 0.50s; }
.navi.open ul li:nth-child(10) { transition-delay: 0.55s; }
.navi.open ul li:nth-child(11) { transition-delay: 0.60s; }
.navi.open ul li:nth-child(12) { transition-delay: 0.65s; }
.navi.open ul li:nth-child(13) { transition-delay: 0.70s; }
.navi.open ul li:nth-child(14) { transition-delay: 0.75s; }
.navi.open ul li:nth-child(15) { transition-delay: 0.80s; }
.navi.open ul li:nth-child(16) { transition-delay: 0.85s; }
.navi.open ul li:nth-child(17) { transition-delay: 0.90s; }
.navi.open ul li:nth-child(18) { transition-delay: 0.95s; }
.navi.open ul li:nth-child(19) { transition-delay: 1.00s; }
.navi.open ul li:nth-child(20) { transition-delay: 1.05s; }
.navi ul li {
    border-bottom: 1px solid #ccc;
    width: 250px;
    padding-bottom: 5px; 
    list-style: none;
}
.navi ul li a {
    text-decoration: none;
    display: block;
    width: 100%;
}
.navi.open ul li:nth-child(n+21) { transition-delay: 1.10s; }
.navi.open .head-name {
    opacity: 0;
    animation: fadeInLogo 0.5s ease forwards;
    animation-delay: 1.2s;
}

@keyframes fadeInLogo {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.simple-menu {
        text-align: left;
        color: #333;
    font-family: 'Hiragino Mincho ProN', serif;
    }
/*.navi-background {width: 100%; height: 100%; position: fixed; top: 0px; left: 0%; transition: 0s; z-index: 999;}*/
.navi-background a.background-btn{display: block; width: 100%; height: 100%; background: rgba(255,255,255,0.6);}
.navi.open { left: 0; }
.navi-background {z-index: 999; display: none; position: fixed; width: 100%; height: 100%; top: 0; left:0; }
.navi-background.open {display: block; background: rgba(255,255,255,0.6); }
.navi.open {padding-bottom: 10px; padding-top: 30px; text-align: center;}
.navi.open ul li {font-size: 14px; margin-bottom: 25px;}

.Btn-navi_first {padding: 5px; background: #816a29; width: 40px; display:none; line-height:1em; z-index:9999; transition: .3s;}
.Btn-navi_first .name { vertical-align:middle; text-align:center; color:#ffffff; font-size:7.3px; line-height: 1em; }
.Btn-navi_first .menuBtn {display: inline-block; position: relative; width: 40px; height:30px;}
/*footer .navi ul {display: block; padding: 30px 0px;}*/
footer .navi ul {
    font-size: 12px;
    height: 280px;
    overflow: auto;
    /* background-color: #FFF; */
    padding: 10px 10px;
    margin-bottom: 15px;
    /* border: 1px solid #CCC; */
    display: block;
    padding: 30px 0px;
}












}
@media screen and (max-width: 1180px) {
    .main-visual__title h2 {
        display: none;
    }
    .main-visual__title-sp h2 {
        width: 90%;
        margin: 0 auto;
        padding-top: 15px;
        text-align: center;
        font-weight: bold;
        display: block;
    }
}
@media screen and (max-width: 1100px) {
    
    .page-content {
        display: block;
        margin: 0 auto;
    }
    .page-content-text {
        width: 100%;
    }
    .page-content-img {
        max-width: 100%;
    }
    .page-content-img img {
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .catch h4 {
        text-align: left;
        border-top: 1px solid #eeeeee;
        border-bottom: 1px solid #eeeeee;
        padding: 20px 10px;
    }
    .nav-head-img {
        padding-bottom: 100px;
    }
}
@media screen and (max-width: 1100px) and (min-width: 801px) {
    .spot .page-content-image {
        width: 95% !important;
        max-width: 1040px;
        margin: 0 auto 80px auto;
    }
    .spot-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px 30px;
    }
    .spot-card-title {
        min-height: 3em; 
    }
    .spot .page-nav div ul {
        width: 100%;
        justify-content: center;
    }
    .spot h2 img {
        top: 40px;
        width: 150px;
    }
}

/* ========================================
   Responsive (Mobile)
   ======================================== */
@media screen and (max-width: 800px) {
    .origin{
        width: 100%;
    }
    .sub-origin {
        width: 95%;
    }
    .origin, .sub-origin {
        max-width: 100%;
        box-sizing: border-box;
    }
    .hero-slider__img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto; 
        object-fit: contain; 
    }
    .hero-slider__img--base {
        position: static;
        display: block;
        width: 100%;
        height: auto;
    }
    .news-container {
        padding-top: 40px;
        max-width: 100%;
    }
    .news-item {
        flex-direction: column; 
        align-items: flex-start;
        gap: 5px;
    }
    .news-date {
        margin: 0;
        text-align: left;
    }
    .news-title {
        white-space: normal;
        line-height: 1.4;
    }
    .content-section {
        padding: 40px 0;
    }
    .content-section__grid {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }
    .content-section__grid > * {
        width: calc((100% - 15px) / 2); 
        margin: 0;
    }
    .content-card {
        padding: 8px;
    }
    .content-card__image {
        max-width: 100%;
    }
    .content-card__label {
        line-height: 1.3;
        min-height: 35px;
    }
    .content-card__caption {
        padding-bottom: 10px;
    }
    .pc-zone {
        display: none !important;
    }
    .sp-zone {
        display: block !important;
    }
    .header__container {
        display: block;
        text-align: center;
        padding: 15px 0;
        position: relative;
    }
    .header__logo {
        margin: 0 auto;
        width: fit-content;
    }
    .header__logo img {
        max-width: 200px;
        height: auto;
    }
    .main-visual {
        padding-bottom: 0px;
    }
    .page-nav {
        width: 100%;
    }
    .page-nav div ul {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        padding-bottom: 0;
        border-bottom: none;
    }
    .page-nav div ul li {
        width: 50%;
        float: none;
        border-right: none;
        border-bottom: 1px solid #eeeeee;
        border-top: 1px solid #eeeeee;
        box-sizing: border-box;
    }
    .page-nav div ul li:nth-child(odd) {
        border-right: 1px solid #eeeeee;
    }
    .page-content {
        display: block;
        margin-bottom: 60px;
    }
    .catch {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
    .catch h3 img {
        max-width: 100%;
        height: auto;
    }
    .page-content-text {
        width: 100%;
        padding-bottom: 40px;
    }
    .page-content-img {
        max-width: 100%;
    }
    .page-content-img-sub {
        display: flex;
        gap: 15px;
    }
    .page-content-img img {
        width: 100%;
        height: auto;
    }
    .box-container {
        width: 100%;
    }
    .box-table th {
        float: none;
        display: block;
        padding-bottom: 0;
    }
    .box-table td {
        display: block;
        padding: 5px 0 15px 0;
    }.hida {
        width: 100%;
    }
    .meal .page-content-image__body {
        padding-bottom: 0px;
    }
    .page-content-image__body {
        padding-bottom: 0px;
    }
    .page-column-img.page-column-3 li {
        width: calc((100% - 20px) / 2);
    }
    .bath .page-column-img.page-column-3 li {
         width: calc((100% - 0px) / 1);
    }
    .bath .page-column-img.page-column-3 li img {
        height: 100%;
    }
    .menu-list li {
        width: 100%;
        padding: 0 10px 10px;
    }
    .page-content-catch {
        width: 100% !important;
        padding: 20px 0 !important;
    }
    .page-column-img.page-column-3 {
        gap: 10px;
    }
    .page-column-img.page-column-3 li img {
        height: 150px;
    }
    .box-table th {
        width: 100%;
        display: block;
        padding-bottom: 0;
    }
    .box-table td {
        width: 100%;
        display: block;
        padding: 5px 0 15px 0;
    }
    .box-table tr {
        display: block;
        border-bottom: 1px solid #e0e0e0;
    }
    .box-text {
        text-align: center;
        width: 100%;
    }
    .page-content-image {
        width: 100%;
    }
    .modal-overlay {
        width: 100vw;
        height: 100vh;
        overflow: hidden; 
    }
    .modal-content {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    .modal-content img {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 85vh;
        border-width: 2px;
        box-sizing: border-box;
    }
    .l-footer {
        padding-top: 30px;
    }
    .l-footer__sitemap-list-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 0;
    }
    .l-footer__sitemap-column {
        width: 50%;
    }
    .l-footer__sitemap-column li {
        padding: 8px 0;
    }
    .l-footer__info {
        display: block; 
        text-align: center;
    }
    .l-footer__info-main {
        margin-bottom: 30px;
    }
    .l-footer__logo img {
        max-width: 180px;
        margin-bottom: 15px;
    }
    .l-footer__banners {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .fixed-nav-container {
        position: fixed;
        bottom: 0;
        width: 100%;
        display: block;
    }
    .nav-reserve-btn {
        flex: none;
        height: 40px;
        padding: 0 20px;
        border-radius: 5px 5px 0px 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0; 
    }
    .nav-reserve-btn:hover {
        padding: 0;
    }
    .nav-reserve-text {
        writing-mode: horizontal-tb;
        text-orientation: initial;
        top: 0;
    }
    .nav-ai-banner {
        flex: none;
        width: auto;
        height: 49px;
        display: block;
        margin: 0;
    }
    .nav-ai-banner img {
        width: auto;
        height: 100%;
        object-fit: contain;
    }
    #copyright {
        padding-bottom: 80px; 
    }
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding-bottom: 60px;
        width: 100%;
        box-sizing: border-box;
    }
    .facilities-grid img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }
    .facilities-grid p {
        margin-top: 10px;
        line-height: 1.4;
        text-align: center; 
    }
    .facilities h2 img {
        top: auto;
        position: static;
        margin: 20px auto;
        display: none;
    }
    .room-card {
        width: 100%;
        margin-bottom: 40px;
        flex-basis: auto;
    }
    .page-nav-text {
        margin: 0 0 20px 0;
        text-align: center;
    }
    .room .page-nav div ul li {
        width: 100%; 
        border-right: none;
        border-bottom: 1px solid #cccccc;
        float: none;
    }
    .room-card__image,
    .room-card__floorplan {
        width: 100%;
        max-width: 90%; 
        margin: 0 auto 15px;
        flex: none;
    }
    .room-card__image img,
    .room-card__floorplan img {
        width: 100%;
        height: auto;
        display: block;
        border: 1px solid #eee; 
    }
    .room-card__content {
        display: block;
        padding: 0 15px 20px;
    }
    .room-card__details,
    .room-card__details-last {
        width: 100%;
        padding: 10px 5%;
        box-sizing: border-box;
    }
    .room-card__details p,
    .room-card__details-last p {
        text-align: left;
        margin-bottom: 4px;
    }
    .child .page-content-text {
        width: 100% !important;
        max-width: 100%;
        box-sizing: border-box;
    }
    .child-price-table {
        width: 100% !important;
        margin-bottom: 20px;
        table-layout: auto; 
    }
    .child-price-item, 
    .child-price-value {
        padding: 10px;
    }
    div.child-price-table {
        padding: 15px;
        box-sizing: border-box;
    }
    div.child-price-table li {
        padding-left: 0;
    }
    .child-price-table-e {
        margin-bottom: 20px;
    }
    .span-red, .bold-text {
        word-wrap: break-word;
    }
    .access h2 img {
        top: auto;
        position: static;
        margin: 20px auto;
        display: none; 
    }
    .access-map {
        padding-top: 0px;
    }
    .sp-faq-b {
        padding-bottom: 50px;
    }
    .map-wrap {
        width: 100%;
        box-sizing: border-box;
    }
    .room-grid {
        gap: 0;
    }
    .map {
        position: relative;
        width: 100%;
        padding-top: 75%;
        height: 0;
        overflow: hidden;
    }
    .map iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important; 
        height: 100% !important;
    }
    .access-list {
        width: 100%;
        box-sizing: border-box;
    }
    .access-list div p {
        padding-bottom: 30px;
        line-height: 1.6;
    }
    .access-caution {
        padding: 15px;
        margin-bottom: 40px;
    }
    .access .page-content {
        width: 100%;
        max-width: 100%;
    }
    .spot .page-content-image {
        width: 100% !important;
        margin: 0 auto 40px auto;
        padding: 0 10px; 
        box-sizing: border-box;
    }
    .spot-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
    }
    .spot-card-title {
        min-height: auto; 
        margin: 10px 0 5px 0;
        line-height: 1.3;
    }
    .spot-card-description {
        line-height: 1.5;
        margin-bottom: 10px;
    }
    .spot-card-access {
        line-height: 1.4;
    }
    .spot-card-link {
        margin-top: 5px;
    }
    .spot h2 img {
        top: auto;
        position: static;
        margin: 20px auto;
        display: none;
    }
    .renovation h2 img {
        top: auto;
        position: static;
        margin: 20px auto;
        display: none; 
    }
    .renovation .sub-origin .page-content {
        width: 100%;
        box-sizing: border-box;
    }
    .renovation-title {
        margin-top: 40px; 
        line-height: 1.4;
    }
    .reno-fr {
        margin-top: 0px !important;
        max-width: 100%;
    }
    .renovation-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .renovation .page-content img {
        max-width: 100%;
        height: auto;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .renovation-description {
        margin-bottom: 15px;
        line-height: 1.7;
    }
    .photogallery-container {
        display: flex;
        flex-direction: column;
    }
    .photogallery-sidebar {
        width: 100%;
        margin-bottom: 30px;
        padding: 0 10px;
        box-sizing: border-box;
    }
    .photogallery-title {
        display: block;
        border-bottom: solid 1px #a8a8a8;
        padding-bottom: 8px;
        margin-bottom: 0;
    }
    .photogallery-filters {
        display: grid;
        grid-template-columns: 1fr 1fr; 
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .photogallery-filters li {
        border-bottom: dotted 1px #ddd; 
        padding: 0px 0 0px 10px; 
        position: relative;
        margin: 0;
    }
    .photogallery-filters li::before {
        content: "。";
        position: absolute;
        left: 0;
        top: 2px;
    }
    .photogallery-filters a {
        text-decoration: none;
        color: inherit;
        display: block;
    }
    .photogallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }
    .eventContainer {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    .eventTitle {
        margin-bottom: 30px;
        letter-spacing: 1px;
    }
    .eventGrid {
        grid-template-columns: 1fr; 
        gap: 40px;
    }
    .eventCardName {
        padding-left: 5px;
        line-height: 1.4;
    }
    .eventPeriod {
        padding: 8px 10px;
        margin: 10px 0;
        line-height: 1.5;
    }
    .eventImage {
        height: auto;
        aspect-ratio: 16 / 9; 
    }
    .eventDescription {
        padding: 15px 5px;
        line-height: 1.7;
    }
    .eventFooter {
        padding: 15px 0;
        text-align: left;
    }
    .eventLink {
        text-decoration: underline;
    }
    .no-image {
        height: auto !important;
        aspect-ratio: 16 / 9;
    }
}
@media only screen and (max-width: 680px) {

}
@media only screen and (max-width: 480px) {
    .header__logo img {
        max-width: 80%;
        height: auto;
    }
    .hero-slider {
        height: 25vh; 
    }
    .hero-slider__canvas {
        height: 100%;
    }
    .hero-slider__img {
        height: 100% !important; 
        width: 100%;
        object-fit: cover; 
        position: absolute;
    }
    .hero-slider__img--base {
        position: absolute;
        display: block;
    }
    .hero-slider__content {
        bottom: 10%;
    }
    .news-container {
        padding-top: 25px;
    }
    .section-header {
        margin-bottom: 40px;
    }
    .news-item {
        padding: 10px 10px;
    }
}
@media only screen and (max-width: 320px) {
    
}







