@charset "UTF-8";

/*
SP ～519px
tab 520px～959px
PC 960px～1200
*/
/*===================
変数宣言
===================*/
:root {
    --main-color: rgb(79, 150, 230);
    --main-color-rgb: 79, 150, 230;
    --main-color-w: rgb(254, 251, 247);
    --main-color-r: rgb(230, 83, 78);
    --main-color-o: rgb(230, 159, 79);
    --main-color-b: rgb(83, 78, 230);
    --main-color-b-rgb: 83, 78, 230;
    --text-color: rgb(5, 8, 12);
    --text-color-rgb: 5, 8, 12;
    --size-sm: 1rem;
    --size-md: 1.6rem;
    --size-lg: 2.6rem;
    --size-xl: 4.2rem;
    --size-xxl: 6.6rem;
    --font-shi: "Shippori Mincho", serif;
    --font-shi-a: "Shippori Antique", sans-serif;
    --font-sans: "Noto Sans JP", sans-serif;
    --line-height: 1.75;
    --gutter-base: 8px;
    --section-gutter: calc(var(--gutter-base)*10);
    --section-gutter-pc: calc(var(--gutter-base)*20);
    --contents-gutter: calc(var(--gutter-base)*5);
    --contents-gutter-pc: calc(var(--gutter-base)*10);
    --side-gutter: calc(var(--gutter-base)*3);
    --footer-gutter: calc(var(--gutter-base)*30);
    --footer-gutter-pc: calc(var(--gutter-base)*40);
}

/*==================
共通設定
==================*/
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-size: var(--size-md);
    color: var(--text-color);
    font-family: var(--font-sans);
    line-height: var(--line-height);
    background-image: url(../../images/bgimg_01.png);
    background-size: cover;
}

/* main {
    margin: 10px 50px 0 180px;
} */
.sp-only br {
    display: none;
}

/*==================
凡庸クラス
==================*/
.center {
    /* background-color: aqua; */
    /* max-width: 1024px; */
    margin: 0 50px 0 210px;
}

.center_l {
    margin: 0 0 0 200px;
}

.contents_title {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--contents-gutter);
    text-align: center;
}

.section_title {
    text-align: center;
    font-family: var(--font-shi-a);
    margin-bottom: var(--contents-gutter);
}

.section_title {
    font-size: var(--size-lg);
}

.section_title i {
    font-family: var(--font-sans);
    text-decoration: none;
    font-size: var(--size-md);
    color: var(--main-color-o);
    font-style: normal;
    letter-spacing: 0.02em;
}

.txt_p {
    font-size: 1em;
}

/*==================
ヘッダー
==================*/
.sp-header-logo {
    position: fixed;
    z-index: 9999;
    margin: 20px;
    display: none;

}

.pc-header {
    /* background-color: aqua; */
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    width: 260px;
    height: 100vh;
    position: fixed;
    z-index: 9999;
    /* opacity: 0; */
    /* animation: pc-header 0.8s ease-in-out 6.0s forwards; */

}

.pc-header-logo {
    position: absolute;
    width: 88px;
    height: 186px;
    top: 65px;
    left: 86px;
    z-index: 1;
}

.pc-header-nav_li {
    margin: 0 0 10px;
}

.pc-header-nav_li a {
    font-size: var(--size-lg);
    color: #fff;
    text-decoration: none;
    position: relative;
    font-family: var(--font-shi);
    text-shadow: 1px 1px 2px #3B2C16;
}

.pc-header-link {
    display: flex;
    justify-content: space-between;
    position: fixed;
    bottom: 70px;
    margin: 0 10px;
    font-weight: bold;
}

.page-top {
    position: fixed;
    width: 90px;
    height: 18px;
    right: 30px;
    bottom: 30px;
    z-index: 9999;
    transform: rotate(90deg);
    transform-origin: right bottom;
    text-align: right;

}

.page-top a {
    display: block;
    width: 100%;
    text-decoration: none;
    color: var(--main-color-b);
    font-size: 1.5rem;
    position: relative;
    transition: all .3s;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    letter-spacing: 0.15em;
}

.page-top a:before {
    position: absolute;
    content: "";
    background: #ffffeb;
    width: 50px;
    height: 1px;
    top: 50%;
    left: -80px;
    transition: all .3s;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}


.page-top a:hover:before {
    width: 80px;
    left: -70px;
}

.header-logo_b {
    display: none;
}

