@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 {
    position: relative;
    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, url("../images/bg_yellow_bottom.png") no-repeat center bottom -460px;
    background-size: 1920px 1245px, 1920px 960px;
}

.pc {
    display: block;
}
.sp {
    display: none;
}
@media screen and (max-width: 960px) {
#wrap {
    width: auto!important;
    width: 100%;
    background: url("../images/bg_yellow_bottom.png") no-repeat center bottom -120px;
    background-size: 960px 480px;
}

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

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

div.flexWrap {
    display: flex;
}

div.btn {
    position: relative;
    width: 180px;
    height: 45px;
}
div.btn.center {
    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 {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 75px;
    background: #FFFDE9;
    padding: 15px 5vw;
}

/* スクロールしたらヘッダーを変更 */
header.js-header {
    height: 100px;
    transition: 0.5s 0s;
}
header.js-header h1 {
    position: relative;
    width: 100%;
    height: 85px;
}
header.js-header.headerScroll h1 {
    height: 45px;
}
header.js-header h1::after {
    content: "";
    position: absolute;
    left: -5vw;
    bottom: -30px;
    width: 210px;
    height: 35px;
    background: url("../images/bg_yellow_left.png") no-repeat left bottom;
    background-size: contain;
    transition: 0.5s 0s;
}
header.js-header.headerScroll h1::after {
    bottom: 0;
}
header.js-header.headerScroll {
    height: 75px;
}
.header-logo {
    position: relative;
    z-index: 9;
    width: 52.5px;
    height: auto;
    margin: 0 0 0 -1px;
}
.headerScroll.-before {
    display: none;
}
.header-logo.-after {
    display: none;
    width: 122px;
    height: auto;
    margin: 0;
}
.header-logo.headerScroll.-after {
    display: block;
}
}

/*----- main -----*/
main {
}
article {
    overflow: hidden;
}
div.contentsHeader {
    position: relative;
    width: 90%;
    max-width: 1000px;
    height: 200px;
    border-radius: 15px;
    margin: 0 auto 200px;
}
div.contentsHeader .mainTtl {
    position: absolute;
    z-index: 99;
    top: 65px;
    right: 50px;
}
main.first div.contentsHeader {
    background: url("../images/h_first.png") no-repeat center center;
    background-size: cover;
}
main.about div.contentsHeader {
    background: url("../images/h_about.png") no-repeat center center;
    background-size: cover;
}
main.staff div.contentsHeader {
    background: url("../images/h_staff.png") no-repeat center center;
    background-size: cover;
}
main.menu div.contentsHeader {
    background: url("../images/h_menu.png") no-repeat center center;
    background-size: cover;
}
main.faq div.contentsHeader {
    background: url("../images/h_faq.png") no-repeat center center;
    background-size: cover;
}
main.news div.contentsHeader {
    background: url("../images/h_news.png") no-repeat center center;
    background-size: cover;
}

article p {
    line-height: 1.5;
}
main.index article .mainTtl {
    position: absolute;
    z-index: 99;
    top: -290px;
    left: 0;
    right: 0;
    width: 90%;
    max-width: 900px;
    text-align: right;
    margin: 0 auto;
}
article .subTtl {
    font-size: calc( 24 / var(--root-font-size) * 1rem );
    text-align: center;
    padding: 0 0 75px;
}
article .subTtl span {
    border-bottom: #DED090 solid 2px;
}

section#headline {
    width: 100%;
}
section#headline div.slide {
    position: relative;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}
section#headline div.slide div.img {
    height: 520px;
    border-radius: 15px;
}
section#headline div.slide div.slide1 {
    background: url("../images/slide1.png") no-repeat center center;
    background-size: cover;
}
section#headline div.slide div.slide2 {
    background: url("../images/slide2.png") no-repeat center center;
    background-size: cover;
}
section#headline div.slide div.slide3 {
    background: url("../images/slide3.png") no-repeat center center;
    background-size: cover;
}
section#headline div.slide div.slide4 {
    background: url("../images/slide4.png") no-repeat center center;
    background-size: cover;
}
section#headline div.slide p {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    width: 120px;
    height: 160px;
    margin: 0 auto;
}
section#headline div.news {
    position: relative;
    z-index: 9;
    width: 100%;
    background: url("../images/bg_yellow_bottom.png") no-repeat center top;
    background-size: 1920px 960px;
    padding: 125px 0 50px;
    margin: -125px 0 0;
}
section#headline div.news div.inner {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}
section#headline div.news div.inner div.ttlWrap,
section#headline div.news div.inner ul.archive {
    width: 100%;
    max-width: 480px;
    margin: 0 0 0 auto;
}
section#headline div.news div.inner div.ttlWrap {
    position: relative;
    border-bottom: #562A06 solid 1px;
    padding: 0 0 10px;
}
section#headline div.news div.inner div.ttlWrap .ttl {
    font-size: calc( 24 / var(--root-font-size) * 1rem );
}
/* 左右矢印 */
section#headline div.news div.inner div.ttlWrap div.btn_news {
    position: absolute;
    top: 0;
    bottom: 10px;
    right: 5px;
    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;
    transition: 0.5s 0s;
}
section#headline div.news div.inner div.ttlWrap div.btn_news::before,
section#headline div.news div.inner div.ttlWrap div.btn_news::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%;
}
section#headline div.news div.inner div.ttlWrap div.btn_news::before {
    transform: rotate(45deg);
}
section#headline div.news div.inner div.ttlWrap div.btn_news::after {
    transform: rotate(-45deg);
}
section#headline div.news div.inner div.ttlWrap div.btn_news a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
section#headline div.news div.inner ul.archive {
    padding: 20px 0 0;
}
section#headline div.news div.inner ul.archive li.article {
    line-height: 1.5;
    padding: 10px 0;
}
section#headline div.news div.inner ul.archive li.article a {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
section#headline div.news div.inner ul.archive li.article a p.date {
    margin: 0 15px 0 0;
}
section#headline div.news div.inner ul.archive li.article a ul.category {
    display: flex;
    flex-wrap: wrap;
}
section#headline div.news div.inner ul.archive li.article a ul.category li {
    width: 80px;
    background: #DED090;
    border-radius: 10px;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    line-height: 20px;
    text-align: center;
    margin: 0 15px 0 0;
    transition: 0.5s 0s;
}
section#headline div.news div.inner ul.archive li.article a:hover ul.category li {
    color: #FFF;
}
section#headline div.news div.inner ul.archive li.article a ul.category li.news {
    background: #DED090;
}
section#headline div.news div.inner ul.archive li.article a ul.category li.blog {
    background: #EDE5B9;
}
section#headline div.news div.inner ul.archive li.article a p.title {
}

