@charset "utf-8";
/*@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* ==============================
   共通設定
============================== */
html {
    scroll-behavior: smooth;
    /* smooth scroll */
}

main * {
    font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

/* section 背景のストライプ */
section:nth-of-type(odd) {
    background-color: #f0f0f0;
}

section:nth-of-type(even) {
    background-color: #fff;
}

/* ==============================
   スマホ（～759px）
============================== */
@media screen and (max-width: 759.9px) {
    #wrapper {
        line-height: 1.4;
    }

    .spnone {
        display: none;
    }

    #dirPathBlock,
    #anchorLinkBlock {
        font-size: 10px;
        margin: 1% 1% 0 1%;
    }

    #dirPathBlock p,
    #anchorLinkBlock a {
        font-size: 12px;
    }

    h1 {
        font-size: 12px;
        margin: 0 1%;
    }

    .inner {
        width: 96%;
        margin: 0 2%;
        padding: 24px 0;
        box-sizing: border-box;
    }

    /* title */
    img#mainphoto {
        width: 100%;
        margin-bottom: 5%;
    }
}

/* ==============================
   PC（760px～）
============================== */
@media screen and (min-width: 760px),
print {
    #wrapper {
        line-height: 1.231;
    }

    #dirPathBlock,
    h1,
    .iframe_end-content_gadget,
    #anchorLinkBlock {
        width: 100%;
        max-width: 970px;
        min-width: 760px;
        margin: auto;
    }

    #dirPathBlock,
    #anchorLinkBlock {
        margin: 0 auto;
        display: block;
        font-size: 12px;
    }

    #dirPathBlock p,
    #anchorLinkBlock a {
        font-size: 12px;
    }

    h1 {
        font-size: 14px;
        width: auto;
        max-width: 970px;
        min-width: 760px;
        margin: 0 auto 5px;
    }

    .inner {
        width: 96%;
        max-width: 970px;
        min-width: 760px;
        margin: 0 auto;
        padding: 50px 0;
        display: block;
    }

    /* title */
    img#mainphoto {
        width: 100%;
        max-width: 970px;
        margin: 0 auto 2%;
        display: block;
    }
}

/* 汎用画像 */
main img {
    border-radius: 2px;
    width: 100%;
}

/* ==============================
   メインビジュアル
============================== */
#main_visual {}

#main_visual .main_visual_wrap {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

#main_visual .main_visual_wrap:before {
    position: absolute;
    content: '';
    background: url("../images/logo_sp.png");
    width: 150px;
    height: 100px;
    left: 5%;
    top: 0;
    z-index: 1;
}


/* ホテルテキスト全体の位置 */
.main-visual-text-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    white-space: nowrap; 
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.1em;
    /*text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);*/
}
/* メインの文字（THE GATE HOTEL, HULIC）のサイズ調整 */
.main-visual-title {
    font-size: clamp(20px, 6vw, 80px);
    display: inline-block;
}
/* byのサイズ調整 */
.smaller-text {
    font-size: clamp(15px, 2.5vw, 40px); 
    position: relative;
    top: -5px;
}





/* ループテキスト全体の位置 */
#main_visual .main_visual_wrap .mv_looptxt {
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: 100%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

/* スクロールさせるトラック */
#main_visual .main_visual_wrap .mv_looptxt-track {
    display: inline-flex;
    white-space: nowrap;
    animation: mvLoop 40s linear infinite;
    /* 速度は 40s をお好みで調整 */
}

/* テキスト1つ分 */
#main_visual .main_visual_wrap .mv_looptxt-track span {
    font-size: 80px;
    color: #fff;
    letter-spacing: 0.1em;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
    padding-right: 3rem;
    font-family: sans-serif;
}

@keyframes mvLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* splide main visual */
#main_visual .splide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

#main_visual .splide__arrow,
#main_visual .splide__pagination {
    background: none;
}

#main_visual .splide__arrow svg {
    fill: none;
    height: 0;
    width: 0;
}

