@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;
}
:root {
    --spacing: 0;
}
* {
    letter-spacing: var(--spacing);
}

body {
    background: #FFF;
    color: #585858;
    font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ 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;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    overscroll-behavior-y: none;
}

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

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

a {color: #585858; text-decoration: none;}
a:hover {color: #585858; text-decoration: underline;}

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

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

.clear {clear: both;}

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

::selection {
    background: rgba(207, 219, 211, 0.8);
    color: #3A644B;
}
::-moz-selection {
    background: rgba(207, 219, 211, 0.8);
    color: #3A644B;
}


/* 
layout
*/
#wrap {
    width: 100%;
    margin: 0 auto;
}

.pc {
    display: inherit;
}
.sp {
    display: none;
}
@media screen and (max-width: 960px) {
.pc {
    display: none;
}
.sp {
    display: inherit;
}
}

/*----- common -----*/
main {
    display: block; /* IE */
}
main h2,
main h3,
main p,
main ul li {
    line-height: 1.5;
}

.mainTtl {
    position: relative;
    color: #3A644B;
    font-family: "Zen Maru Gothic", sans-serif;
    padding: 0 0 50px;
}
section#about-us .mainTtl,
section#staff .mainTtl,
main#single section#news .mainTtl,
main#single section#column .mainTtl,
section.common .mainTtl {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
section#menu-and-price .mainTtl,
section#news-and-column .mainTtl {
    padding: 0 0 100px;
}
main#archive section#news .archiveInformation,
main#archive section#column .archiveInformation {
    width: 90%;
    max-width: 1200px;
    padding: 0 75px 0 0;
    margin: 0 auto 25px;
}
main#archive section#news .archiveInformation.flexWrap,
main#archive section#column .archiveInformation.flexWrap {
    justify-content: space-between;
}
.mainTtl.center {
    text-align: center;
}
.mainTtl .jp {
    font-size: calc( 28 / var(--root-font-size) * 1rem );
    padding: 0 0 5px;
}
.mainTtl .en {
    font-size: calc( 24 / var(--root-font-size) * 1rem );
}

.flexWrap {
    display: flex;
}

div.btn {
    overflow: hidden;
}
div.archiveBtnArea div.btn {
    position: relative;
    margin: 0 25px 0 0;
}
div.archiveBtnArea div.btn::before {
    content: "";
    position: absolute;
    bottom: -1.5px;
    left: 30px;
    z-index: 9;
    background: #E5ECE8;
    width: 4px;
    height: 3px;
}
div.archiveBtnArea div.btn::after {
    content: "";
    position: absolute;
    top: -1.5px;
    right: 30px;
    z-index: 9;
    background: #E5ECE8;
    width: 4px;
    height: 3px;
}
div.btn a,
div.archiveBtnArea div.btn select {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 80px;
    border: #3A644B solid 1.5px;
    border-radius: 100px;
}
div.btn.center a {
    margin: 0 auto;
}
section#reservations-contact div.btnWrap div.btn a {
    width: 400px;
    height: 200px;
}
div.archiveBtnArea div.btn select {
    width: 200px;
    height: 60px;
    background: url("../images/arrow_tate.svg") no-repeat right 30px center;
    background-size: 10px 27px;
    color: #3A644B;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    padding: 0 50px 0 25px;
}
div.btn a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1.5px;
    right: -1.5px;
    z-index: 0;
    background: #F1F5F3;
    width: calc(100% + 3px);
    height: 4px;
    margin: auto;
    transform: rotate(-15deg);
    transition: 0.25s 0s;
}
section#reservations-contact div.btnWrap div.btn a::after {
    height: 5px;
    background: #FFF;
    transform: rotate(-30deg);
    transition: 0.5s 0s;
}
main#single div.btn a::after,
main#common section div.btn a::after {
    background: #E5ECE8;
}
div.btn a:hover::after {
    transform: rotate(165deg);
}
section#reservations-contact div.btnWrap div.btn a:hover::after {
    transform: rotate(150deg);
}
div.btn a:hover {
    text-decoration: none;
}
div.btn a div {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 30px 0 0;
}
section#reservations-contact div.btnWrap div.btn a div {
    width: 250px;
    padding: 0;
}
div.btn a div p {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
}
div.btn a div p.ttl {
    position: relative;
    color: #3A644B;
    font-family: "Zen Maru Gothic", sans-serif;
    text-align: center;
    padding: 0 56px 0 0;
}
section#reservations-contact div.btnWrap div.btn a div p.ttl {
    font-size: calc( 28 / var(--root-font-size) * 1rem );
    text-align: inherit;
    padding: 0;
    margin: 0 0 15px;
}
div.btn a div p.ttl::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 56px;
    height: 16px;
    background: url("../images/arrow_yoko.svg") no-repeat center center;
    background-size: contain;
    margin: auto 0;
    transition: 0.5s 0s;
}
div.btn a:hover div p.ttl::after {
    right: -5px;
}