@media screen and (max-width: 960px) {
main.index {
    margin: 100px 0 0;
}
main {
    margin: 75px 0 0;
}
article {
    overflow: hidden;
}
div.contentsHeader {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 200px;
    border-radius: 0;
    margin: 0 auto 75px;
}
div.contentsHeader .mainTtl {
    position: absolute;
    z-index: 99;
    top: inherit;
    bottom: -25px;
    right: 10vw;
}
main.first div.contentsHeader {
    background: url("../images/h_first.png") no-repeat center center;
    background-size: cover;
}
main.about div.contentsHeader {
    background: url("../images/h_about.png") no-repeat center center;
    background-size: cover;
}
main.staff div.contentsHeader {
    background: url("../images/h_staff.png") no-repeat center center;
    background-size: cover;
}
main.menu div.contentsHeader {
    background: url("../images/h_menu.png") no-repeat center center;
    background-size: cover;
}
main.faq div.contentsHeader {
    background: url("../images/h_faq.png") no-repeat center center;
    background-size: cover;
}
main.news div.contentsHeader {
    background: url("../images/h_news.png") no-repeat right center;
    background-size: cover;
}

article p {
    line-height: 1.5;
}
main.index article .mainTtl {
    position: absolute;
    z-index: 99;
    top: -170px;
    left: 0;
    right: 0;
    width: 80%;
    max-width: 900px;
    text-align: right;
    margin: 0 auto;
}
article .subTtl {
    font-size: calc( 22 / var(--root-font-size) * 1rem );
    text-align: center;
    padding: 0 0 50px;
}
article .subTtl span {
    border-bottom: #DED090 solid 2px;
}

section#headline {
    width: 100%;
}
section#headline div.slide {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}
section#headline div.slide div.img {
    height: 100vw;
    border-radius: 0;
}
section#headline div.slide div.slide1 {
    background: url("../images/slide1_sp.png") no-repeat center center;
    background-size: cover;
}
section#headline div.slide div.slide2 {
    background: url("../images/slide2_sp.png") no-repeat center center;
    background-size: cover;
}
section#headline div.slide div.slide3 {
    background: url("../images/slide3_sp.png") no-repeat center center;
    background-size: cover;
}
section#headline div.slide div.slide4 {
    background: url("../images/slide4_sp.png") no-repeat center center;
    background-size: cover;
}
section#headline div.slide p {
    position: absolute;
    top: min(12vw, 60px);
    left: 0;
    right: 0;
    width: min(24vw, 120px);
    height: min(32vw, 160px);
    margin: 0 auto;
}
section#headline div.news {
    position: relative;
    z-index: 9;
    width: 100%;
    background: url("../images/bg_yellow_bottom.png") no-repeat center top;
    background-size: 960px 480px;
    padding: 100px 0 50px;
    margin: -100px 0 0;
}
section#headline div.news div.inner {
    width: 90%;
    max-width: 1050px;
    margin: 0 auto;
}
section#headline div.news div.inner div.ttlWrap,
section#headline div.news div.inner ul.archive {
    width: 100%;
    max-width: 480px;
    margin: 0 0 0 auto;
}
section#headline div.news div.inner div.ttlWrap {
    position: relative;
    border-bottom: #562A06 solid 1px;
    padding: 0 0 10px;
}
section#headline div.news div.inner div.ttlWrap .ttl {
    font-size: calc( 22 / var(--root-font-size) * 1rem );
}
section#headline div.news div.inner ul.archive {
    padding: 20px 0 0;
}
section#headline div.news div.inner ul.archive li.article {
    line-height: 1.5;
    padding: 10px 0;
}
section#headline div.news div.inner ul.archive li.article a {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
section#headline div.news div.inner ul.archive li.article a p.date {
    margin: 0 15px 0 0;
}
section#headline div.news div.inner ul.archive li.article a ul.category {
    display: flex;
    flex-wrap: wrap;
}
section#headline div.news div.inner ul.archive li.article a ul.category li {
    width: 80px;
    background: #DED090;
    border-radius: 15px;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    text-align: center;
    margin: 0 15px 0 0;
    transition: 0.5s 0s;
}
section#headline div.news div.inner ul.archive li.article a:hover ul.category li {
    color: #FFF;
}
section#headline div.news div.inner ul.archive li.article a ul.category li.news {
    background: #DED090;
}
section#headline div.news div.inner ul.archive li.article a ul.category li.blog {
    background: #EDE5B9;
}
section#headline div.news div.inner ul.archive li.article a p.title {
    width: 100%;
    padding: 10px 0 0;
}
}

@media screen and (max-width: 720px) {
main.about div.contentsHeader {
    background: url("../images/h_about.png") no-repeat left -150px center;
    background-size: cover;
}
}

/*----- first -----*/
main.first section#first {
    padding: 50px 0 315px;
    margin-top: -50px;
}
main.first section#first p.txt,
main.first section#introduce p.txt {
    width: 90%;
    max-width: 1000px;
    line-height: 1.75;
    text-align: center;
    margin: 0 auto 50px;
}
main.first section#first ul,
main.menu ul.menu-list {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;
}
main.first section#first ul li,
main.menu ul.menu-list li {
    border-top: #EFE3B5 solid 1px;
    padding: 50px 0;
}
main.menu ul.menu-list li {
    padding: 100px 0;
}
main.first section#first ul li div.inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
main.first section#first ul li div.flexWrap,
main.menu ul.menu-list li div.flexWrap {
    justify-content: space-between;
    width: 80vw;
    max-width: 1000px;
    margin: 0 auto;
}
main.menu ul.menu-list li div.flexWrap {
    flex-wrap: wrap;
}
main.first section#first ul li div.flexWrap div.flexL,
main.menu ul.menu-list li div.flexWrap div.flexL {
    width: 55%;
}
main.first section#first ul li div.flexWrap div.flexR,
main.first section#flow ol li div.flexWrap div.flexR,
main.menu ul.menu-list li div.flexWrap div.flexR {
    width: 40%;
}
main.first section#first ul li div.flexWrap div.flexR img,
main.first section#flow ol li div.flexWrap div.flexR img,
main.menu ul.menu-list li div.flexWrap div.flexR img {
    border-radius: 15px;
}
main.first section#flow ol li div.flexWrap div.flexR img:nth-of-type(2),
main.menu ul.menu-list li div.flexWrap div.flexR img:nth-of-type(2) {
    margin: 25px 0 0;
}
main.first section#first ul li p,
main.first section#flow ol li div.flexWrap div.flexL p,
main.menu ul.menu-list li p {
    line-height: 1.75;
}
main.first section#first ul li p.ttl,
main.menu ul.menu-list li div.flexWrap div.recommend p.ttl {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    padding: 0 0 25px;
}
main.menu ul.menu-list li div.flexWrap div.ttl {
    display: flex;
    width: 55%;
    border-bottom: #DED090 solid 2px;
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    padding: 0 0 10px;
    margin: 0 0 25px;
}
main.menu ul.menu-list li div.flexWrap div.ttl p.name {
    width: 50%;
    padding: 0 1em 0 0;
}
main.menu ul.menu-list li div.flexWrap div.ttl p.price {
    width: 50%;
}
main.menu ul.menu-list li div.flexWrap div.ttl p.price span.tax {
    font-size: calc( 16 / var(--root-font-size) * 1rem );
}
main.menu ul.menu-list li div.flexWrap div.recommend {
    position: relative;
    width: 100%;
    background: #FBF9F1;
    border-radius: 15px;
    padding: 50px 260px 50px 75px;
    margin: 50px 0 0;
}
main.menu ul.menu-list li div.flexWrap div.recommend::after {
    content: "";
    position: absolute;
    top: 25px;
    bottom: 0;
    right: 50px;
    width: 160px;
    height: 115px;
    background: url("../images/menu_illust.png") no-repeat center center;
    background-size: contain;
    margin: auto 0;
}