@media screen and (min-width: 760px) {
    #main_visual .main_visual_wrap {
        height: 770px;
    }

    #main_visual .main_visual_wrap:before {
        background: url("../images/logo.png");
        width: 330px;
        height: 300px;
        left: 10%;
    }

	/* ホテルテキスト全体の位置 */
	.main-visual-text-container {
		bottom: 20px;
	}
	/* メインの文字（THE GATE HOTEL, HULIC）のサイズ調整 */
	.main-visual-title {
		font-size: clamp(20px, 6.5vw, 100px);
	}
	/* byのサイズ調整 */
	.smaller-text {
		font-size: clamp(15px, 4.5vw, 70px);
		top: -10px;
	}


	
	
    /* PC 時は少し上・文字も大きく */
    #main_visual .main_visual_wrap .mv_looptxt {
        bottom: 20px;
    }

    #main_visual .main_visual_wrap .mv_looptxt-track span {
        font-size: 140px;
    }

    #main_visual .splide img {
        height: 770px;
    }
}

@media only screen and (min-device-width: 759px) and (max-device-width: 1024px) {
	
    #main_visual .main_visual_wrap:before {
        background: url("../images/logo_02.png");
        width: 270px;
        height: 245px;
        left: 5%;
    }
}


/* ==============================
   ニュース
============================== */
#news {
    background: #fff;
    line-height: 1.6;
    overflow: hidden;
}

#news ul.column2 {
    display: block;
    margin: 3em;
}

#news ul.column2 li:nth-child(odd) {
    width: 100%;
    margin-bottom: 1em;
    position: relative;
}

#news ul.column2 li:nth-child(even) {
    width: 100%;
}

#news ul.column2 li:nth-child(odd):before {
    position: absolute;
    content: '';
    background: url("../images/icon_new_sp.png");
    width: 86px;
    height: 49px;
    left: -25px;
    top: -30px;
}

#news h2.ti_news {
    font-size: 1.6rem;
    line-height: 1.1;
    color: #936d00;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.5em;
}

#news h2.ti_news span {
    display: block;
    font-size: 1.4rem;
    color: #000;
    font-weight: bold;
    margin-top: 0.5em;
}

#news p {
    font-size: 0.9rem;
    margin-bottom: 2.5em;
    font-weight: 600;
}

@media screen and (min-width: 760px) {
    #news ul.column2 {
        display: flex;
        justify-content: space-between;
        margin: 3em 0;
    }

    #news ul.column2 li:nth-child(odd),
    #news ul.column2 li:nth-child(even) {
        width: 48%;
    }

    #news ul.column2 li:nth-child(odd):before {
        background: url("../images/icon_new.png");
        width: 143px;
        height: 81px;
        left: -45px;
        top: -40px;
    }

    #news h2.ti_news {
        font-size: 1.8rem;
    }

    #news h2.ti_news span {
        font-size: 1.5rem;
    }

    #news p {
        font-size: 1rem;
        margin-bottom: 1em;
    }
}
@media only screen and (min-device-width: 759px) and (max-device-width: 1024px) {
	
    #news ul.column2 li:nth-child(odd):before {
        left: -10px;
        top: -50px;
    }

}


/* ==============================
   ホテルナビゲーション
============================== */
.hotel-area-section {
    background-image: url('../images/bg_menu_tokyo.webp');
    background-size: contain;
}

.area-navigation {
    display: grid;
    gap: 10px;
    padding: 0 10px;
}

.area-content-wrapper {
    background-color: #936d00;
    display: flex;
}

.area-content-nabi-wrapper {
    width: 80%;
    margin: auto;
}


.hotel-list {
    padding-top: 55px;
}

/* エリア毎の背景（全体ラッパ） */
.area-content-kanto,
.area-content-kansai,
.area-content-kyushu {
    width: 100%;
    background: #000;
}

/* ラジオボタン自体を非表示にする */
.tab-radio {
    display: none;
}

