@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: ZenOldMincho;
    src: url(../font/Zen_Old_Mincho/ZenOldMincho-Regular.ttf);
}

html {
    scroll-behavior: smooth;
}

header {
    position: relative;
    height: 75vh;
    overflow: hidden;
}

.headerflex-parent {
    display: flex;
}

/* 湯気 */
.moku img:nth-of-type(1) {
    position: absolute;
    top: 100%;
    left: 40%;
    display: block;
    opacity: 0.1;
    width: 15%;
    animation: 5s yuge linear infinite;
    animation-delay: 5s;
}

.moku img:nth-of-type(2) {
    position: absolute;
    top: 100%;
    left: 60%;
    display: block;
    opacity: 0.1;
    width: 15%;
    animation: 3s yuge linear infinite;
    animation-delay: 8s;
}
.moku img:nth-of-type(3) {
    position: absolute;
    top: 100%;
    left: 20%;
    display: block;
    opacity: 0.1;
    width: 15%;
    animation: 3s yuge linear infinite;
    animation-delay: 1s;
}

.moku img:nth-of-type(4) {
    position: absolute;
    top: 100%;
    left: 50%;
    display: block;
    opacity: 0.3;
    width: 15%;
    animation: 2s yuge linear infinite;
    animation-delay: 15s;
}

@keyframes yuge{
0% {
    transform:translate(0, 0) rotate(-15deg);
}
50% {
    transform:translate(0, -7px) rotate(0deg);
}
80% {
    opacity: 0.1;
}
100% {
    transform:translate(0, 0) rotate(7deg);
    top: -22%;
    opacity: 0;
}
}

/* 湯気 */

h1 {
    position: absolute;
    width: 30%;
    padding: 3%;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    z-index: 10;
}

h1 a {
    width: 90%;
    display: block;
    text-decoration: none;
    color: #603813;
    font-size: 2vw;
    font-family: ZenOldMincho;
}

h1 a img {
    display: block;
    width: 100%;
    mix-blend-mode: hard-light;
    background-color: #fff;
}

header .yoyaku2 {
    width: 23%;
    position: absolute;
    padding: 2% 1.5%;
    text-align: center;
    top: 42%;
    left: 70%;
    border: 3px double #603813;
    background-color: rgba(255, 255, 255, 0.5);
}

header .yoyaku2 p {
    font-size: 1.3vw;
    font-weight: 700;
    color: #ffffff;
}


header .yoyaku2 a {
    display: block;
    width: 30%;
    margin-top: 3%;
    margin-left: auto;
    margin-right: auto;
    padding: 6% 18%;
    background-color: #e7643c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.3vw;
    transition: .5s;
} 

header .yoyaku a:hover {
    background-color: #fff;
    border: 1px solid #e7643c;
    color: #e7643c;
    transition: .5s;
}

header .sns-icon2 {
    width: 20%;
    text-align: center;
    position: absolute;
    padding: 4% 3%;
    top: 70%;
    left: 70%;
    z-index: 10;
    border: 3px double #603813;
    background-color: rgba(255, 255, 255, 0.5);
}

header .sns-icon2 i {
    display: inline-block;
    font-size: 3vw;
}

header .sns-icon2 .fa-brands {
    margin-left: 11%;
    margin-right: 5%;
    color: #42270d;
}


/* なび */

.NavMenu {
    position: relative;
    position: fixed;
    top: 0;
    right: 0;
    width: 25%;
    height: 100vh;
    padding-top: 5%;
    padding-right: 2.5%;
    padding-left: 2.5%;
    z-index: 100;
    transform: translateX(100%); /*ナビを上に隠す上から出したい場合は、transform: translateYを使う。*/
    transition: .3s ease-in-out; /*アニメーションの時間を指定*/
    background-color:#C49C75;
}

nav.NavMenu.active{
    transform: translateX(0%);/*上から出したい場合は、transform: translateYを使う。*/
}

nav ul {
    list-style-type: none;
    display: flex;
}

nav ul li {
    width: 15%;
}

nav ul li a {
    position: relative;
    display: block;
    text-decoration: none;
    color: #603813;
    font-family: ZenOldMincho;
    font-weight: 600;
    font-size: 1.5vw;
    line-height: 3;
    writing-mode: vertical-rl;
}