main.first section#introduce {
    position: relative;
    width: 100%;
    background: #FBF9F1;
    padding: 50px 0 200px;
}
main.first section#introduce::before {
    content: "";
    position: absolute;
    z-index: 10;
    top: -240px;
    left: 0;
    width: 100%;
    height: 240px;
    background: url("../images/bg_border4.png") no-repeat center top;
    background-size: 1920px 240px;
}
main.first section#introduce ul {
}
main.first section#introduce ul li {
}
main.first section#introduce .slick-slide {
    width: 60vw;
    margin: 0 5vw;
}
main.first section#introduce .slick-slide figure,
main.first section#introduce .slick-slide p {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}
main.first section#introduce .slick-slide figure {
    padding: 0 0 50px;
}
main.first section#introduce .slick-slide figure img {
    width: 100%!important;
    height: auto;
    border-radius: 15px;
}
main.first section#introduce .slick-slide p {
    text-align: center;
}
main.first section#introduce .slick-slide p.ttl {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    padding: 0 0 25px;
}

/* 左右矢印 */
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: min(calc(18.75vw - 22.5px), 257.5px);
    z-index: 9;
    width: 45px;
    height: 45px;
    background: #FFF;
    border: #DED090 solid 1px;
    box-shadow: 0px 2px 0px 0px rgba(222, 208, 144, 1);
    border-radius: 50%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
}
.slick-prev {/*戻る矢印の位置と形状*/
    right: calc(80% - 22.5px);
}
.slick-next {/*次へ矢印の位置と形状*/
    left: calc(80% - 22.5px);
}
.slick-prev::before,
.slick-prev::after,
.slick-next::before,
.slick-next::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    right: 0;
    width: 15px;
    height: 2px;
    background-color: #562A06;
    border-radius: 1px;
    margin: 0 auto;
}
.slick-prev::before {
    transform: rotate(45deg);
    transform-origin: 1px 50%;
}
.slick-prev::after {
    transform: rotate(-45deg);
    transform-origin: 1px 50%;
}
.slick-next::before {
    transform: rotate(45deg);
    transform-origin: calc(100% - 1px) 50%;
}
.slick-next::after {
    transform: rotate(-45deg);
    transform-origin: calc(100% - 1px) 50%;
}

main.first section#flow {
    padding: 100px 0 300px;
}
main.first section#flow ol {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;
}
main.first section#flow ol li {
    border: #EFE3B5 solid 1px;
    border-radius: 15px;
    padding: 50px 0;
}
main.first section#flow ol li + li {
    position: relative;
    margin: 100px 0 0;
}
main.first section#flow ol li + li::before,
main.first section#flow ol li + li::after {
    content: "";
    position: absolute;
    top: -57.5px;
    left: calc(50% - 1px);
    width: 2px;
    height: 15px;
    border-radius: 9999px;
    background-color: #562A06;
    transform-origin: 50% calc(100% - 1px);
}
main.first section#flow ol li + li::before {
    transform: rotate(45deg);
}
main.first section#flow ol li + li::after {
    transform: rotate(-45deg);
}
main.first section#flow ol li div.flexWrap {
    justify-content: space-between;
    width: 80vw;
    max-width: 1000px;
    margin: 0 auto;
}
main.first section#flow ol li div.flexWrap div.flexL {
    width: 50%;
}
main.first section#flow ol li div.flexWrap div.flexL p.ttl {
    border-bottom: #DED090 solid 2px;
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    margin: 0 0 25px;
}
main.first section#flow ol li div.flexWrap div.flexL p.ttl span {
    color: #DED090;
    font-size: calc( 40 / var(--root-font-size) * 1rem );
    margin: 0 0.25em 0 0;
}

@media screen and (max-width: 960px) {
main.first section#first {
    padding: 50px 0 165px;
    margin-top: -50px;
}
main.first section#first p.txt,
main.first section#introduce p.txt {
    width: 90%;
    max-width: 1000px;
    line-height: 1.75;
    text-align: left;
    margin: 0 auto 50px;
}
main.first section#first ul,
main.menu ul.menu-list {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;
}
main.first section#first ul li,
main.menu ul.menu-list li {
    border-top: #EFE3B5 solid 1px;
    padding: 50px 0;
}
main.menu ul.menu-list li {
    padding: 75px 0 50px;
}
main.first section#first ul li div.inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
main.first section#first ul li div.flexWrap,
main.menu ul.menu-list li div.flexWrap {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}
main.menu ul.menu-list li div.flexWrap {
    flex-wrap: wrap;
}
main.first section#first ul li div.flexWrap div.flexL,
main.menu ul.menu-list li div.flexWrap div.flexL {
    width: 100%;
}
main.first section#first ul li div.flexWrap div.flexR,
main.first section#flow ol li div.flexWrap div.flexR,
main.menu ul.menu-list li div.flexWrap div.flexR {
    width: 100%;
    text-align: center;
    padding: 25px 0 0;
}
main.first section#first ul li div.flexWrap div.flexR img,
main.first section#flow ol li div.flexWrap div.flexR img,
main.menu ul.menu-list li div.flexWrap div.flexR img {
    border-radius: 15px;
}
main.first section#flow ol li div.flexWrap div.flexR img:nth-of-type(2),
main.menu ul.menu-list li div.flexWrap div.flexR img:nth-of-type(2) {
    margin: 25px 0 0;
}
main.first section#first ul li p,
main.first section#flow ol li div.flexWrap div.flexL p,
main.menu ul.menu-list li p {
    line-height: 1.75;
}
main.first section#first ul li p.ttl,
main.menu ul.menu-list li div.flexWrap div.recommend p.ttl {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    padding: 0 0 25px;
}
main.menu ul.menu-list li div.flexWrap div.ttl {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border-bottom: #DED090 solid 2px;
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    padding: 0 0 10px;
    margin: 0 0 25px;
}
main.menu ul.menu-list li div.flexWrap div.ttl p.name {
    width: 100%;
    padding: 0;
}
main.menu ul.menu-list li div.flexWrap div.ttl p.price {
    width: 100%;
}
main.menu ul.menu-list li div.flexWrap div.ttl p.price span.tax {
    font-size: calc( 14 / var(--root-font-size) * 1rem );
}
main.menu ul.menu-list li div.flexWrap div.recommend {
    position: relative;
    width: 100%;
    background: #FBF9F1;
    border-radius: 15px;
    padding: 25px 5vw 150px;
    margin: 25px 0 0;
}
main.menu ul.menu-list li div.flexWrap div.recommend::after {
    content: "";
    position: absolute;
    top: inherit;
    bottom: 15px;
    left: 0;
    right: 0;
    width: 160px;
    height: 115px;
    background: url("../images/menu_illust.png") no-repeat center center;
    background-size: contain;
    margin: 0 auto;
}

main.first section#introduce {
    position: relative;
    width: 100%;
    background: #FBF9F1;
    padding: 25px 0 100px;
}
main.first section#introduce::before {
    content: "";
    position: absolute;
    z-index: 10;
    top: -120px;
    left: 0;
    width: 100%;
    height: 120px;
    background: url("../images/bg_border4.png") no-repeat center top;
    background-size: 960px 120px;
}
main.first section#introduce ul {
}
main.first section#introduce ul li {
}
main.first section#introduce .slick-slide {
    width: 60vw;
    margin: 0 2.5vw;
}
main.first section#introduce .slick-slide figure,
main.first section#introduce .slick-slide p {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}
main.first section#introduce .slick-slide figure {
    padding: 0 0 25px;
}
main.first section#introduce .slick-slide figure img {
    width: 100%!important;
    height: auto;
    border-radius: 15px;
}
main.first section#introduce .slick-slide p {
    text-align: center;
}
main.first section#introduce .slick-slide p.ttl {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    padding: 0 0 25px;
}