@media screen and (max-width: 960px) {
.mainTtl {
    position: relative;
    color: #3A644B;
    font-family: "Zen Maru Gothic", sans-serif;
    padding: 0 0 50px;
}
section#about-us .mainTtl,
section#staff .mainTtl,
main#single section#news .mainTtl,
main#single section#column .mainTtl,
section.common .mainTtl {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
section#menu-and-price .mainTtl,
section#news-and-column .mainTtl {
    padding: 0 0 50px;
}
section#staff .mainTtl {
    padding: 0 0 25px;
}
main#archive section#news .archiveInformation,
main#archive section#column .archiveInformation {
    width: 90%;
    max-width: 1200px;
    padding: 0;
    margin: 0 auto 50px;
}
.mainTtl.center {
    text-align: center;
}
.mainTtl .jp {
    font-size: calc( 22 / var(--root-font-size) * 1rem );
    padding: 0 0 5px;
}
.mainTtl .en {
    font-size: calc( 16 / var(--root-font-size) * 1rem );
}

.flexWrap {
    display: flex;
}

div.archiveBtnArea {
    width: 100%;
}
div.btn {
    overflow: hidden;
}
div.archiveBtnArea div.btn {
    position: relative;
    width: 47.5%;
    max-width: 175px;
    margin: 0 min(2.5%, 10px) 0 0;
}
div.archiveBtnArea div.btn::before {
    content: "";
    position: absolute;
    bottom: -1.5px;
    left: 30px;
    z-index: 9;
    background: #E5ECE8;
    width: 4px;
    height: 3px;
}
div.archiveBtnArea div.btn::after {
    content: "";
    position: absolute;
    top: -1.5px;
    right: 30px;
    z-index: 9;
    background: #E5ECE8;
    width: 4px;
    height: 3px;
}
div.btn a,
div.archiveBtnArea div.btn select {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 80px;
    border: #3A644B solid 1.5px;
    border-radius: 100px;
}
div.btn.center a {
    margin: 0 auto;
}
section#reservations-contact div.btnWrap div.btn a {
    width: 300px;
    height: 150px;
    margin: 0 0 25px;
}
div.archiveBtnArea div.btn select {
    width: 100%;
    height: 60px;
    background: url("../images/arrow_tate.svg") no-repeat right 20px center;
    background-size: 10px 27px;
    color: #3A644B;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: calc( 16 / var(--root-font-size) * 1rem );
    padding: 0 40px 0 25px;
}
div.btn a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1.5px;
    right: -1.5px;
    z-index: 0;
    background: #F1F5F3;
    width: calc(100% + 3px);
    height: 4px;
    margin: auto;
    transform: rotate(-15deg);
    transition: 0.25s 0s;
}
section#reservations-contact div.btnWrap div.btn a::after {
    height: 5px;
    background: #FFF;
    transform: rotate(-30deg);
    transition: 0.5s 0s;
}
main#single div.btn a::after,
main#common section div.btn a::after {
    background: #F1F5F3;
}
div.btn a:hover::after {
    transform: rotate(165deg);
}
section#reservations-contact div.btnWrap div.btn a:hover::after {
    transform: rotate(150deg);
}
div.btn a:hover {
    text-decoration: none;
}
div.btn a div {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 30px 0 0;
}
section#reservations-contact div.btnWrap div.btn a div {
    width: 200px;
    padding: 0;
}
div.btn a div p {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
}
div.btn a div p.ttl {
    position: relative;
    color: #3A644B;
    font-family: "Zen Maru Gothic", sans-serif;
    text-align: center;
    padding: 0 56px 0 0;
}
section#reservations-contact div.btnWrap div.btn a div p {
    font-size: calc( 18 / var(--root-font-size) * 1rem );
}
section#reservations-contact div.btnWrap div.btn a div p.ttl {
    font-size: calc( 22 / var(--root-font-size) * 1rem );
    text-align: inherit;
    padding: 0;
    margin: 0 0 10px;
}
div.btn a div p.ttl::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 56px;
    height: 16px;
    background: url("../images/arrow_yoko.svg") no-repeat center center;
    background-size: contain;
    margin: auto 0;
    transition: 0.5s 0s;
}
div.btn a:hover div p.ttl::after {
    right: -5px;
}
}

/*----- header -----*/
header {
    position: relative;
}
header .hLogoWrap {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 999;
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}
header .hLogo {
    width: 170px;
    height: 150px;
}
header div.flexWrap {
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1280px;
    height: 110px;
    margin: 0 auto;
}
#header div.flexWrap .logo {
    position: relative;
    width: 229.5px;
    height: 46.5px;
    background: none;
}
#header.HeightMin div.flexWrap .logo {
    background: url("../images/logo_yoko.svg") no-repeat center center;
    background-size: contain;
}
#header div.flexWrap .logo a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
header ul.flexWrap {
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}
header ul li {
    color: #3A644B;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: min(1.25vw, calc( 16 / var(--root-font-size) * 1rem ));
    padding: 0 0 0 min(2.34375vw, 30px);
}
header ul li a {
    display: inline-block;
    color: #3A644B;
    line-height: 40px;
}
header ul li a:hover {
    color: #CFDBD3;
    text-decoration: none;
}
header ul li.reservations-contact a {
    background: #3A644B;
    border-radius: 20px;
    color: #FFF;
    padding: 0 1em;
}