/* タブ（エリア） */
.area-tab-item {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.area-tab-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* タブのテキスト */
.area-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(41, 23, 2, 0.8);
    color: #fff;
    width: 100%;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.scrolled .area-text-overlay {
    height: 50px;
}

/* アクティブタブ */
#tab-kanto:checked~.area-navigation-wrap .area-tab-item:nth-child(1) .area-text-overlay,
#tab-kansai:checked~.area-navigation-wrap .area-tab-item:nth-child(2) .area-text-overlay,
#tab-kyushu:checked~.area-navigation-wrap .area-tab-item:nth-child(3) .area-text-overlay {
    background-color: #553e00;
    font-size: 1.1rem;
}

/* ホバー */
.area-tab-item:hover {
    transform: scale(1.02);
}

.area-tab-item:hover img {
    transform: scale(1.03);
}

.area-tab-item:hover .area-text-overlay {
    background-color: #553e00;
}

/* タブコンテンツ（エリア毎） */
.tab-content {
    display: none;
    margin: 0 auto;
}

/* エリア選択時に表示 */
#tab-kanto:checked~.area-content-wrapper #content-kanto,
#tab-kansai:checked~.area-content-wrapper #content-kansai,
#tab-kyushu:checked~.area-content-wrapper #content-kyushu {
    display: grid;
}

@media screen and (min-width: 760px) {
    .area-navigation {
        display: flex;
        justify-content: center;
        gap: 30px;
        max-width: 970px;
        margin: 0 auto;
        padding: 0 20px;
        z-index: 10;
        overflow: hidden;
    }

    .area-content-nabi-wrapper {
        max-width: 970px;
        margin: auto;
    }

    .area-tab-item {
        width: 300px;
        height: 300px;
    }

    .area-text-overlay {
        height: 75px;
        font-size: 1.4rem;
    }

    .scrolled .area-text-overlay {
        height: 75px;
    }

    #tab-kanto:checked~.area-navigation-wrap .area-tab-item:nth-child(1) .area-text-overlay,
    #tab-kansai:checked~.area-navigation-wrap .area-tab-item:nth-child(2) .area-text-overlay,
    #tab-kyushu:checked~.area-navigation-wrap .area-tab-item:nth-child(3) .area-text-overlay {
        font-size: 1.5rem;
    }

    #tab-kanto:checked~.area-content-wrapper #content-kanto,
    #tab-kansai:checked~.area-content-wrapper #content-kansai,
    #tab-kyushu:checked~.area-content-wrapper #content-kyushu {
        display: flex;
        flex-wrap: wrap;
    }

    .tab-content {
        width: 100%;
    }
}

/* ホテルリスト */
.hotel-list {
    display: block;
    margin: 60px auto 3em;
}

.hotel-list li {
    width: 100%;
    margin-bottom: 10px;
    border-bottom: 1px #ddcd9e dashed;
    padding-bottom: 0.5em;
}

.hotel-list li img {
    width: 60px;
    height: 40px;
    object-fit: cover;
    margin-right: 5px;
}

.hotel-list-text {
    color: #fff;
    font-size: 0.9rem;
    /*font-size: 0.8rem;*/
    display: inline-block;
    transition: color 0.2s;
}

.hotel-list-text:hover {
    color: #291702;
    transition: 0.5s;
}

@media screen and (min-width: 760px) {
    .hotel-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        margin: 0 auto;
        padding: 80px 0 30px;
        max-width: 960px;
    }

    .hotel-list li {
        width: 40%;
        margin-bottom: 20px;
        padding-bottom: 0.7em;
    }

    .hotel-list li img {
        width: 80px;
        height: 60px;
        margin-right: 15px;
    }

    .hotel-list-text {
        font-size: 1rem;
        /*font-size: 0.9rem;*/
    }
}
@media only screen and (min-device-width: 759px) and (max-device-width: 1024px) {

    .hotel-list li {
        width: 47%;
        margin-bottom: 20px;
        padding-bottom: 0.7em;
    }
	
    .hotel-list li img {
        width: 40px;
        height: 30px;
        margin-right: 10px;
    }
}


