@charset "utf-8";

*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Serif JP', serif;
}

html {
    scroll-behavior: smooth;
}

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

body {
    width: 100%;
    background-color: rgb(255, 255, 251);
    overflow-x: hidden;
}


/* --------ここからSVGアニメ --------*/
#svgwrap {
    width: 100%;
    height: 100vh;
    background-color: #fff;
    animation: open 2.5s both;
    animation-duration: 1.8s;
    /* transition: all ease 3s; */

    position: fixed;
    /* positionのfixed absoluteは幅がなくなる */
    width: 100%;
    top: 0;
    bottom: 0;
    z-index: 99999;
}

@keyframes open {
    0% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        z-index: -5;
        display: none;
    }
}

.svgcontainer {
    height: 101vh;
    width: 101%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 8rem 0;
}

.svgcontainer svg {
    width: 7%;
    margin: 0 auto;
    padding: 0 0 0 0.1rem;
    text-align: center;
}

.svgcontainer path {
    fill: rgba(248, 168, 168, 0.7);
    fill-opacity: 0;
    stroke: #555555aa;
    stroke-width: 0.1em;
    stroke-dasharray: 1300;
    stroke-dashoffset: 1300;
    animation: moji 0.7s ease-in forwards 0.3s;
    stroke-dashoffset: 0;
    fill-opacity: 1;
}

@keyframes moji {
    0% {
        stroke-dashoffset: 1300;
    }

    70% {
        stroke-dashoffset: 300;
        fill-opacity: 0;
    }

    100% {
        stroke-dashoffset: 0;
        fill-opacity: 1;
    }
}

/* --------ここまでSVGアニメ --------*/

/* --------★予約スティッキー★ --------*/
#sticky00 {
    position: fixed;
    top: 75%;
    right: 0;
    /* width: fit-content; */
    width: 3.2rem;
    margin: 1em;
    padding: 1rem;
    height: 8rem;
    text-align: right;
    background: rgb(252, 215, 249);
    background: linear-gradient(132deg, rgba(252, 215, 249, 1) 21%, rgba(252, 252, 252, 1) 51%, rgba(253, 234, 252, 1) 62%, rgba(255, 210, 251, 1) 77%);
    border: 0.1em solid black;
    border-radius: 3em;
    writing-mode: vertical-rl;
    z-index: 3;
}

#sticky00:hover {
    background: rgb(252, 252, 252);
    background: radial-gradient(circle, rgba(252, 252, 252, 1) 25%, rgba(252, 215, 249, 1) 55%);
}

#sticky00 div {
    width: 100%;
}

#sticky00 div a {
    display: block;
    width: 100%;
    height: 100%;
    color: black;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transform: translateX(5px);
}


/* --------ここからヘッダー --------*/
#topheader {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

#topheader>video.pc {
    display: block !important;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%
}

#topheader>img.sp {
    display: none !important;
}

#headercontents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/*ここからハンバーガーメニュー*/
.openbtn2 {
    margin: 3rem 0 0 3rem;
    position: relative;
    /*ボタン内側の基点となるためrelativeを指定*/
    width: 4.3rem;
    height: 4.3rem;
    cursor: pointer;
    background: #333;
    border-radius: 3em;
    z-index: 3;
}

/*ボタン内側*/
.openbtn2 span {
    display: inline-block;
    transition: all 0.5s ease;
    /*アニメーションの設定*/
    position: absolute;
    left: 0.8rem;
    height: 0.2rem;
    background-color: #fff;
}

.openbtn2 span:nth-of-type(1) {
    top: 1.4em;
    width: 18%;
    border-radius: 0.1em;
}

.openbtn2 span:nth-of-type(2) {
    top: 2.0em;
    width: 43%;
    border-radius: 0.1em;
}

.openbtn2 span:nth-of-type(3) {
    top: 2.6em;
    width: 58%;
    border-radius: 0.1em;
}

/*activeクラスが付与されると線が回転して×に*/
.openbtn2.active {
    background: #fff;
    opacity: 0.5;
    z-index: 101;
}

.openbtn2.active span:nth-of-type(1) {
    top: 1.1em;
    left: 1.1em;
    transform: translateY(1rem) rotate(-45deg);
    width: 48%;
    background-color: #333;
}