#header {
	position: fixed;
    z-index: 999;/*最前面へ*/
    width: 100%;
    height: 110px;
    background: transparent;
    transition: 0.25s 0s;
}
#header.HeightMin {
    background: rgba(255, 255, 255, 0.8);
	animation: HeaderAnime 1s forwards;
}

@keyframes HeaderAnime {
  from {
  	opacity: 0;
	transform: translateY(-150px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}

@media screen and (max-width: 960px) {
header {
    position: relative;
}
header .hLogoWrap {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    z-index: 999;
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}
header .hLogo {
    width: 102px;
    height: 90px;
}
}

/*----- main -----*/
div.header {
    position: relative;
}
div.header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35vw;
    background: url("../images/bg_contents1_top.svg") no-repeat center bottom;
    background-size: max(1500px, 100vw) max(525px, 35vw);
}
div.header div.sliderWrap {
    width: 100%;
    height: 900px;
}
div.header div.sliderWrap div.slide {
    width: 100%;
    height: 900px;
}
div.header div.sliderWrap div.bg1 {
    background: url("../images/slide1.jpg") no-repeat center center;
    background-size: cover;
}
div.header div.sliderWrap div.bg2 {
    background: url("../images/slide2.jpg") no-repeat center center;
    background-size: cover;
}
div.header div.sliderWrap div.bg3 {
    background: url("../images/slide3.jpg") no-repeat center center;
    background-size: cover;
}
div.header div.sliderWrap div.bg4 {
    background: url("../images/slide4.jpg") no-repeat center center;
    background-size: cover;
}
div.header div.sliderWrap div.bg5 {
    background: url("../images/slide5.jpg") no-repeat center center;
    background-size: cover;
}

@media screen and (max-width: 960px) {
div.header {
    position: relative;
}
div.header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35vw;
    background: url("../images/bg_contents1_top.svg") no-repeat center bottom;
    background-size: max(600px, 100vw) max(210px, 35vw);
}
div.header div.sliderWrap {
    width: 100%;
    height: 560px;
}
div.header div.sliderWrap div.slide {
    width: 100%;
    height: 560px;
}
div.header div.sliderWrap div.bg1 {
    background: url("../images/slide1_sp.jpg") no-repeat center center;
    background-size: cover;
}
div.header div.sliderWrap div.bg2 {
    background: url("../images/slide2_sp.jpg") no-repeat center center;
    background-size: cover;
}
div.header div.sliderWrap div.bg3 {
    background: url("../images/slide3_sp.jpg") no-repeat center center;
    background-size: cover;
}
div.header div.sliderWrap div.bg4 {
    background: url("../images/slide4_sp.jpg") no-repeat center center;
    background-size: cover;
}
div.header div.sliderWrap div.bg5 {
    background: url("../images/slide5_sp.jpg") no-repeat center center;
    background-size: cover;
}
}

/*----- About us -----*/
section#about-us {
    position: relative;
    background: url("../images/bg_contents1_bottom.svg") no-repeat center top, url("../images/bg_contents2_top.svg") no-repeat center bottom;
    background-color: #E5ECE8;
    background-size: max(1500px, 100vw) max(375px, 25vw), max(1500px, 100vw) max(450px, 30vw);
    padding: 75px 0 150px;
}
section#about-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(80% - min(5vw, 60px));
    width: 10vw;
    max-width: 120px;
    height: 15vw;
    max-height: 180px;
    background: url("../images/logo_mark.png") no-repeat center center;
    background-size: contain;
}
section#about-us div.inner {
    position: relative;
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
}
section#about-us div.inner div.block {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
section#about-us div.inner div.block p {
    width: 50%;
    line-height: 2;
    padding: 50px 0;
    margin: 0 auto;
}
section#about-us div.inner div.img1 {
    position: absolute;
    top: 25px;
    left: 0;
    width: 18vw;
    max-width: 243px;
    height: 24vw;
    max-height: 324px;
}
section#about-us div.inner div.img2 {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 22vw;
    max-width: 297px;
    height: 30vw;
    max-height: 405px;
    margin: auto 0;
}
section#about-us div.inner div.img3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 22vw;
    max-width: 297px;
    height: 30vw;
    max-height: 405px;
}