/* ==============================
   ホテル詳細共通
============================== */
.hotel-detail-tokyo-wrapper,
.hotel-detail-kaminarimon-wrapper,
.hotel-detail-ryogoku-wrapper,
.hotel-detail-yokohama-wrapper,
.hotel-detail-kansai-wrapper,
.hotel-detail-kyushu-wrapper {
    background-size: cover;
    background-position: center top;
    padding: 10em 0 5em;
    color: #fff;
}

.hotel-detail-tokyo-wrapper {
    background: url("../images/bg_main_tokyo_sp.jpg") no-repeat;
}

.hotel-detail-kaminarimon-wrapper {
    background: url("../images/bg_main_kaminarimon_sp.jpg") no-repeat;
}

.hotel-detail-ryogoku-wrapper {
    background: url("../images/bg_main_ryogoku_sp.jpg") no-repeat;
}

.hotel-detail-yokohama-wrapper {
    background: url("../images/bg_main_yokohama_sp.jpg") no-repeat;
}

.hotel-detail-kansai-wrapper {
    background: url("../images/bg_main_kyoto_sp.jpg") no-repeat;
}

.hotel-detail-kyushu-wrapper {
    background: url("../images/bg_main_fukuoka_sp.jpg") no-repeat;
}

@media screen and (min-width: 760px) {

    .hotel-detail-tokyo-wrapper,
    .hotel-detail-kaminarimon-wrapper,
    .hotel-detail-ryogoku-wrapper,
    .hotel-detail-yokohama-wrapper,
    .hotel-detail-kansai-wrapper,
    .hotel-detail-kyushu-wrapper {
        padding: 20em 0;
    }

    .hotel-detail-tokyo-wrapper {
        background: url("../images/bg_main_tokyo.webp") no-repeat;
        background-size: cover;
    }

    .hotel-detail-kaminarimon-wrapper {
        background: url("../images/bg_main_kaminarimon.webp") no-repeat;
        background-size: cover;
    }

    .hotel-detail-ryogoku-wrapper {
        background: url("../images/bg_main_ryogoku.webp") no-repeat;
        background-size: cover;
    }

    .hotel-detail-yokohama-wrapper {
        background: url("../images/bg_main_yokohama.webp") no-repeat;
        background-size: cover;
    }

    .hotel-detail-kansai-wrapper {
        background: url("../images/bg_main_kyoto.webp") no-repeat;
        background-size: cover;
    }

    .hotel-detail-kyushu-wrapper {
        background: url("../images/bg_main_fukuoka.webp") no-repeat;
        background-size: cover;
    }
}

/* リンクID */
#kanto_ginza,
#kanto_kaminarimon,
#kanto_ryogoku,
#kanto_yokohama,
#kansai_kyoto,
#kyushu_fukuoka {
    width: 100%;
}

/* 共通ラッパ */
.hotel-detail-content {
    width: 96%;
    margin: 0 2%;
    box-sizing: border-box;
}

@media screen and (min-width: 760px) {
    .hotel-detail-content {
        width: 96%;
        max-width: 970px;
        min-width: 760px;
        margin: 0 auto;
        display: block;
    }
}

/* 回転ロゴ */
.rotating-logo-container {
    position: relative;
    width: 127px;
    height: 127px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.rotating-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: spin 30s linear infinite;
}