.openbtn2.active span:nth-of-type(2) {
    display: none;
}

.openbtn2.active span:nth-of-type(3) {
    top: 3.2em;
    left: 1.1em;
    transform: translateY(-1rem) rotate(45deg);
    width: 48%;
    background-color: #333;
}

/*ここまでハンバーガーメニュー*/
/* ハンバーガーメニューかくれてるところ */
#headerwrap {
    width: 25%;
}

#hamburgeropen {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    padding: 0 auto;
    height: 0;
    overflow: hidden;
    background-color: #ffffffcc;
    text-align: center;
    line-height: 2em;
    box-shadow: 0.5em 0.5em 0.5em #333;
    transition: all 0.5s ease;
}

#hamburgeropen.open {
    display: block;
    height: 100vh;
    transition: all 0.5s ease;
    z-index: 100;
}

#hamburgeropen>div {
    padding: 1.5em;
}

#hamburgeropen h2 {
    width: 11%;
    margin: 32% auto 0;
}

#hamburgeropen nav ul li {
    line-height: 2em;
    padding: 0.7em 0;
}

#hamburgeropen nav ul li a {
    display: inline-block;
    color: black;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.18em;
}

#hamburgeropen nav ul li a::after {
    background-color: black;
    bottom: 0;
    content: '';
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    transition: .5s all;
    width: 0;
}

#hamburgeropen nav ul li:hover a::after {
    width: 100%;
}

#topheader h1 {
    height: 100vh;
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 8rem 0;
}

#topheader h1 img {
    display: block;
    width: 7%;
    padding: 8rem 0;
}

/* -------ここからtopmain -------*/
.tutorial {
    height: 100vh;
    text-align: center;
    line-height: 2.1em;
    background-image: url(../img/top/sakura.png);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: contain;
}

.tutorial h3 {
    font-size: 1.8rem;
    padding: 7em;
}

#topaisatsu {
    width: 90%;
    height: 90vh;
    margin: 0 auto 15em;
    background-image: url(../img/top/topgaikan.png);
    background-position: bottom right 3em;
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 1.5em;
}

#topaisatsu a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 90vh;
    text-decoration: none;
    transition: all 0.5s ease;
    color: #fff;
    font-weight: bold;
    font-size: 1.5em;
}

#topaisatsu a:hover {
    opacity: 0.8;
    background-color: #ffffff33;
    transition: all 0.5s ease;
}

.topbox {
    width: 100%;
}

/* intro（共通） */
.topbox .block-one,
.topbox .block-two,
.topbox .block-three,
.topbox .block-four {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.topbox .block-one video,
.topbox .block-two video,
.topbox .block-three video,
.topbox .block-four video {
    display: block !important;
    position: absolute;
    top: 50%;
    left: 50%;
    /* width: 100vw;
    height: 100vh; */
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%;
    /* object-fit: cover; */
    /* z-index: -1; */
}

.topbox .block-one img,
.topbox .block-two img,
.topbox .block-three img,
.topbox .block-four img {
    display: none !important;
}

.topbox .box00 {
    color: #fff;
    text-shadow: 0 0 0.1em black;
    margin-bottom: 15em;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.topbox .block-one>div,
.topbox .block-two>div,
.topbox .block-three>div,
.topbox .block-four>div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: block;
    text-align: center;
    padding: 11%;
    line-height: 2em;
}

.topbox .block-one>div h4,
.topbox .block-two>div h4,
.topbox .block-three>div h4,
.topbox .block-four>div h4 {
    font-size: 1.8em;
    padding: 1.8em;
    letter-spacing: 0.7rem
}

.topbox .block-one>div>h4>span,
.topbox .block-two>div>h4>span,
.topbox .block-three>div>h4>span {
    display: inline-block;
    font-size: 1rem;
}

.topbox .block-one>div>div,
.topbox .block-two>div>div,
.topbox .block-three>div>div,
.topbox .block-four>div>div {
    width: fit-content;
    margin: 3em auto;
    padding: 0.5em 3.2em;
    background-color: #ffffffCC;
    border: 0.1em solid #fff;
}

.topbox .block-one>div>div:hover,
.topbox .block-two>div>div:hover,
.topbox .block-three>div>div:hover,
.topbox .block-four>div>div:hover {
    background-color: #ffffff;
    border: 0.1em solid #000;
    transition: all 0.3s ease;
}

.topbox .block-one>div>div a,
.topbox .block-two>div>div a,
.topbox .block-three>div>div a,
.topbox .block-four>div>div a {
    color: #777;
    font-size: 1.3em;
    font-weight: bold;
    text-decoration: none;
}

/* -------ここからあいさつページ------- */


#aisatsutop header,
#aisatsutop main {
    background-color: rgb(255, 255, 251);
}


