@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: #562A06;
    font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "メイリオ", "Meiryo", sans-serif;
    font-optical-sizing: auto;
    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: #562A06; text-decoration: none;}
a:hover {color: #DED090; 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: #E5D38E;
    color: #FFF;
}
::-moz-selection {
    background: #E5D38E;
    color: #FFF;
}


/* 
layout
*/
#wrap {
    width: auto !important;
    width: 100%;
    background: url("../images/bg_yellow.png") no-repeat center top -675px;
    background-size: 1920px 1245px;
}

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

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

div.flexWrap {
    display: flex;
}

div.btn {
    position: relative;
    width: 180px;
    height: 45px;
    margin: 0 auto;
}
div.btn::before {
    content: "";
    position: absolute;
    z-index: 0;
    bottom: -3px;
    left: 0;
    width: 180px;
    height: 45px;
    background: #DED090;
    border: #DED090 solid 1px;
    border-radius: 22.5px;
}
div.btn a {
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
div.btn div.box {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 45px;
    background: #FFF;
    border: #DED090 solid 1px;
    border-radius: 22.5px;
    margin: 0 auto;
    transition: 0.5s 0s;
}
div.btn:hover div.box {
    top: 3px;
    background: #DED090;
}
div.btn div.box p {
    position: relative;
    text-align: center;
}
div.btn div.box p span.arrow {
    position: relative;
    display: inline-block;
    padding: 0 0 0 30px;
}
div.btn div.box p span.arrow::before,
div.btn div.box p span.arrow::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 10px;
    height: 2px;
    border-radius: 9999px;
    background-color: #562A06;
    transform-origin: calc(100% - 1px) 50%;
}
div.btn div.box p span.arrow::before {
    transform: rotate(45deg);
}
div.btn div.box p span.arrow::after {
    transform: rotate(-45deg);
}

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

/*----- header -----*/
header {
    width: 100%;
    padding: 30px 0 40px;
}

@media screen and (max-width: 960px) {
header {
    width: 100%;
    padding: 30px 0;
}
}

/*----- main -----*/
main {
}
article {
}
section p {
    line-height: 1.5;
}
section .mainTtl {
    position: absolute;
    z-index: 99;
    top: -290px;
    left: 0;
    right: 0;
    width: 90%;
    max-width: 900px;
    text-align: right;
    margin: 0 auto;
}

section#comingsoon {
    width: 100%;
}
section#comingsoon div.slide {
    position: relative;
    width: 90%;
    max-width: 1050px;
    margin: 0 auto;
}
section#comingsoon div.slide img.slide {
    border-radius: 15px;
}
section#comingsoon div.slide p {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    width: 120px;
    height: 160px;
    margin: 0 auto;
}
section#comingsoon div.message {
    position: relative;
    z-index: 9;
    width: 100%;
    min-height: 825px;
    background: url("../images/bg_yellow.png") no-repeat center top;
    background-size: 1920px 1245px;
    padding: 100px 0 50px;
    margin: -125px 0 0;
}
section#comingsoon div.message div.inner {
    width: 90%;
    max-width: 1050px;
    margin: 0 auto;
}
section#comingsoon div.message div.inner p {
    width: 50%;
    margin: 0 0 0 auto;
}
section#comingsoon div.message div.inner p.copy {
    border-bottom: #562A06 solid 1px;
    font-size: calc( 30 / var(--root-font-size) * 1rem );
    text-align: center;
    padding: 0 0 5px;
}
section#comingsoon div.message div.inner p.copy strong {
    font-size: calc( 40 / var(--root-font-size) * 1rem );
}
section#comingsoon div.message div.inner p.txt {
    padding: 25px 0;
}
section#comingsoon div.message div.inner p.menu {
    background: #DED090;
    border-radius: 10px;
    padding: 10px 15px;
}
section#comingsoon div.message div.inner p.menu a {
    text-decoration: underline;
}
section#comingsoon div.message div.inner p.menu a:hover {
    color: #FFF;
}