.center-text {
    position: relative;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    white-space: pre-line;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.hotel-name {
    margin: 7em auto 3em;
}

.hotel-name h2 {
    position: relative;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
}

.hotel-name h2:before {
    position: absolute;
    content: url("../images/icon_logo_sp.png");
    top: -20px;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (min-width: 760px) {
    .rotating-logo-container {
        width: 173px;
        height: 173px;
    }

    .center-text {
        font-size: 1.2rem;
    }

    .hotel-name {
        margin: 5em auto 6em;
    }

    .hotel-name h2,
    .hotel-name h2.long {
        font-size: 2.5rem;
		/*追加*/
		font-size: clamp(20px, 3vw, 40px);
    }

    .hotel-name h2:before,
    .hotel-name h2.long:before {
        content: url("../images/icon_logo.png");
        top: -10px;
        left: 15px;
        transform: translate(0, 0);
    }

    .hotel-name h2.long:before {
        left: -30px;
    }
}
@media only screen and (min-device-width: 759px) and (max-device-width: 1024px) {

    .hotel-name h2 {
		padding-top: 3em;
    }

	.hotel-name h2:before,
    .hotel-name h2.long:before {
        content: url("../images/icon_logo.png");
		top: 20px;
		left: 50%;
		transform: translate(-50%, -50%);
    }

	
}


/* ==============================
   メイン情報エリア
============================== */
.main-info-area {
    margin: 0 auto;
    padding: 0 20px 50px;
}

.main-info-area h3.main_info {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 1em;
}

.main-text-box {
    margin-bottom: 4em;
}

.intro-heading {
    font-size: 1.2rem;
    color: #b38e24;
    margin: 2em 1em 1em;
    font-weight: bold;
    text-align: center;
}

.intro-body {
    font-size: 1rem;
    line-height: 1.8;
}

.co-sleeping {
    border: 1px #fff solid;
    font-size: 0.9rem;
    background-color: #b36d12;
    padding: 0.5em 0.7em;
    display: inline-block;
    margin: 1em 0;
}

.main-info-area h4 {
    font-size: 1.2rem;
    text-align: center;
}

.main-info-area h5 {
    font-size: 1rem;
    text-align: center;
}

.btn_more_area {
    text-align: center;
    margin: 4em 0;
}

@media screen and (min-width: 760px) {
    .main-info-area h3.main_info {
        font-size: 1.7rem;
    }

    .main-text-box {
        margin-bottom: 6em;
    }

    .intro-heading {
        font-size: 1.3rem;
    }

    .intro-body {
        font-size: 1.1rem;
    }

    .main-info-area h4,
    .main-info-area h5 {
        font-size: 1.5rem;
    }
}

/* ==============================
   共通ボタン
============================== */
.button-row {
    display: grid;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.main-button {
    text-decoration: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: bold;
    border: 1px solid #7b6833;
    transition: all 0.3s ease;
}

/* 塗りつぶしボタン */
.main-button.bronze {
    background-color: #7b6833;
    color: #fff;
}

.main-button.bronze:hover {
    background-color: #5c4e28;
}

/* 透明ボタン */
.main-button.transparent {
    background-color: transparent;
    color: #7b6833;
}

.main-button.transparent:hover {
    background-color: #7b6833;
    color: #fff;
}

@media screen and (min-width: 760px) {
    .button-row {
        display: flex;
    }
}

/* ==============================
   サブ情報（イチオシ・客室）
============================== */
.sub-info-area,
.sub-info-area02 {
    border: 1px #fff solid;
    margin: auto;
    padding: 4em 2em 0;
}

.sub-info-area02 {
    border-top: none;
}

.section-title-box,
.section-title-box02 {
    text-align: center;
    margin-bottom: 2em;
}

.section-heading,
.section-heading02,
.section-heading_long {
    position: relative;
    font-size: 1.2rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: 1px;
    padding-top: 1em;
}

.section-heading:before,
.section-heading_long:before {
    position: absolute;
    content: url("../images/icon_recommendation_sp.png");
    width: 142px;
    height: 29px;
    top: -5px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.section-heading02:before {
    position: absolute;
    content: url("../images/icon_guestroom_sp.png");
    width: 124px;
    height: 33px;
    top: -5px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.section-heading:after,
.section-heading02:after,
.section-heading_long:after {
    position: absolute;
    content: url("../images/icon_logo02_sp.png");
    width: 30px;
    height: 30px;
    top: 25px;
    left: 0;
}

.section-heading_long:after {
    top: 27px;
    left: -18px;
}

.section-heading02:after {
    top: 18px;
    left: 55px;
}

@media screen and (min-width: 760px) {

    .sub-info-area,
    .sub-info-area02 {
        padding: 5em 3em 3em;
    }

    .section-title-box,
    .section-title-box02 {
        margin-bottom: 5em;
    }

    .section-heading,
    .section-heading02,
    .section-heading_long {
        font-size: 1.7rem;
    }

    .section-heading:before,
    .section-heading_long:before {
        content: url("../images/icon_recommendation.png");
        width: 213px;
        height: 43px;
    }

    .section-heading02:before {
        content: url("../images/icon_guestroom.png");
        width: 149px;
        height: 40px;
    }

    .section-heading:after,
    .section-heading02:after,
    .section-heading_long:after {
        content: url("../images/icon_logo02.png");
        width: 37px;
        height: 37px;
        left: 75px;
    }

    .section-heading_long:after {
        left: 30px;
    }

    .section-heading02:after {
        top: 28px;
        left: 300px;
    }
}
@media only screen and (min-device-width: 759px) and (max-device-width: 1024px) {
	
    .section-heading,
    .section-heading02,
    .section-heading_long {
        font-size: 1.5rem;
    }
	
    .section-heading:after,
    .section-heading02:after,
    .section-heading_long:after {
        /*content: url("../images/icon_logo02.png");*/
        content: none;
        width: 37px;
        height: 37px;
        left: 100px;
		top: 20px
    }
	
    .section-heading02:after {
        top: 20px;
        left: 310px;
    }
	
    .section-heading_long:after {
        left: 65px;
    }

}


/* レストラン・客室コンテンツ */
.info-content-box {
    display: block;
    margin-bottom: 3em;
}

.info-media {
    flex-shrink: 0;
    width: 100%;
    overflow: hidden;
}

.info-category {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
    color: #b38e24;
    margin: 10px 0;
}

.info-category span {
    display: block;
    font-size: 1rem;
}

.info-description {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #fff;
}

@media screen and (min-width: 760px) {
    .info-content-box {
        display: flex;
        gap: 30px;
        align-items: flex-start;
    }

    .info-media {
        width: 60%;
    }

    .info-text {
        flex-grow: 1;
    }

    .info-category {
        font-size: 1.4rem;
    }

    .info-category span {
        font-size: 1.2rem;
    }

    .info-description {
        font-size: 1rem;
    }
}

/* ==============================
   Splide 共通
============================== */

/* is-overflow で非表示になるデフォルト挙動を抑制 */
.splide:not(.is-overflow) .splide__pagination {
    display: flex;
}

/* メインギャラリー（東京/雷門/両国/横浜/京都/福岡） */
#gallery01 img,
#gallery02 img,
#gallery03 img,
#gallery04 img,
#gallery05 img,
#gallery06 img {
    width: 100%;
    object-fit: cover;
}

/* 矢印の背景を消す＆非表示 */
#gallery01 .splide__arrow,
#gallery02 .splide__arrow,
#gallery03 .splide__arrow,
#gallery04 .splide__arrow,
#gallery05 .splide__arrow,
#gallery06 .splide__arrow {
    background: none;
}

#gallery01 .splide__arrow svg,
#gallery02 .splide__arrow svg,
#gallery03 .splide__arrow svg,
#gallery04 .splide__arrow svg,
#gallery05 .splide__arrow svg,
#gallery06 .splide__arrow svg {
    fill: none;
    height: 0;
    width: 0;
}

@media screen and (min-width: 760px) {

    #gallery01 img,
    #gallery02 img,
    #gallery03 img,
    #gallery04 img,
    #gallery05 img,
    #gallery06 img {
        height: 600px;
    }
}

/* レストラン・客室用ギャラリー */
#gallery_ginza img,
#gallery_ginza02 img,
#gallery_kaminarimon img,
#gallery_kaminarimon02 img,
#gallery_kaminarimon03 img,
#gallery_ryogoku img,
#gallery_ryogoku02 img,
#gallery_ryogoku03 img,
#gallery_yokohama img,
#gallery_yokohama02 img,
#gallery_yokohama03 img,
#gallery_kyoto img,
#gallery_kyoto02 img,
#gallery_kyoto03 img,
#gallery_fukuoka img,
#gallery_fukuoka02 img,
#gallery_fukuoka03 img {
    width: 100%;
    object-fit: cover;
}

