@charset "utf-8";

/***
    The new CSS reset - version 1.11.2 (last updated 15.11.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/

/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
    cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu, summary {
    list-style: none;
}

/* For images to not be able to exceed their container */
img {
    max-inline-size: 100%;
    max-block-size: 100%;
    height: auto;
    vertical-align: bottom;
}

/* removes spacing between cells in tables */
table {
    border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
    -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
    white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
    -webkit-appearance: revert;
    appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
    all: revert;
    box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::placeholder {
    color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
    display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable="false"])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
    -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
    -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
    all: revert;
    box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
    display: none;
}


/*
base
*/

:root {
    --root-font-size: 16;
}

body {
    background: #FFF;
    color: #758B97;
    font-family: "Kiwi Maru", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "メイリオ", "Meiryo", sans-serif;
    font-size: calc( 16 / var(--root-font-size) * 1rem );
    font-style: normal;
    letter-spacing: 0;
    line-height: 1;
    overscroll-behavior-y: none;
}

html,body {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}


body {
    position: relative;
    animation-name: fadeIn;
    animation-duration: 1s;
}
body.active {
    overflow: hidden;
    height:100%;
}

a {color: #758B97; text-decoration: none;}
a:hover {color: #FFE55F; text-decoration: none;}

a:hover img {
    filter: alpha(opacity=70);
    -khtml-opacity: 0.7;
    -moz-opacity: 0.7;
    opacity: 0.7;
}

a,
a:hover,
a img,
a:hover img {
    transition: 0.5s 0s;
}

.clear {clear: both;}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

::selection {
    background: #FFE55F;
    color: #FFF;
}
::-moz-selection {
    background: #FFE55F;
    color: #FFF;
}


/* 
layout
*/
#wrap {
    width: auto!important;
    width: 100%;
    background: url("../images/bg_img1.png") no-repeat left -125px top 175px, url("../images/bg_img2.png") no-repeat left 350px top -100px;
    background-size: 170px 170px, 144px 144px;
}

.pc {
    display: block;
}
.sp {
    display: none;
}
@media screen and (max-width: 960px) {
#wrap {
    width: auto!important;
    width: 100%;
    background: url("../images/bg_img1.png") no-repeat left -105px top 25px, url("../images/bg_img2.png") no-repeat left 200px top -80px;
    background-size: 127.5px 127.5px, 108px 108px;
}

.pc {
    display: none;
}
.sp {
    display: block;
}
}

/*----- common -----*/
main {
    display: block; /* IE */
}

div.flexWrap {
    display: flex;
}

@media screen and (max-width: 960px) {
}

/*----- header -----*/
header {
    width: 100%;
    padding: 50px 0 25px;
}
header div.flexWrap {
    justify-content: space-between;
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
}
header .logo {
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
}

@media screen and (max-width: 960px) {
header {
    width: 100%;
    padding: 25px 0 37.5px;
}
header div.flexWrap {
    justify-content: space-between;
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
}
header .logo {
    width: 80%;
    max-width: 1350px;
    margin: 0 auto;
}
header .logo img {
    width: 175px;
    height: auto;
}
}

/*----- main -----*/
main {
    overflow: hidden;
}
main p {
    line-height: 1.5;
}
article {
}

.mainTtl,
.subTtl {
    width: 90%;
    max-width: 900px;
    text-align: center;
    margin: 0 auto 50px;
}
.mainTtl h2,
.mainTtl p,
.subTtl h3,
.subTtl p {
    line-height: 1.5;
}
.subTtl h3 {
    font-size: calc( 24 / var(--root-font-size) * 1rem );
    padding: 0 0 5px;
}
.subTtl p {
    color: #BDC3CD;
    font-size: calc( 12 / var(--root-font-size) * 1rem );
}

@media screen and (max-width: 960px) {
main {
}
main p {
    line-height: 1.5;
}
article {
}

.mainTtl,
.subTtl {
    width: 90%;
    max-width: 900px;
    text-align: center;
    margin: 0 auto 37.5px;
}
.mainTtl h2,
.mainTtl p,
.subTtl h3,
.subTtl p {
    line-height: 1.5;
}
.subTtl h3 {
    font-size: calc( 24 / var(--root-font-size) * 1rem );
    padding: 0 0 5px;
}
.subTtl p {
    color: #BDC3CD;
    font-size: calc( 12 / var(--root-font-size) * 1rem );
}
}