@media screen and (max-width: 960px) {
main {
}
article {
}
section p {
    line-height: 1.5;
}
section .mainTtl {
    position: absolute;
    z-index: 99;
    top: -170px;
    left: 0;
    right: 0;
    width: 80%;
    max-width: 900px;
    text-align: right;
    margin: 0 auto;
}

section#comingsoon {
    width: 100%;
}
section#comingsoon div.slide {
    position: relative;
    width: 90%;
    max-width: 1050px;
    margin: 0 auto;
}
section#comingsoon div.slide img.slide {
    border-radius: 15px;
}
section#comingsoon div.slide p {
    position: absolute;
    top: min(6vw, 30px);
    left: 0;
    right: 0;
    width: min(16vw, 120px);
    height: min(24vw, 160px);
    margin: 0 auto;
}
section#comingsoon div.message {
    position: relative;
    z-index: 9;
    width: 100%;
    min-height: 292.5px;
    background: url("../images/bg_yellow.png") no-repeat center top;
    background-size: 960px 622.5px;
    padding: 75px 0 220px;
    margin: -25px 0 0;
}
section#comingsoon div.message div.inner {
    width: 90%;
    max-width: 1050px;
    margin: 0 auto;
}
section#comingsoon div.message div.inner p {
    width: 100%;
    margin: 0;
}
section#comingsoon div.message div.inner p.copy {
    border-bottom: #562A06 solid 1px;
    font-size: calc( 18 / var(--root-font-size) * 1rem );
    text-align: center;
    padding: 0 0 5px;
}
section#comingsoon div.message div.inner p.copy strong {
    font-size: calc( 30 / var(--root-font-size) * 1rem );
}
section#comingsoon div.message div.inner p.txt {
    padding: 25px 0;
}
section#comingsoon div.message div.inner p.menu {
    background: #DED090;
    border-radius: 10px;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    padding: 10px 15px;
}
section#comingsoon div.message div.inner p.menu a {
    text-decoration: underline;
}
section#comingsoon div.message div.inner p.menu a:hover {
    color: #FFF;
}
}

/*----- greeting -----*/
section#greeting {
    position: relative;
    width: 100%;
    background: #FFF;
    padding: 50px 0 415px;
}
section#greeting::before {
    content: "";
    position: absolute;
    z-index: 10;
    top: -240px;
    left: 0;
    width: 100%;
    height: 240px;
    background: url("../images/bg_border1.png") no-repeat center top;
    background-size: 1920px 240px;
}
section#greeting div.flexWrap {
    justify-content: space-between;
    width: 90%;
    max-width: 1050px;
    margin: 0 auto;
}
section#greeting div.flexWrap div.flexL {
    width: 40%;
}
section#greeting div.flexWrap div.flexL figure {
    padding: 0 0 25px;
}
section#greeting div.flexWrap div.flexL figure img {
    border-radius: 15px;
}
section#greeting div.flexWrap div.flexL p.name {
    text-align: center;
}
section#greeting div.flexWrap div.flexL p.name span {
    font-size: calc( 24 / var(--root-font-size) * 1rem );
    padding: 0 0 0 15px;
}
section#greeting div.flexWrap div.flexR {
    width: 50%;
}
section#greeting div.flexWrap div.flexR p {
    line-height: 1.75;
}
section#greeting div.flexWrap div.flexR p.txt {
    padding: 0 0 50px;
}
section#greeting div.flexWrap div.flexR div.profile {
    max-width: 400px;
}
section#greeting div.flexWrap div.flexR div.profile p.ttl {
    border-bottom: #707070 solid 1px;
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    padding: 0 0 10px;
    margin: 0 0 10px;
}