/* 左右矢印 */
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: calc(27.5vw - 15px);
    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%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
}
.slick-prev {/*戻る矢印の位置と形状*/
    right: calc(87.5% - 15px);
}
.slick-next {/*次へ矢印の位置と形状*/
    left: calc(87.5% - 15px);
}
.slick-prev::before,
.slick-prev::after,
.slick-next::before,
.slick-next::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;
}
.slick-prev::before {
    transform: rotate(45deg);
    transform-origin: 1px 50%;
}
.slick-prev::after {
    transform: rotate(-45deg);
    transform-origin: 1px 50%;
}
.slick-next::before {
    transform: rotate(45deg);
    transform-origin: calc(100% - 1px) 50%;
}
.slick-next::after {
    transform: rotate(-45deg);
    transform-origin: calc(100% - 1px) 50%;
}

main.first section#flow {
    padding: 50px 0 300px;
}
main.first section#flow ol {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;
}
main.first section#flow ol li {
    border: #EFE3B5 solid 1px;
    border-radius: 15px;
    padding: 25px 0;
}
main.first section#flow ol li + li {
    position: relative;
    margin: 50px 0 0;
}
main.first section#flow ol li + li::before,
main.first section#flow ol li + li::after {
    content: "";
    position: absolute;
    top: -32.5px;
    left: calc(50% - 1px);
    width: 2px;
    height: 15px;
    border-radius: 9999px;
    background-color: #562A06;
    transform-origin: 50% calc(100% - 1px);
}
main.first section#flow ol li + li::before {
    transform: rotate(45deg);
}
main.first section#flow ol li + li::after {
    transform: rotate(-45deg);
}
main.first section#flow ol li div.flexWrap {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 80vw;
    max-width: 1000px;
    margin: 0 auto;
}
main.first section#flow ol li div.flexWrap div.flexL {
    width: 100%;
}
main.first section#flow ol li div.flexWrap div.flexL p.ttl {
    position: relative;
    border-bottom: #DED090 solid 2px;
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    line-height: 1.5;
    padding: 20px 0 10px 50px;
    margin: 0 0 25px;
}
main.first section#flow ol li div.flexWrap div.flexL p.ttl span {
    position: absolute;
    top: 0;
    left: 0;
    color: #DED090;
    font-size: calc( 40 / var(--root-font-size) * 1rem );
    margin: 0 0.25em 0 0;
}
}

/*----- about -----*/
main.about {
    width: 100%;
    padding: 0 0 150px;
}
main.about div.imgWrap {
    position: relative;
    width: 90%;
    max-width: 660px;
    padding: 50px 0 200px;
    margin: 0 auto;
}
main.about div.imgWrap p {
    position: absolute;
    bottom: 100px;
    right: -200px;
    width: 202px;
    height: 206px;
}
main.about ol {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;
}
main.about ol li {
    border-top: #DED090 solid 1px;
    padding: 100px 0;
}
main.about ol li .subTtl {
    padding: 0 0 100px;
}
main.about ol li div.flexWrap {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
main.about ol li div.flexWrap div.imgBlock {
    position: relative;
    width: 40%;
    padding: 0 0 50px;
}
main.about ol li div.flexWrap div.imgBlock img.img {
    border-radius: 15px;
}
main.about ol li div.flexWrap div.imgBlock h3 {
    position: absolute;
    top: -30px;
    right: 25px;
}
main.about ol li div.flexWrap div.txtBlock {
    width: 50%;
    padding: 0 0 50px;
}
main.about ol li div.flexWrap div.txtBlock.bottom {
    align-self: flex-end;
    padding: 0 0 75px;
}
main.about ol li div.flexWrap div.txtBlock.center {
    width: 100%;
}
main.about ol li div.flexWrap div.txtBlock p {
    line-height: 1.75;
}
main.about ol li div.flexWrap div.txtBlock p.ttl {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
}
main.about ol li div.flexWrap div.txtBlock p.ttl span {
    color: #DED090;
    font-size: calc( 40 / var(--root-font-size) * 1rem );
    margin: 0 0.25em 0 0;
}

@media screen and (max-width: 960px) {
main.about {
    width: 100%;
    padding: 0 0 250px;
}
main.about div.imgWrap {
    position: relative;
    width: 90%;
    max-width: 660px;
    padding: 0 0 189.8px;
    margin: 0 auto 50px;
}
main.about div.imgWrap p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 161.6px;
    height: 164.8px;
    margin: 0 auto;
}
main.about ol {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;
}
main.about ol li {
    border-top: #DED090 solid 1px;
    padding: 100px 0 25px;
}
main.about ol li .subTtl {
    padding: 0 0 100px;
}
main.about ol li div.flexWrap {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
main.about ol li div.flexWrap div.imgBlock {
    position: relative;
    width: 100%;
    padding: 0 0 25px;
}
main.about ol li div.flexWrap div.imgBlock img.img {
    border-radius: 15px;
}
main.about ol li div.flexWrap div.imgBlock h3 {
    position: absolute;
    top: -30px;
    right: 25px;
}
main.about ol li div.flexWrap div.txtBlock {
    width: 100%;
    padding: 0 0 50px;
}
main.about ol li div.flexWrap div.txtBlock.bottom {
    align-self: flex-end;
    padding: 0 0 50px;
}
main.about ol li div.flexWrap div.txtBlock.center {
    width: 100%;
}
main.about ol li div.flexWrap div.txtBlock p {
    line-height: 1.75;
}
main.about ol li div.flexWrap div.txtBlock p.ttl {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    line-height: 1.5;
    padding: 0 0 15px;
}
main.about ol li div.flexWrap div.txtBlock p.ttl span {
    color: #DED090;
    font-size: calc( 40 / var(--root-font-size) * 1rem );
    margin: 0 0.25em 0 0;
}
}

/*----- greeting -----*/
section#greeting {
    width: 100%;
    padding: 0 0 195px;
}
main.index section#greeting {
    position: relative;
    background: #FFF;
    padding: 50px 0 315px;
}
main.index 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 {
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}
main.staff section#greeting div.flexWrap {
    padding: 120px 0 0;
}
section#greeting div.flexWrap div.imgBlock {
    width: 40%;
    padding: 0 0 75px;
}
main.staff section#greeting div.flexWrap div.imgBlock.left {
    position: relative;
}
main.staff section#greeting div.flexWrap div.imgBlock.left::before {
    content: "";
    position: absolute;
    top: -120px;
    right: 10px;
    width: 220px;
    height: 125px;
    background: url("../images/greeting_illust.png") no-repeat center center;
    background-size: contain;
}
section#greeting div.flexWrap div.imgBlock.right {
    width: 50%;
}
section#greeting div.flexWrap div.imgBlock figure {
    padding: 0 0 25px;
}
section#greeting div.flexWrap div.imgBlock img {
    border-radius: 15px;
}
section#greeting div.flexWrap div.imgBlock p.name {
    text-align: center;
}
section#greeting div.flexWrap div.imgBlock p.name span {
    font-size: calc( 24 / var(--root-font-size) * 1rem );
    padding: 0 0 0 15px;
}
section#greeting div.flexWrap div.txtBlock {
    width: 55%;
    padding: 0 0 75px;
}
section#greeting div.flexWrap div.txtBlock.left {
    width: 40%;
}
section#greeting div.flexWrap div.txtBlock p {
    line-height: 1.75;
}
section#greeting div.flexWrap div.txtBlock p.txt {
    padding: 0 0 75px;
}
section#greeting div.flexWrap div.txtBlock 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 {
    width: 100%;
    padding: 0 0 85px;
}
main.index section#greeting {
    position: relative;
    background: #FFF;
    padding: 50px 0 165px;
}
main.index 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 {
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 80%;
    max-width: 1050px;
    margin: 0 auto;
}
main.staff section#greeting div.flexWrap {
    padding: 100px 0 0;
}
section#greeting div.flexWrap div.imgBlock {
    width: 100%;
    padding: 0;
}
main.staff section#greeting div.flexWrap div.imgBlock.left {
    position: relative;
    padding: 0 0 25px;
}
main.staff section#greeting div.flexWrap div.imgBlock.left::before {
    content: "";
    position: absolute;
    top: -96px;
    right: 10px;
    width: 176px;
    height: 100px;
    background: url("../images/greeting_illust.png") no-repeat center center;
    background-size: contain;
}
section#greeting div.flexWrap div.imgBlock.right {
    width: 100%;
}
section#greeting div.flexWrap div.imgBlock figure {
    padding: 0 0 25px;
}
section#greeting div.flexWrap div.imgBlock img {
    border-radius: 15px;
}
section#greeting div.flexWrap div.imgBlock p.name {
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    text-align: center;
}
section#greeting div.flexWrap div.imgBlock p.name span {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    padding: 0 0 0 15px;
}
section#greeting div.flexWrap div.txtBlock {
    width: 100%;
    padding: 0 0 50px;
}
section#greeting div.flexWrap div.txtBlock.left {
    width: 100%;
}
section#greeting div.flexWrap div.txtBlock p {
    line-height: 1.75;
}
section#greeting div.flexWrap div.txtBlock p.txt {
    padding: 0 0 25px;
}
section#greeting div.flexWrap div.txtBlock div.profile p {
    font-size: calc( 14 / var(--root-font-size) * 1rem );
}
section#greeting div.flexWrap div.txtBlock 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;
}
}