nav ul li a::after {
    position: absolute;
    left: 0%;
    top: 106%;
    display: block;
    opacity: 0;
    content: url(../images/onsenmaku.png);
}

nav ul li a:hover::after {
    opacity: 1;
    top: 100%;
    transition: 1s;
}


header .yoyaku {
    width: 75%;
    position: absolute;
    padding: 3%;
    text-align: center;
    top: 50%;
    left: 10%;
    z-index: 10;
    border: 3px double #603813;
}

header .yoyaku p {
    font-size: 1.3vw;
    font-weight: 700;
    color: #ffffff;
}


header .yoyaku a {
    display: block;
    width: 30%;
    margin-top: 3%;
    margin-left: auto;
    margin-right: auto;
    padding: 6% 18%;
    background-color: #e7643c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.3vw;
    transition: .5s;
} 

header .yoyaku2 a:hover {
    background-color: #fff;
    border: 1px solid #e7643c;
    color: #e7643c;
    transition: .5s;
}

header .sns-icon {
    width: 75%;
    text-align: center;
    position: absolute;
    padding: 6% 3%;
    top: 70%;
    left: 10%;
    z-index: 10;
    border: 3px double #603813;
}

header .sns-icon i {
    display: inline-block;
    font-size: 3vw;
}

header .sns-icon .fa-brands {
    margin-left: 11%;
    margin-right: 5%;
    color: #42270d;
}

/* とぐる */

/*トグルボタンのスタイルを指定*/
.Toggle {
position: fixed;    /* bodyに対しての絶対位置指定 */
right: 40px;
top: 25px;
width: 42px;
height: 42px;
cursor: pointer;/*divだけどカーソルが変わるようにしている*/
z-index: 101;/*ボタンを一番上にしている(押せなくなるから)*/
}

.Toggle span {
display: block;
position: absolute;
left: 7px;

border-bottom: solid 3px #42270D;
transition: .35s ease-in-out;			/*変化の速度を指定*/

}

.Toggle span:nth-child(1) {
width: 50px;
top: 9px;
}

.Toggle span:nth-child(2) {
top: 18px;
width: 50px;
}

.Toggle span:nth-child(3) {
top: 27px;
width: 30px;
}

/* 最初のspanをマイナス45度に */
.Toggle.active span:nth-child(1) {
top: 18px;
left: 6px;
transform: rotate(-45deg);
border-color: #42270D;
}

/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2) {
top: 18px;
transform: rotate(45deg);
border-color: #42270D;
}

.Toggle.active span:nth-child(3) {
opacity: 0;
}




/* めいん */


main {
    background-image: url(../images/bg.webp);
    font-family: ZenOldMincho;
    text-align: center;
    color: #42270D;
}

main h2 {
font-size: 2.5vw;
}

main a {
text-decoration: none;
}