@media screen and (max-width: 960px) {
section#greeting {
    position: relative;
    width: 100%;
    background: #FFF;
    padding: 50px 0 270px;
}
section#greeting::before {
    content: "";
    position: absolute;
    z-index: 10;
    top: -120px;
    left: 0;
    width: 100%;
    height: 120px;
    background: url("../images/bg_border1.png") no-repeat left 37.5% top;
    background-size: 960px 120px;
}
section#greeting div.flexWrap {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 80%;
    max-width: 1050px;
    margin: 0 auto;
}
section#greeting div.flexWrap div.flexL {
    width: 100%;
    padding: 0 0 50px;
}
section#greeting div.flexWrap div.flexL figure {
    padding: 0 0 25px;
}
section#greeting div.flexWrap div.flexL figure img {
    border-radius: 15px;
}
section#greeting div.flexWrap div.flexL p.name {
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    text-align: center;
}
section#greeting div.flexWrap div.flexL p.name span {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    padding: 0 0 0 15px;
}
section#greeting div.flexWrap div.flexR {
    width: 100%;
}
section#greeting div.flexWrap div.flexR p {
    line-height: 1.75;
}
section#greeting div.flexWrap div.flexR p.txt {
    padding: 0 0 50px;
}
section#greeting div.flexWrap div.flexR div.profile {
    max-width: 400px;
}
section#greeting div.flexWrap div.flexR div.profile p {
    font-size: calc( 14 / var(--root-font-size) * 1rem );
}
section#greeting div.flexWrap div.flexR div.profile p.ttl {
    border-bottom: #707070 solid 1px;
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    padding: 0 0 10px;
    margin: 0 0 10px;
}
}

/*----- menu -----*/
section#menu {
    position: relative;
    width: 100%;
    background: #FFFDE9;
    padding: 50px 0 415px;
}
section#menu::before {
    content: "";
    position: absolute;
    z-index: 10;
    top: -240px;
    left: 0;
    width: 100%;
    height: 240px;
    background: url("../images/bg_border2.png") no-repeat center top;
    background-size: 1920px 240px;
}
section#menu div.inner {
    width: 90%;
    max-width: 1150px;
    background: #FFF;
    border-radius: 15px;
    padding: 75px;
    margin: 0 auto;
}
section#menu div.inner ul {
    display: flex;
    justify-content: space-between;
}
section#menu div.inner ul li {
    width: 47.5%;
}
section#menu div.inner ul li figure {
    padding: 0 37.5px 25px;
}
section#menu div.inner ul li figure img {
    border-radius: 15px;
}
section#menu div.inner ul li .ttl {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    text-align: center;
    padding: 0 0 50px;
}
section#menu div.inner ul li p.txt {
    line-height: 1.75;
    padding: 0 37.5px 25px;
}
section#menu div.inner ul li p.price {
    text-align: center;
}
section#menu div.inner ul li p.price span {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
}
section#menu div.inner ul li p.note {
    background: #FFFDE9;
    border-radius: 10px;
    padding: 10px 15px;
    margin: 15px 0;
}

@media screen and (max-width: 960px) {
section#menu {
    position: relative;
    width: 100%;
    background: #FFFDE9;
    padding: 25px 0 270px;
}
section#menu::before {
    content: "";
    position: absolute;
    z-index: 10;
    top: -120px;
    left: 0;
    width: 100%;
    height: 120px;
    background: url("../images/bg_border2.png") no-repeat left 37.5% top;
    background-size: 960px 120px;
}
section#menu div.inner {
    width: 90%;
    max-width: 1150px;
    background: #FFF;
    border-radius: 15px;
    padding: 50px 5vw;
    margin: 0 auto;
}
section#menu div.inner ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
section#menu div.inner ul li {
    width: 100%;
    padding: 0 0 100px;
}
section#menu div.inner ul li:last-child {
    padding: 0;
}
section#menu div.inner ul li figure {
    padding: 0 5vw 25px;
}
section#menu div.inner ul li figure img {
    border-radius: 15px;
}
section#menu div.inner ul li .ttl {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    text-align: center;
    padding: 0 0 25px;
}
section#menu div.inner ul li p.txt {
    line-height: 1.75;
    padding: 0 5vw 25px;
}
section#menu div.inner ul li p.price {
    text-align: center;
}
section#menu div.inner ul li p.price span {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
}
section#menu div.inner ul li p.note {
    background: #FFFDE9;
    border-radius: 10px;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    padding: 10px 15px;
    margin: 15px 0;
}
}