/*----- headline -----*/
section#headline {
    position: relative;
    z-index: 9;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
section#headline::after {
    content: "";
    position: absolute;
    top: 0;
    right: -200px;
    width: 156px;
    height: 156px;
    background: url("../images/bg_img5.png") no-repeat center center;
    background-size: contain;
}
section#headline div.copy {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    width: 336px;
    height: 190px;
    margin: auto 0;
}
section#headline div.slide {
    position: relative;
    width: 60%;
    margin: 0 0 0 auto;
}
section#headline div.slide::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 50px;
    left: -100px;
    width: 150px;
    height: 150px;
    background: url("../images/bg_img3.png") no-repeat center center;
    background-size: contain;
    margin: auto 0;
}
section#headline div.slide::after {
    content: "";
    position: absolute;
    top: 50px;
    bottom: 0;
    right: -100px;
    width: 150px;
    height: 150px;
    background: url("../images/bg_img4.png") no-repeat center center;
    background-size: contain;
    margin: auto 0;
}

@media screen and (max-width: 960px) {
section#headline {
    position: relative;
    z-index: 9;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}
section#headline::after {
    content: "";
    position: absolute;
    top: 0;
    right: -200px;
    width: 156px;
    height: 156px;
    background: url("../images/bg_img5.png") no-repeat center center;
    background-size: contain;
}
section#headline div.copy {
    position: absolute;
    top: inherit;
    bottom: -137.5px;
    left: 5vw;
    z-index: 99;
    width: 224px;
    height: auto;
    margin: 0;
}
section#headline div.slide {
    position: relative;
    width: 100%;
    margin: 0 0 175px 10vw;
}
section#headline div.slide::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -70px;
    width: 112.5px;
    height: 112.5px;
    background: url("../images/bg_img3.png") no-repeat center center;
    background-size: contain;
    margin: auto 0;
}
section#headline div.slide::after {
    content: "";
    position: absolute;
    top: inherit;
    bottom: -60px;
    right: calc(10vw + 25px);
    width: 112.5px;
    height: 112.5px;
    background: url("../images/bg_img4.png") no-repeat center center;
    background-size: contain;
    margin: 0;
}
}

/*----- whatskiiro -----*/
section#whatskiiro {
    position: relative;
    width: 100%;
    background: #EFF0F0;
    padding: 200px 0 calc(100px + 10vw);
    margin: -150px 0 0;
}
section#whatskiiro::before {
    content: "";
    position: absolute;
    top: -10vw;
    left: 0;
    width: 100%;
    height: 10vw;
    background: url("../images/bg_lightgray.png") no-repeat center top;
    background-size: cover;
}

section#whatskiiro div.introduction {
    width: 90%;
    max-width: 900px;
    padding: 0 0 50px;
    margin: 0 auto;
}
section#whatskiiro div.introduction p {
    text-align: center;
    padding: 0 0 25px;
}
section#whatskiiro div.introduction p.ttl {
    font-size: calc( 24 / var(--root-font-size) * 1rem );
}

section#whatskiiro section#name {
    width: 90%;
    max-width: 1050px;
    padding: 50px 0;
    margin: 0 auto;
}
section#whatskiiro section#name ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
section#whatskiiro section#name ul li:nth-of-type(even) {
    margin: 50px 0 0;
}

section#whatskiiro section#point {
    width: 90%;
    max-width: 1050px;
    padding: 50px 0;
    margin: 0 auto;
}
section#whatskiiro section#point ol {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
section#whatskiiro section#point ol li {
    width: 300px;
    margin: 0 25px;
}
section#whatskiiro section#point ol li figure {
    width: 270px;
    margin: 0 auto 25px;
}
section#whatskiiro section#point ol li p.ttl {
    height: calc(3em + 25px);
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    text-align: center;
}
section#whatskiiro section#point ol li p.ttl span {
    background: radial-gradient(circle at calc(100% - 3px) calc(100% - 3px), #FFE55F 3px, transparent 3px),
    radial-gradient(circle at 3px calc(100% - 3px), #FFE55F 3px, transparent 3px),
    linear-gradient(to bottom, #EFF0F0 calc(100% - 6px), transparent calc(100% - 6px)),
    linear-gradient(to right, transparent 3px, #FFE55F 3px, #FFE55F calc(100% - 3px), transparent calc(100% - 3px));
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

@media screen and (max-width: 960px) {
section#whatskiiro {
    position: relative;
    width: 100%;
    background: #EFF0F0;
    padding: 50px 0 calc(100px + 10vw);
    margin: 0;
}
section#whatskiiro::before {
    content: "";
    position: absolute;
    top: -20vw;
    left: 0;
    width: 100%;
    height: 20vw;
    background: url("../images/bg_lightgray_sp.png") no-repeat center top;
    background-size: cover;
}

section#whatskiiro div.introduction {
    width: 80%;
    max-width: 900px;
    padding: 0 0 50px;
    margin: 0 auto;
}
section#whatskiiro div.introduction p {
    text-align: left;
    padding: 0 0 25px;
}
section#whatskiiro div.introduction p.ttl {
    font-size: calc( 24 / var(--root-font-size) * 1rem );
}