header {
    height: 100vh;
    background-image: url(../images/slide2.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

/* ふぁーすと */
.fast {
    position: absolute;
    width: 100%;
    height: 22.2vh;
    left: 0;
    top: 77.9%;
    background-color: #42270D;
    clip-path: polygon(40% 0%, 60% 0%, 100% 100%, 0% 100%);
    border-radius: 50% 50% 0 0%;
}

header h2 {
    position: absolute;
    top: 81%;
    left: 48%;
    font-size: 2.5vw;
    color: #dddada;
    font-family: ZenOldMincho;
}

header .english {
    display: block;
    position: absolute;
    top: 88%;
    left: 47.5%;
    font-size: 1.2vw;
    color: #dddada;
    font-family: ZenOldMincho;
}

/* ぱん */
.pan {
background-color: #42270D;   
}

.pan p {
color: #ffffff;
text-align: left;
margin-left: 10%;
font-size: 1.2vw;
}

.pan a {
display: inline-block;
padding: 1%;
text-decoration: none;
color: #e4e4e4;
}


/* アバウト */

.sousyoku {
    position: absolute;
    top: 7%;
    left: 10%;
    rotate: 45deg;
    width: 13%;
    opacity: 0.4;
}

.sousyoku2 {
    position: absolute;
    top: 7%;
    left: 25%;
    rotate: 45deg;
    width: 10%;
    opacity: 0.4;
}

.sousyoku img {
    width: 100%;
    vertical-align: bottom;
    filter: brightness(.7);
}

.about {
    position: relative;
    background-color:#42270D;
    overflow: hidden;
}

.about p:nth-of-type(1) {
    padding-top: 7%;
    margin-bottom: 3%;
}

.about-p-1 {
    font-size: 2.5vw;
}

.about p {
    color: #C1BCB4;
}

.syurui-p {
    font-size: 1.3vw;
}

.about p:nth-of-type(2) {
    margin-top: 2%;
    white-space: pre-wrap;
    font-size: 1.3vw;
    line-height: 1.8;
}

.about p:nth-of-type(3) {
    margin-top: 1%;
    white-space: pre-wrap;
    font-size: 1.3vw;
    line-height: 1.8;
}

.syurui {
    width: 80%;
    padding-bottom: 3%;
    margin-top: 3%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.syurui a {
    position: relative;
    display: block;
    text-decoration: none;
    width: 25%;
}

.syurui a::after {
    position: absolute;
    left: 27%;
    content: '';
    width: 9vw;
    height: 2px;
    background: #C1BCB4;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: center top; 
    transition: transform 1s;
}

.syurui a:hover::after {
    transform: scale(1, 1); 
    transition: transform 1s;
}

.syurui a:hover img {
    filter: brightness(.5);
    transition: transform 1s;
}

.syurui a .syurui-img {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.syurui a .syurui-img img {
    width: 100%;
    vertical-align: bottom;
}

.syurui a:nth-of-type(4)  .syurui-img img{
    width: 100%;
}

.syurui a p {
    color: #BDBCB4;

}


/* 大浴場 */

#daiyokuzyo {
    margin-top: 8%;
}

#daiyokuzyo h2 {
    position: relative;
    padding: 1%;
    margin-left: auto;
    margin-right: auto;
    writing-mode: vertical-rl;
    white-space: pre-wrap;
}

#daiyokuzyo h2 span:nth-of-type(1) {
    display: block;
    text-indent: 1em;
    font-size: 1.4vw;
    line-height: 2;
}

#daiyokuzyo h2 span:nth-of-type(2) {
    display: block;
    text-indent: .5em;
    font-size: 2.4vw;
    margin-top: 2%;
}

#daiyokuzyo h2::before {
    position: absolute;
    left: 25%;
    top: -25%;
    display: inline-block;
    content: url(../images/wakumo.png);
}

#daiyokuzyo p:nth-of-type(1) {
    margin-top: 1%;
    margin-bottom: 3%;
}


#daiyokuzyo ul {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3%;
    text-align-last: left;
    font-size: 1.2vw;
    list-style-type: none;
    border: 1px solid #42270D;
}

#daiyokuzyo ul li {
    padding: 1%;
    border-bottom: 1px solid #42270D;
    line-height: 2;
}

#daiyokuzyo ul li:last-child {
    border: none;
}

#daiyokuzyo ul li span:nth-of-type(1) {
    display: inline-block;
    border-right: 1px solid #42270D;
    width: 15%;
    margin-left: 5%;
}

#daiyokuzyo ul li span:nth-of-type(2) {
    margin-left: 5%;
    text-align: center;
}


/* 風呂リスト */
.hloxbox1 {
    display: flex;
    width: 90%;
    margin-top: 3%;
    margin-left: auto;
    margin-right: auto;
}

.hloxbox1 figure {
    position: relative;
    width: 50%;
    margin-left: 2%;
}

.hloxbox1 figure img {
    width: 100%;
}

.hloxbox1 figure img:hover {
    filter: opacity(0.7);
    transition: 1s;
}

.hloxbox {
    display: flex;
    margin-top: 2%;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.hloxbox figure {
    width: 30%;
    margin-left: 3.5%;
}

.hloxbox figure img {
    width: 100%;
}

.hloxbox figure img:hover {
    filter: opacity(0.7);
    transition: 1s;
}


/* か仕切り */

#kasikiri {
    margin-top: 8%;
}

#kasikiri h2 {
    position: relative;
    padding: 1%;
    margin-left: auto;
    margin-right: auto;
    writing-mode: vertical-rl;
    white-space: pre-wrap;
}

#kasikiri h2 span:nth-of-type(1) {
    display: block;
    text-indent: 1em;
    font-size: 1.4vw;
    line-height: 2;
}

