@charset "UTF-8";

/*全体*/
*{
    box-sizing: border-box;
}
:root{
    --font-color-main:#00414c;
}
html {
    scroll-behavior: smooth;
}

body{
    font-family: "Noto sans JP", serif;
    font-weight:bold;
    margin:0;
    padding:0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color:#282828;
    transition:all .4s;
}
a{
    text-decoration: none;
    color:#282828;
}
ul{
    list-style: none;
    padding:0;
    margin:0;
}
img{
    max-width:100%;
    height:auto;
    vertical-align: bottom;
}
section{
    display:block;
}
dl,dt,dd,h1,h2,h3,h4,p,figure{
    margin:0;
}
:lang(min) {
    font-family: "Zen Old Mincho", serif;
}

/*ローディング*/
.loading{
    position:fixed;
    inset:0;
    background:#fff;
    z-index:10000;
    animation: bgFade 3.5s ease forwards;
    pointer-events: none;
}
@keyframes bgFade{
    0%   { opacity:1; }
    85%  { opacity:1; }
    100% { opacity:0; }
}

.loading_inner{
    animation: contentFade 5s ease forwards;
    filter: blur(6px);
}
.loading_inner > h2,
.loading_inner > p{
    color:#282828;
}

@keyframes contentFade{
    /* じわっと出現 */
    0%{
        opacity:0;
        transform:translate(-50%,-50%) scale(0.96);
        filter: blur(8px);
    }
    30%{
        opacity:1;
        transform:translate(-50%,-50%) scale(1);
        filter: blur(0);
    }
    80%{
        opacity:1;
        transform:translate(-50%,-50%) scale(1);
        filter: blur(0);
    }
    100%{
        opacity:0;
        transform:translate(-50%,-50%) scale(1.04);
        filter: blur(6px);
    }
}


/*テキストアニメーション*/
.fade-in{
    opacity:0;
    transform:translateY(10px);
}
.fade-in.js-on {
    animation-name: fadeout;
    animation-duration: 1s;
    animation-delay: .5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    }
    @keyframes fadeout {
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/*ヘッダー*/
.header{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    
}
.header_inner{
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding:20px 100px 0 10px;
    position:relative;
    z-index:9997;
}
.header_gnav_wrapper{
    display:flex;
    align-items: center;
    gap:40px;
}
.header_logo img{
    width:100%;
    max-width:240px;

    opacity: 0;
}
.header_logo img.is-loaded {
    opacity: 1;
}

.gnav_list{
    display:flex;
    align-items: center;
    gap:40px;
}
.gnav_item a{
    color:#fff;
    position:relative;
    font-weight:400;
}
.gnav_item a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}

/*ハンバーガー*/
.ham_sp_logo{
    display:none;
}
.no-scroll {
    overflow: hidden;
}
.hamburger {
    width: 70px;
    height: 70px;
    position: fixed;
    right:10px;
    cursor: pointer;
    z-index: 9999;
    background:#00414C;
    border-radius: 5px;
}
.hamburger span {
    position: absolute;
    left: 0;
    width: 50%;
    height: 3px;
    left:50%;
    top:50%;
    transform:translateX(-50%);
    background: #fff;
    transition:all .4s;
}
.hamburger span:nth-child(1) { top: 35%; }
.hamburger span:nth-child(2) { top: 50%; }
.hamburger span:nth-child(3) { top: 65%; }
.hamburger.active span:nth-child(1) {
    transform:translateX(-50%) rotate(45deg);
    top: 50%;
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform:translateX(-50%) rotate(-45deg);
    top: 50%;
}
#hamburger-window {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    /*transform: translateX(100%);*/
    transition: all .4s;
    /*visibility: hidden;*/
    z-index: 9998;
    overflow-y: scroll;
    display:flex;
    flex-direction: column;
    padding:100px;
    gap:20px;
}
#hamburger-window.active {
    /*transform: translateX(0);*/
    left:0;
    /*visibility: visible;*/
}
.g_honyaku{
    position:relative;
    font-weight:400;
}


.ham_content01{
    display:flex;
    justify-content: space-between;
    width:100%;
}
.ham_pc_logo img{
    max-width:160px;
}
.ham_sns_list{
    display:flex;
    gap:15px;
    margin-top:30px;
}
.ham_info{
    margin-top:60px;
}
.ham_info ul li a{
    font-weight:400;
    font-size:.9em;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition:all .4s;
}

.ham_add{
    display:flex;
    width:100%;
    gap:100px;
    border-top:1px solid #00414C;
    padding-top:60px;
    margin-top:60px;
}

.ham_rightArea{
    display:flex;
    gap:50px;
}
.ham_list{
    display:flex;
    flex-direction: column;
    gap:10px;
}
.ham_list li{
    border:2px solid #00414C;
    border-radius:5px;
}
.ham_list a{
    display:block;
    width:100%;
    height:100%;
    padding:20px;
    transition:all .4s;
}
.ham_other_list li a{
    display:flex;
    align-items: center;
    justify-content: center;
}
.ham_other_list li a img{
    width:28px;
    margin-right:5px;
}
.ham_guide > p,
.ham_about > p{
    position:relative;
    padding-left:1em;
    margin-bottom:15px;
    font-weight:400;
}
.ham_guide > p::before,
.ham_about > p::before{
    content:"";
    position:absolute;
    top:50%;
    left:0;
    transform:translateY(-50%);
    background-image:url(../images/title_icon01.svg);
    background-repeat:no-repeat;
    background-size:cover;
    width:14px;
    height:14px;
}

.ham_add_list{
    font-weight:400;
}
.ham_add_list li a{
    text-decoration: underline;
    transition:all .4s;
}

/*翻訳機能*/


/*メインビジュアル*/
.mv_inner{
    position:relative;
}
@keyframes zoomUp {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}
.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
    animation: zoomUp 12s linear 0s normal both;
}
.swiper-slide img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
    filter:brightness(90%);
}
.mv_inner .swiper-slide img{
    height: 100vh;
    width: 100%;
    object-fit: cover;
    filter:brightness(70%);
}
.mv_txtArea01{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:1;
    display:flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap:20px;
    color:#fff;
    width:100%;
}
.mv_txtArea01-2{
    position:absolute;
    bottom:20%;
    left:50%;
    transform: translateX(-50%);
    z-index:1;
    text-align: center;
    color:#fff;
    width:100%;
}
.mv_txtArea01-2 > h2{
    font-size:1.2em;
    font-weight:500;
}
.mv_logo img{
    max-width:160px;
}

/*アイコンリンク*/
.mv_txtArea02{
    position:absolute;
    left:40px;
    bottom:20px;
    z-index:1;
}
.mv_link_list li a{
    color:#fff;
    display:flex;
    gap:10px;
    transition:all .4s;
}
.mv_link_list{
    display:flex;
    flex-direction: column;
    justify-content: center;
    gap:20px;
}

/*本日のお風呂*/
.mv_txtArea03 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 10;
    /**max-height: 75px;
    overflow: hidden;
    transition: max-height .4s ease, box-shadow .3s ease;**/
}

/**.mv_txtArea03:hover,
.mv_txtArea03.is-open {
    max-height: 600px;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.bath-table_wrapper {
    opacity: 0;
    transition: opacity .3s ease;
}**/

/**.mv_txtArea03:hover .bath-table_wrapper,
.mv_txtArea03.is-open .bath-table_wrapper {
    opacity: 1;
}**/