/* 矢印を消す（レストラン・客室） */
#gallery_ginza .splide__arrow,
#gallery_ginza02 .splide__arrow,
#gallery_kaminarimon .splide__arrow,
#gallery_kaminarimon02 .splide__arrow,
#gallery_kaminarimon03 .splide__arrow,
#gallery_ryogoku .splide__arrow,
#gallery_ryogoku02 .splide__arrow,
#gallery_ryogoku03 .splide__arrow,
#gallery_yokohama .splide__arrow,
#gallery_yokohama02 .splide__arrow,
#gallery_yokohama03 .splide__arrow,
#gallery_kyoto .splide__arrow,
#gallery_kyoto02 .splide__arrow,
#gallery_kyoto03 .splide__arrow,
#gallery_fukuoka .splide__arrow,
#gallery_fukuoka02 .splide__arrow,
#gallery_fukuoka03 .splide__arrow {
    background: none;
}

#gallery_ginza .splide__arrow svg,
#gallery_ginza02 .splide__arrow svg,
#gallery_kaminarimon .splide__arrow svg,
#gallery_kaminarimon02 .splide__arrow svg,
#gallery_kaminarimon03 .splide__arrow svg,
#gallery_ryogoku .splide__arrow svg,
#gallery_ryogoku02 .splide__arrow svg,
#gallery_ryogoku03 .splide__arrow svg,
#gallery_yokohama .splide__arrow svg,
#gallery_yokohama02 .splide__arrow svg,
#gallery_yokohama03 .splide__arrow svg,
#gallery_kyoto .splide__arrow svg,
#gallery_kyoto02 .splide__arrow svg,
#gallery_kyoto03 .splide__arrow svg,
#gallery_fukuoka .splide__arrow svg,
#gallery_fukuoka02 .splide__arrow svg,
#gallery_fukuoka03 .splide__arrow svg {
    fill: none;
    height: 0;
    width: 0;
}