.scroll .pc-header-nav_link {
    color: var(--text-color);

    transition: all 0.5s;
}

.scroll .header-logo_w {
    display: none;
    transition: all 1s;
}

.scroll .header-logo_b {
    display: block;
    transition: all 2s;
}

/*===============
アニメーション
===============*/
/* CSS animation */
.-fadein {
    opacity: 0;
}

.-translete {
    opacity: 0;
    transform: translate(0, -20px);
}

.-blur {
    opacity: 0;
}

.s-fadeIn_b {
    opacity: 0;
    transition: all 2s;
}

/* フェードイン用のクラス */
.s-fadeIn_a {
    opacity: 1;
}


@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes translete {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes blur {
    0% {
        opacity: 0;
        -ms-filter: blur(6px);
        filter: blur(6px);
    }

    100% {
        opacity: 1;
        -ms-filter: blur(0);
        filter: blur(0);
    }
}

/* rotation */
@keyframes rotation {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}



/* header */
@keyframes l-header {
    0% {
        opacity: 0;
        -ms-filter: blur(6px);
        filter: blur(6px);
    }

    100% {
        opacity: 1;
        -ms-filter: blur(0);
        filter: blur(0);
    }
}

/*湯気*/
.steamBox {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden
}

.steamBox>img {
    width: 100%;
    display: block
}

.steam01 {
    position: absolute;
    right: 0;
    animation: steam01 10s infinite linear;
    opacity: 0
}

.steam02 {
    position: absolute;
    left: 0;
    animation: steam02 14s infinite linear;
    opacity: 0
}

.steam03 {
    position: absolute;

    left: 30%;

    animation: steam03 16s infinite linear;
    animation-delay: 6s;
    opacity: 0
}

.steam01 img,
.steam03 img {
    width: 532px;
    height: 800px
}

.steam02 img {
    width: 399px;
    height: 600px
}

/* 湯気footer&under */
.steam01_f {
    position: absolute;
    right: 0;
    animation: steam01 5s infinite linear;
    opacity: 0
}

.steam02_f {
    position: absolute;
    left: 0;
    animation: steam02 7s infinite linear;
    opacity: 0
}

.steam03_f {
    position: absolute;

    left: 30%;

    animation: steam03 16s infinite linear;
    animation-delay: 6s;
    opacity: 0
}

.steam01_f img,
.steam03_f img {
    width: 532px;
    height: 800px
}

.steam02_f img {
    width: 399px;
    height: 600px
}

/* 湯気アニメーション*/
@keyframes steam01 {
    0% {
        filter: blur(80px);
        transform: scale(0.8, 0.8) rotateY(0deg);
        opacity: 0;
        bottom: -1300px;
    }

    6% {
        opacity: 0.15;
    }

    33% {
        transform: scale(0.9, 1.1) rotateY(30deg);
        opacity: 0.3;
    }

    66% {
        transform: scaleY(1, 0.8) rotateY(4deg);
    }

    100% {
        filter: blur(18px);
        transform: scaleY(1.5, 1.3) rotateY(50deg);
        opacity: 0;
        bottom: 0;
    }
}


@keyframes steam02 {
    0% {
        filter: blur(40px);
        transform: scale(0.8, 0.8) rotateY(0deg);
        opacity: 0;
        bottom: -1300px;
    }

    6% {
        opacity: 0.15;
    }

    33% {
        transform: scale(0.9, 1.1) rotateY(30deg);
        opacity: 0.3;
    }

    66% {
        transform: scaleY(1, 0.8) rotateY(4deg);
    }

    100% {
        filter: blur(18px);
        transform: scaleY(1.5, 1.3) rotateY(50deg);
        opacity: 0;
        bottom: 0;
    }
}

@keyframes steam03 {
    0% {
        filter: blur(80px);
        transform: scale(0.8, 0.8) rotateY(0deg);
        opacity: 0;
        bottom: -1300px;
    }

    6% {
        opacity: 0.15;
    }

    33% {
        transform: scale(0.9, 1.1) rotateX(30deg);
        opacity: 0.3;
    }

    66% {
        transform: scaleY(1, 0.8) rotateY(4deg);
    }

    100% {
        filter: blur(18px);
        transform: scaleY(1.5, 1.3) rotateY(50deg);
        opacity: 0;
        bottom: 0;
    }
}

@keyframes steam01_f {
    0% {
        filter: blur(80px);
        transform: scale(0.8, 0.8) rotateY(0deg);
        opacity: 0;
        bottom: -1300px;
    }

    6% {
        opacity: 0.15;
    }

    33% {
        transform: scale(0.9, 1.1) rotateY(30deg);
        opacity: 0.3;
    }

    66% {
        transform: scaleY(1, 0.8) rotateY(4deg);
    }

    100% {
        filter: blur(18px);
        transform: scaleY(1.5, 1.3) rotateY(50deg);
        opacity: 0;
        bottom: 0;
    }
}


@keyframes steam02_f {
    0% {
        filter: blur(40px);
        transform: scale(0.8, 0.8) rotateY(0deg);
        opacity: 0;
        bottom: -1300px;
    }

    6% {
        opacity: 0.15;
    }

    33% {
        transform: scale(0.9, 1.1) rotateY(30deg);
        opacity: 0.3;
    }

    66% {
        transform: scaleY(1, 0.8) rotateY(4deg);
    }

    100% {
        filter: blur(18px);
        transform: scaleY(1.5, 1.3) rotateY(50deg);
        opacity: 0;
        bottom: 0;
    }
}

@keyframes steam03_f {
    0% {
        filter: blur(80px);
        transform: scale(0.8, 0.8) rotateY(0deg);
        opacity: 0;
        bottom: -1300px;
    }

    6% {
        opacity: 0.15;
    }

    33% {
        transform: scale(0.9, 1.1) rotateX(30deg);
        opacity: 0.3;
    }

    66% {
        transform: scaleY(1, 0.8) rotateY(4deg);
    }

    100% {
        filter: blur(18px);
        transform: scaleY(1.5, 1.3) rotateY(50deg);
        opacity: 0;
        bottom: 0;
    }
}




/* header */
.pc-header {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    width: 200px;
    height: 100vh;
    position: fixed;
    z-index: 9999;
    opacity: 0;
    /* topページのみアニメーション追記 */
    animation: l-header 0.8s ease-in-out 1.0s forwards;

}



.pc-header-logo {
    position: absolute;
    width: 88px;
    height: 186px;
    top: 65px;
    left: 86px;
    z-index: 1;
}

.pc-header-logo_img {
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.pc-header-menu {
    position: fixed;
    top: 50px;
    left: calc(100vw - 130px);
}

.pc-header-nav_li {
    margin: 0 0 10px;
}


/* ヘッダー装飾 */
.pc-header-nav_li a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    background: #fff;
    top: calc(50% + 1px);
    right: 0;
    transition: all .3s;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.scroll .pc-header-nav_li a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    background: #000000;
    top: calc(50% + 1px);
    right: 0;
    transition: all .3s;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.pc-header-nav_li a:hover:before {
    width: 30px;
    right: -40px;
}



@media screen and (max-width: 1200px) {
    .pc-header {
        width: 180px;
    }

    .pc-header-logo {
        top: 35px;
        left: 46px;
    }

    .pc-header-menu {
        position: fixed;
        top: 50px;
        left: calc(100vw - 130px);
    }

    .pc-header-nav_li {
        margin: 0 0 5px;
    }

    .pc-header-nav_li a {
        font-size: 1.5em;
    }

    .txt_p {
        font-size: 0.7em;
    }

}





/*===================
news
===================*/
span.news_l {
    color: #fff;
    background-color: var(--main-color-o);
    padding: 2px 4px;
    text-shadow: 1px 1px 2px #3B2C16;

}

span.event_l {
    color: #fff;
    background-color: gold;
    padding: 2px 4px;
    text-shadow: 1px 1px 2px #3B2C16;

}

/*===================
フッター
===================*/


.pc-footer {
    background-color: #3B2C16;

    height: 30vh;
    top: 0;
    left: 0;



}

.pc-footer_img {
    width: 100%;
    max-width: 520px;
    height: 42vh;
    position: relative;
    margin-left: auto;
    background-image: url(../../images/fbg.svg);
    background-size: contain;
    background-repeat: no-repeat;



}

.footer-steamBox {
    width: 100%;

    position: relative;
    overflow: hidden
}


.footer_inner {
    width: 70%;
    position: absolute;
    color: var(--main-color-w);
    margin-top: 2em;
    z-index: 9998;
    overflow: hidden;


}



footer address {
    font-style: normal;
    padding-top: var(--contents-gutter);
}



.footer_link a:last-of-type {
    margin-left: auto;
}




footer small {
    display: flex;

    color: #fff;
    justify-content: center;
}

@media only screen and (min-width: 768px) {
    .sp-menu_bar {
        display: none !important
    }
}

@media only screen and (max-width: 767px) {
    footer {
        margin-bottom: 75px;
    }

    .sp-menu_bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        margin-inline: auto;
        z-index: 9999;
        opacity: 1;
        background: rgba(0, 0, 0, 0.3);

        box-shadow: 0 0 1em rgba(0, 0, 0, 0.05)
    }

    .sp-menu_bar ul {

        display: flex;

        flex-direction: row;
        width: 100%;
        gap: 1px
    }

    .sp-menu_bar ul li {
        width: 25%;

        display: flex;

        flex-direction: row
    }


    .sp-menu_bar ul li a,
    .sp-menu_bar ul li button,
    .sp-menu_bar ul li>span {
        text-decoration: none;
        background: #fff;
        color: #252525;
        text-align: center;
        display: block;
        padding: 1em 0;
        width: 100%
    }

    .sp-menu_bar ul li>a>i,
    .sp-menu_bar ul li>button>i,
    .sp-menu_bar ul li>span>i {
        display: block;
        text-align: center;
        letter-spacing: 0.04em
    }
}

/*===================
ham
===================*/
header .hum_inner {
    background-color: var(--main-color-w);
    position: fixed;
    top: 120%;
    left: 0;
    width: 100%;
    height: 100vh;
    padding-top: calc(var(--gutter-base)*10);
    padding-left: calc(var(--gutter-base)*5);
    padding-right: calc(var(--gutter-base)*5);
    transition: 0.5s;
    opacity: 0;
    overflow-y: auto;
    z-index: 9999;

}

header.on .hum_inner {
    opacity: 1;
    top: 0;
}

header summary {
    color: #111010;
    font-size: 2rem;
    line-height: 2.5;
    border-bottom: 2px solid #0c0b0b;
    display: block;
}

.hum_inner li {
    color: var(--text-color);
    font-size: var(--size-lg);
    line-height: 2.5;

    display: block;
    text-shadow: 1px 1px 2px #3B2C16;


}

.hum_inner a {
    text-decoration: none;
}

.hum_inner img {
    margin-bottom: 1em;
}

header .hum_inner .accordion_hum .accordion-hum_list li {
    font-size: var(--size-md);
    padding-left: 2rem;
}

header .hum_menu {
    display: flex;
    align-items: center;
    gap: var(--gutter-base);
    background-color: var(--main-color-y);
    border: 1px solid #fff;
    padding: var(--gutter-base);
    z-index: 10;
    border-radius: 8px;
    mix-blend-mode: hard-light;
    margin-left: auto;
    margin-right: 10px;
}




header .hum_menu .hum_menu_text {
    color: #fff;
}

.hum_link {
    padding-top: var(--footer-gutter);
    display: flex;
    gap: 0.5em;
}

.hum_link a:last-of-type {
    margin-left: auto;
}

/* humアコーディオン */

.accordion_hum summary {

    font-size: var(--size-lg);
    line-height: 2.5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    color: var(--text-color);

    cursor: pointer;
    text-shadow: 1px 1px 2px #3B2C16;
}

.accordion_hum summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;

    border-bottom: 3px solid var(--text-color);
    border-right: 3px solid var(--text-color);
    content: '';
    transition: transform 0.5s;
}

.accordion_hum[open] summary::after {
    transform: rotate(225deg);
}

.hum_inner .accordion_hum-list li {
    font-size: 1.5em;
    padding-left: 1em;
}

/* スマホ閲覧時の△用　メディアクエリで消えなかったのでここに追記 */
summary::-webkit-details-marker {
    display: none;
}




/*===============
メディアクエリ
===============*/
@media screen and (max-width:767px) {
    .pc-header {
        display: none;
    }

    .sp-header-logo {
        display: block;
    }

    .sp-only br {
        display: block;
    }

    .center,
    .center_l {
        margin: 10px 20px 0 20px;
    }

    .page-top {
        bottom: 85px;
    }

    .page-top a {
        font-size: 1rem;
    }



}




/* ヘッダー */
@media screen and (max-width: 960px) {


    .pc-header-logo {
        width: 70px;
        height: 148px;
    }

    .pc-header-menu {
        top: 50px;
        left: inherit;
        right: 50px;
    }


}




@media screen and (max-width: 520px) {
    .pc-header-menu {
        top: 30px;
        right: 20px;
    }
}


/* ========min-width:520px=== */