/*スマホ表示*/
.mv_txtArea03-sp{
    display:none;
}

.bath-card {
    background: #00414C;
    color: #fff;
    border-radius: 5px;
}
.bath-titleArea{
    border-bottom:1px solid #fff;
    display:flex;
    align-items: center;
    justify-content: space-between;
    padding:10px 20px;
}
.bath-title{
    font-size:1.2em;
}
.bath-table {
    border-collapse: separate;
    text-align: center;
    border-spacing:10px 0;
    padding:15px 0;
}
.bath-area{
    white-space: nowrap;
}
.bath-gender-head{
    background:#fff;
    color:#00414C;
    border-radius:5px 5px 0 0;
}
.bath-table th{
    padding: 12px 6px;
    font-size:.9em;
}

.bath-box {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    border-top: none;
    border-bottom: none;
}
.bath-men {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}
.bath-women {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}
.bath-table tr:last-child .bath-men,
.bath-table tr:last-child .bath-women {
    border-bottom: 1px solid #fff;
    border-radius:0 0 5px 5px;
}
.bath-inner {
    height: 100%;
}

/*スクロールバー*/
.scroll_down {
    position: absolute;
    left:50%;
    bottom:0;
    z-index:1;
}

.scroll_down:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
        background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 80%,
        rgba(255, 255, 255, 0.6) 100%
    );
}

.scroll_down a {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 13px;
    padding: 10px 1px 110px;
    letter-spacing: .2em;
    transition: .4s;
    overflow: hidden;
    margin: auto;
    pointer-events: none;
}

.scroll_down a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 100px;
    background: rgba(255, 255, 255, 0.3);
}

.scroll_down a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 100px;
    background: #fff;
}

#type01 a:after {
    animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl01 {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }
    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }
    50.1% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }
    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}