section#whatskiiro section#name {
    width: 100%;
    max-width: 1050px;
    padding: 50px 0;
    margin: 0 auto;
}
section#whatskiiro section#name ul {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
    padding: 50px 0 0;
}
section#whatskiiro section#name ul li {
    width: 40%;
    max-width: 210px;
}
section#whatskiiro section#name ul li:nth-of-type(odd) {
    margin: -50px 0 0;
}
section#whatskiiro section#name ul li:nth-of-type(even) {
    margin: 0px 0 0;
}

section#whatskiiro section#point {
    width: 90%;
    max-width: 1050px;
    padding: 50px 0;
    margin: 0 auto;
}
section#whatskiiro section#point ol {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
section#whatskiiro section#point ol li {
    width: 80%;
    max-width: 300px;
    margin: 0 25px 50px;
}
section#whatskiiro section#point ol li:last-child {
    margin: 0 25px;
}
section#whatskiiro section#point ol li figure {
    width: 270px;
    margin: 0 auto 25px;
}
section#whatskiiro section#point ol li p.ttl {
    height: auto;
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    text-align: center;
    padding: 0 0 25px;
}
section#whatskiiro section#point ol li p.ttl span {
    background: radial-gradient(circle at calc(100% - 3px) calc(100% - 3px), #FFE55F 3px, transparent 3px),
    radial-gradient(circle at 3px calc(100% - 3px), #FFE55F 3px, transparent 3px),
    linear-gradient(to bottom, #EFF0F0 calc(100% - 6px), transparent calc(100% - 6px)),
    linear-gradient(to right, transparent 3px, #FFE55F 3px, #FFE55F calc(100% - 3px), transparent calc(100% - 3px));
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}
}

/*----- access -----*/
section#access {
    position: relative;
    width: 100%;
    padding: 75px 0 calc(100px + 10vw);
}
section#access::before {
    content: "";
    position: absolute;
    top: -10vw;
    left: 0;
    width: 100%;
    height: 10vw;
    background: url("../images/bg_white.png") no-repeat center top;
    background-size: cover;
}
section#access div.map {
    width: 90%;
    max-width: 900px;
    height: 300px;
    margin: 0 auto 75px;
}
section#access div.map iframe {
    height: 100%!important;
}
section#access div.address {
    width: 90%;
    max-width: 900px;
    text-align: center;
    margin: 0 auto 75px;
}
section#access div.address div.logo {
    padding: 0 0 25px;
}
section#access div.address p {
    font-size: calc( 14 / var(--root-font-size) * 1rem );
}
section#access div.flexWrap {
    justify-content: space-between;
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}
section#access div.flexWrap div.flexL {
    width: 50%;
}
section#access div.flexWrap div.flexR {
    width: 40%;
}
section#access div.flexWrap div.flexR p {
    font-size: calc( 14 / var(--root-font-size) * 1rem );
}
section#access div.flexWrap div.flexR p span {
    font-size: calc( 16 / var(--root-font-size) * 1rem );
}