.aisatsutitle::before {
    content: "";
    width: 4rem;
    height: 4rem;
    background-image: url(../img/aisastsuicon.png);
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 1.8rem;
}

.aisatsutitle {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    writing-mode: vertical-rl;
    letter-spacing: 0.1rem;
    padding-bottom: 11rem;
}

.aisatsututorial {
    width: 80%;
    margin: 0 auto;
    height: 150vh;
    /* background-image: url(../img/aisatu01.png);
    background-repeat: no-repeat;
    background-position: top 50 right;
    background-size: cover; */
    /*background-attachment: fixed; */

    /* position: fixed; */
    background: url(../img/aisatu01.png) no-repeat center/cover fixed;


}


.aisatsututorial p {

    width: 100%;
    height: 150vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-shadow: 0 0 1em #000, 0 0 1em #000, 0em 0em 2em #000, 0em 0em 2em #000;
    line-height: 3em;
    font-size: 1.1em;

}

#aisatsumain>section {
    text-align: center;
    padding: 15em 0;
    background-image: url(../img/top/sakura02.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

#aisatsumain>section h3 {
    padding: 2em 0;
    font-weight: bold;
    font-size: 1.8em;
}

#aisatsumain>section p {
    line-height: 3.5rem;
    font-weight: bold;
}

#aisatsumain>section p a {
    text-decoration: none;
    color: #000;
}

#aisatsumain>section p a:hover {
    color: #555;
}

#youtube::before {
    content: "◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇";
    display: block;
    width: 100%;
    height: 1rem;
    text-align: center;
    padding: 5rem 0 7rem;
    font-size: 0.3rem;
}

#youtube,
#youtube02 {
    margin: 11em 0;
}

#youtube p,
#youtube02 p {
    width: 50%;
    margin: 0 auto;
    padding: 1.5em 0;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
}

#youtube iframe {
    display: block;
    margin: 0 auto;
    width: 50%;
    height: 60vh;
}

/*  -------ここまであいさつメイン  -------*/

/*  -------ここから客室メイン  -------*/
.kyakushitsutitle::before {
    content: "";
    width: 4rem;
    height: 4rem;
    background-image: url(../img/kyakushitsuicon02.png);
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 1.8rem;
}

/* ここから挨拶・客室・料理・温泉・予約タイトル */
.kyakushitsutitle,
.ryourititle,
.onsentitle,
.yoyakutitle {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    writing-mode: vertical-rl;
    letter-spacing: 0.5rem;
    padding-bottom: 11rem;
}

.kyakushitsutitle>span,
.ryourititle>span,
.onsentitle>span,
.yoyakutitle>span {
    padding: 0.3rem;
    writing-mode: initial;
    font-size: 1.1rem;
    letter-spacing: 0.3rem;
}

#kyakushitsumain .block-one,
#ryourimain .block-two,
#onsenmain .block-three,
#yoyakumain .block-four {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

#kyakushitsumain .block-one img,
#ryourimain .block-two img,
#onsenmain .block-three img,
#yoyakumain .block-four img {
    position: absolute;
    top: 50%;
    left: 50%;
    /* width: 100vw;
    height: 100vh; */
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    /* z-index: -1; */
}

#kyakushitsumain .box00,
#ryourimain .box00,
#onsenmain .box00,
#yoyakumain .box00 {
    color: #fff;
    text-shadow: 0 0 0.1em black;
    margin-bottom: 15em;
}

#kyakushitsumain .block-one>div,
#ryourimain .block-two>div,
#onsenmain .block-three>div,
#yoyakumain .block-four>div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: block;
    text-align: center;
    padding: 18%;
    line-height: 3rem;
    font-size: 1.1rem;
}

/* ここまで挨拶・客室・料理・温泉・予約タイトル */