/*緊急時お知らせ*/
.emg{
    position:absolute;
    left:40px;
    top:150px;
    z-index:1;  
    max-width:100%;
}
.emg_ttl{
    position:relative;
    background:#c33131;
    color:#fff;
    padding:20px 50px;
    border-radius:5px;
    text-decoration: underline;
    text-underline-offset: 5px;
    transition:all .4s;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.emg_ttl::after{
    content:"";
    position:absolute;
    right:10px;
    top:50%;
    transform:translateY(-50%);
    width:25px;
    height:25px;
    background:url(../images/right_arr_wh.svg);
    background-repeat:no-repeat;
    background-size: cover;
    transition:all .4s;
}

/*お知らせ*/
.top_news{
    padding:80px 40px;
}
.top_news_inner{
    max-width:800px;
    margin:0 auto;
}
.top_news_inner > h2{
    text-align: center;
    color:#00414C;
    letter-spacing: 0.05em;
    font-size:1.8em;
    margin-bottom:30px;
}

.news_item{
    border-top:1px solid #00414C;
    border-bottom:1px solid #00414C;
    margin-bottom:-1px;
}
.news_item a{
    display:flex;
    align-items: center;
    gap:50px;
    font-weight:400;
    padding:30px 30px 30px 0;
    transition:all .4s;
    position:relative;
}
.news_item a::after {
    content: "";
    position: absolute;
    right: 0;
    width: 7px;
    height: 10px;
    background-image: url(../images/sankaku_arr.svg);
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translateX(-10px);
    transition:all .4s;
}
.news_info{
    display:flex;
    gap:20px;
}
.news_cate{
    white-space: nowrap;
    border:1px solid #00414C;
    padding:0 3px;
    border-radius: 5px;
    font-size:.9em;
}
.news_ttl {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.news_other{
    display:flex;
    align-items: center;
    justify-content: space-between;
    margin-top:40px;
}
.news_sns_list{
    display:flex;
    gap:12px;
}
.view_btn a{
    position:relative;
    padding-right:1.5em;
    font-size:.9em;
    text-decoration: underline;
    text-underline-offset: 0.5em;
}
.view_btn a::after{
    content:"";
    position:absolute;
    top:50%;
    right:0;
    transform:translateY(-50%);
    width:7px;
    height:10px;
    background-image:url(../images/sankaku_arr.svg);
    background-repeat:no-repeat;
    background-size:cover;
    transition:all .4s;
}

/*池田温泉とは*/
.vision{
    padding:80px 40px;
}
.vision_inner{
    max-width:800px;
    margin:0 auto;
}
.vision_inner > h2{
    color:#00414C;
    letter-spacing: 0.05em;
    font-size:1.8em;
    margin-bottom:50px;
}
.vision_inner > p{
    font-weight:400;
    line-height: 2;
    text-align: left;
}

.wave-bg {
    position: relative;
    background-color: #FBF8EF;
    padding: 200px 20px;
    text-align: center;
}

/* 上の波 */
/*.wave-bg::before {
    content: "";
    position: absolute;
    top: -49px;
    left: 0;
    width: 100%;
    height: 50px;
    transform:rotate(180deg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23FBF8EF'/%3E%3C/svg%3E");
    background-size: 600px 50px;
    background-repeat: repeat-x;
}*/

/* 下の波 */
/*.wave-bg::after {
    content: "";
    position: absolute;
    bottom: -49px;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23FBF8EF'/%3E%3C/svg%3E");
    background-size: 600px 50px;
    background-repeat: repeat-x;
}*/

/*温泉・泉質の魅力*/
.about_01{
    padding:150px 40px;
}
.about_01_inner{
    max-width:1200px;
    margin:0 auto;
}
.top_ttl{
    max-width:600px;
    height:140px;
    margin:0 auto;
    background:#fbf8ef;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius:5px 5px 0 0;
}
.top_ttl > h2{
    position:relative;
    color:#00414C;
    letter-spacing: 0.05em;
    font-size:1.8em;
}
.top_ttl > h2::before{
    content:"";
    position:absolute;
    top:-130px;
    left:50%;
    width:1px;
    height:0;
    background:#00414C;
    transition:all .8s;
}
.top_ttl > h2.visible::before {
    height: 100px;
}

.about_01_img{
    aspect-ratio: 980 / 500;
    margin:0 auto;
}
.about_01_img img{
    width:100%;
    height:100%;
    object-fit: cover;
}
.about_01_inner > p{
    font-weight:400;
    margin:30px auto;
    max-width:800px;
    line-height: 2;
}
.view_btn2{
    text-align:center;
    border-bottom:1px solid #000;
    width: max-content;
    margin:0 auto;
}
.view_btn2 a{
    position:relative;
    padding-right:2.5em;
    display:flex;
    align-items: center;
}
.view_btn2 a::after{
    content:"";
    position:absolute;
    right:0;
    top:0;
    width:25px;
    height:25px;
    background-image:url(../images/right_arr.svg);
    background-repeat:no-repeat;
    background-size:cover;
    transition:all .4s;
}

/*本館*/
.about_02{
    padding:100px 0;
}
/*.overlap{
    display: flex;
    overflow: hidden;
}
.overlap_wrapper{
    flex: 0 0 100%;
    height: 100vh;
}
.overlap_inner{
    width:100%;
    height:100%;
}
.overlap_inner img{
    width:100%;
    height:100%;
    object-fit: cover;
    object-position: center center;
}*/
.overlapSwiper {
    width: 100%;
    height: 90svh;
    overflow: hidden;
}

.swiper-img7 img {
    width: 100%;
    height:100%;
    display: block;
    object-fit: cover;
}

.bath_info_wrapper{
    max-width:900px;
    margin:50px auto 10px;
    display:flex;
    flex-direction: column;
    gap:20px;
    padding:0 40px;
}
.bath_info_wrapper > p{
    font-weight:400;
    margin-bottom:60px;
}
.bath_info{
    display:flex;
    border:1px solid #00414C;
    border-radius:5px;
    gap:50px;
}
.bath_name{
    background:#00414C;
    color:#fff;
    width:200px;
    display:flex;
    align-items: center;
    justify-content: center;
}
.bath_desult{
    flex:1;
    display:flex;
    flex-direction: column;
    justify-content: center;
    gap:10px;
    padding:1em;
}
.bath_desult01{
    display:flex;
    align-items: center;
    gap: 1em;
}
.bath_desult01 > span{
    width:5em;
    padding:8px 2px;
    text-align: center;
    line-height: 1;
    border:1px solid #282828;
}

/*新館*/
.about_03{
    padding:150px 0;
}
.bath_info_wrapper2{
    margin-bottom:30px;
}
.bath_info2{
    justify-content: space-between;
    margin-bottom:30px;
}

/*ご利用案内*/
.top_guide{
    background:#FBF8EF;
    padding:100px 40px;
}
.top_guide_inner{
    max-width:1200px;
    margin:0 auto;
}
.top_guide_inner > h2{
    font-size:1.8em;
    color:#00414C;
    text-align: center;
    margin-bottom:130px;
}
.top_guide_time{
    border-top:2px solid #00414C;
    border-bottom:2px solid #00414C;
    padding:70px 30px;
    display:flex;
    justify-content: space-between;
    align-items: flex-start;
}
.top_guide_ttl{
    display:flex;
    align-items: center;
    gap:10px;
    font-size:1.8em;
    letter-spacing: 0.05em;
}
.top_guide_desult{
    width:50%;
}
.top_guide_desult > p{
    font-size:1.2em;
    margin-bottom:70px;
}
.top_guide_desult > h4,
.fee_desult > div > h4{
    font-size:1.4em;
    margin-bottom:20px;
}
.top_guide_item{
    display:flex;
    border-top:1px solid #282828;
    border-bottom:1px solid #282828;
    margin-top:-1px;
    padding:20px 0;
}
.top_guide_item01{
    width:50%;
}
.top_guide_item02{
    font-weight:400;
    width:50%;
}
.point{
    font-size:1em !important;
    font-weight:400;
    margin-top:10px;
    margin-bottom:0 !important;
}
.point a{
    text-decoration: underline;
    text-underline-offset: 5px;
}

.fee{
    padding:70px 30px;
    display:flex;
    justify-content: space-between;
    align-items: flex-start;
}
.fee_ttl{
    display:flex;
    align-items: center;
    gap:10px;
    font-size:1.8em;
    letter-spacing: 0.05em;
    position:sticky;
    top:70px;
}
.fee_desult{
    width:50%;
    display:flex;
    flex-direction: column;
    gap:100px;
}
.fee_item{
    display:flex;
    border-top:1px solid #282828;
    border-bottom:1px solid #282828;
    margin-top:-1px;
    padding:20px 0;
}
.fee_item01{
    width:50%;
}
.fee_item02{
    font-weight:400;
    width:50%;
}
.fee_item02 > span{
    font-size:1.2em;
}
.fukushi_btn a{
    position:relative;
    padding-right:1.5em;
    text-decoration: underline;
    text-underline-offset: .5em;
    display:flex;
    width:max-content;
    margin-left:auto;
    margin-top:10px;
    font-size:1.1em;
}
.fukushi_btn a::after{
    content:"";
    position:absolute;
    top:50%;
    right:0;
    transform:translateY(-50%);
    width:10px;
    height:14px;
    background-image:url(../images/sankaku_arr.svg);
    background-repeat:no-repeat;
    background-size: cover;
    transition:all .4s;
}

/*道の駅*/
.top_michinoeki{
    padding:150px 0;
}
.swiper2 {
    overflow: hidden;
    height:90vh;
}
.swiper-img2{
    width:100%;
    height:90svh;
    overflow: hidden;
}
.swiper-img2 img{
    width:100%;
    height:100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1); 
    transition: transform 12s linear;
}
.swiper2 .swiper-slide:not(.swiper-slide-active) img {
    transform: scale(1.15);
}

.top_michinoeki_txtArea{
    max-width:900px;
    margin:0 auto;
    padding:0 40px;
}
.top_michinoeki_txtArea > p{
    font-weight:400;
    line-height: 2;
    margin-top:40px;
    margin-bottom:70px;
}
.top_michinoeki_info > h4{
    font-size:1.4em;
    margin-bottom:20px;
}
.top_michinoeki_list{
    margin-top:30px;
    margin-bottom:70px;
}
.top_michinoeki_item{
    display:flex;
    border-top:1px solid #282828;
    border-bottom:1px solid #282828;
    margin-top:-1px;
    padding:20px 0;
}
.top_michinoeki_item01{
    width:50%;
}
.top_michinoeki_item02{
    font-weight:400;
    width:50%;
}

/*オンラインショップ*/
.top_online{
    padding:40px 0 150px;
}
.top_online_txtArea{
    max-width:900px;
    margin:0 auto;
    padding:0 40px;
}
.top_online_txtArea > p{
    font-weight:400;
    line-height: 2;
    margin:60px 0;
}

/*アクセス*/
.top_access{
    background:#FBF8EF;
    padding:150px 40px;
}
.top_access_inner{
    max-width:1200px;
    margin:0 auto;
}
.top_access_inner > h2{
    font-size:1.8em;
    color:#00414C;
    text-align: center;
    margin-bottom:130px;
}
.top_ac_wrapper{
    display:flex;
    gap:50px;
    margin-bottom:70px;
}
.top_ac_map{
    width: 100%;
    max-width: 720px;
    aspect-ratio: 3 / 2;
}
.top_ac_map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.top_ac_txtArea{
    width:50%;
    display:flex;
    flex-direction: column;
    gap:40px;
}
.top_ac_txt_list01,
.top_ac_txt_list02{
    display:flex;
    flex-direction: column;
    gap:20px;
}
.top_ac_txt_item > p{
    position:relative;
    padding-left:1.5em;
    font-size:1.1em;
    margin-bottom:.5em;
}
.top_ac_txt_item > p::before{
    content:"";
    position:absolute;
    top:50%;
    left:0;
    transform:translateY(-50%);
    background-image:url(../images/title_icon01.svg);
    background-repeat:no-repeat;
    background-size: cover;
    width:14px;
    height:14px;
}
.top_ac_txt_item > span{
    font-weight:400;
}
.top_ac_txt_item a{
    text-decoration: underline;
    transition:all .4s;
}

/*フッター*/
.footer{
    background:#00414C;
    color:#fff;
    padding:150px 80px;
}
.footer a{
    color:#fff;
}
.f_content01{
    display:flex;
    justify-content: space-between;
}
.f_logo img{
    max-width:160px;
    width:100%;
}

.f_sns_list{
    display:flex;
    align-items: center;
    gap:15px;
    margin-top:20px;
    margin-bottom:80px;
}
.f_info ul li a{
    font-weight:400;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size:.9em;
    transition:all .4s;
}

.f_rightArea{
    display:flex;
    gap:100px;
}
.f_guide > p,
.f_about > p{
    font-weight:400;
    margin-bottom:20px;
    font-size:.8em;
}
.f_list{
    display:flex;
    flex-direction: column;
    gap:20px;
    font-size:.9em;
}
.f_guide_list li a,
.f_about_list li a{
    text-decoration: underline;
    text-underline-offset: 0.3em;
    transition:all .4s;
}
.f_other_list li a{
    display:flex;
    align-items: center;
    gap:5px;
    transition:all .4s;
}

.f_underArea{
    border-top:1px solid #fff;
    margin-top:30px;
    padding-top:70px;
    display:flex;
    justify-content: space-between;
}
.f_add{
    display:flex;
    gap:100px;
}
.f_honkan > p,
.f_shinkan > p{
    margin-bottom:10px;
}
.f_add_list li{
    font-weight:400;
    font-size:.9em;
}
.f_add_list li a{
    text-decoration: underline;
    transition:all .4s;
}
.pagetop_txt{
    font-weight:400;
    font-size:.9em;
    text-decoration: underline;
    text-underline-offset: .3em;
    position:relative;
}
.pagetop_txt::before{
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-right:.5em;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid #fff;
    transition:all .4s;
}

.copyright{
    opacity:.6;
    font-weight:400;
    text-align: right;
    margin-top:1em;
}
/*バナー*/
.bnArea{
    margin:20px 0;
}
.bn_img{
    box-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    width:max-content;
}
.bn_img a{
    cursor: pointer;
}
.bn_img img{
    width:250px;
}
@media screen and (max-width:768px){
    .bn_img img{
        width:200px;
    }
}


/**
下層ページ
**/

/*温泉案内*/
.mv_inner2{
    position:relative;
}
.mv_img2{
    width:100%;
    height:100svh;
}
.mv_img2 img{
    width:100%;
    height:100%;
    object-fit: cover;
    object-position: center;
    filter:brightness(70%);
}
.main_ttl{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    color:#fff;
    letter-spacing: 0.05em;
    font-size:1.8em;
    text-align: center;
    width:max-content;
    font-weight:500;
    background:rgba(106, 141, 172, 0.2);
    border-radius:5px;
    padding:0 5px;
}

.page-link{
    position:absolute;
    bottom:30px;
    left:60px;
}
.page-link-list{
    display:flex;
    flex-direction: column;
    align-items: flex-start;
    gap:2em;
}
.page-link-item a{
    color:#fff;
    font-weight:400;
    position:relative;
    display:flex;
    flex-direction: column;
    transition:all .4s;
}
/*.page-link-item a::after{
    content:"";
    position:absolute;
    bottom:-12px;
    left:50%;
    background-image:url(../images/page_link_icon.svg);
    background-repeat:no-repeat;
    background-size:cover;
    width:15px;
    height:9px;
    transform:translate(-50%,0);
    transition:all .4s;
}*/

/*魅力*/
.about01{
    padding:200px 0 150px;
}
.about_ttl > h2{
    position:relative;
    color:var(--font-color-main);
    letter-spacing: 0.05em;
    font-size:1.8em;
    text-align: center;
}
.about_ttl > h2::before{
    content:"";
    position:absolute;
    top:-130px;
    left:50%;
    width:1px;
    height:0;
    background:var(--font-color-main);
    transition:all .8s;
}
.about_ttl > h2.visible::before {
    height: 100px;
}
.about01_inner{
    position:relative;
}
.content_bg{
    position:absolute;
    left:0;
    z-index:-1;
    background:#fbf8ef;
    /*border-radius:0 10px 0 0;*/
}
.content_bg{
    top:-84px;
    /*width:80.5555555556vw;*/
    width:100%;
    height:500px;
}

.about01_content{
    display:flex;
    justify-content: space-between;
    gap:4vw;
    margin:80px 0 100px 10vw;
}
.about01_content > p{
    flex:1;
    font-weight:400;
    line-height: 2;
}
.about01_img{
    aspect-ratio: 720 / 670;
    width:50%;
}
.about01_img img{
    width:100%;
    height:100%;
    object-fit: cover;
}
.about01_content2{
    display:flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-end;
    gap:4vw;
    margin:80px 10vw 0 0;
}

.about01-2{
    padding:0 40px 150px;
}
.about01-2_inner{
    max-width:1200px;
    margin:0 auto;
}
.about01-2_inner > h2{
    color:var(--font-color-main);
    font-size:1.8em;
    text-align: center;
    margin-bottom:50px;
}
.about01-2_inner > p{
    font-weight:400;
    line-height: 2;
    margin-bottom:100px;
}
.about01-2_list{
    max-width:900px;
    margin:0 auto;
}
.about01-2_item{
    display:flex;
    align-items: stretch;
    border-top:1px solid var(--font-color-main);
    border-bottom:1px solid var(--font-color-main);
    margin-bottom:-1px;
}
.about01-2_item > dt{
    padding:30px 0;
    background:var(--font-color-main);
    color:#fff;
    width:30%;
    text-align: center;
    border-bottom:1px solid #fff;
    display:flex;
    align-items: center;
    justify-content: center;
}
.about01-2_item:last-of-type > dt{
    border-bottom:none;
}
.about01-2_item > dd{
    width:70%;
    padding:30px 0 30px 2em;
    font-weight:400;
    display:flex;
    align-items: center;
}
.about01-2_list > small{
    font-size:1em;
    font-weight:400;
    line-height: 3;
}

/*魅力スライド*/
.swiper3{
    overflow: hidden;
    height:min(90vh,900px);
}
.swiper3 .swiper-wrapper{
    height:100%;
}
.swiper3 .swiper-slide{
    height:100%;
}
.swiper-img3 img{
    width:100%;
    height:100%;
    object-fit: cover;
    display: block;
}

.about01-3{
    padding:150px 0;
}
.about01-3_content1{
    padding:0 40px 150px;
}
.about01-3_content1_inner{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    align-items: center;
    justify-content: center;
    gap:8vw;
}
.about01-3_content1_inner > h2,
.about01-3_content2_inner > h2{
    writing-mode: tb;
    letter-spacing: 0.1em;
    font-size:1.8em;
    color:var(--font-color-main);
}
.about01-3_content1_inner > p,
.about01-3_content2_inner > p{
    font-weight:400;
    line-height: 2;
    width:70%;
}
.about01-3_content2{
    background:#FBF8EF;
    padding:150px 40px;
}
.about01-3_content2_inner{
    display:flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap:8vw;
    max-width:1200px;
    margin:0 auto;
}

.about01-3_content3{
    padding:100px 40px 0;
    max-width:1200px;
    margin:0 auto;
}
.about01-3_content3 > h2{
    color:var(--font-color-main);
    font-size:1.8em;
    text-align: center;
    margin-bottom:40px;
}
.bunseki_list{
    display:flex;
    gap:6vw;
    align-items: flex-start;
    justify-content: center;
}
.bunseki_item{
    max-width:300px;
}
.bunseki_item img{
    width:100%;
    height:100%;
    object-fit: cover;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.bunseki_item a{
    transition:all .4s;
}

/*本館*/
.about02{
    padding:150px 0;
}
.about02_inner{
    position:relative;
}
.content_bg2{
    position:absolute;
    right:0;
    left:auto;
    /*border-radius:10px 0 0 0;*/
    height:1000px;
}
.about02_content{
    max-width:800px;
    margin:0 auto;
    text-align: center;
    padding:0 40px;
}
.about02_content > h2{
    margin:60px 0;
    color:var(--font-color-main);
    font-size:1.6em;
    letter-spacing: 0.05em;
}
.about02_content > p{
    text-align: left;
    font-weight:400;
    line-height: 2;
}

.about02_txt{
    padding:100px 40px;
    max-width:800px;
    margin:0 auto;
}
.about02_txt > h2{
    position:relative;
    left:50%;
    transform:translateX(-50%);
    color: var(--font-color-main);
    letter-spacing: 0.05em;
    writing-mode: tb-rl;
    font-size:1.6em;
    margin-bottom:50px;
}
.about02_txt > h2::before{
    content:"";
    position:absolute;
    top:-75px;
    left:50%;
    width:1px;
    height:0;
    background:var(--font-color-main);
    transition:all .8s;
}
.about02_txt > h2.visible2::before{
    height:50px;
}
.about02_txt > p{
    font-weight:400;
    line-height: 2;
}
.about02_txt > p{
    margin-bottom:30px;
}

/*フロアマップ*/
.floormap_wrapper{
    padding:0 40px 100px;
}
.floormap_inner{
    max-width:1200px;
    margin:0 auto;
    text-align: center;
}
.floormap_inner > h2{
    text-align: center;
    font-size:1.8em;
    letter-spacing: 0.05em;
    color:var(--font-color-main);
    margin-bottom:30px;
}
.floormap_inner > p{
    font-weight:400;
    text-align: left;
}
.floormap_photo{
    position:relative;
    width:100%;
    aspect-ratio: 4 / 3;
    min-height:300px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    margin-bottom:30px;
}
.floormap_photo object{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:block;
}

/*ギャラリー*/
/*.gallery_slide > p{
    font-weight:400;
    margin-top:10px;
    text-align: center;
}
.gallery_slide{
    max-width:980px;
    margin:0 auto;
    padding:0 40px;
}
.swiper4{
    overflow: hidden;
}
.slider-thumbnail .swiper-slide {
    opacity: .5;
    transition: opacity .5s;
}
.slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
    opacity: 1;
}

.gallery_slide_img img{
    width:100%;
    height:100%;
    object-fit: cover;
}

.slider_thumbnail {
    margin-top: 20px;
}
.gallery_thumbnail_wrapper{
    display:grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    row-gap:10px !important;
}
.gallery_thumbnail_img a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}*/

/*新館*/
.about03{
    padding:200px 0 150px; 
}
.about03_inner{
    position:relative;
}
.floormap_wrapper2{
    margin-top:80px;
}

/*ふくしの湯*/
.about04{
    padding:200px 0 80px;
}
.about04_inner{
    position:relative;
}
.about04_content{
    max-width:800px;
    margin:0 auto;
    color:var(--font-color-main);
    font-weight:400;
    line-height: 2;
    padding:100px 40px 0 40px;
}
.about04_content > p strong{
    font-size:1.1em;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.fukushi_txtArea{
    padding:100px 40px;
}
.fukushi_txtArea_inner{
    max-width:1000px;
    margin:0 auto;
    display:flex;
    flex-direction: column;
    gap:60px;
}
.fukushi_ttl{
    text-align: center;
    color:var(--font-color-main);
    font-size:1.8em;
    display:flex;
    align-items: center;
    justify-content: center;
    gap:10px;
    position:relative;
    max-width: max-content;
    margin-top:0;
    margin-bottom:60px;
    margin-left:auto;
    margin-right:auto;
}
.fukushi_ttl::before{
    content:"";
    position:absolute;
    top:4px;
    left:-1.8em;
    width:35px;
    height:35px;
    aspect-ratio: 1 / 1;
    background-image:url(../images/title_icon02.svg);
    background-repeat:no-repeat;
    background-size: cover;
}
.fukushi_txt ul li{
    font-weight:400;
    position:relative;
    padding-left:1.5em;
    line-height: 2;
}
.fukushi_txt ul li::before{
    content:"●";
    position:absolute;
    top:0;
    left:0;
}

.fukushi_time-table{
    border:2px solid #00414C;
    border-radius:5px;
    max-width:500px;
    margin:50px auto 0;
    padding:10px;
}
.fukushi-hours{
    width:100%;
    border-collapse: collapse;
}
.fukushi-hours th,
.fukushi-hours td{
    border-top: 1px solid #2f6f73;
    padding:7px;
}
.fukushi-hours th:first-child{
    width:30%;
    font-weight:400;
}
.fukushi-hours thead th{
    color:var(--font-color-main);
    border-top:none;
}
.fukushi-hours td{
    text-align: center;
}
.fukushi_time_point{
    max-width:500px;
    margin:10px auto 0;
    font-weight:400;
}
.other_contact{
    margin-top:30px;
}
.other_contact a{
    text-decoration: underline;
    text-underline-offset: 5px;
    transition:all .4s;
}
.other_contact > p{
    font-weight:400;
}

/**
本館・新館の比較
**/
.hikaku{
    padding:150px 40px;
    background:#fbf8ef;
}
.hikaku_inner{
    max-width:1200px;
    margin:0 auto;
}
.hikaku_inner > h2{
    color:var(--font-color-main);
    font-size:1.8em;
    text-align: center;
    margin-bottom:50px;
}
.hikaku_btn_wrap{
    text-align: center;
    margin-top:20px;
}
.hikaku_more_btn{
    background:#fff;
    border:1px solid #282828;
    border-radius:5px;
    padding:10px 20px;
    cursor: pointer;
    color:#282828;
    font-size:.9em;
}

/*ご利用ガイド*/
.guide01{
    padding:80px 40px;
}
.guide01_inner{
    max-width:900px;
    margin:0 auto;
    display:flex;
    flex-direction: column;
    gap:8vw;
}
.guide_ttl{
    text-align: center;
    color:var(--font-color-main);
    font-size:1.8em;
    display:flex;
    align-items: center;
    justify-content: center;
    gap:10px;
    position:relative;
    max-width: max-content;
    margin-top:0;
    margin-bottom:60px;
    margin-left:auto;
    margin-right:auto;
}
.guide_ttl::before{
    content:"";
    position:absolute;
    top:4px;
    left:-1.8em;
    width:35px;
    height:35px;
    aspect-ratio: 1 / 1;
    background-image:url(../images/title_icon02.svg);
    background-repeat:no-repeat;
    background-size: cover;
}
.guide_list{
    max-width:900px;
    margin:0 auto;
}
.guide_item{
    display:flex;
    align-items: stretch;
    border-top:1px solid var(--font-color-main);
    border-bottom:1px solid var(--font-color-main);
    margin-bottom:-1px;
}
.guide_item > dt{
    padding:30px 0;
    background:var(--font-color-main);
    color:#fff;
    width:30%;
    text-align: center;
    border-bottom:1px solid #fff;
    display:flex;
    align-items: center;
    justify-content: center;
}
.guide_item > dd{
    width:70%;
    padding:15px 0 15px 2em;
    font-weight:400;
    display:flex;
    align-items: center;
}
.guide_item:last-of-type > dt{
    border-bottom:none;
}
.guide_item2{
    text-align: center;
    border-top:1px solid var(--font-color-main);
    border-bottom:1px solid var(--font-color-main);
}
.guide_item2 > dd{
    padding:30px 0;
    font-weight:400;
    background:#FBF8EF;
}

.guide_fee_list{
    max-width:900px;
    margin:0 auto;
}
.guide_fee_item{
    display:flex;
    align-items: stretch;
    border-top:1px solid var(--font-color-main);
    border-bottom:1px solid var(--font-color-main);
    margin-bottom:-1px; 
}
.guide_fee_item > dt{
    width:50%;
    padding:30px 0;
    text-align: center;
    background:var(--font-color-main);
    color:#fff;
}
.guide_fee_item dt:first-child{
    border-right:1px solid #fff;
}
.guide_fee_item > dd{
    width:50%;
    text-align: center;
    font-weight:400;
    padding:30px 0;
    display:flex;
    align-items: center;
    justify-content: center;
}
.guide_fee_item dd:first-child{
    border-right:1px solid var(--font-color-main);
}
.guide_fee_list > p{
    margin-top:30px;
    font-weight:400;
}
.guide_fee_list > p a{
    color:#7F4C4C;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.guide_list > p{
    font-weight:400;
    margin-top:30px;
}
.guide_content2{
    margin-top:60px;
}
.guide_content2 > h3{
    font-size:1.6em;
    margin-bottom:30px;
    letter-spacing: 0.05em;
}
.guide_content2 > p{
    font-weight:400;
}
.guide_content2 > ul li{
    font-weight:400;
    position:relative;
    padding-left:1.5em;
    line-height: 2;
}
.guide_content2 > ul li::before{
    content:"●";
    position:absolute;
    top:0;
    left:0;
}

/*アクセス*/
.access{
    padding:80px 40px;
}
.access_inner{
    max-width:1200px;
    margin:0 auto;
}
.access_wrapper{
    display:flex;
    flex-direction: column;
    gap:6vw;
}
.access_ttl{
    display:flex;
    align-items: center;
    justify-content: center;
    margin-bottom:30px;
    gap:10px;
    font-size:1.6em;
    color:var(--font-color-main);
}
.access_ttl img{
    max-width:40px;
}
.access_img{
    position:relative;
}
.access_img::after{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:3em;
    height:3em;
    background-color:rgba(0,65,76,0.5);
    background-image:url(../images/zoom_icon.svg);
    background-repeat:no-repeat;
    background-size:30px;
    background-position:center center;
}
.access_car > p,
.access_train > p{
    font-weight:400;
}
.access_train > ul li a{
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight:400;
    transition:all .4s;
}
.access_train > ul{
    margin-top:20px;
}
.access_map > p{
    margin-top:20px;
}
.access_map > p a{
    position:relative;
    padding-left:1.5em;
    text-decoration: underline;
    text-underline-offset: 5px;
    font-weight:400;
}
.access_map > p a::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:20px;
    height:20px;
    background-image:url(../images/guide/map_icon.svg);
    background-repeat:no-repeat;
    background-size:cover;
}

/*Q&A*/
.faq{
    max-width:900px;
    margin:80px auto;
    background:#FBF8EF;
    border-radius: 10px;
}
.faq_inner{
    padding:40px;
}
.faq_cate{
    margin-bottom:130px;
}
.faq_cate_list{
    display:grid;
    grid-template-columns: repeat(6,1fr);
    gap:2vw;
    text-align: center;
}
.faq_cate_item a{
    border-bottom:1px solid #282828;
}

.faq_content_wrapper{
    display:flex;
    flex-direction: column;
    gap:100px;
}
.faq_content{
    padding-top:20px;
}
.faq_content > h2{
    text-align: center;
    margin-bottom:60px;
}
.accordion{
    border-top:1px solid var(--font-color-main);
    border-bottom:1px solid var(--font-color-main);
    margin-bottom:-1px;
}
.accordion-content {
    display:flex;
    gap:10px;
    padding: 15px 20px 30px;
    font-weight:400;
}
.accordion-content span a{
    color:#7F4C4C;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.accordion-header {
    padding: 30px 45px 30px 20px;
    transition: all .4s;
    cursor: pointer;
    position: relative;
    display:flex;
    align-items: flex-start;
    gap:10px;
    font-size:1.2em;
}
.accordion-header::before,
.accordion-header::after{
    position:absolute;
    content:'';
    top:0;
    right:20px;
    bottom:0;
    width:20px;
    height:1px;
    margin:auto;
    background:#282828;
}
.accordion-header::after{
    transform:rotate(-90deg);
    transition:transform 0.3s;
}
.accordion-header.active::after{
    transform:rotate(0deg);
}

.faq_q{
    color:var(--font-color-main);
}
.faq_a{
    color:#7F4C4C;
    font-weight:bold;
    font-size:1.2em;
}

/*楽しみ方・周辺観光*/
.sightseeing01{
    padding:80px 40px;
}
.sightseeing01_inner{
    max-width:1200px;
    margin:0 auto;
}
.ss_map_txt{
    max-width:500px;
    margin:0 auto 100px;
}
.ss_ttl{
    text-align: center;
    font-size:1.6em;
    letter-spacing: 0.05em;
    margin-bottom:30px;
}
.ss_map_txt > p{
    font-weight:400;
    line-height: 2;
}

.ss_map > h3{
    font-size:1.6em;
    margin-bottom:30px;
    letter-spacing: 0.05em;
    text-align: center;
}
.ss_map_list{
    display:flex;
    justify-content: center;
    gap:130px;
}
.ss_map_item{
    max-width:400px;
}
.ss_map_item img{
    box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.ss_map_item > span{
    font-weight:400;
    font-size:.9em;
}

.sightseeing02{
    padding:80px 40px;
}
.sightseeing02_inner{
    max-width:1200px;
    margin:0 auto;
}
.in_spot_list{
    display:grid;
    grid-template-columns: repeat(2,1fr);
    column-gap:8vw;
    row-gap:4vw;
}
/*かまがたにスライド*/
.swiper7{
    width: 100%;
    overflow: hidden;
}


.in_spot_item {
    width:100%;
    min-width:0;
}
.in_spot_img{
    width:100%;
    overflow: hidden;
}
.in_spot_img img{
    width:100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.in_spot_txt > h4{
    font-size:1.4em;
    margin-bottom:10px;
    margin-top:10px;
}
.in_spot_txt > p{
    font-weight:400;
    line-height: 2;
}
.in_spot_info{
    margin-top:20px;
}
.in_spot_info > li{
    font-weight:400;
    margin-bottom:20px;
}
.in_spot_info > li span{
    font-size:1.1em;
    font-weight:bold;
}
.in_spot_info > li a{
    position:relative;
    font-weight:bold;
    text-decoration: underline;
    text-underline-offset: 5px;
    padding-right:1.5em;
    color:#7F4C4C;
}
.in_spot_info > li a::after{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:18px;
    height:18px;
    background-image:url(../images/sightseeing/gaibu_link.svg);
    background-repeat:no-repeat;
    background-size:cover;
}

.sightseeing03{
    padding:80px 40px;
}
.sightseeing03_inner{
    max-width:1200px;
    margin:0 auto;
}

.tozan{
    background:#FBF8EF;
    padding:80px 40px;
}
.tozan_inner{
    max-width:1200px;
    margin:0 auto;
}
.tozan_txt{
    max-width:500px;
    margin:0 auto 80px;
}
.tozan_ttl{
    text-align: center;
    font-size:1.6em;
    margin-bottom:30px;
}
.tozan_txt > p{
    font-weight:400;
    line-height: 2;
}
#climbs_map{
    height:500px;
    width:100%;
}
.climbs_map_ttl{
    text-align: center;
    font-size:1.6em;
    margin-bottom:30px;
}

.climbs_mountains{
    display:grid;
    grid-template-columns: repeat(2,1fr);
    gap: 60px;
    align-items: flex-start;
    justify-content: center;
    padding:70px 0;
}
.climbs_mountains .swiper3{
    height:auto;
}
.climbs_mountains .mountain_item{
    flex: 0 1 calc(50% - 20px);
    min-width: 200px;
}
.swiper-img4 a{
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
}
.swiper-img4 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.swiper-img4{
    position:relative;
}
.swiper-img4::after{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:3em;
    height:3em;
    background-color:rgba(0,65,76,0.5);
    background-image:url(../images/zoom_icon.svg);
    background-repeat:no-repeat;
    background-size:30px;
    background-position:center center;
}

.mount_ttl_box{
    display:flex;
    gap:2em;
    align-items: center;
    padding:10px 0;
}
.mount_ttl_box > h3{
    font-size:1.4em;
}
.climbs_link a{
    position:relative;
    font-weight:400;
    padding-left:1.5em;
    text-decoration: underline;
    text-underline-offset: 5px;
}
.climbs_link a::before{
    content:"";
    position:absolute;
    top:50%;
    left:0;
    transform:translateY(-50%);
    background-image:url(../images/sightseeing/map_icon.svg);
    background-repeat:no-repeat;
    background-size:cover;
    width:18px;
    height:18px;
}
.climbs_comment > p{
    font-weight:400;
    line-height: 2;
}
.climbs_comment_list{
    display:flex;
    flex-direction: column;
    gap:12px;
    padding-top:15px;
}
.climbs_comment_list li{
    display:flex;
    flex-direction: column;
    font-weight:400;
}
.climbs_comment_list li span{
    font-size:1.1em;
    font-weight:bold;
}
.climbs_comment_list li a{
    text-decoration: underline;
    text-underline-offset: 5px;
}

/*採用情報*/
.rec_bg{
    background:#FBF8EF;
}
.recruit01{
    padding:100px 40px;
}
.recruit01_inner{
    max-width:1200px;
    margin:0 auto;
}
.recruit_message{
    max-width:800px;
    margin:0 auto;
}
.recruit_message_sub{
    text-align: center;
    margin-bottom:30px;
    font-size:1.4em;
}
.recruit_message > p{
    font-weight:400;
    line-height: 2;
}

.person{
    padding-top:100px;
}
.person_wrapper{
    max-width:800px;
    margin:0 auto;
}
.person_list{
    display:grid;
    grid-template-columns: repeat(2,1fr);
    gap:20px;
}
.person_item{
    background:#fff;
    border-radius:10px;
    padding:30px;
    display:flex;
    align-items: center;
    justify-content: center;
    gap:30px;
}
.person_content{
    display:flex;
    flex-direction: column;
    gap:10px;
    width:70%;
}
.person_num{
    color:var(--font-color-main);
}

.recruit02{
    background:#f5f5f5;
    padding:100px 40px;
    border-radius:200px 0 200px 0;
}
.recruit02_inner{
    max-width:1200px;
    margin:0 auto;
}
.recruit02_inner > p{
    max-width:800px;
    margin:20px auto 0;
    font-weight:400;
    line-height: 2;
}
.swiper6{
    overflow: hidden;
    max-width:800px;
    margin:0 auto;
    position:relative;
}
.swiper-wrapper6{
    cursor: pointer;
}
.swiper-img6{
    aspect-ratio: 4 / 3;
}
.swiper-img6 img{
    width:100%;
    height:100%;
    object-fit: cover;
}
.swiper-pagination{
    position:absolute;
}
.swiper-pagination-bullets{
    justify-content: flex-start;
    display:flex;
    padding-left:20px;
}
.swiper-pagination-bullet-active{
    background:var(--font-color-main) !important;
}

.work_list_wrapper{
    display:flex;
    justify-content: center;
}
.work_list{
    display:flex;
    flex-direction: column;
    gap:10px;
    margin:50px 0;
}
.work_item{
    position:relative;
    padding-left:1.5em;
}
.work_item::before{
    content:"●";
    position:absolute;
    top:50%;
    left:0;
    transform:translateY(-50%);
}
.work_point_wrapper > h2{
    text-align: center;
    margin-bottom:20px;
}
.work_point_list{
    display:flex;
    justify-content: center;
    align-items: center;
    gap:3vw;
}
.work_point_item{
    background:#fff;
    width:250px;
    aspect-ratio: 1 / 1;
    padding:20px;
    border-radius: 50%;
    display:flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color:var(--font-color-main);
}

.recruit03{
    padding:100px 40px;
}
.rec_tab{
    max-width:1000px;
    margin:0 auto;
}
.bl_tabList{
    display:flex;
    overflow-x: scroll;
    scrollbar-width: none;
}

.bl_tabContent{
    padding:80px;
    background:#fff;
}
.bl_tabContent .rec_list {
    display: none;
}
.bl_tabContent .rec_list.tabactive {
    display: block;
}
.bl_tabList li{
    min-width: calc(100% / 2);
    flex:0 0 auto;
}
.bl_tabList li a {
    width:100%;
    height:100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,65,76,0.2);
    padding: 30px 10px;
    color:#fff;
    transition:all .4s;
}
.bl_tabList li a.tabactive{
    background:var(--font-color-main);
    color:#fff;
    cursor:text;
}

.rec_list > dl{
    display:flex;
    padding:30px 0;
    border-bottom:1px solid var(--font-color-main);
}
.rec_list > dl > dt{
    width:30%;
    color:var(--font-color-main);
}
.rec_list > dl > dd{
    flex:1;
    font-weight:400;
}
.rec_list > dl > dd ul li{
    position:relative;
    padding-left:1em;
}
.rec_list > dl > dd ul li::before{
    content:"・";
    position:absolute;
    top:0;
    left:0;
}

.slider-wrapper{
    display:flex;
    overflow:hidden;
    width:100%;
    line-height: 1;
}
.slider {
    flex:0 0 auto;
    white-space: nowrap;
    font-size:9em;
    overflow: hidden;
    padding-left:1em;
    color:rgba(0,65,76,0.2);
    font-weight:400;
    letter-spacing: 0.05em;
}
.slider:nth-child(odd) {
    animation: loop 80s -40s linear infinite;
}
.slider:nth-child(even) {
    animation: loop2 80s linear infinite;
}
@keyframes loop {
    0% {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
@keyframes loop2 {
    0% {
    transform: translateX(0);
    }
    to {
    transform: translateX(-200%);
    }
}

.entry_inner{
    padding:0 40px 100px;
}
.entry_info{
    max-width:1000px;
    margin:0 auto;
    background:#f5f5f5;
    border-radius:100px 0 100px 0;
    text-align: center;
    padding:100px 40px;
}
.entry_info > h2{
    margin-bottom:50px;
}
.entry_info > h4{
    color:#7F4C4C;
    margin-bottom:20px;
}
.entry_info > p{
    font-weight:400;
    line-height: 2;
}
.entry_info > p a{
    color:#7F4C4C;
    text-decoration: underline;
    text-underline-offset: 5px;
}

/*ライブカメラ*/
.header2{
    position:relative;
}
.gnav_item2 a{
    color:#282828;
}
.gnav_item2 a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:100%;
    height:1px;
    background:#282828;
    transform:scaleX(0);
    transform-origin: left;
    transition:all .4s;
}
.mv_img3{
    width:80%;
    height:100%;
    margin:0 auto;
}
.mv_img3 video{
    width:100%;
    height:100%;
    object-fit: cover;
}
#sound{
    position:absolute;
    left:20px;
}
#sound_button{
    width:150px;
    display:inline-block;
    border:1px solid var(--font-color-main);
    border-radius:5px;
    text-align: center;
    background:none;
    padding:10px;
    cursor: pointer;
    transition:all .4s;
    position:relative;
    color:#282828;
}
#sound_button::before{
    content:"";
    position:absolute;
    left:10px;
    top:50%;
    transform:translateY(-50%);
    width:20px;
    height:20px;
    background:url(../images/live/sound_on.svg) no-repeat;
    background-size:cover;
}
#sound_button.sound_on::before{
    background:url(../images/live/sound_off.svg) no-repeat;
    background-size:cover;
}