main.staff section#character {
    position: relative;
    width: 100%;
    background: #FBF9F1;
    padding: 50px 0;
    margin: 0 0 calc(300px + 10vw);
}
main.staff section#character::before {
    content: "";
    position: absolute;
    z-index: 10;
    top: -120px;
    left: 0;
    width: 100%;
    height: 120px;
    background: url("../images/bg_border5.png") no-repeat center top;
    background-size: 1920px 120px;
}
main.staff section#character::after {
    content: "";
    position: absolute;
    z-index: 10;
    bottom: -10vw;
    left: 0;
    width: 100%;
    height: 10vw;
    background: url("../images/bg_border5_bottom.png") no-repeat center top;
    background-size: contain;
}
main.staff section#character p.txt {
    width: 90%;
    max-width: 1000px;
    line-height: 1.75;
    text-align: center;
    margin: 0 auto 25px;
}
main.staff section#character div.img {
    width: 90%;
    max-width: 1000px;
    text-align: center;
    margin: 0 auto;
}

@media screen and (max-width: 960px) {
main.staff section#character {
    position: relative;
    width: 100%;
    background: #FBF9F1;
    padding: 50px 0;
    margin: 0 0 calc(300px + 10vw);
}
main.staff section#character::before {
    content: "";
    position: absolute;
    z-index: 10;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background: url("../images/bg_border5.png") no-repeat center top;
    background-size: 960px 60px;
}
main.staff section#character::after {
    content: "";
    position: absolute;
    z-index: 10;
    bottom: -10vw;
    left: 0;
    width: 100%;
    height: 10vw;
    background: url("../images/bg_border5_bottom.png") no-repeat center top;
    background-size: contain;
}
main.staff section#character p.txt {
    width: 90%;
    max-width: 1000px;
    line-height: 1.75;
    text-align: center;
    margin: 0 auto 25px;
}
main.staff section#character div.img {
    width: 90%;
    max-width: 1000px;
    text-align: center;
    margin: 0 auto;
}
}

/*----- menu -----*/
section#menu,
section#about {
    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,
section#about div.inner {
    width: 90%;
    max-width: 1150px;
    background: #FFF;
    border-radius: 15px;
    padding: 75px;
    margin: 0 auto;
}
section#menu div.inner ul,
section#about div.inner ul {
    display: flex;
    justify-content: space-between;
}
section#about div.inner ul {
    flex-wrap: wrap;
}
section#menu div.inner ul li,
section#about div.inner ul li {
    width: 47.5%;
}
section#about div.inner ul li {
    width: 47.5%;
    padding: 50px 0;
}
section#menu div.inner ul li figure,
section#about div.inner ul li figure {
    padding: 0 37.5px 25px;
}
section#about div.inner ul li figure {
    position: relative;
}
section#menu div.inner ul li figure img,
section#about div.inner ul li figure img.img {
    border-radius: 15px;
}
section#about div.inner ul li figure p {
    position: absolute;
    top: -30px;
    right: 62.5px;
}
section#about div.inner ul li div.btn {
    margin: 0 37.5px;
}
section#menu div.inner ul li .ttl {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    text-align: center;
    padding: 0 0 50px;
}
section#about div.inner ul li .ttl {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    padding: 0 37.5px 25px;
}
section#menu div.inner ul li p.txt,
section#about 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,
section#about {
    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,
section#about div.inner {
    width: 90%;
    max-width: 1150px;
    background: #FFF;
    border-radius: 15px;
    padding: 50px 5vw;
    margin: 0 auto;
}
section#menu div.inner ul,
section#about div.inner ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
section#about div.inner ul {
    flex-wrap: wrap;
}
section#menu div.inner ul li,
section#about div.inner ul li {
    width: 100%;
    padding: 75px 0 50px;
}
section#about div.inner ul li {
    width: 100%;
    padding: 75px 0 50px;
}
section#menu div.inner ul li:last-child {
    padding: 0;
}
section#about div.inner ul li:last-child {
    padding: 75px 0 0;
}
section#menu div.inner ul li figure,
section#about div.inner ul li figure {
    padding: 0 0 25px;
}
section#about div.inner ul li figure {
    position: relative;
}
section#menu div.inner ul li figure img,
section#about div.inner ul li figure img.img {
    border-radius: 15px;
}
section#about div.inner ul li figure p {
    position: absolute;
    top: -30px;
    right: 25px;
}
section#about div.inner ul li div.btn {
    margin: 0 auto;
}
section#menu div.inner ul li .ttl {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    text-align: center;
    padding: 0 0 25px;
}
section#about 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,
section#about div.inner ul li p.txt {
    line-height: 1.75;
    padding: 0 0 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;
}
}

main.menu {
    width: 100%;
    padding: 0 0 200px;
}
main.menu table {
    width: 90%;
    max-width: 660px;
    line-height: 1.5;
    margin: 0 auto 75px;
}
main.menu table tr {
    border-bottom: #DED090 solid 1px;
}
main.menu table th,
main.menu table td {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    text-align: center;
    vertical-align: middle;
    padding: 30px 0;
}
main.menu table thead th.menu {
    width: 200px;
}
main.menu table thead th.price {
    width: 230px;
}
main.menu table thead th.price.first {
    background: #FBF9F1;
    border-top-left-radius: 10px;
}
main.menu table thead th.price.second {
    background: #FFFDE9;
    border-top-right-radius: 10px;
}
main.menu table tbody td.first {
    background: #FBF9F1;
}
main.menu table tbody td.second {
    background: #FFFDE9;
}
main.menu ul.note {
    width: 90%;
    max-width: 480px;
    margin: 0 auto 100px;
}
main.menu ul.note li {
    line-height: 1.75;
    text-indent: -1em;
    padding: 0 0 0 1em;
}
main.menu ul.note li::before {
    content: '・';
}