@media screen and (max-width: 960px) {
section#access {
    position: relative;
    width: 100%;
    padding: 50px 0 calc(100px + 20vw);
}
section#access::before {
    content: "";
    position: absolute;
    top: -20vw;
    left: 0;
    width: 100%;
    height: 20vw;
    background: url("../images/bg_white_sp.png") no-repeat center top;
    background-size: cover;
}
section#access div.map {
    width: 100%;
    max-width: 100%;
    height: 250px;
    margin: 0 auto 50px;
}
section#access div.map iframe {
    height: 100%!important;
}
section#access div.address {
    width: 80%;
    max-width: 900px;
    text-align: center;
    margin: 0 auto 25px;
}
section#access div.address div.logo {
    width: 175px;
    padding: 0 0 25px;
    margin: 0 auto;
}
section#access div.address p {
    font-size: calc( 14 / var(--root-font-size) * 1rem );
}
section#access div.flexWrap {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 80%;
    max-width: 900px;
    margin: 0 auto;
}
section#access div.flexWrap div.flexL {
    width: 100%;
    padding: 0 0 25px;
}
section#access div.flexWrap div.flexR {
    width: 100%;
}
section#access div.flexWrap div.flexR p {
    font-size: calc( 14 / var(--root-font-size) * 1rem );
}
section#access div.flexWrap div.flexR p span {
    font-size: calc( 16 / var(--root-font-size) * 1rem );
}
}

/*----- footer -----*/
footer {
    position: relative;
    width: 100%;
    background: #758B97;
    color: #FFF;
    padding: 75px 0 0;
}
footer::before {
    content: "";
    position: absolute;
    top: -10vw;
    left: 0;
    width: 100%;
    height: 10vw;
    background: url("../images/bg_gray.png") no-repeat center top;
    background-size: cover;
}
footer .copyright {
    width: 100%;
    font-size: calc( 12 / var(--root-font-size) * 1rem );
    line-height: 75px;
    text-align: center;
}

@media screen and (max-width: 960px) {
footer {
    width: 100%;
    background: #758B97;
    color: #FFF;
    padding: 25px 0 0;
}
footer::before {
    content: "";
    position: absolute;
    top: -20vw;
    left: 0;
    width: 100%;
    height: 20vw;
    background: url("../images/bg_gray_sp.png") no-repeat center top;
    background-size: cover;
}
footer .copyright {
    width: 100%;
    font-size: calc( 12 / var(--root-font-size) * 1rem );
    line-height: 50px;
    text-align: center;
}
}

.page_top {
    cursor: pointer;
    position: fixed;
    right: 2.5vw;
    bottom: 25px;
    width: 160px;
    height: 230px;
    z-index: 999;
}
.page_top {	
	-webkit-animation-name: pagetop;	
	-webkit-animation-duration: 2s;	
	-webkit-animation-iteration-count: infinite;	
	/*-webkit-animation-direction:alternate;*/	
	-webkit-animation-timing-function: ease-in-out;	
	-moz-animation-name: pagetop;	
	-moz-animation-duration: 2s;	
	-moz-animation-iteration-count: infinite;	
	/*-moz-animation-direction:alternate;*/	
	-moz-animation-timing-function: ease-in-out;	
}	
@-webkit-keyframes pagetop {	
	0% {transform: translate(0, 0);}	
	50% {transform: translate(0, -15px);}	
	100% {transform: translate(0, 0);}	
}	
@-moz-keyframes pagetop {	
	0% {transform: translate(0, 0);}	
	50% {transform: translate(0, -15px);}	
	100% {transform: translate(0, 0);}	
}
@keyframes pagetop {	
	0% {transform: translate(0, 0);}	
	50% {transform: translate(0, -15px);}	
	100% {transform: translate(0, 0);}	
}	
.page_top img {	
	-moz-transition: -moz-transform 0.5s linear;	
	-webkit-transition: -webkit-transform 0.5s linear;	
	-o-transition: -o-transform 0.5s linear;	
	-ms-transition: -ms-transform 0.5s linear;	
	transition: transform 0.5s linear;	
}
.page_top a:hover img {
	filter:alpha(opacity=100);
    -khtml-opacity:1;
    -moz-opacity:1;
    opacity:1;
}

@media screen and (max-width: 960px) {
.page_top {
    cursor: pointer;
    position: fixed;
    right: 2.5vw;
    bottom: 25px;
    width: 120px;
    height: 172.5px;
    z-index: 999;
}
}

.grecaptcha-badge {visibility: hidden;}

/*----- sp nav -----*/
/*アクティブになったエリア*/
#g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    opacity: 0;/*はじめは透過0*/
    z-index: -1;
    /*ナビのスタート位置と形状*/
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;/*ナビの高さ*/
    background: #FFF url("../images/nav_sp_bg2.png") no-repeat center bottom;
    background-size: 960px 200px;
    transition: 0.25s 0s;
}
/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
    opacity: 1;
    z-index: 9999;
}