.live_bg{
    background:#FBF8EF;
}
.live_wrapper{
    padding:100px 40px;
}
.live_inner{
    max-width:1000px;
    margin:0 auto;
}
.live_txt{
    display:flex;
    justify-content: center;
    font-weight:400;
    line-height: 2;
    margin-bottom:80px;
}
.livecam_wrapper{
    max-width:640px;
    margin:0 auto;
}
.reloadbtn{
    position:relative;
    margin-top:30px;
}
.reloadbtn input{
    background:none;
    border:none;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding-left:1.5em;
    color:#282828;
    font-size:.9em;
}
.reloadbtn::before{
    content:"";
    position:absolute;
    top:50%;
    left:0;
    transform:translateY(-50%);
    width:20px;
    height:20px;
    background:url(../images/live/reload.svg) no-repeat;
    background-size:cover;
}
.live_note{
    background:#fff;
    padding:50px;
    margin-top:100px;
    border-radius:10px;
}
.live_note_inner > h2{
    text-align: center;
    margin-bottom:30px;
}
.live_note_inner ul{
    display:flex;
    flex-direction: column;
    gap:10px;
}
.live_note_inner ul li{
    position:relative;
    padding-left:1em;
    font-weight:400;
}
.live_note_inner ul li::before{
    content:"・";
    position:absolute;
    top:0;
    left:0;
}