.item-list {
    width: 85%;
    max-width: 85%;
    margin: 0 auto;
    display: grid;
    /* grid-template-columns: repeat(auto-fit, 25%); */
    grid-template-columns: repeat(3, 1fr);
    column-gap: 3%;
    list-style: none;
    justify-content: space-around;
}

.item-list li img,
.item-list li h4,
.item-list li p {
    display: block;
    width: 100%;
    object-fit: contain;
    text-align: center;
    line-height: 1.8rem;
}

.item-list li img {
    margin-bottom: 1rem;
}

.item-list li>h4 {
    font-size: 1.1em;
    margin-bottom: 1rem;
}

.itemsecond::before {
    content: "◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇";
    display: block;
    width: 100%;
    height: 1rem;
    text-align: center;
    padding: 18rem 0 0;
    font-size: 0.3rem;
}

.itemsecond {
    margin-bottom: 11em;
}

.itemsecond h3 {
    padding: 11em 0 5em;
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
}

.second_il li p {
    text-align: left;
    width: 85%;
    max-width: 85%;
    margin: 0 auto;
}

.second_il li:first-of-type>a>img {
    margin-top: 0.7em;
    margin-bottom: 1.8em;
}

.second_il li>a>img:hover {
    opacity: 0.7;
}

.teikyou::after {
    content: "写真提供：黒川温泉公式HP";
    display: block;
    height: 1rem;
    width: 100%;
    padding: 3rem 0;
    text-align: right;
    font-size: 0.7rem;
    color: #777;
}

/*  -------ここまで客室メイン  -------*/
/*  -------ここから料理メイン  -------*/
.ryourititle::before {
    content: "";
    width: 4rem;
    height: 4rem;
    background-image: url(../img/ryouriicon.png);
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 1.8rem;
}

.menucontainer {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    text-align: center;
    line-height: 2;
}

.menucontainer div {
    width: 55%;
}

.menucontainer div ul {
    width: 90%;
    max-width: 90%;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 3rem;
    list-style: none;
}

.menucontainer div ul li {
    width: 100%;
}

.menucontainer div ul li img {
    display: block;
    width: 77%;
    margin: 0 auto;
}

.menucontainer>section {
    width: 40%;
    margin: 0 2rem 0 auto;
}

.menucontainer h4 {
    margin: 1rem auto;
    font-size: 1.1rem;
}

.menucontainer h4 span {
    font-size: 1rem;
}

.drink {
    text-align: center;
    padding: 13rem 0;
}

.drink p {
    padding: 3rem 0;
    letter-spacing: 0.1rem;
}

.drink ul {
    width: 60%;
    max-width: 60%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* column-gap: 3rem; */
    row-gap: 3rem;
    list-style: none;
}

.drink ul li {
    width: 100%;
}

.drink ul li img {
    display: block;
    width: 70%;
    margin: 0 auto;
}

.drink::after {
    content: "◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇";
    display: block;
    width: 100%;
    text-align: center;
    padding: 13rem 0 7rem;
    font-size: 0.3rem;
}

#ryourimain .yu img {
    width: 70%;
}

#ryourimain .yu p {
    width: 70%;
    margin: 0 auto;
}

#ryourimain .yu img {
    width: 70%;
}

#ryourimain .yu:nth-of-type(2) {
    margin-bottom: 15rem;
}

/*  -------ここまで料理メイン  -------*/

/*  -------ここから温泉メイン  -------*/
.onsentitle::before {
    content: "";
    width: 4rem;
    height: 4rem;
    background-image: url(../img/onsenicon02.png);
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 1.8rem;
}

#yu_container {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.yu {
    width: 100%;
}

.yu img,
.yu h4,
.yu p {
    display: block;
    width: 90%;
    margin: 2rem auto;
    text-align: center;
}

.yu h4 {
    font-size: 1.5rem;
}

.yu h4 span {
    font-size: 0.9rem;
    color: #777;
}

.annaicontainer::before {
    content: "◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇";
    display: block;
    width: 100%;
    height: 1rem;
    text-align: center;
    padding: 7rem 0;
    font-size: 0.3rem;
}

.annaicontainer {
    padding: 3rem 0 15rem;
}