/*----- access -----*/
section#access {
    position: relative;
    background: #FFF;
    padding: 50px 0 150px;
}
section#access::before {
    content: "";
    position: absolute;
    z-index: 10;
    top: -240px;
    left: 0;
    width: 100%;
    height: 240px;
    background: url("../images/bg_border3.png") no-repeat center top;
    background-size: 1920px 240px;
}
section#access div.information {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 900px;
    margin: 0 auto 75px;
}
section#access div.information div.informationL,
section#access div.information div.informationR {
    width: 45%;
}
section#access div.information div.informationR p.txt {
    line-height: 1.75;
    padding: 25px 0 0;
}
section#access div.reservation {
    display: flex;
    justify-content: center;
    width: 90%;
    margin: 0 auto 100px;
}
section#access div.reservation div {
    padding: 0 15px;
}
section#access div.flexWrap {
    justify-content: space-between;
    width: 90%;
    max-width: 1050px;
    margin: 0 auto 100px;
}
section#access div.flexWrap div.flexL {
    width: 55%;
}
section#access div.flexWrap div.flexL iframe {
    height: 100%!important;
}
section#access div.flexWrap div.flexL iframe,
section#access div.flexWrap div.flexR div img {
    border-radius: 15px;
}
section#access div.flexWrap div.flexR {
    width: 40%;
}
section#access div.flexWrap div.flexR p {
    line-height: 1.75;
    padding: 0 37.5px 50px;
}
section#access div.slide {
    display: flex;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
}
section#access div.slide div {
    padding: 0 10px;
}
section#access div.slide div img {
    border-radius: 15px;
}

@media screen and (max-width: 960px) {
section#access {
    position: relative;
    background: #FFF;
    padding: 50px 0 75px;
}
section#access::before {
    content: "";
    position: absolute;
    z-index: 10;
    top: -120px;
    left: 0;
    width: 100%;
    height: 120px;
    background: url("../images/bg_border3.png") no-repeat left 37.5% top;
    background-size: 960px 120px;
}
section#access div.information {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 80%;
    max-width: 900px;
    margin: 0 auto 50px;
}
section#access div.information div.informationL,
section#access div.information div.informationR {
    width: 100%;
}
section#access div.information div.informationL {
    padding: 0 0 50px;
}
section#access div.information div.informationR p.txt {
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    line-height: 1.75;
    padding: 0;
}
section#access div.reservation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 80%;
    margin: 0 auto 75px;
}
section#access div.reservation div {
    max-width: 285px;
    padding: 10px 15px;
}
section#access div.flexWrap {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 90%;
    max-width: 1050px;
    margin: 0 auto 25px;
}
section#access div.flexWrap div.flexL {
    width: 100%;
    padding: 0 0 50px;
}
section#access div.flexWrap div.flexL iframe {
    height: 300px!important;
}
section#access div.flexWrap div.flexL iframe,
section#access div.flexWrap div.flexR div img {
    border-radius: 15px;
}
section#access div.flexWrap div.flexR {
    width: 80vw;
    margin: 0 auto;
}
section#access div.flexWrap div.flexR p {
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    line-height: 1.75;
    padding: 0 0 50px;
}
section#access div.slide {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 80vw;
    margin: 0 auto;
}
section#access div.slide div {
    width: 100%;
    padding: 0 0 25px;
}
section#access div.slide div img {
    border-radius: 15px;
}
}