/*ナビゲーションの縦スクロール*/
#g-nav-list {
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
#g-nav.panelactive #g-nav-list {
    display: block;/*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav div.inner {
    width: 100%;
    background: url("../images/nav_sp_bg1.png") no-repeat center top;
    background-size: 960px 150px;
    padding: 150px 0 50px;
    opacity: 0;/*はじめは透過0*/
}
/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive div.inner {
    opacity: 1;
}

#g-nav .reservation {
    width: 90%;
    max-width: 300px;
    margin: 0 auto;
}

#g-nav ul.gnav {
    width: 100%;
    padding: 25px 0;
}
/*リストのレイアウト設定*/
#g-nav ul.gnav li {
    position: relative;
    width: 90%;
    max-width: 300px;
    border-bottom: #DED090 solid 1px;
    line-height: 50px;
    margin: 0 auto;
}
#g-nav ul.gnav li span {
    position: absolute;/*絶対配置にする*/
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 9;
    width: 30px;
    height: 30px;
    background: #FFF;
    border: #DED090 solid 1px;
    box-shadow: 0px 2px 0px 0px rgba(222, 208, 144, 1);
    border-radius: 50%;
    margin: auto 0;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
}
#g-nav ul.gnav li span::before,
#g-nav ul.gnav li span::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    right: 0;
    width: 10px;
    height: 2px;
    background-color: #562A06;
    border-radius: 1px;
    margin: 0 auto;
    transform-origin: calc(100% - 1px) 50%;
}
#g-nav ul.gnav li span::before {
    transform: rotate(45deg);
}
#g-nav ul.gnav li span::after {
    transform: rotate(-45deg);
}
#g-nav ul.gnav li ul {
    padding: 0 0 15px;
}
#g-nav ul.gnav li ul li {
    width: 100%;
    border-bottom: none;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    line-height: 30px;
}
#g-nav ul.gnav li ul li::before {
    content: "\025cf";
    color: #DED090;
    margin: 0 0.25em 0 0;
}

/*ボタンの設定*/
.openbtn {
    position: fixed;
    z-index: 10000;/*ボタンを最前面に*/
    top: 7.5px;
    right: calc(5vw - 15px);
    display: inline-block;
    width: 60px;
    height: 60px;
    cursor: pointer;
    appearance: none;
}
.openbtn.active {
    background: none;
}
.openbtn span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    width: 30px;
    height: 1px;
    background: #562A06;
    margin: 0 auto;
    transition: all 0.5s;
}
.openbtn.active span {
    background: #562A06;
}
.openbtn span:nth-of-type(1) {
    top: 18px;
    animation: menu-bar1 0.5s forwards;
}
.openbtn span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
}
.openbtn span:nth-of-type(3) {
    bottom: 19px;
    animation: menu-bar2 0.5s forwards;
}
.openbtn.active span:nth-of-type(1) {
    animation: menu-active-bar1 0.5s forwards;
}
.openbtn.active span:nth-of-type(2) {
    display: none;
}
.openbtn.active span:nth-of-type(3) {
    animation: menu-active-bar2 0.5s forwards;
}

.openbtn p {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    color: #562A06;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    line-height: 1;
    text-align: center;
    margin: 0 auto;
    transition: all 0.5s;
}
.openbtn.active p {
    color: #654D37;
}

@keyframes menu-bar1 {
  0% {
    transform: translateY(11px) rotate(40deg);
  }
  50% {
    transform: translateY(11px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar2 {
  0% {
    transform: translateY(-11px) rotate(-40deg);
  }
  50% {
    transform: translateY(-11px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-active-bar1 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(11px) rotate(0);
  }
  100% {
    transform: translateY(11px) rotate(40deg);
  }
}
@keyframes menu-active-bar2 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-11px) rotate(0);
  }
  100% {
    transform: translateY(-11px) rotate(-40deg);
  }
}

@keyframes scroll-yoko {
  100% {
    background-position: 100% 0;
  }
}

/* fadeUp */
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(75px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
    opacity: 0;
}

@keyframes scroll_bar {
    0% {top: 30px;}
    100% {top: 130px;}
}
@keyframes scroll_barhide {
    0% {opacity: 0;}
    10% {opacity: 1;}
    50% {opacity: 1;}
    90% {opacity: 1;}
    100% {opacity: 0;}
 }
@-webkit-keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}