@media screen and (max-width: 960px) {
section#about-us {
    position: relative;
    background: url("../images/bg_contents1_bottom.svg") no-repeat center top, url("../images/bg_contents2_top.svg") no-repeat center bottom;
    background-color: #E5ECE8;
    background-size: max(600px, 100vw) max(150px, 25vw), max(600px, 100vw) max(180px, 30vw);
    padding: 75px 0;
}
section#about-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: inherit;
    right: 5vw;
    width: 16vw;
    max-width: 60px;
    height: 24vw;
    max-height: 90px;
    background: url("../images/logo_mark.png") no-repeat center center;
    background-size: contain;
}
section#about-us div.inner {
    position: relative;
    width: 90%;
    max-width: 12000px;
    padding: 0 0 calc(54vw + 50px);
    margin: 0 auto;
}
section#about-us div.inner div.block {
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding: 0 0 calc(43.2vw + 50px);
    margin: 0 auto;
}
section#about-us div.inner div.block p {
    width: 100%;
    line-height: 2;
    padding: 0;
    margin: 0 auto;
}
section#about-us div.inner div.img1 {
    position: absolute;
    top: inherit;
    bottom: 0;
    left: 5vw;
    width: 32.4vw;
    max-width: inherit;
    height: 43.2vw;
    max-height: inherit;
}
section#about-us div.inner div.img2 {
    position: absolute;
    top: inherit;
    bottom: min(44vw, 165px);
    right: 0;
    width: 39.6vw;
    max-width: inherit;
    height: 54vw;
    max-height: inherit;
    margin: 0;
}
section#about-us div.inner div.img3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 39.6vw;
    max-width: inherit;
    height: 54vw;
    max-height: inherit;
}
}

/*----- Menu / Price -----*/
section#menu-and-price {
    background: url("../images/bg_contents2_bottom.svg") no-repeat center top, url("../images/bg_contents3_top.svg") no-repeat center bottom;
    background-color: #F1F5F3;
    background-size: max(1500px, 100vw) max(450px, 30vw), max(1500px, 100vw) max(450px, 30vw);
    padding: 100px 0 150px;
}
section#menu-and-price div.inner.flexWrap {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
section#menu-and-price div.inner div.box {
    width: 47.5%;
    background: #FFF;
    border-radius: 10px;
    padding: 50px 50px 75px;
    margin: 0 0 25px;
}
section#menu-and-price div.inner div.box div.ttlWrap {
    padding: 0 0 50px;
}
section#menu-and-price div.inner div.box div.ttlWrap.flexWrap {
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
section#menu-and-price div.inner div.box div.ttlWrap .ttl,
section#menu-and-price div.inner div.box div.ttlWrap p.price {
    color: #3A644B;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: calc( 24 / var(--root-font-size) * 1rem );
}
section#menu-and-price div.inner div.box div.ttlWrap .ttl span {
    display: inline-block;
    width: 35px;
    height: 45px;
    background: #3A644B;
    border-radius: 17.5px;
    color: #FFF;
    line-height: 45px;
    text-align: center;
}
section#menu-and-price div.inner div.box div.ttlWrap p.price {
    text-align: right;
}
section#menu-and-price div.inner div.box figure {
    margin: 0 0 25px;
}
section#menu-and-price div.inner div.box p.txt {
    line-height: 2;
}
section#menu-and-price div.inner p.note {
    width: 100%;
    line-height: 2;
    padding: 0 0 75px;
}

@media screen and (max-width: 960px) {
section#menu-and-price {
    background: url("../images/bg_contents2_bottom.svg") no-repeat center top, url("../images/bg_contents3_top.svg") no-repeat center bottom;
    background-color: #F1F5F3;
    background-size: max(600px, 100vw) max(180px, 30vw), max(600px, 100vw) max(180px, 30vw);
    padding: 75px 0;
}
section#menu-and-price div.inner.flexWrap {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
section#menu-and-price div.inner div.box {
    width: 100%;
    background: #FFF;
    border-radius: 10px;
    padding: 25px 5vw 50px;
    margin: 0 0 25px;
}
section#menu-and-price div.inner div.box:last-of-type {
    margin: 0;
}
section#menu-and-price div.inner div.box div.ttlWrap {
    padding: 0 0 25px;
}
section#menu-and-price div.inner div.box div.ttlWrap.flexWrap {
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
section#menu-and-price div.inner div.box div.ttlWrap .ttl,
section#menu-and-price div.inner div.box div.ttlWrap p.price {
    color: #3A644B;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: calc( 20 / var(--root-font-size) * 1rem );
}
section#menu-and-price div.inner div.box div.ttlWrap .ttl span {
    display: inline-block;
    width: 30px;
    height: 35px;
    background: #3A644B;
    border-radius: 15px;
    color: #FFF;
    line-height: 35px;
    text-align: center;
}
section#menu-and-price div.inner div.box div.ttlWrap p.price {
    width: 100%;
    text-align: center;
    padding: 5px 0 0;
}
section#menu-and-price div.inner div.box figure {
    margin: 0 0 15px;
}
section#menu-and-price div.inner div.box p.txt {
    line-height: 2;
}
section#menu-and-price div.inner p.note {
    width: 100%;
    line-height: 2;
    padding: 0 0 50px;
}
}