@media screen and (max-width: 960px) {
main.menu {
    width: 100%;
    padding: 0 0 250px;
}
main.menu table {
    width: 90%;
    max-width: 660px;
    line-height: 1.5;
    margin: 0 auto 25px;
}
main.menu table tr {
    border-bottom: #DED090 solid 1px;
}
main.menu table th,
main.menu table td {
    font-size: calc( 18 / var(--root-font-size) * 1rem );
    text-align: center;
    vertical-align: middle;
    padding: 15px 0;
}
main.menu table thead th.menu {
    width: 30%;
}
main.menu table thead th.price {
    width: 35%;
}
main.menu table thead th.price.first {
    background: #FBF9F1;
    border-top-left-radius: 10px;
}
main.menu table thead th.price.second {
    background: #FFFDE9;
    border-top-right-radius: 10px;
}
main.menu table tbody td.first {
    background: #FBF9F1;
}
main.menu table tbody td.second {
    background: #FFFDE9;
}
main.menu ul.note {
    width: 90%;
    max-width: 480px;
    margin: 0 auto 50px;
}
main.menu ul.note li {
    line-height: 1.75;
    text-indent: -1em;
    padding: 0 0 0 1em;
}
main.menu ul.note li::before {
    content: '・';
}
}

/*----- access -----*/
section#access {
    position: relative;
    padding: 50px 0 300px;
}
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;
}
div.reservation {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
main.first div.reservation {
    margin: 50px auto 0;
}
section#access div.reservation {
    width: 90%;
    margin: 0 auto 100px;
}
div.reservation div {
    max-width: 306px;
    padding: 0 15px;
}
section#access div.flexWrap {
    justify-content: space-between;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}
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;
    padding: 50px 0 300px;
}
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;
}
div.reservation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
main.first div.reservation {
    margin: 25px auto 0;
}
section#access div.reservation {
    width: 80%;
    margin: 0 auto 75px;
}
div.reservation div {
    max-width: 306px;
    padding: 10px 15px;
}
section#access div.flexWrap {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 90%;
    max-width: 1050px;
    margin: 0 auto;
}
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;
}
}

/*----- faq -----*/
main.faq {
    width: 100%;
    padding: 0 0 300px;
}
/*アコーディオン全体*/
main.faq ul.accordion-area {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}
main.faq ul.accordion-area li {
    overflow: hidden;
    border: #EFE3B5 solid 1px;
    border-radius: 15px;
    margin: 0 0 30px;
}
main.faq ul.accordion-area li:last-child {
    margin: 0;
}
/*アコーディオンタイトル*/
main.faq .accordion-area .title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    width: 100%;
    background: #FFF;
    padding: 30px 90px 30px 30px;
    transition: 0.5s 0s;
}
main.faq .accordion-area .title.close {
    background: #EFE3B5;
}

/*アイコンの＋と×*/
.accordion-area .title .icon {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #FFF;
    border: #DED090 solid 1px;
    box-shadow: 0px 2px 0px 0px rgba(222, 208, 144, 1);
    border-radius: 50%;
    margin: auto 0;
}
.accordion-area .title .icon::before,
.accordion-area .title .icon::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 18px;
    height: 2px;
    background-color: #562A06;
    border-radius: 1px;
    margin: auto;
    transition: 0.5s 0s;
}
.accordion-area .title .icon::before {
}
.accordion-area .title .icon::after {
    transform: rotate(-90deg);
}
/*　closeというクラスがついたら形状変化　*/
.accordion-area .title.close .icon::before {
}
.accordion-area .title.close .icon::after {
    transform: rotate(0);
}
main.faq .accordion-area .title p,
main.faq .accordion-area .box p {
    position: relative;
    padding: 0 0 0 45px;
}
main.faq .accordion-area .title p {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
}
main.faq .accordion-area .box p {
    line-height: 1.75;
}
main.faq .accordion-area .title p::before,
main.faq .accordion-area .box p::before {
    position: absolute;
    top: -10px;
    left: 0;
    font-size: calc( 40 / var(--root-font-size) * 1rem );
    line-height: 1;
}
main.faq .accordion-area .title p::before {
    content: "Q";
}
main.faq .accordion-area .box p::before {
    content: "A";
}
/*アコーディオンで現れるエリア*/
.accordion-area .box {
    display: none;/*はじめは非表示*/
}
main.faq .accordion-area .box {
    padding: 30px;
}

@media screen and (max-width: 960px) {
main.faq {
    width: 100%;
    padding: 0 0 300px;
}
/*アコーディオン全体*/
main.faq ul.accordion-area {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}
main.faq ul.accordion-area li {
    overflow: hidden;
    border: #EFE3B5 solid 1px;
    border-radius: 15px;
    margin: 0 0 20px;
}
main.faq ul.accordion-area li:last-child {
    margin: 0;
}
/*アコーディオンタイトル*/
main.faq .accordion-area .title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    width: 100%;
    background: #FFF;
    padding: 20px calc(5vw + 45px) 20px 5vw;
    transition: 0.5s 0s;
}
main.faq .accordion-area .title.close {
    background: #EFE3B5;
}

/*アイコンの＋と×*/
.accordion-area .title .icon {
    position: absolute;
    top: 10px;
    bottom: inherit;
    right: 0;
    width: 30px;
    height: 30px;
    background: #FFF;
    border-radius: 50%;
}
main.faq .accordion-area .title .icon {
    top: 0;
    bottom: 0;
    right: 5vw;
    margin: auto 0;
}
.accordion-area .title .icon::before,
.accordion-area .title .icon::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 12px;
    height: 2px;
    background-color: #562A06;
    border-radius: 1px;
    margin: auto;
    transition: 0.5s 0s;
}
.accordion-area .title .icon::before {
}
.accordion-area .title .icon::after {
    transform: rotate(-90deg);
}
/*　closeというクラスがついたら形状変化　*/
.accordion-area .title.close .icon::before {
}
.accordion-area .title.close .icon::after {
    transform: rotate(0);
}
main.faq .accordion-area .title p,
main.faq .accordion-area .box p {
    position: relative;
    padding: 0 0 0 37.5px;
}
main.faq .accordion-area .title p {
    font-size: calc( 16 / var(--root-font-size) * 1rem );
}
main.faq .accordion-area .box p {
    line-height: 1.75;
}
main.faq .accordion-area .title p::before,
main.faq .accordion-area .box p::before {
    position: absolute;
    top: -5px;
    left: 0;
    font-size: calc( 32 / var(--root-font-size) * 1rem );
    line-height: 1;
}
main.faq .accordion-area .title p::before {
    content: "Q";
}
main.faq .accordion-area .box p::before {
    content: "A";
}
/*アコーディオンで現れるエリア*/
.accordion-area .box {
    display: none;/*はじめは非表示*/
}
main.faq .accordion-area .box {
    padding: 20px 5vw;
}
}