/*イベントカレンダー*/
.event_wrapper{
    padding:100px 40px;
}
.event_inner{
    max-width:900px;
    margin:0 auto;
}
.event_inner > p{
    font-weight:400;
    line-height: 2;
    margin-bottom:100px;
}
.calender_list{
    display:grid;
    justify-content: center;
    align-items: flex-start;
    grid-template-columns: repeat(2,1fr);
    gap:50px;
}
.calender_item > h2{
    text-align: center;
    margin-bottom:30px;
}
.calender_item_img{
    aspect-ratio: 210 / 297;/*A4比率*/
}
.calender_item_img img{
    width:100%;
    height:100%;
    object-fit: cover;
    box-shadow:2px 2px 4px rgba(0,0,0,0.3);
}
.calender_item > h4{
    font-weight:400;
    margin-top:20px;
    background:var(--font-color-main);
    color:#fff;
    width: max-content;
    border-radius:5px;
    padding:2px 5px;
}
.calender_item > p{
    font-weight:400;
    line-height: 2;
}

/*お知らせ*/
.news{
    padding:0 40px 100px;
}
.news_inner{
    max-width:1000px;
    margin:0 auto;
}
.mv_img4{
    width:100%;
    height:50vh;
}
.mv_img4 img{
    opacity:0.2;
}
.main_ttl2{
    color:#282828;
}
.bl_tabList2{
    display:flex;
    justify-content: center;
    align-items: center;
    gap:3vw;
    margin-bottom:60px;
}
.bl_tabList2 li a{
    font-weight:400;
    text-decoration:underline;
    text-underline-offset: 3px;
}
.bl_tabList2 .tabactive2{
    background:var(--font-color-main);
    color:#fff;
    border-radius:5px;
    padding:5px;
    text-decoration:none;
}
.bl_tabContent2 > div{
display:none;
}
.bl_tabContent2 > div.tabactive2{
display:block;
}