/*----- Staff -----*/
section#staff {
    background: url("../images/bg_contents3_bottom.svg") no-repeat center top, url("../images/bg_contents2_top.svg") no-repeat center bottom;
    background-color: #E5ECE8;
    background-size: max(1500px, 100vw) max(450px, 30vw), max(1500px, 100vw) max(450px, 30vw);
    padding: 75px 0 150px;
}
section#staff div.flexWrap {
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
section#staff div.flexWrap div.txtBlock {
    width: 50%;
}
section#staff div.flexWrap div.txtBlock p {
    line-height: 2;
}
section#staff div.flexWrap div.imgBlock {
    width: 45%;
}
section#staff div.flexWrap div.imgBlock figure {
    width: 100%;
    max-width: 420px;
    margin: 0 auto 50px;
}
section#staff div.flexWrap div.imgBlock p {
    font-family: "Zen Maru Gothic", sans-serif;
    text-align: center;
}
section#staff div.flexWrap div.imgBlock p.name {
    font-size: calc( 28 / var(--root-font-size) * 1rem );
    padding: 0 0 5px;
}
section#staff div.flexWrap div.imgBlock p.name span {
    color: #3A644B;
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    padding: 0 0 0 1em;
}
section#staff div.flexWrap div.imgBlock p.qualification {
    color: #3A644B;
}

@media screen and (max-width: 960px) {
section#staff {
    background: url("../images/bg_contents3_bottom.svg") no-repeat center top, url("../images/bg_contents2_top.svg") no-repeat center bottom;
    background-color: #E5ECE8;
    background-size: max(600px, 100vw) max(180px, 30vw), max(600px, 100vw) max(180px, 30vw);
    padding: 75px 0;
}
section#staff div.flexWrap {
    flex-direction: column-reverse;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
section#staff div.flexWrap div.txtBlock {
    width: 100%;
}
section#staff div.flexWrap div.txtBlock p {
    line-height: 2;
}
section#staff div.flexWrap div.imgBlock {
    width: 100%;
    padding: 0 0 75px;
}
section#staff div.flexWrap div.imgBlock figure {
    width: 100%;
    max-width: 420px;
    margin: 0 auto 50px;
}
section#staff div.flexWrap div.imgBlock p {
    font-family: "Zen Maru Gothic", sans-serif;
    text-align: center;
}
section#staff div.flexWrap div.imgBlock p.name {
    font-size: calc( 24 / var(--root-font-size) * 1rem );
    padding: 0 0 5px;
}
section#staff div.flexWrap div.imgBlock p.name span {
    color: #3A644B;
    font-size: calc( 18 / var(--root-font-size) * 1rem );
    padding: 0 0 0 1em;
}
section#staff div.flexWrap div.imgBlock p.qualification {
    color: #3A644B;
}
}

/*----- News / Column -----*/
section#news-and-column {
    background: #F1F5F3 url("../images/bg_contents2_bottom.svg") no-repeat center top;
    background-size: max(1500px, 100vw) max(450px, 30vw);
    padding: 100px 0 0;
}

section#news {
    padding: 0 0 75px;
}
section#news ul.archive {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto 100px;
}
section#news ul.archive li.article {
    border-top: #3A644B solid 1px;
    padding: 30px 0;
}
section#news ul.archive li.article:last-child {
    border-bottom: #3A644B solid 1px;
}
section#news div.flexWrap,
section#column div.flexWrap {
    flex-wrap: wrap;
    align-items: center;
}
section#column ul li.article div.flexWrap {
    justify-content: space-between;
    padding: 0 0 25px;
}
section#news div.flexWrap .date,
section#column div.flexWrap .date {
    color: #3A644B;
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    padding: 2.5px 25px 2.5px 0;
}
section#news div.flexWrap ul.category.flexWrap,
section#column div.flexWrap ul.category.flexWrap {
    flex-wrap: wrap;
}
section#news ul li.article div.flexWrap ul.category {
    padding: 0 25px 0 0;
}
section#news div.flexWrap ul.category li,
section#column div.flexWrap ul.category li {
    position: relative;
    border: #3A644B solid 1px;
    border-radius: 15px;
    font-family: "Zen Maru Gothic", sans-serif;
    line-height: 28px;
    padding: 0 1em;
    margin: 2.5px 5px 2.5px 0;
}
section#news div.flexWrap ul.category li {
    background: #3A644B;
    color: #FFF;
}
section#column div.flexWrap ul.category li {
    background: #FFF;
    color: #3A644B;
}
section#news div.flexWrap ul.category li:last-child,
section#column div.flexWrap ul.category li:last-child {
    margin: 2.5px 0;
}
section#news div.flexWrap ul.category li a,
section#column div.flexWrap ul.category li a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
section#news .articleTtl,
section#column .articleTtl {
    color: #3A644B;
    font-size: calc( 20 / var(--root-font-size) * 1rem );
}
section#news ul li.article .articleTtl a,
section#column ul li.article .articleTtl a {
    text-decoration: underline;
}
section#news ul li.article .articleTtl a:hover,
section#column ul li.article .articleTtl a:hover {
    text-decoration: none;
}