@media screen and (min-width: 760px) {

    /*#gallery_ginza img,
    #gallery_ginza02 img,
    #gallery_kaminarimon img,
    #gallery_kaminarimon02 img,
    #gallery_kaminarimon03 img,
    #gallery_ryogoku img,
    #gallery_ryogoku02 img,
    #gallery_kyoto img,
    #gallery_kyoto02 img,
    #gallery_kyoto03 img,
    #gallery_fukuoka img,
    #gallery_fukuoka02 img,
    #gallery_fukuoka03 img {
        height: 284px;
    }*/
}

/* ==============================
   フッターボタンエリア
============================== */
.footer-button-area {
    text-align: center;
    padding: 5em 20px 8em;
}

.footer-cta {
    font-size: 1rem;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

@media screen and (min-width: 760px) {
    .footer-button-area {
        padding: 7em 0 10em;
    }

    .footer-cta {
        font-size: 1.2rem;
    }
}

/* ==============================
   フッターエリア（汎用）
============================== */
.footer-area {
    text-align: center;
    padding: 5em 20px 8em;
}

.footer-area-wrap {
    width: 96%;
    max-width: 970px;
    min-width: 760px;
    margin: 0 auto;
    padding: 50px 0;
    display: block;
}

@media screen and (min-width: 760px) {
    .footer-area {
        padding: 7em 0 10em;
    }
}

/* ==============================
   PC/SP 切り替えヘルパー
============================== */
@media only screen and (max-width: 759px) {
    .for_pc {
        display: none;
    }
}

@media only screen and (min-width: 760px) {
    .for_sp {
        display: none;
    }
}

/* ==============================
   gadget タイトル
============================== */
#gadget h2.ti_plan {
    font-size: 25px;
    letter-spacing: 3px;
    font-weight: bold;
    color: #231816;
    text-align: center;
    margin-bottom: 0.5em;
}