#kasikiri h2 span:nth-of-type(2) {
    display: block;
    text-indent: .5em;
    font-size: 2.4vw;
    margin-top: 2%;
}

#kasikiri h2::before {
    position: absolute;
    left: 25%;
    top: -35%;
    display: inline-block;
    content: url(../images/wakumo.png);
}

#kasikiri p:nth-of-type(1) {
    margin-top: 1%;
    margin-bottom: 3%;
}


#kasikiri ul {
    width: 60%;
    margin-top: 3%;
    margin-left: auto;
    margin-right: auto;
    text-align-last: left;
    font-size: 1.2vw;
    list-style-type: none;
    border: 1px solid #42270D;
}

#kasikiri ul li {
    padding: 1%;
    border-bottom: 1px solid #42270D;
    line-height: 2;
}

#kasikiri ul li:last-child {
    border: none;
}

#kasikiri ul li span:nth-of-type(1) {
    display: inline-block;
    border-right: 1px solid #42270D;
    width: 15%;
    margin-left: 5%;
}

#kasikiri ul li span:nth-of-type(2) {
    margin-left: 5%;
    text-align: center;
}

.hloxbox1 figure::before {
    position: absolute;
    top: 30%;
    left: 40%;
    display: block;
    width: 10vw;
    height: 10vw;
    background-color: #723737;
    content: "";
    z-index: 10;
    opacity: 0.9;
}

.hloxbox1 figure::after {
    position: absolute;
    top: 33%;
    left: 42%;
    display: block;
    width: 8vw;
    height: 8vw;
    background-color: transparent;
    border: 2px solid #c7c7c7;
    content: "";
    z-index: 10;
    opacity: 0.9;
}


#kasikiri .hloxbox1 figure figcaption {
    position: absolute;
    width: fit-content;
    height: 9vw;
    color: #f1f1f1;
    font-weight: 700;
    top: 32%;
    left: 48%;
    font-size: 2vw;
    writing-mode: vertical-rl;
    z-index: 11;
}

#daiyokuzyo .hloxbox1 figure figcaption {
    position: absolute;
    width: fit-content;
    height: 9vw;
    color: #f1f1f1;
    font-weight: 700;
    top: 32%;
    left: 48%;
    font-size: 2vw;
    writing-mode: vertical-rl;
    z-index: 11;
}

#kasikiri h3 {
    position: relative;
    width: fit-content;
    margin-top: 3%;
    margin-left: auto;
    margin-right: auto;
    background-color: #EBEBEB;
    padding: 2%;
    z-index: 10;
}

#kasikiri p:nth-of-type(2) {
    width: 55%;
    padding: 3%;
    margin-top: -3%;
    margin-left: auto;
    margin-right: auto;
    white-space: pre-wrap;
    border: 1px double #42270D;
}


/* サウナ */
#sauna {
    margin-top: 8%;
}

#sauna h2 {
    position: relative;
    padding: 1%;
    margin-left: auto;
    margin-right: auto;
    writing-mode: vertical-rl;
    white-space: pre-wrap;
}

#sauna h2 span:nth-of-type(1) {
    display: block;
    text-indent: 1em;
    font-size: 1.4vw;
    line-height: 2;
}

#sauna h2::before {
    position: absolute;
    left: 5%;
    top: -35%;
    
    display: inline-block;
    content: url(../images/wakumo.png);
}

#sauna p:nth-of-type(1) {
    margin-top: 1%;
    margin-bottom: 3%;
}


#sauna ul {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3%;
    text-align-last: left;
    font-size: 1.2vw;
    list-style-type: none;
    border: 1px solid #42270D;
}

#sauna ul li {
    padding: 1%;
    border-bottom: 1px solid #42270D;
    line-height: 2;
}

#sauna ul li:last-child {
    border: none;
}

#sauna ul li span:nth-of-type(1) {
    display: inline-block;
    border-right: 1px solid #42270D;
    width: 15%;
    margin-left: 5%;
}

#sauna ul li span:nth-of-type(2) {
    margin-left: 5%;
    text-align: center;
}