section#column {
    background: url("../images/bg_contents4_top.svg") no-repeat center bottom;
    background-size:  max(1500px, 100vw) max(450px, 30vw);
    padding: 75px 0 150px;
}
section#column ul.archive.flexWrap {
    flex-wrap: wrap;
    justify-content: center;
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
}
section#column ul li.article {
    width: calc(100% / 3);
    margin: 0 0 100px;
}
section#column ul li.article div.inner {
    width: 75%;
    max-width: 300px;
    margin: 0 auto;
}
section#column ul li.article figure {
    margin: 0 0 50px;
}
section#column ul li.article figure img {
    border-radius: 150px;
}

@media screen and (max-width: 960px) {
section#news-and-column {
    background: #F1F5F3 url("../images/bg_contents2_bottom.svg") no-repeat center top;
    background-size: max(600px, 100vw) max(180px, 30vw);
    padding: 75px 0 0;
}

section#news {
    padding: 0 0 25px;
}
section#news ul.archive {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto 75px;
}
section#news ul.archive li.article {
    border-top: #3A644B solid 1px;
    padding: 30px 0;
}
section#news ul.archive li.article:last-child {
    border-bottom: #3A644B solid 1px;
}
section#news div.flexWrap,
section#column div.flexWrap {
    flex-wrap: wrap;
    align-items: center;
}
section#column ul li.article div.flexWrap {
    justify-content: space-between;
    padding: 0 0 15px;
}
section#news div.flexWrap .date,
section#column div.flexWrap .date {
    color: #3A644B;
    font-size: calc( 18 / var(--root-font-size) * 1rem );
    padding: 2.5px 15px 2.5px 0;
}
section#news div.flexWrap ul.category.flexWrap,
section#column div.flexWrap ul.category.flexWrap {
    flex-wrap: wrap;
}
section#news ul li.article div.flexWrap ul.category {
    padding: 0;
}
section#news div.flexWrap ul.category li,
section#column div.flexWrap ul.category li {
    position: relative;
    border: #3A644B solid 1px;
    border-radius: 15px;
    font-family: "Zen Maru Gothic", sans-serif;
    line-height: 28px;
    padding: 0 1em;
    margin: 2.5px 5px 2.5px 0;
}
section#news div.flexWrap ul.category li {
    background: #3A644B;
    color: #FFF;
}
section#column div.flexWrap ul.category li {
    background: #FFF;
    color: #3A644B;
}
section#news div.flexWrap ul.category li:last-child,
section#column div.flexWrap ul.category li:last-child {
    margin: 2.5px 0;
}
section#news div.flexWrap ul.category li a,
section#column div.flexWrap ul.category li a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
section#news .articleTtl,
section#column .articleTtl {
    color: #3A644B;
    font-size: calc( 18 / var(--root-font-size) * 1rem );
}
section#news .articleTtl {
    width: 100%;
    padding: 15px 0 0;
}
section#news ul li.article .articleTtl a,
section#column ul li.article .articleTtl a {
    text-decoration: underline;
}
section#news ul li.article .articleTtl a:hover,
section#column ul li.article .articleTtl a:hover {
    text-decoration: none;
}

section#column {
    background: url("../images/bg_contents4_top.svg") no-repeat center bottom;
    background-size:  max(600px, 100vw) max(180px, 30vw);
    padding: 50px 0 100px;
}
section#column ul.archive.flexWrap {
    flex-wrap: wrap;
    justify-content: center;
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
}
section#column ul li.article {
    width: 100%;
    margin: 0 0 75px;
}
section#column ul li.article div.inner {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}
section#column ul li.article figure {
    margin: 0 0 50px;
}
section#column ul li.article figure img {
    border-radius: 150px;
}
}

/*----- Access -----*/
section#access {
    background: #E5ECE8 url("../images/bg_contents4_bottom.svg") no-repeat center top;
    background-size: max(1500px, 100vw) max(450px, 30vw);
    padding: 75px 0 0;
}
section#access div.flexWrap {
    align-items: flex-end;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    padding: 0 0 75px;
    margin: 0 auto;
}
section#access div.flexWrap div.txtBlock {
    width: 45%;
    padding: 0 0 50px;
}
section#access div.flexWrap div.txtBlock .logo {
    padding: 0 0 25px;
}
section#access div.flexWrap div.txtBlock p {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
}
section#access div.flexWrap div.txtBlock p.information {
    padding: 0 0 2.25em;
}
section#access div.flexWrap div.txtBlock p.reservation {
    display: inline-block;
    border: #3A644B solid 1.5px;
    color: #3A644B;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: calc( 24 / var(--root-font-size) * 1rem );
    line-height: 37px;
    padding: 0 0.75em;
    margin: 0 0 0.75em;
}
section#access div.flexWrap div.imgBlock {
    width: 45%;
}
section#access div.flexWrap div.imgBlock img {
    border-radius: 10px;
}
section#access div.googleMap {
    width: 100%;
}
section#access div.googleMap iframe {
    width: 100%;
    height: 400px;
}