/*----- footer -----*/
footer {
    width: 100%;
    background: #FFF url("../images/bg_yellow.png") no-repeat center top;
    background-size: 1920px 1245px;
    padding: 225px 0 0;
}
header div.flexWrap,
footer div.flexWrap {
    align-items: flex-end;
    justify-content: space-between;
    width: 90%;
    max-width: 1050px;
    margin: 0 auto;
}
footer div.flexWrap {
    margin: 0 auto 100px;
}
header div.flexWrap div.flexL,
footer div.flexWrap div.flexL {
    width: 98px;
}
header div.flexWrap div.flexR,
footer div.flexWrap div.flexR {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: space-between;
    width: calc(100% - 173px);
}
header div.flexWrap div.flexR p,
footer div.flexWrap div.flexR p {
    line-height: 1.5;
}
footer div.flexWrap div.flexR p.address {
    padding: 0 25px 0 0;
}
header div.flexWrap div.flexR p.note,
footer div.flexWrap div.flexR p.note {
    width: 100%;
    padding: 25px 0 0 0;
}
header div.flexWrap div.flexR div.contact,
footer div.flexWrap div.flexR div.contact {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
header div.flexWrap div.flexR div.contact div.tel,
footer div.flexWrap div.flexR div.contact div.tel,
section#access div.information div.tel {
    padding: 0 25px 0 0;
}
header div.flexWrap div.flexR div.contact div.tel address,
footer div.flexWrap div.flexR div.contact div.tel address,
section#access div.information div.tel address {
    display: flex;
    justify-content: center;
}
section#access div.information div.tel address {
    justify-content: flex-start;
}
header div.flexWrap div.flexR div.contact div.tel address span,
footer div.flexWrap div.flexR div.contact div.tel address span,
section#access div.information div.tel address span {
    display: inline-block;
    height: 32px;
    border: #562A06 solid 1px;
    border-radius: 16px;
    letter-spacing: 0.2em;
    line-height: 30px;
    text-indent: 0.2em;
    padding: 0 15px;
    margin: 0 5px 0 0;
}
header div.flexWrap div.flexR div.contact div.tel address a,
footer div.flexWrap div.flexR div.contact div.tel address a,
section#access div.information div.tel address a {
    display: inline-block;
    font-size: calc( 27 / var(--root-font-size) * 1rem );
    letter-spacing: 0.1em;
    line-height: 30px;
    text-indent: 0.1em;
}
header div.flexWrap div.flexR div.contact div.tel p,
footer div.flexWrap div.flexR div.contact div.tel p {
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    text-align: center;
    padding: 10px 0 0;
}

footer .copyright {
    width: 100%;
    background: #DED090;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    font-weight: 600;
    line-height: 40px;
    text-align: center;
}