#gadget h2.ti_plan span {
    color: #fff;
}

@media screen and (min-width: 760px) {
    #gadget h2.ti_plan {
        font-size: 28px;
        letter-spacing: 5px;
    }
}

/* gadget color */
.search_kokunaiBar .fw-top .fw-checkbox__label:before {
    border-color: var(--gadget-accent-color);
}

.search_kokunaiBar .fw-top .fw-checkbox__input:checked+.fw-checkbox__label:before {
    background-color: var(--gadget-accent-color);
    border-color: var(--gadget-accent-color);
}

.search_kokunaiBar .fw-top .fwnta-modal-tab__list {
    border-bottom-color: var(--gadget-accent-color);
}

.search_kokunaiBar .fw-top .fwnta-modal-tab__list>li.fw-is-active {
    background: var(--gadget-accent-color);
}

.search_kokunaiBar .fw-top .fwnta-modal-btn-clear {
    border-color: var(--gadget-accent-color);
    color: var(--gadget-accent-color);
}

.search_kokunaiBar .fw-top .fwnta-modal-tab__list>li {
    background-color: var(--gadget-noactive-color);
}

.search_kokunaiBar .fw-top .fw-btn-detail-01,
.fw-top .fw-btn-fix-01 {
    background-color: var(--gadget-botton-color);
}

.search_kokunaiBar .fw-top .fwnta-btn-search {
    background-color: var(--gadget-botton-color);
}

/* ==============================
   スティッキーメニュー（エリアタブ）
============================== */
.area-navigation-wrap {
    position: sticky;
    z-index: 999;
    margin-bottom: -50px;
}

.area-navigation-wrap.scrolled {
    background: #936d00;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* スマホはスクロールで横並び */
.scrolled .area-navigation {
    display: flex;
    justify-content: center;
}

.area-tab-item {
    transition: 0.2s;
    will-change: transform;
}

.scrolled .area-tab-item {
    height: 50px;
    box-shadow: none;
}

.scrolled .area-tab-item img {
    opacity: 0;
    transition-duration: 0.5s;
}

.scrolled .area-text-overlay {
    background-color: #936d00;
}

@media screen and (min-width: 760px) {
    .area-navigation-wrap {
        margin-bottom: -50px;
        padding-top: 50px;
    }

    .area-navigation-wrap.scrolled {
        padding-top: 0;
    }

    .scrolled .area-tab-item {
        height: 75px;
    }
}

/* サブメニュー（関東ホテル一覧）はPCのみ hover で表示 */
.area-navigation-sub {
    display: none;
}

@media screen and (min-width: 760px) {

    .area-navigation-sub.hover {
        display: flex;
    }
}

.hotel-list__label {
    display: block;
}


.kanto-hotel {
    display: none;
}

.kanto-hotel.is-active {
    display: block;
}

/* アンカー位置調整 */
.scrolled~.area-content-wrapper .tab-content {
    padding-top: 0;
    margin-top: 0;
}

@media screen and (min-width: 760px) {
    .tab-content {
        padding-top: 300px;
        margin-top: -300px;
    }

    .scrolled~.area-content-wrapper .tab-content {
        padding-top: 0;
        margin-top: 0;
    }
}


#area_navigation.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    overflow: hidden;
}

@media screen and (min-width: 760px) {
    #area_navigation.scrolled {
        top: 0;
    }
}