.annaiwrap {
    width: 70%;
    max-width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.annaiwrap section {
    width: 100%;
}

.annaiwrap section img,
.annaiwrap section h4,
.annaiwrap section p {
    display: block;
    width: 85%;
    margin: 0 auto;
}

.annaiwrap section h4 {
    margin: 2.1rem auto;
    text-align: center;
}

.annaiwrap section p {
    width: 70%;
    margin: 0 auto;
}

.annaiwrap section p:nth-of-type(2) {
    text-align: center;
    padding: 3rem 0;

}

/*  -------ここまで温泉メイン  -------*/

/*  -------ここから予約メイン  -------*/
.yoyakutitle::before {
    content: "";
    width: 4rem;
    height: 4rem;
    background-image: url(../img/yoyakuicon.png);
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 1.8rem;
}

/* ここからreserveform */
.W-max1200 {
    width: 90%;
    /* max-width: 1200px; */
    margin: 0 auto;
}

.reserve section {
    width: 70%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 10rem;
    border: 0.2em solid #000;
    padding: 1.5rem 0;
}

.reserve section h2 {
    width: 100%;
    margin-bottom: 2rem;
    text-align: center;
}

.reserve section h2::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #000;
    display: block;
    margin-top: 1.5rem;
}

.reserve section>div {
    width: 45%;
    padding: 1rem;
}

.reserve section ul {
    margin-bottom: 2rem;
}

.reserve section form {
    width: 45%;
    margin: 0 auto;
    padding-top: 1.5rem;
}

.reserve section form p {
    width: 90%;
    margin-bottom: 0.3rem;
    color: #8c8278;
    font-size: 0.9rem;
}

.reserve section form p:first-child {
    line-height: 2;
    text-align: left;
    color: #000;
    margin-bottom: 2rem;
}

.reserve section form p:not(p:first-child)::before {
    content: "-";
    margin-right: 1rem;
}

.reserve section form p:not(p:first-child)::after {
    content: "-";
    margin-left: 1rem;
}

.reserve section form label {
    display: block;
    margin: 1.5rem 0 2rem;
}

.reserve section form label:nth-of-type(1) {
    margin: 3rem 0 2rem;
}

.reserve section form label input,
.reserve section form label select {
    height: 3rem;
    padding: 0 1rem;
    margin: 0 2rem;
}

.reserve section form button {
    display: block;
    margin: 0 auto;
    padding: 0.7rem;
    font-size: 1.1rem;
}

/* ここまでreserveform */

#accesswrap::before {
    content: "◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇◇";
    display: block;
    width: 100%;
    height: 1rem;
    text-align: center;
    padding: 7rem 0;
    font-size: 0.3rem;
}

#accesswrap,
#accesswrap>section {
    display: block;
    border: none;
    width: 65%;
    margin: 0 auto;
}

#access {
    text-align: center;
    font-size: 1.05em;
}

#accesswrap h4 {
    font-size: 1.8em;
    padding: 2.4em;
    text-align: center;
    font-weight: bold;
}

#accesswrap h5 {
    font-size: 1.3em;
    padding: 0.7rem;
    font-weight: bold;
}

#map {
    width: 77%;
    margin: 5em auto 15em;
}

#map iframe {
    width: 100%;
}

/*  -------ここまで予約メイン  -------*/

/*  -------ここからfooter  -------*/
footer {
    width: 100%;
    padding: 15rem 0 0;
    background-image: url(../img/footerback.png);
    background-repeat: repeat-x;
    background-size: contain;
    /* background-position: bottom left; */
    color: #fff;
}

.footernav {
    width: 65%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.footernav>ul {
    writing-mode: vertical-lr;
    line-height: 1.8em;
}

.footernav>ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.1em;
}

.footernav>ul li a:hover {
    text-decoration: none;
    color: #ccc;
    font-size: 1.1em;
}

footer>div {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-right: 28%;
    line-height: 1.5em;
}

footer>div .footercenter {
    width: 30%;
    text-align: center;
    line-height: 1.8rem;
}

footer div .footercenter p {
    padding: 0.5em 0;
}

footer div .footercenter p:nth-of-type(2) {
    font-size: 1.5em;
}

.insta {
    padding: 1rem;
}

.insta a {
    display: block;
    width: 100%;
}