@media screen and (max-width: 960px) {
footer {
    width: 100%;
    background: #FFF url("../images/bg_yellow.png") no-repeat center top;
    background-size: 960px 622.5px;
    padding: 50px 0 0;
}
header div.flexWrap,
footer div.flexWrap {
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 90%;
    max-width: 1050px;
    margin: 0 auto;
}
footer div.flexWrap {
    margin: 0 auto 25px;
}
header div.flexWrap div.flexL,
footer div.flexWrap div.flexL {
    width: 98px;
    margin: 0 auto 25px;
}
header div.flexWrap div.flexR,
footer div.flexWrap div.flexR {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}
header div.flexWrap div.flexR p,
footer div.flexWrap div.flexR p {
    line-height: 1.5;
}
footer div.flexWrap div.flexR p.address {
    width: 100%;
    text-align: center;
    padding: 0 0 25px;
}
header div.flexWrap div.flexR p.note,
footer div.flexWrap div.flexR p.note {
    width: 100%;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    padding: 15px 0 0 0;
}
header div.flexWrap div.flexR div.contact,
footer div.flexWrap div.flexR div.contact {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
header div.flexWrap div.flexR div.contact div.tel,
footer div.flexWrap div.flexR div.contact div.tel,
section#access div.information div.tel {
    padding: 0 25px 25px 0;
}
header div.flexWrap div.flexR div.contact div.tel address,
footer div.flexWrap div.flexR div.contact div.tel address,
section#access div.information div.tel address {
    display: flex;
    justify-content: center;
}
section#access div.information div.tel address {
    justify-content: flex-start;
}
header div.flexWrap div.flexR div.contact div.tel address span,
footer div.flexWrap div.flexR div.contact div.tel address span,
section#access div.information div.tel address span {
    display: inline-block;
    height: 32px;
    border: #562A06 solid 1px;
    border-radius: 16px;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    letter-spacing: 0.1em;
    line-height: 30px;
    text-indent: 0.1em;
    padding: 0 10px;
    margin: 0 5px 0 0;
}
header div.flexWrap div.flexR div.contact div.tel address a,
footer div.flexWrap div.flexR div.contact div.tel address a,
section#access div.information div.tel address a {
    display: inline-block;
    font-size: calc( 24 / var(--root-font-size) * 1rem );
    letter-spacing: 0.1em;
    line-height: 30px;
    text-indent: 0.1em;
}
header div.flexWrap div.flexR div.contact div.tel p,
footer div.flexWrap div.flexR div.contact div.tel p {
    font-size: calc( 12 / var(--root-font-size) * 1rem );
    text-align: center;
    padding: 5px 0 0;
}

footer .copyright {
    width: 100%;
    background: #DED090;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    font-weight: 600;
    line-height: 40px;
    text-align: center;
}
}

.grecaptcha-badge {visibility: hidden;}

/*----- sp nav -----*/
/*アクティブになったエリア*/
#g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -125%;
    width: 70%;
    height: 100vh;/*ナビの高さ*/
    max-height: inherit;
    background: #466E3C;
    color: #FFF;
    transition: all 0.5s;
}
/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
    right: 0;
    z-index: 999;
    background: #466E3C;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    display: flex;
    align-items: center;
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    max-height: inherit;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav div.inner {
    width: 100%;
    margin: 50px auto;
    opacity: 0;/*はじめは透過0*/
}
/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive div.inner {
    opacity: 1;
}
#g-nav a {
    color: #FFF;
}
#g-nav ul {
    padding: 0 10vw;
}
#g-nav ul li {
    color: #FFF;
    font-family: "Montserrat", sans-serif;
    font-size: calc( 18 / var(--root-font-size) * 1rem );
    line-height: 1.5;
    padding: 5px 0;
}
#g-nav ul.sub {
    padding: 50px 10vw 0;
}
#g-nav ul.sub li {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "メイリオ", "Meiryo", sans-serif;
    font-size: calc( 12 / var(--root-font-size) * 1rem );
}

/*ボタンの設定*/
.openbtn {
    position: fixed;
    z-index: 10000;/*ボタンを最前面に*/
    top: min(5vw, 30px);
    right: min(5vw, 30px);
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #466E3C;
    border-radius: 10px;
    cursor: pointer;
    appearance: none;
}
.openbtn.active {
}
.openbtn p {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    color: #FFF;
    font-family: "Montserrat", sans-serif;
    font-size: calc( 9 / var(--root-font-size) * 1rem );
    text-align: center;
    text-indent: 0.1em;
    margin: 0 auto;
}
.openbtn.active p {
    color: #FFF;
}
.openbtn span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background: #FFF;
    margin: 0 auto;
    transition: all 0.5s;
}
.openbtn.active span {
    background: #FFF;
}
.openbtn span:nth-of-type(1) {
    top: 0;
    bottom: 20px;
    margin: auto;
    animation: menu-bar1 0.5s forwards;
}
.openbtn span:nth-of-type(2) {
    top: 10px;
    bottom: 10px;
    margin: auto;
    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) {
    animation: menu-active-bar2 0.5s forwards;
}

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

@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;}
}