@media screen and (max-width: 960px) {
section#access {
    background: #E5ECE8 url("../images/bg_contents4_bottom.svg") no-repeat center top;
    background-size: max(600px, 100vw) max(180px, 30vw);
    padding: 75px 0 0;
}
section#access div.flexWrap {
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    padding: 0 0 50px;
    margin: 0 auto;
}
section#access div.flexWrap div.txtBlock {
    width: 100%;
    padding: 0 0 50px;
}
section#access div.flexWrap div.txtBlock .logo {
    padding: 0 0 25px;
}
section#access div.flexWrap div.txtBlock p {
    font-size: calc( 18 / var(--root-font-size) * 1rem );
}
section#access div.flexWrap div.txtBlock p.information {
    padding: 0 0 2.25em;
}
section#access div.flexWrap div.txtBlock p.reservation {
    display: inline-block;
    border: #3A644B solid 1.5px;
    color: #3A644B;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    line-height: 37px;
    padding: 0 0.75em;
    margin: 0 0 0.75em;
}
section#access div.flexWrap div.imgBlock {
    width: 100%;
}
section#access div.flexWrap div.imgBlock img {
    border-radius: 10px;
}
section#access div.googleMap {
    width: 100%;
}
section#access div.googleMap iframe {
    width: 100%;
    height: 400px;
}
}

/*----- Reservations / Contact -----*/
section#reservations-contact {
    background: #FFF;
    padding: 125px 0 175px;
}
section#reservations-contact div.inner {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}
section#reservations-contact p.txt {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    text-align: center;
    padding: 0 0 100px;
}
section#reservations-contact div.btnWrap {
    padding: 0 0 75px;
}
section#reservations-contact div.btnWrap.flexWrap {
    flex-wrap: wrap;
    justify-content: center;
    /*justify-content: space-between;*/
}
section#reservations-contact div.information.flexWrap {
    flex-wrap: wrap;
    justify-content: center;
}
section#reservations-contact div.opening-hours {
    width: 100%;
    padding: 0 0 50px;
}
section#reservations-contact div.opening-hours.flexWrap {
    align-items: center;
    justify-content: center;
}
section#reservations-contact div.opening-hours p {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
}
section#reservations-contact div.opening-hours p.reservation {
    background: #3A644B;
    border-radius: 20px;
    color: #FFF;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: calc( 24 / var(--root-font-size) * 1rem );
    line-height: 40px;
    padding: 0 0.75em;
    margin: 0 0.75em 0 0;
}
section#reservations-contact ul.notes {
}
section#reservations-contact ul.notes li {
    position: relative;
    font-size: calc( 18 / var(--root-font-size) * 1rem );
    padding: 0 0 0 1em;
}
section#reservations-contact ul.notes li::before {
    content: "";
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 0.75em;
    height: 0.75em;
    border: #3A644B solid 1.5px;
    border-radius: 50%;
}

@media screen and (max-width: 960px) {
section#reservations-contact {
    background: #FFF;
    padding: 75px 0 150px;
}
section#reservations-contact div.inner {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}
section#reservations-contact p.txt {
    font-size: calc( 16 / var(--root-font-size) * 1rem );
    text-align: center;
    padding: 0 0 50px;
}
section#reservations-contact div.btnWrap {
    padding: 0 0 25px;
}
section#reservations-contact div.btnWrap.flexWrap {
    flex-wrap: wrap;
    justify-content: center;
    /*justify-content: space-between;*/
}
section#reservations-contact div.information.flexWrap {
    flex-wrap: wrap;
    justify-content: center;
}
section#reservations-contact div.opening-hours {
    width: 100%;
    padding: 0 0 25px;
}
section#reservations-contact div.opening-hours.flexWrap {
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
section#reservations-contact div.opening-hours p {
    display: inline-block;
    font-size: calc( 18 / var(--root-font-size) * 1rem );
}
section#reservations-contact div.opening-hours p.reservation {
    background: #3A644B;
    border-radius: 20px;
    color: #FFF;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    line-height: 40px;
    padding: 0 1.5em;
    margin: 0 0.75em 25px;
}
section#reservations-contact ul.notes {
}
section#reservations-contact ul.notes li {
    position: relative;
    font-size: calc( 16 / var(--root-font-size) * 1rem );
    padding: 0 0 0 1.5em;
}
section#reservations-contact ul.notes li::before {
    content: "";
    position: absolute;
    top: 0.25em;
    left: 0;
    width: 1em;
    height: 1em;
    border: #3A644B solid 1.5px;
    border-radius: 50%;
}
}

/*----- footer -----*/
footer {
}
footer p,
footer small {
    line-height: 1.5;
}
footer .copyright {
    background: #3A644B;
    color: #FFF;
    text-align: center;
    padding: 50px 0;
}
footer .copyright small {
    font-size: calc( 14 / var(--root-font-size) * 1rem );
}

/*----- page_top -----*/
/*リンクの形状*/
/*リンクを右下に固定*/
#page_top {
    position: fixed;
    right: 5%;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 104px;
    /*はじめは非表示*/
    opacity: 0;
    transform: translateY(129px);
    cursor: pointer;
}
/*上に上がる動き*/
#page_top.UpMove {
    animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(129px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*下に下がる動き*/
#page_top.DownMove {
    animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(129px);
  }
}