#sauna .hloxbox1 figure figcaption {
    position: absolute;
    width: fit-content;
    height: 9vw;
    color: #f1f1f1;
    font-weight: 700;
    top: 32%;
    left: 48%;
    font-size: 2vw;
    writing-mode: vertical-rl;
    z-index: 11;
}

#sauna h3:nth-of-type(1) {
    width: fit-content;
    margin-top: 4%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.8vw;
}

table {
    width: 70%;
    margin-top: 1%;
    margin-left: auto;
    margin-right: auto;
}

table, td, th {
	border: 1px solid #595959;
	border-collapse: collapse;
}
td, th {
	padding: 1%;
	width: 5%;
}

#sauna h3:nth-of-type(2) {
    position: relative;
    width: fit-content;
    margin-top: 3%;
    margin-left: auto;
    margin-right: auto;
    background-color: #EEEEEE;
    padding: 2%;
    z-index: 10;
}

#sauna p:nth-of-type(2) {
    width: 55%;
    padding: 3%;
    margin-top: -3%;
    margin-left: auto;
    margin-right: auto;
    white-space: pre-wrap;
    border: 1px double #42270D;
}

/* 湯上り処 */

#yuagari {
    width: 90%;
    margin-top: 8%;
    margin-left: auto;
    margin-right: auto;
}

.yuagari-flex-parent {
    display: flex;
}

#yuagari h2 {
    position: relative;
    padding: 1%;
    height: 13vw;
    margin-left: auto;
    margin-right: auto;
    writing-mode: vertical-rl;
}

#yuagari h2 span:nth-of-type(1) {
    display: block;
    text-indent: 1em;
    font-size: 1.4vw;
    line-height: 2;
}

#yuagari h2 span:nth-of-type(2) {
    display: block;
    text-indent: .5em;
    font-size: 2.4vw;
}

#yuagari h2::before {
    position: absolute;
    left: 16%;
    top: -25%;
    display: inline-block;
    content: url(../images/wakumo.png);
}

#yuagari p:nth-of-type(1) {
    margin-top: 1%;
    margin-bottom: 3%;
}

#yuagari p:nth-of-type(2) {
    width: 50%;
    margin-top: 10%;
    margin-left: auto;
    margin-right: auto;
    white-space: pre-wrap;
}

.yuagari-img {
    width: 100%;
    margin-left: -10%;
}

.yuagari-img img {
    width: 134.5%;
}

#yuagari table {
    margin-top: 3%;
    margin-bottom: 5%;
}

/* とっぴ */
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
}
#page-top a {
    display: block;
    width: 100px;
    height: 100px;
    text-align: center;
    background: #221406;
    text-decoration: none;
    color: #fff;
    border-radius: 50px;
}

#page-top img {
    display: block;
    width: 40%;
    padding: 30%;
    margin-left: auto;
    margin-right: auto;
    filter: brightness(10);
}

#page-top a:hover {
    opacity: 0.5;
    transition: 1s;
}

/* フッダー */

footer {
text-align: left;
padding: 5%;
padding-bottom: 0;
font-family: sans-serif;
background-color: #42270D;
color: #ffffff;
}

footer ul {
list-style-type: none;
}

footer a {
display: block;
text-decoration: none;
color: #ffffff;
}

footer a:hover {
color: #c7c7c7;
transition: .5s;
}

.footer-flexdox {
width: 99%;
margin-left: auto;
margin-right: auto;
margin-bottom: 5%;
display: flex;
}

.footer-flexdox address {
width: 20%;
font-style:normal;
text-align-last: left;
font-size: 1.2vw;
margin-right: 5%;
}

.footer-flexdox .ul-parent {
width: 100%;
display: flex;
color: #bbbbbb;
font-size: 1vw;
}

.address-img {
width: 35%;
margin-left: 21%;
margin-bottom: 2%;

}

.address-img img {
width: 100%;
}

.footer-flexdox .ul-parent li {
width: 25%;
}

.footer-flexdox .ul-parent li .ul-child  li {
width: 90%;
margin-top: 2%;
text-indent: 1em;
font-size: 0.85vw;
line-height: 2;

}

.footer-flexdox .ul-parent li .ul-child  li a {
width: fit-content;
}


small {
font-size: 1vw;
width: 100%;
display: block;
padding: 2%;
padding-top: 0;
text-align: center;
word-spacing: .5em;
}