@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

body {
    background-image: url(../images/back.png);
    background-repeat: repeat;
}

/* ここからヘッダー */

header {
    display: flex;
    align-items: center;
    padding: 1vw;
    background-image: url(../images/back.png);
    background-repeat: repeat;
}

h1 {
    width: 12%;
    margin-top: -7vw;
    margin-left: 8%;
    margin-right: 5%;
}

h1 img {
    width: 100%;
    vertical-align: bottom;
}

h1 img:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

nav {
    width: 70%;
    margin-right: 5%;

}

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

nav ul li {
    width: 25%;
}

nav ul li a {
    display: block;
    text-align: center;
    text-decoration: none;
    font-family: ten-mincho, serif;
    color: #ffffff;
    font-size: 2.0vw;
}

nav ul li a:hover {
    color: #D0A900;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* ここまでヘッダー */

/* ここからメインビジュアル */

main {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.main-visual-box {
    width: 90%;
    margin: 2vw auto 2vw auto;
}

.main-visual-box img {
    width: 100%;
    vertical-align: bottom;
}

/* ここまでメインビジュアル */

/* ここから湯治場 */

main section h2 {
    width: 100%;
    margin-top: 2vw;
    margin-bottom: 2vw;
    padding-top: 2vw;
    padding-bottom: 2vw;
    text-align: center;
    font-family: ten-mincho, serif;
    font-size: 3.5vw;
    color: #ffffff;
}

main section p {
    width: 100%;
    padding: 1%;
    line-height: 2.0;
    text-align: center;
    font-size: 2.2vw;
    color: bisque;
}

.toji {
    display: flex;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    background-color: #4a551e;
}

.toji div {
    width: 50%;
}

.toji div p {
    text-align: center;
    font-size: 1.6vw;
}

.toji div img {
    width: 100%;
    vertical-align: bottom;
}

/* ここまで湯治場 */

/* ここからfigure */

.works-flexbox {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

figure img {
    width: 100%;
    vertical-align: bottom;
}

figcaption {
    margin: 2vw 0 4vw 0;
    text-align: center;
    font-size: 2.4vw;
    color: bisque;
}

/* ここまでfigure */

/* ここからtable */

table {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid ;
}
th {
    padding: 1vw;
    font-size: 2.0vw;
    color: #D0A900;
    background-color: #4a551e;
    border: 1px solid #ffffff;
}

td {
    padding: 1vw;
    font-size: 2.0vw;
    color: bisque;
    background-color: #4a551e;
    border: 1px solid #ffffff;
}

.white-space {
    white-space: pre-wrap;
}

span {
    color: red;
}

/* ここまでtable */

/* ここからマップ */

.access {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}

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

.access img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.access figcaption {
    margin: 2vw 0 2vw 0;
    text-align: center;
    font-size: 2.2vw;
    color: bisque;
}

.page {
    width: 100%;
    margin: 1vw 0 3vw 0;
    text-align: right;
}

#pagetop a {
    display: block;
    text-decoration: none;
    font-size: 1.6vw;
    color: bisque;
}

/* ここまでマップ */

/* ここからfooter */

footer {
    padding: 1vw;
    background-image: url(../images/back.png);
    background-repeat: repeat;
    color: #FFFFFF;
}

.footer-box {
    display: flex;
    margin-left: 8%;
    margin-right: 8%;
    align-items: center;
}

footer img {
    width: 12%;
    vertical-align: bottom;
}

footer address {
    margin-top: 2.5vw;
    margin-left: 7%;
    font-size: 1.3vw;
}

footer p small {
    font-size: 1.3vw;
}