.insta svg {
    width: 13%;
    transition: all 0.5s ease;
}

.st0 {

    fill: #fff;
}

.insta svg:hover path,
.insta svg:hover ellipse,
.insta svg:hover.st0 {
    fill: #e82f74;
    transition: all 0.5s ease;

}

/* footersvg */
.footer-logo {
    width: 11%;
}

.copy {
    text-align: right;
    padding: 1em;
}

/*  -------ここまでfooter  -------*/






/* ここからレスポンシブ */
@media (max-width: 600px) {
    body {
        width: 100%;
        overflow-x: hidden;
    }

    /*SVGanime_responsive  */
    .svgcontainer svg {
        width: 18%;
    }

    #sticky00 {
        top: 80%;
        padding: 0 2rem;
    }

    #sticky00 div a {
        /* display: block;
        width: 100%;
        height: 100%;
        color: black;
        text-decoration: none;
        font-weight: bold;
        text-align: center; */
        transform: translateX(10px);
    }

    /*------- header_responsive------- */
    body {
        width: 100%;
        max-width: 100%;
    }

    #headercontents {
        width: 100%;
    }

    #topheader h1 img {
        width: 18%;
        filter: drop-shadow(1px 1px 1px #1b0101);
    }



    #hamburgeropen h2 {
        width: 43%;
        margin: 50% auto 0;
        padding-top: 3em;
    }

    .openbtn2 {
        margin: 2rem 0 0 2rem;
        width: 3.5rem;
        height: 3.5rem;
    }

    .openbtn2 span:nth-of-type(1) {
        top: 1.1em;
    }

    .openbtn2 span:nth-of-type(2) {
        top: 1.75em;
    }

    .openbtn2 span:nth-of-type(3) {
        top: 2.4em;
    }


    .openbtn2.active span:nth-of-type(1) {
        top: 0.6em;
        left: 0.9em;
    }

    .openbtn2.active span:nth-of-type(3) {
        top: 2.6em;
        left: 0.9em;
    }

    /*------- ここまでheader_responsive------- */

    /*------- topmain_responsive------- */
    #topheader>img.sp {
        display: block !important;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        object-fit: cover;
        /* min-width: 100%; */
        /* min-height: 100% */
    }

    #topheader>video.pc {
        display: none !important;
    }

    .tutorial {
        height: 88vh;
    }

    .tutorial h3 {
        width: fit-content;
        margin: 0 auto;
        font-size: 1.1rem;
        padding: 7rem 0 5rem 0;
    }

    #topaisatsu {
        width: 77%;
        margin: 0 auto 13rem;
        height: 43vh;
        background-position: top right;
    }

    #topaisatsu a {
        height: 43vh;
        font-size: 2rem;
    }

    .topbox .block-one>div,
    .topbox .block-two>div,
    .topbox .block-three>div,
    .topbox .block-four>div {
        padding-top: 32%;
    }

    .topbox .block-one img,
    .topbox .block-two img,
    .topbox .block-three img,
    .topbox .block-four img {
        display: block !important;
        position: absolute;
        top: 50%;
        left: 50%;
        /* width: 100vw;
        height: 100vh; */
        transform: translateX(-50%) translateY(-50%);
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
        /* z-index: -1; */
    }

    .topbox .block-one video,
    .topbox .block-two video,
    .topbox .block-three video,
    .topbox .block-four video {
        display: none !important;
    }

    /* -------ここまでtopmain_responsive------- */

    /* -------aisatsumain_responsive------- */
    .aisatsututorial {
        height: 90vh;
    }

    .aisatsututorial p {
        width: 77%;
        height: 77vh;
        margin: 0 auto;
        padding-top: 5rem;
        line-height: 1.5em;
        font-size: 1em;
    }

    #aisatsumain>section {
        padding: 11em 0 5em;
    }

    #aisatsumain>section p {
        width: 63%;
        margin: 2.1rem auto;
        line-height: 2.4rem;
        font-size: 0.9rem;
    }

    #aisatsumain>section p span {
        display: inline-block;
        width: 100%;
        font-size: 1.1rem;
    }

    #youtube,
    #youtube02 {
        width: 100%;
        margin: 3em auto;
    }

    #youtube p,
    #youtube02 p {
        width: 70%;
        padding: 0;
        text-align: left;
        font-size: 1.1rem;
        font-weight: bold;
    }

    #youtube iframe {
        display: block;
        margin: 3em auto;
        width: 70%;
        height: 30vh;
    }

    /* -------ここまでaisatsumain_responsive------- */

    /* -------kyakushitsumain_responsive------- */
    #kyakushitsumain .block-one>div,
    #ryourimain .block-two>div,
    #onsenmain .block-three>div,
    #yoyakumain .block-four>div {
        padding: 21rem 2rem 0;
        line-height: 3rem;
        font-size: 1rem;
    }

    .item-list {
        display: block;
    }

    .item-list li {
        margin: 5rem 0;
    }

    .itemsecond::before {
        padding: 5rem 0 0;
    }

    .itemsecond h3 {
        padding: 3em 0 0;
    }

    /* -------ここまでkyakushitsumain_responsive------- */

    /* -------ryourimain_responsive------- */
    .menucontainer {
        display: block;
    }

    .menucontainer div {
        width: 100%;
    }

    .menucontainer div ul {
        width: 95%;
        max-width: 95%;
        margin: 0 auto;
        row-gap: 0.5rem;
        column-gap: 0.5rem;

    }

    .menucontainer div ul li img {
        width: 100%;
    }

    .menucontainer>section {
        width: 90%;
        margin: 3rem auto;
    }


    .drink {
        padding: 7rem 0;
    }

    .drink p {
        width: 77%;
        margin: 0 auto;
        text-align: left;
        letter-spacing: 0.1rem;
    }

    .drink ul {
        width: 90%;
        max-width: 90%;
        column-gap: 0.5rem;
        row-gap: 0.5rem;
        margin: 0 auto;
    }

    .drink ul li {
        width: 100%;
    }

    .drink ul li img {
        width: 100%;
    }

    /* -------ここまでryourimain_responsive------- */

    /* -------onsenmain_responsive------- */
    #yu_container {
        display: block;
    }

    .annaiwrap {
        display: flex;
        flex-direction: column;
    }

    .annai02 {
        order: 1;
    }

    .annai01 {
        order: 2;
    }

    .annaiwrap section img,
    .annaiwrap section h4,
    .annaiwrap section p {
        width: 90%;
    }

    /* -------ここまでonsenmain_responsive------- */

    /* -------yoyakumain_responsive------- */
    .reserve {
        width: 95%;
        margin: 0 auto;
    }

    .reserve section {
        width: 100%;

    }

    .reserve section h2 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .reserve section>div {
        width: 100%;
    }

    .slick-next::before {
        content: "";
    }

    .reserve section form {
        width: 95%;
        margin: 0 auto;
        padding-top: 1rem;
    }

    .reserve section form p {
        margin: 0 auto;
    }

    .reserve section form p:not(p:first-child) {
        width: 90%;
        font-size: 0.7rem;
    }

    .reserve section form p:not(p:first-child)::before {
        margin-right: 0.1rem;
    }

    .reserve section form p:not(p:first-child)::after {
        margin-left: 0.1rem;
    }

    /* ここまでreserveform  __responsive*/
    #accesswrap {
        width: 100%;
    }

    #accesswrap>section {
        width: 85%;
        margin: 3rem auto;
    }

    #map {
        margin: 5em auto 7em;
    }

    #map iframe {
        height: 18rem;
    }

    /* -------ここまでyoyakumain_responsive------- */

    /* -------footer_responsive------- */
    footer {
        width: 100%;
        display: block;
        background-position: top left;
        background-size: cover;
    }

    .footer>div {
        display: block;
        width: 90%;
        margin: 0 auto;

    }

    .footernav {
        display: block;
        margin: 3rem auto 5rem;
    }

    /* footersvg */
    .footer-logo {
        width: 32%;
        margin: 3rem auto;
        /* padding-top: 3em; */
    }

    .footernav>ul {
        margin: 0 auto;
    }

    footer>div .footercenter {
        width: 90%;
        margin: 0 auto;
    }

    footer>div .footercenter p {
        width: 100%;
        padding: 0;
    }

    .copy {
        font-size: 1rem;
        text-align: center;
        padding-bottom: 3em;
    }

    /* -------footer_responsive おわり------- */
}