@media screen and (max-width: 960px) {
#page_top {
    position: fixed;
    right: 5%;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 78px;
    /*はじめは非表示*/
    opacity: 0;
    transform: translateY(98px);
    cursor: pointer;
}
/*上に上がる動き*/
#page_top.UpMove {
    animation: UpAnimeSp 0.5s forwards;
}
/*下に下がる動き*/
#page_top.DownMove {
    animation: DownAnimeSp 0.5s forwards;
}
}
@keyframes UpAnimeSp {
  from {
    opacity: 1;
    transform: translateY(98px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes DownAnimeSp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(98px);
  }
}

.grecaptcha-badge {visibility: hidden;}

/*----- sp nav -----*/
/*アクティブになったエリア*/
#g-nav {
    overflow: hidden;
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    width: 100%;
    height: 100%;/*ナビの高さ*/
    max-height: inherit;
    background: rgba(58, 100, 75, 0.8);
    transition: 0.5s 0s;
}
/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
    z-index: 9999;
    opacity: 1;
}

/*ナビゲーションの縦スクロール*/
#g-nav-list {  
    /*ナビの数が増えた場合縦スクロール*/
    overflow: auto;
    position: fixed;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -125%;
    width: 85%;
    height: auto;
    background: rgba(255, 255, 255, 0.8);
    border-bottom-left-radius: 200px;
    padding: 0 7.5vw;
    transition: 0.5s 0s;
}
#g-nav.panelactive #g-nav-list {
    right: 0;
}
#g-nav-list::before {
    content: "";
    position: absolute;
    bottom: 50px;
    left: inherit;
    right: 10vw;
    width: 16vw;
    max-width: 60px;
    height: 24vw;
    max-height: 90px;
    background: url("../images/logo_markGreen.svg") no-repeat center center;
    background-size: contain;
}

/*ナビゲーション*/
#g-nav div.inner {
    width: 100%;
    padding: 100px 0 250px;
    opacity: 0;/*はじめは透過0*/
}
/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive div.inner {
    opacity: 1;
}

#g-nav div.inner ul li {
    color: #3A644B;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: calc( 20 / var(--root-font-size) * 1rem );
}
#g-nav div.inner ul li a {
    display: inline-block;
    color: #3A644B;
    line-height: 40px;
    padding: 0 1em;
    margin: 0 0 10px;
}
#g-nav div.inner ul li a:hover {
    color: #FFF;
    text-decoration: none;
}
#g-nav div.inner ul li.reservations-contact a {
    background: #3A644B;
    border-radius: 25px;
    color: #FFF;
    margin: 10px 0 0;
}

/*ボタンの設定*/
.openbtn {
    position: fixed;
    z-index: 10000;/*ボタンを最前面に*/
    top: 0;
    right: 0;
    display: inline-block;
    width: 80px;
    height: 80px;
    background: #FFF;
    border-bottom-left-radius: 50px;
    cursor: pointer;
    appearance: none;
}
.openbtn.active {
    background: none;
}
.openbtn span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 5px;
    right: 0;
    width: 32px;
    height: 1px;
    background: #3A644B;
    border-radius: 1px;
    margin: 0 auto;
    transition: all 0.5s;
}
.openbtn.active span {
}
.openbtn span:nth-of-type(1) {
    top: 25px;
    animation: menu-bar1 0.5s forwards;
}
.openbtn span:nth-of-type(1)::after {
    position: absolute;
    content: "";
    top: 0;
    right: 6px;
    width: 2px;
    height: 1px;
    background: #FFF;
}
.openbtn span:nth-of-type(2) {
    top: 0;
    bottom: 10px;
    margin: auto;
}
.openbtn span:nth-of-type(3) {
    bottom: 35px;
    animation: menu-bar2 0.5s forwards;
}
.openbtn span:nth-of-type(3)::after {
    position: absolute;
    content: "";
    top: 0;
    left: 6px;
    width: 2px;
    height: 1px;
    background: #FFF;
}
.openbtn.active span:nth-of-type(1) {
    animation: menu-active-bar1 0.5s forwards;
}
.openbtn.active span:nth-of-type(1)::after,
.openbtn.active span:nth-of-type(3)::after {
    background: #DFE6E2;
}
.openbtn.active span:nth-of-type(2) {
    display: none;
}
.openbtn.active span:nth-of-type(3) {
    animation: menu-active-bar2 0.5s forwards;
}

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

#scrollNav {
    position: fixed;
    left: 0;
    bottom: -50px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 50px;
    background: #FFF;
}
#scrollNav div {
    position: relative;
    width: 100%;
    background: #000;
    padding: 0 5vw;
}
#scrollNav div p {
    color: #EFE3DA;
    font-size: calc( 12 / var(--root-font-size) * 1rem );
    text-align: center;
    text-indent: 0.05em;
}
#scrollNav div p:first-of-type {
    font-size: calc( 15 / var(--root-font-size) * 1rem );
    padding: 0 5px 0 0;
}
#scrollNav div a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 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;}
}