/*----- news -----*/
main.news {
    width: 100%;
    padding: 0 0 300px;
}
main.news div.flexWrap {
    align-items: flex-start;
    justify-content: space-between;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}
main.news article.article,
main.news div.archive {
    width: 65%;
}
main.news div.archive {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
main.news div.archive article {
    width: 45%;
    padding: 0 0 100px;
}
main.news div.archive article figure {
    width: 100%;
    height: 204.75px;
    margin: 0 0 50px;
}
main.news div.archive article figure img {
    object-fit: cover;
    border-radius: 15px;
}
main.news article div.information {
    display: flex;
    align-items: center;
    padding: 0 0 25px;
}
main.news article div.information p.date {
    margin: 0 15px 0 0;
}
main.news article div.information ul.category {
    display: flex;
    flex-wrap: wrap;
}
main.news article div.information ul.category li {
    width: 80px;
    background: #DED090;
    border-radius: 10px;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    text-align: center;
    line-height: 20px;
    margin: 0 15px 0 0;
    transition: 0.5s 0s;
}
main.news article div.information ul.category li.news {
    background: #DED090;
}
main.news article div.information ul.category li.blog {
    background: #EDE5B9;
}
main.news article .articleTtl {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    line-height: 1.5;
}
main.news article.article .articleTtl {
    padding: 0 0 50px;
}
main.news article.article div.content {
    width: 100%;
    padding: 0 0 75px;
}
main.news article div.content p {
    line-height: 1.75;
    margin: 25px 0;
}
main.news article div.content p a {
    text-decoration: underline;
}
main.news article div.content p a:hover {
    text-decoration: none;
}
main.news article div.content img {
    max-width: 100%;
    height: auto;
    margin: 25px 0;
}
main.news article div.content .youtube {
    width: 100%;
    position: relative;
    padding-top: 56.25%;
    margin: 0 0 4em;
}
main.news article div.content .youtube iframe {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    right: 0;
}

main.news article div.content h2 {
    background: #DED090;
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    padding: 15px 1em;
    margin: 25px 0;
}
main.news article div.content h3 {
    border-bottom: #DED090 solid 1px;
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    padding: 0 0 25px;
    margin: 25px 0;
}
.has-neishinin-brown-color {
    color: #562A06;
}
.has-neishinin-brown-background-color {
    background: #562A06;
}
.has-neishinin-mustard-color {
    color: #DED090;
}
.has-neishinin-mustard-background-color {
    background: #DED090;
}
.has-neishinin-beige-color {
    color: #FFFDE9;
}
.has-neishinin-beige-background-color {
    background: #FFFDE9;
}
.has-white-color {
    color: #FFF;
}
.has-white-background-color {
    background: #FFF;
}
.has-black-color {
    color: #000;
}
.has-black-background-color {
    background: #000;
}
.has-red-color {
    color: #F00000;
}
.has-red-background-color {
    background: #F00000;
}
.has-blue-color {
    color: #0000F0;
}
.has-blue-background-color {
    background: #0000F0;
}
.has-green-color {
    color: #00F000;
}
.has-green-background-color {
    background: #00F000;
}
h1.has-background, h2.has-background, h3.has-background, h4.has-background, h5.has-background, h6.has-background {
    padding: 15px 1em;
}

main.news aside {
    width: 25%;
}
main.news aside div.block {
    padding: 0 0 150px;
}
main.news aside div.block p.ttl {
    border-bottom: #DED090 solid 1px;
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    text-align: center;
    padding: 0 0 15px;
    margin: 0 0 50px;
}
main.news aside div.block select::-ms-expand {
	display: none;
}
main.news aside div.block select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 45px;
    background: #FBF9F1;
    border-radius: 10px;
    font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "メイリオ", "Meiryo", sans-serif;
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    line-height: 45px;
    padding: 0 25px;
    margin: 0;
}
main.news aside div.block ul {
}
main.news aside div.block ul li {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    line-height: 1.75;
    padding: 0 25px 25px;
}
main.news aside div.block ul li:last-child {
    padding: 0 25px;
}

#pagenation,
.pagenation {
    width: 100%;
    border-top: #DED090 solid 1px;
    padding: 50px 0;
}
#pagenation {
}
#pagenation ul {
    display: flex;
    align-items: center!important;
    justify-content: center!important;
    margin: 0 auto!important;
}
#pagenation ul li {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    line-height: 25px;
    margin: 0 0.5em!important;
}
#pagenation ul li span {
    display: block; width: 25px;
    background: #DED090;
    border-radius: 50%;
    text-align: center;
}
.pagenation {
    display: flex;
    justify-content: space-between;
}
.pagenation div {
    position: relative;
}
.pagenation div.prev {
    width: 150px;
    padding: 0 0 0 55px;
}
.pagenation div.back {
    width: 100px;
    height: 50px;
    background: #FFF;
    border: #DED090 solid 1px;
    box-shadow: 0px 2px 0px 0px rgba(222, 208, 144, 1);
    border-radius: 10px;
    transition: 0.5s 0s;
}
.pagenation div.next {
    width: 150px;
    padding: 0 55px 0 0;
}
.pagenation div a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.pagenation div p {
    position: relative;
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    line-height: 50px;
    transition: 0.5s 0s;
}
.pagenation div.back p {
    text-align: center;
}
.pagenation div.next p {
    text-align: right;
}
.pagenation div:hover p {
    color: #DED090;
}
.pagenation div.prev .icon, 
.pagenation div.next .icon {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 45px;
    height: 45px;
    background: #FFF;
    border: #DED090 solid 1px;
    box-shadow: 0px 2px 0px 0px rgba(222, 208, 144, 1);
    border-radius: 50%;
    margin: auto 0;
    transition: 0.5s 0s;
}
.pagenation div.prev .icon {/*戻る矢印の位置と形状*/
    left: 0;
}
.pagenation div.next .icon {/*次へ矢印の位置と形状*/
    right: 0;
}
.pagenation div.prev .icon::before,
.pagenation div.prev .icon::after,
.pagenation div.next .icon::before,
.pagenation div.next .icon::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    right: 0;
    width: 15px;
    height: 2px;
    background-color: #562A06;
    border-radius: 1px;
    margin: 0 auto;
}
.pagenation div.prev .icon::before {
    transform: rotate(45deg);
    transform-origin: 1px 50%;
}
.pagenation div.prev .icon::after {
    transform: rotate(-45deg);
    transform-origin: 1px 50%;
}
.pagenation div.next .icon::before {
    transform: rotate(45deg);
    transform-origin: calc(100% - 1px) 50%;
}
.pagenation div.next .icon::after {
    transform: rotate(-45deg);
    transform-origin: calc(100% - 1px) 50%;
}