.news_none{
    font-weight:500;
}
/*ページネーション*/
.pagenation{
    display:flex;
    align-items: center;
    justify-content: center;
    font-weight:400;
    padding:50px 0 0;
}
.wp-pagenavi{
    display:flex;
}
.wp-pagenavi a,
.wp-pagenavi span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:5px;
    width:40px;
    height:40px;
    aspect-ratio: 1 / 1;
    border:1px solid #00414c;
    background:#00414c;
    color:#fff;
    transition:all .4s;
}
.wp-pagenavi span.current{
    font-weight:500 !important;
    border-color:#00414c;
    color:#282828;
    background:transparent;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink{
    font-size:0;
}
.previouspostslink::before{
    content:"";
    position:relative;
    top:0;
    left:2px;
    transform:rotate(45deg);
    width:6px;
    height:6px;
    border-left:2px solid #fff;
    border-bottom:2px solid #fff;
}
.nextpostslink::before{
    content:"";
    position:relative;
    top:0;
    left:-2px;
    transform:rotate(45deg);
    width:6px;
    height:6px;
    border-right:2px solid #fff;
    border-top:2px solid #fff;
}


/*お知らせ詳細*/
.news_single_txt a{
    color:#7F4C4C;
    text-decoration: underline;
    text-underline-offset: 5px;
    transition:all .4s;
}
.news_date2{
    font-weight:400;
    margin-bottom:10px;
}
.news_cate2{
    font-weight:400;
    width:max-content;
    margin-bottom:20px;
}
.news_single_ttl{
    margin-bottom:50px;
}
.news_single_txt{
    font-weight:400;
    line-height: 2;
}
.news_view{
    text-align: center;
    margin-top:50px;
}
.news_view_inner{
    display:flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom:30px;
    position: relative;
}
/*前の記事　次の記事*/
.prev_post a{
    padding-left:1em;
    font-size:.9em;
}
.next_post a{
    padding-right:1em;
    font-size:.9em;
}
.prev_post a::before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    width:8px;
    height:8px;
    border-left:2px solid #282828;
    border-bottom:2px solid #282828;
    transform:translateY(-50%) rotate(45deg);
    transition:all .4s;
}
.next_post a::after{
    content:"";
    position:absolute;
    right:0;
    top:50%;
    width:8px;
    height:8px;
    border-right:2px solid #282828;
    border-top:2px solid #282828;
    transform:translateY(-50%) rotate(45deg);
    transition:all .4s;
}


/*プライバシーポリシー*/
.privacy{
    padding:0 40px 100px;
}
.privacy_inner{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    flex-direction: column;
    gap:50px;
}
.privacy_item > h4{
    color:var(--font-color-main);
    font-size:1.4em;
    width:max-content;
    border-bottom:1px solid var(--font-color-main);
    margin-bottom:15px;
}
.privacy_item > p{
    line-height: 2;
    font-size:.9em;
    font-weight:400;
}
.privacy_item a{
    color:#7F4C4C;
    text-decoration: underline;
    text-underline-offset: 5px;
}
.privacy_item ul li{
    position:relative;
    font-weight:400;
    line-height: 2;
    padding-left:1em;
    font-size:.9em;
}
.privacy_item ul li::before{
    content:"・";
    position:absolute;
    top:0;
    left:0;
}