@media screen and (max-width: 960px) {
main.news {
    width: 100%;
    padding: 0 0 200px;
}
main.news div.flexWrap {
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}
main.news article.article,
main.news div.archive {
    width: 100%;
    padding: 0 0 75px;
}
main.news div.archive {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
main.news div.archive article {
    width: 100%;
    max-width: 300px;
    padding: 0 1.25vw 50px;
    margin: 0 auto;
}
main.news div.archive article figure {
    width: 100%;
    height: 210px;
    margin: 0 0 25px;
}
main.news div.archive article figure img {
    object-fit: cover;
    border-radius: 15px;
}
main.news article div.information {
    display: flex;
    padding: 0 0 25px;
}
main.news article div.information p.date {
}
main.news article .articleTtl {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    line-height: 1.5;
}
main.news article.article .articleTtl {
    padding: 0 0 50px;
}
main.news article.article div.content {
    width: 100%;
    padding: 0 0 100px;
}
main.news article div.content p {
    line-height: 1.75;
    margin: 25px 0;
}
main.news article div.content img {
    max-width: 100%;
    height: auto;
    margin: 25px 0;
}

main.news aside {
    width: 100%;
    margin: 0 auto;
}
main.news aside div.block {
    padding: 0 0 75px;
}
main.news aside div.block p.ttl {
    border-bottom: #DED090 solid 1px;
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    text-align: center;
    padding: 0 0 15px;
    margin: 0 0 25px;
}
main.news aside div.block select::-ms-expand {
	display: none;
}
main.news aside div.block select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 45px;
    background: #FBF9F1;
    border-radius: 10px;
    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 );
    line-height: 45px;
    padding: 0 25px;
    margin: 0;
}
main.news aside div.block ul {
}
main.news aside div.block ul li {
    font-size: calc( 16 / var(--root-font-size) * 1rem );
    line-height: 1.75;
    padding: 0 25px 25px;
}
main.news aside div.block ul li:last-child {
    padding: 0 25px;
}

#pagenation,
.pagenation {
    width: 100%;
    border-top: #DED090 solid 1px;
    padding: 25px 0;
}
#pagenation {
}
#pagenation ul {
    display: flex;
    align-items: center!important;
    justify-content: center!important;
    margin: 0 auto!important;
}
#pagenation ul li {
    font-size: calc( 16 / var(--root-font-size) * 1rem );
    line-height: 25px;
    margin: 0 0.5em!important;
}
#pagenation ul li span {
    display: block; width: 25px;
    background: #DED090;
    border-radius: 50%;
    text-align: center;
}
.pagenation {
    display: flex;
    justify-content: space-between;
}
.pagenation div {
    position: relative;
}
.pagenation div.prev {
    width: 120px;
    padding: 0 0 0 40px;
}
.pagenation div.back {
    width: 75px;
    height: 50px;
    background: #FFF;
    border: #DED090 solid 1px;
    box-shadow: 0px 2px 0px 0px rgba(222, 208, 144, 1);
    border-radius: 10px;
    transition: 0.5s 0s;
}
.pagenation div.next {
    width: 120px;
    padding: 0 40px 0 0;
}
.pagenation div a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.pagenation div p {
    position: relative;
    font-size: calc( 16 / var(--root-font-size) * 1rem );
    line-height: 50px;
    transition: 0.5s 0s;
}
.pagenation div.back p {
    text-align: center;
}
.pagenation div.next p {
    text-align: right;
}
.pagenation div:hover p {
    color: #DED090;
}
.pagenation div.prev .icon, 
.pagenation div.next .icon {
    position: absolute;
    top: 0;
    bottom: 0;
    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;
    transition: 0.5s 0s;
}
.pagenation div.prev .icon {/*戻る矢印の位置と形状*/
    left: 0;
}
.pagenation div.next .icon {/*次へ矢印の位置と形状*/
    right: 0;
}
.pagenation div.prev .icon::before,
.pagenation div.prev .icon::after,
.pagenation div.next .icon::before,
.pagenation div.next .icon::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;
}
.pagenation div.prev .icon::before {
    transform: rotate(45deg);
    transform-origin: 1px 50%;
}
.pagenation div.prev .icon::after {
    transform: rotate(-45deg);
    transform-origin: 1px 50%;
}
.pagenation div.next .icon::before {
    transform: rotate(45deg);
    transform-origin: calc(100% - 1px) 50%;
}
.pagenation div.next .icon::after {
    transform: rotate(-45deg);
    transform-origin: calc(100% - 1px) 50%;
}
}

/*----- footer -----*/
footer {
    width: 100%;
    padding: 100px 0 0;
}
header div.flexWrap,
footer div.flexWrap {
    align-items: flex-end;
    justify-content: space-between;
    width: 90%;
    max-width: 1000px;
    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: flex-end;
    width: calc(100% - 173px);
}
header div.flexWrap div.flexR p,
footer div.flexWrap div.flexR p {
    line-height: 1.5;
}
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;
}
footer div.flexWrap div.flexR div.contact {
    padding: 25px 0 0;
}
header div.flexWrap div.flexR div.contact div.tel {
    padding: 0 25px 0 0;
}
footer div.flexWrap div.flexR div.contact div.tel {
    padding: 0 25px;
}
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( 28 / 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;
}
header div.flexWrap div.flexR nav,
footer div.flexWrap div.flexR nav {
    width: 100%;
    padding: 25px 0 0 0;
}
header div.flexWrap div.flexR nav ul,
footer div.flexWrap div.flexR nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
header div.flexWrap div.flexR nav ul li,
footer div.flexWrap div.flexR nav ul li {
	font-size: calc( 14 / var(--root-font-size) * 1rem );
    padding: 10px 0;
}
header div.flexWrap div.flexR nav ul li + li,
footer div.flexWrap div.flexR nav ul li + li {
    position: relative;
    padding: 10px 0 10px 1em;
    margin: 0 0 0 0.5em;
}
header div.flexWrap div.flexR nav ul li + li::before,
footer div.flexWrap div.flexR nav ul li + li::before {
    content: "/";
    position: absolute;
    top: 10px;
    left: 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;
}

.gnavi__list {
    position: relative;
    transition: 0.5s 0s;
}
.dropdown__lists {
    visibility: hidden;/*デフォルトでは非表示の状態にしておく*/
    opacity: 0;/*不透明度0*/
    transition: 0.5s 0s;
    position: absolute;
    top: 50px;
    left: -10px;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    background: #FFF;
    border-radius: 15px;
    box-shadow: 0px 4px 0px 0px rgba(222, 208, 144, 1);
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    padding: 5px 10px;
}
.dropdown__lists::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    width: 30px;
    height: calc(tan(60deg) * 20px / 2);
    background: #FFF;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    margin: 0 auto;
}
.gnavi__list:hover .dropdown__lists {
    visibility: visible;/*Gナビメニューにホバーしたら表示*/
    opacity: 1;/*不透明度1*/
}
.dropdown__list {
    position: relative;
    transition: 0.5s 0s;
}

header div.flexWrap div.flexR nav ul li ul,
footer div.flexWrap div.flexR nav ul li ul {
    display: block;
}
header div.flexWrap div.flexR nav ul li ul li,
footer div.flexWrap div.flexR nav ul li ul li {
    display: block;
    padding: 10px 0;
}
header div.flexWrap div.flexR nav ul li ul li + li,
footer div.flexWrap div.flexR nav ul li ul li + li {
    position: relative;
    border-top: #562A06 solid 1px;
    padding: 10px 0;
    margin: 0;
}
header div.flexWrap div.flexR nav ul li ul li + li::before,
footer div.flexWrap div.flexR nav ul li ul li + li::before {
    content: none;
}

@media screen and (max-width: 960px) {
footer {
    width: 100%;
    padding: 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: center;
    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 {
    order: 2;
    width: 100%;
    text-align: center;
}
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;
}
footer div.flexWrap div.flexR div.contact {
    padding: 0;
}
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 0 25px;
}
footer div.flexWrap div.flexR div.contact div.tel {
    order: 2;
    padding: 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: min(4vw, calc( 15 / 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: min(7.2vw, 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: 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;
}
}

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