@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Zen+Kaku+Gothic+New:wght@500&display=swap');


/* common
-------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i, button,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    font-weight: 600;
    vertical-align: baseline;
    background: transparent;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section,main { 
    display: block;
}
ul {
    list-style: none;
}
img {
    width: 100%;
    max-width: 100%;
    height: auto;
	border: none;
	vertical-align: bottom;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
address, em, code, cite, dfn, var, optgroup, i {
    font-style: normal;
}
sup {
    font-size: 80%;
    vertical-align: super;
}
sub {
    font-size: 80%;
    vertical-align: sub;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* module
------------------------------------------------- */
.alignCenter {text-align: center;}
.alignLeft {text-align: left;}
.alignRight {text-align: right;}
.valignTop {vertical-align: top;}
.valignMiddle {vertical-align: middle;}
.valignBottom {vertical-align: bottom;}

.regular { font-weight: 400; }
.medium { font-weight: 500; }
.semibold { font-weight: 600; }
.bold { font-weight: 700; }


/* a
------------------------------------------------- */
a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
	text-decoration: none;
	outline: none;
    color: #31373D;
}
@media screen and (min-width:768px){
a {
    transition: 0.4s;
}
a.al:hover {
    color: #31373D;
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}
.telLink {
	pointer-events: none;
}
}


/* font
------------------------------------------------- */
@media screen and (min-width:768px){
.fo11 { font-size: 0.6875rem; }
.fo12 { font-size: 0.75rem; }
.fo13 { font-size: 0.8125rem; }
.fo14 { font-size: 0.875rem; }
.fo15 { font-size: 0.9375rem; }
.fo16 { font-size: 1rem; }
.fo17 { font-size: 1.0625rem; }
.fo18 { font-size: 1.125rem; }
.fo19 { font-size: 1.1875rem; }
.fo20 { font-size: 1.1rem; }
.fo22 { font-size: 1.375rem; }
.fo24 { font-size: 1.5rem; }
.fo25 { font-size: 1.5625rem; }
.fo28 { font-size: 1.75rem; }
.fo29 { font-size: 1.8125rem; }
.fo32 { font-size: 2rem; }
.fo35 { font-size: 2.1875rem; }
.fo40 { font-size: 2.5rem; }
.fo42 { font-size: 2.625rem; }
}


/* html, body
------------------------------------------------- */
html {
    font-size: 16px;
}

.pc{
    display: block !important;
    @media (max-width: 767.9px) {
        display: none !important;
    }
}
.sp{
    display: none !important;
    @media (max-width: 767.9px) {
        display: block !important;
    }
}

body {
    background: linear-gradient(101.89deg, #FFF2F5 11.12%, #FFE8E9 85.1%);
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    letter-spacing: 0.08em;
    font-style: normal;
	font-size: 16px;
	line-height: 1.85;
	color: #31373D;
	-webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}
.noto {
    font-family: "Noto Sans JP", sans-serif;
}
.notos {
    font-family: "Noto Serif JP", serif;
}
.zen {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
}
@media screen and (min-width:767.9px) and (max-width:1440px){
html, body {
    font-size: 1.1111111vw;
}
}


/* wrapper
------------------------------------------------- */
#wrapper {
	width: 100%;
	margin: 0 auto;
	clear: both;
    position: relative;
    z-index: 2;
}


/* layout
------------------------------------------------- */
.d-flex {
    display: flex;
}
.f-wrap {
    flex-wrap: wrap;
}
.f-rev {
    flex-direction: row-reverse;
}
.just-start {
    justify-content: flex-start;
}
.just-center {
    justify-content: center;
}
.just-between {
    justify-content: space-between;
}
.just-end {
    justify-content: flex-end;
}
.align-start {
    align-items: flex-start;
}
.align-center {
    align-items: center;
}
.align-end {
    align-items: flex-end;
}


/* header
------------------------------------------------- */
#header {
    width: calc(100% - 1.5em);
    height: 4.375em;
    background-color: #fff;
    border-radius: 0 0 0 1.9375em;
    box-shadow: 0 0.125em 0.875em 0 rgba(255,36,124,0.09);
    position: fixed;
    right: 0;
    top: 0;
    z-index: 90;
    @media (max-width: 767.9px) {
        width: 100%;
        height: 5em;
        border-radius: 0;
    }
}
#header .logo {
    width: 8.0625em;
    position: absolute;
    left: 1.375em;
    top: 0.6875em;
    @media (max-width: 767.9px) {
        top: 1.15em;
        left: 0.5em;
    }
}


/* gnav
------------------------------------------------- */
#gnav {
    position: fixed;
    right: 15.15em;
    top: 0;
    z-index: 98;
    @media (max-width: 767.9px) {
        left: 0;
        right: 0;
    }
}
#gnav ul li {
    margin-right: 3.6em;
    position: relative;
}
#gnav ul li::after {
    content: '';
    width: 0.07em;
    height: 1.15em;
    background-color: rgba(49,55,61,0.2);
    position: absolute;
    right: -1.8em;
    top: 1.875rem;
}
#gnav ul li:last-child::after {
    display: none;
}
#gnav ul li a {
    display: block;
    width: 100%;
    height: 4.375rem;
    line-height: 1.15;
    padding-top: 1.875rem;
    box-sizing: border-box;
    position: relative;
    @media (max-width: 767.9px) {
        height: auto;
        padding-top: 0;
        font-size: 2.5vh;
        font-weight: 600;
    }
}
#gnav ul li.active a {
    color: #FF7EB5;
}
#gnav ul li.active a::after {
    content: '';
    width: 100%;
    height: 0.214em;
    background-color: #FF7EB5;
    position: absolute;
    left: 0;
    bottom: 0;
}
@media screen and (min-width:768px){
#gnav ul li a:hover {
    color: #FF7EB5;
}
}


/* tbox
------------------------------------------------- */
#tbox {
    width: 16.35em;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99;
    @media (max-width: 767.9px) {
        display: none;
    }
}
#tbox a {
    display: block;
    width: 100%;
    height: 5.25rem;
    background-color: #FF9EC8;
    border-radius: 0 0 0 1.875rem;
    line-height: 1.3;
    letter-spacing: 0.06em;
    color: #fff;
    padding: 0.5rem 0 0 5rem;
    box-sizing: border-box;
    position: relative;
}
#tbox a::before {
    content: '';
    width: 3.125rem;
    height: 3.125rem;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 1;
}
#tbox a::after {
    content: '';
    width: 1.375rem;
    height: 1.375rem;
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2222%22%20height%3D%2222%22%20viewBox%3D%220%200%2022%2022%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M4.42444%209.52111C6.18444%2012.98%209.02%2015.8156%2012.4789%2017.5756L15.1678%2014.8867C15.51%2014.5444%2015.9867%2014.4467%2016.4144%2014.5811C17.7833%2015.0333%2019.25%2015.2778%2020.7778%2015.2778C21.1019%2015.2778%2021.4128%2015.4065%2021.642%2015.6358C21.8712%2015.865%2022%2016.1758%2022%2016.5V20.7778C22%2021.1019%2021.8712%2021.4128%2021.642%2021.642C21.4128%2021.8712%2021.1019%2022%2020.7778%2022C15.2672%2022%209.98226%2019.8109%206.08567%2015.9143C2.18908%2012.0177%200%206.73283%200%201.22222C0%200.898069%200.128769%200.587192%200.357981%200.357981C0.587192%200.128769%200.898069%200%201.22222%200H5.5C5.82415%200%206.13503%200.128769%206.36424%200.357981C6.59345%200.587192%206.72222%200.898069%206.72222%201.22222C6.72222%202.75%206.96667%204.21667%207.41889%205.58556C7.55333%206.01333%207.45555%206.49%207.11333%206.83222L4.42444%209.52111Z%22%20fill%3D%22%23FFA8CD%22%2F%3E%3C%2Fsvg%3E') center center no-repeat;
    background-size: 100% auto;
    position: absolute;
    left: 1.9rem;
    top: 1.875rem;
    z-index: 2;
}
#tbox a span {
    display: block;
}


/* contents
------------------------------------------------- */
#contents {
	width: 100%;
	clear: both;
    display: block;
    position: relative;
    @media (max-width: 767.9px) {
        padding-top: 2rem;
    }
}
.inner {
    width: 100%;
    max-width: 1440px;
	margin: 0 auto;
    padding: 0 7.8125em;
	clear: both;
	position: relative;
    box-sizing: border-box;
    @media (max-width: 767.9px) {
        padding: 0;
    }
}


/* headline
------------------------------------------------- */
.headline1 {
    line-height: 1.465;
    margin-bottom: 3.25em;
    position: relative;
    @media (max-width: 767.9px) {
        margin-bottom: 0;
    }
}
.headline1 b {
    display: block;
    color: #FF4C98;
    padding-bottom: 0.4em;
}
.headline1 span {
    display: inline-block;
    padding-bottom: 0.25em;
    position: relative;
    @media (max-width: 767.9px) {
        font-size: 2rem;
    }
}
.headline1 span::before,
.headline1 span::after {
    content: '';
    width: 100%;
    height: 0.25rem;
    background-color: #FD8DBD;
    position: absolute;
    left: 0;
    bottom: 0;
}
.headline1 span::after {
    width: 1.125rem;
    background-color: #96C7FF;
    z-index: 2;
}


/* btnst
------------------------------------------------- */
.btnst1 a,
.btnst1_sp a {
    width: 12.375rem;
    height: 2.625rem;
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2211%22%20height%3D%2213%22%20viewBox%3D%220%200%2011%2013%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M10.5306%207.03033C10.8235%206.73744%2010.8235%206.26256%2010.5306%205.96967L5.7576%201.1967C5.46471%200.903806%204.98984%200.903806%204.69694%201.1967C4.40405%201.48959%204.40405%201.96447%204.69694%202.25736L8.93958%206.5L4.69694%2010.7426C4.40405%2011.0355%204.40405%2011.5104%204.69694%2011.8033C4.98984%2012.0962%205.46471%2012.0962%205.7576%2011.8033L10.5306%207.03033ZM0.000244141%207.25L10.0002%207.25V5.75L0.000244141%205.75L0.000244141%207.25Z%22%20fill%3D%22%23F789B8%22%2F%3E%3C%2Fsvg%3E') 92% center no-repeat;
    background-size: 0.8em auto;
    border: 0.0625rem solid #F789B8;
    border-radius: 3rem;
    color: #F789B8;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    @media (max-width: 767.9px) {
        width: 16rem;
        height: 2.6rem;
        font-size: 1.15em;
    }
}
@media screen and (min-width:768px){
.btnst1 a:hover {
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2211%22%20height%3D%2213%22%20viewBox%3D%220%200%2011%2013%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M10.5306%207.03033C10.8235%206.73744%2010.8235%206.26256%2010.5306%205.96967L5.7576%201.1967C5.46471%200.903806%204.98984%200.903806%204.69694%201.1967C4.40405%201.48959%204.40405%201.96447%204.69694%202.25736L8.93958%206.5L4.69694%2010.7426C4.40405%2011.0355%204.40405%2011.5104%204.69694%2011.8033C4.98984%2012.0962%205.46471%2012.0962%205.7576%2011.8033L10.5306%207.03033ZM0.000244141%207.25L10.0002%207.25V5.75L0.000244141%205.75L0.000244141%207.25Z%22%20fill%3D%22%23ffffff%22%2F%3E%3C%2Fsvg%3E') 92% center no-repeat #FD8DBD;
    background-size: 0.8em auto;
    color: #fff;
}
}


/* footer
------------------------------------------------- */
#footer {
    background-color: #fff;
    padding: 2.85em 0 4em;
    @media (max-width: 767.9px) {
        padding: 2em 0;
    }
}
#footer .inner {
    padding: 0 9em;
    @media (max-width: 767.9px) {
        padding: 0;
    }
}
#footer .footer1 {
    border-bottom: 1px solid #FF8FA5;
    padding-bottom: 1.25em;
    margin-bottom: 2.25em;
    @media (max-width: 767.9px) {
        flex-direction: column;
        text-align: center;
        width: 90%;
        margin: 0 auto;
        padding-bottom: 3em;
    }
}
#footer .info1 {
    width: 40%;
    margin-top: 0.65em;
    @media (max-width: 767.9px) {
        width: 100%;
        padding-bottom: 1em;
    }
}
#footer .info1 h2 {
    padding-bottom: 0.5em;
}
#footer .info1 h2 a {
    @media (max-width: 767.9px) {
        display: flex;
        align-items: center;
        gap: 1em;
    }
}
#footer .info1 h2 img {
    width: 8.0625em;
    padding-right: 0.5em;
    @media (max-width: 767.9px) {
        width: 30vw;
        padding-right: 0;
        max-width: 170px;
    }
}
#footer .info1 h2 span {
    color: #FF9EC8;
    @media (max-width: 767.9px) {
        font-size: 5.8vw;
    }
}
#footer .info1 address,
#footer .info1 p {
    line-height: 1.69;
    @media (max-width: 767.9px) {
        text-align: left;
        font-size: 0.8rem;
    }
}
#footer .fnav {
    width: 50.5%;
    @media (max-width: 767.9px) {
        display: none;
    }
}
#footer .fnav_sp {
    display: none;
    @media (max-width: 767.9px) {
        display: flex;
        gap: 1em;
    }
}
#footer .fnav_sp ul {
    width: calc(50% - 0.5em);
}
#footer .fnav_sp li {
    text-align: left;
    margin-top: 1.5em;
}
#footer .fnav_sp li a {
    text-decoration: underline;
    font-size: 0.85rem;
}
#footer .fnav ul li {
    margin-bottom: 1.5em;
}
#footer .fnav ul li a {
    text-decoration: underline;
}
#footer .info2 {
    width: 60%;
    @media (max-width: 767.9px) {
        width: 90%;
        margin: 2em auto 0;
    }
}
#footer .info3 {
    width: 40%;
    @media (max-width: 767.9px) {
        width: 90%;
        margin: 2em auto 0;
    }
}
#footer .info2 h3,
#footer .info3 h3 {
    margin-bottom: 0.5em;
}
#footer .info2 h3 span,
#footer .info3 h3 span {
    display: block;
    width: 10em;
    line-height: 2;
    border: 0.06em solid #31373D99;
    text-align: center;
}
#footer .info2 ul,
#footer .info3 ul{
    display: flex;
    flex-wrap: wrap;
}
#footer .info2 ul li,
#footer .info3 ul li {
    line-height: 2.125;
    width: 50%;
    font-size: 0.9rem;
    @media (max-width: 767.9px) {        
        width: 100%;
    }
}
#footer .info3 ul li {
    width: 100%;
}
#footer .info2 ul li a,
#footer .info3 ul li a{
    text-decoration: underline;
}
.footer-left{
    @media (max-width: 767.9px) {
        flex-wrap: wrap;
    }
}
#footer .copyright {
    width: 44%;
    margin-bottom: 0.4em;
    @media (max-width: 767.9px) {
        width: 92%;
        margin: 0 auto;
    }
}
#footer .copyright p,
#footer .copyright small {
    display: block;
    line-height: 1.82;
    text-align: right;
    @media (max-width: 767.9px) {
        text-align: center;
        font-size: 0.65rem;
    }
}
@media screen and (min-width:768px){
#footer .fnav ul li a:hover {
    color: #FD8DBD;
}
}
.footer2{
    @media (max-width: 767.9px) {
        flex-direction: column;
        gap: 2em;
    }
}


/* bgstyle
------------------------------------------------- */
#bgstyle {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1;
    overflow: hidden;
}
#bgstyle .bg {
    background-color: rgba(255,146,193,0.15);
    position: absolute;
}
#bgstyle .bg.bgl {
    right: 50%;
    @media (max-width: 767.9px) {
        right: 0;
    }
}
#bgstyle .bg.bgr {
    left: 50%;
    @media (max-width: 767.9px) {
        left: 0;
    }
}
#bgstyle .bg.mv1 {
    border-radius: 52% 48% 47% 53% / 47% 61% 39% 53%;
    animation: bg-anim1 20s infinite;
}
#bgstyle .bg.mv2 {
    border-radius: 40% 60% 55% 45% / 50% 60% 40% 50%;
    animation: bg-anim2 20s infinite;
}
#bgstyle .bg.mv3 {
    border-radius: 60% 75% 40% 80% / 70% 70% 60% 65%;
    animation: bg-anim3 20s infinite;
}
.bg01 {
	width: 31.25em;
    height: 30.5em;
    margin-right: 18.75em;
    top: -7.375em;
    @media (max-width: 767.9px) {
        width: 18.25em;
        height: 17.5em;
        margin-right: 64vw;
        top: -1vw;
    }
}
.bg02 {
	width: 37.5em;
    height: 38.75em;
    margin-left: 21.875em;
    top: 14.375em;
    transform: rotate(-153.2deg);
    @media (max-width: 767.9px) {
        width: 11.5em;
        height: 12.75em;
        margin-left: 78vw;
        top: 20.375em;
    }
}
.bg03 {
	width: 37.5em;
    height: 35.625em;
    margin-right: 21.875em;
    top: 50em;
    transform: rotate(165deg);
    @media (max-width: 767.9px) {
        width: 42vw;
        height: 43vw;
        margin-right: 83vw;
        bottom: -12vw;
        top: unset;
    }
}
.bg04 {
	width: 38.375em;
    height: 34.375em;
    margin-left: 21.875em;
    top: 67.5em;
}
.bg05 {
	width: 37.5em;
    height: 35.625em;
    margin-right: 8.25em;
    top: 107.725em;
    transform: matrix(0.99, -0.11, -0.11, -0.99, 0, 0);
}
.bg06 {
	width: 33.75em;
    height: 30em;
    margin-left: 15.5em;
    top: 165.625em;
    transform: rotate(49.86deg);
}


/* snav
------------------------------------------------- */
#snav {
    position: fixed;
    right: 0;
    bottom: 5em;
    z-index: 97;
    @media (max-width: 767.9px) {
        display: none;
    }
}
#snav ul li {
    width: 3.4em;
    height: 13em;
    margin-bottom: 0.65em;
}
#snav ul li a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FF9EC8;
    border-radius: 1em 0 0 1em;
    letter-spacing: 0.2em;
    color: #fff;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
}
#snav ul li.side-access a span {
    background: url("../img/sicon1.png") center top no-repeat;
    background-size: 1.66em auto;
    padding-top: 2.25em;
}
#snav ul li.side-reservation a span {
    background: url("../img/sicon2.png") center top no-repeat;
    background-size: 1.66em auto;
    padding-top: 2.25em;
}
@media screen and (min-width:768px){
#snav ul li a:hover {
    background-color: #FF7EB5;
}
}


/* pagetop
------------------------------------------------- */
#pagetop {
    position: fixed;
    right: 1em;
    bottom: 1em;
    z-index: 96;
    @media (max-width: 767.9px) {
        right: 0.6em;
        bottom: 0.6em;
    }
}
#pagetop a {
    width: 3.75em;
    height: 3.75em;
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2216%22%20height%3D%2217%22%20viewBox%3D%220%200%2016%2017%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8.70711%200.292892C8.31658%20-0.0976315%207.68342%20-0.0976314%207.29289%200.292892L0.928932%206.65685C0.538407%207.04738%200.538407%207.68054%200.928932%208.07107C1.31946%208.46159%201.95262%208.46159%202.34315%208.07107L8%202.41421L13.6569%208.07107C14.0474%208.46159%2014.6805%208.46159%2015.0711%208.07107C15.4616%207.68054%2015.4616%207.04738%2015.0711%206.65685L8.70711%200.292892ZM9%2017L9%201L7%201L7%2017L9%2017Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E') center center no-repeat rgba(255,137,188,0.5);
    background-size: auto 1em;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    @media (max-width: 767.9px) {
        width: 2.75em;
        height: 2.75em;
    }
}
@media screen and (min-width:768px){
#pagetop a:hover {
    background-color: rgba(255,137,188,1);
}
}


/* idPad
------------------------------------------------- */
.idPad {
    margin-top: -6em;
    padding-top: 6em;
}


/* animation
------------------------------------------------- */
@keyframes bg-anim1 {
    0%    { border-radius: 52% 48% 47% 53% / 47% 61% 39% 53%; }
    12.5% { border-radius: 60% 75% 40% 80% / 70% 70% 60% 65%; }
    25%   { border-radius: 55% 95% 65% 90% / 75% 65% 85% 70%; }
    37.5% { border-radius: 60% 40% 50% 45% / 60% 40% 60% 40%; }
    50%   { border-radius: 55% 95% 65% 90% / 75% 65% 85% 70%; }
    62.5% { border-radius: 60% 40% 50% 45% / 60% 40% 60% 40%; }
    75%   { border-radius: 60% 75% 40% 80% / 70% 70% 60% 65%; }
    87.5% { border-radius: 40% 60% 55% 45% / 50% 60% 40% 50%; }
    100%  { border-radius: 52% 48% 47% 53% / 47% 61% 39% 53%; }
}
@keyframes bg-anim2 {
    0%    { border-radius: 40% 60% 55% 45% / 50% 60% 40% 50%; }
    12.5% { border-radius: 52% 48% 47% 53% / 47% 61% 39% 53%; }
    25%   { border-radius: 60% 75% 40% 80% / 70% 70% 60% 65%; }
    37.5% { border-radius: 55% 95% 65% 90% / 75% 65% 85% 70%; }
    50%   { border-radius: 60% 40% 50% 45% / 60% 40% 60% 40%; }
    62.5% { border-radius: 55% 95% 65% 90% / 75% 65% 85% 70%; }
    75%   { border-radius: 60% 40% 50% 45% / 60% 40% 60% 40%; }
    87.5% { border-radius: 60% 75% 40% 80% / 70% 70% 60% 65%; }
    100%  { border-radius: 40% 60% 55% 45% / 50% 60% 40% 50%; }
}
@keyframes bg-anim3 {
    0%    { border-radius: 60% 75% 40% 80% / 70% 70% 60% 65%; }
    12.5% { border-radius: 40% 60% 55% 45% / 50% 60% 40% 50%; }
    25%   { border-radius: 52% 48% 47% 53% / 47% 61% 39% 53%; }
    37.5% { border-radius: 60% 75% 40% 80% / 70% 70% 60% 65%; }
    50%   { border-radius: 55% 95% 65% 90% / 75% 65% 85% 70%; }
    62.5% { border-radius: 60% 40% 50% 45% / 60% 40% 60% 40%; }
    75%   { border-radius: 55% 95% 65% 90% / 75% 65% 85% 70%; }
    87.5% { border-radius: 60% 40% 50% 45% / 60% 40% 60% 40%; }
    100%  { border-radius: 60% 75% 40% 80% / 70% 70% 60% 65%; }
}


/**
 * Swiper 8.3.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 26, 2022
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, 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');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}


/*スマホのハンバーガー設定*/
.menu-toggle {
    width: 46px;
    height: 14px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    margin-left: auto;
    position: fixed;
    top: 32px;
    right: 20px;
    z-index: 100;
}
.menu-toggle span {
    height: 4px;
    background: #FD8DBD;
    transition: .5s;
    position: relative;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 0;
}
.menu-toggle.active span:nth-child(2) {
  transform: rotate(-45deg);
  top: -9px;
}
#snav_sp{
    display: none;
}


/* モバイル表示 */
@media (max-width: 767.9px) {
  .menu-toggle {
    display: flex;
  }
  #gnav {
    display: none;
    top: 79px;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    position: fixed;
  }
  #gnav ul {
    flex-direction: column;
    padding: 0 25px;
    margin: 0;
    width: 100vw;
  }
  #gnav.show {
    display: block;
  }
  #gnav ul.fo14 li:not(:first-of-type) {
    border-top: 1px solid rgba(49, 55, 61, 0.2);
  }
  #gnav ul li::after {
    display: none;
  }
  #gnav ul li.active a::after {
    display: none;
  }
  #gnav ul li {
    margin-right: 0;
    }
  #gnav a {
    display: block;
    padding: 1em 0;
    margin-top: 1em;
  }
    #snav_sp{
        display: block;
        margin-top: 1.5vh;
    }
    #tbox_sp a {
        display: block;
        width: calc(100vw - 50px);
        height: auto;
        background-color: #FD8DBD;
        border-radius: 100px;
        font-size: 0.8rem;
        line-height: 1.3;
        letter-spacing: 0.06em;
        color: #fff;
        padding: 0.5em 1em;
        margin: 0 auto;
        box-sizing: border-box;
        position: relative;
        text-align: center;
    }
    #tbox_sp a span{
        font-size: 1.6em;
        line-height: 1em;
    }
    #tbox_sp a::before {
        content: '';
        width: 2rem;
        height: 2rem;
        background-color: #fff;
        border-radius: 50%;
        position: absolute;
        left: 1.5rem;;
        top: 0.85rem;
        z-index: 1;
    }
    #tbox_sp a::after {
        content: '';
        width: 1rem;
        height: 1rem;
        background: url(data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2222%22%20height%3D%2222%22%20viewBox%3D%220%200%2022%2022%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M4.42444%209.52111C6.18444%2012.98%209.02%2015.8156%2012.4789%2017.5756L15.1678%2014.8867C15.51%2014.5444%2015.9867%2014.4467%2016.4144%2014.5811C17.7833%2015.0333%2019.25%2015.2778%2020.7778%2015.2778C21.1019%2015.2778%2021.4128%2015.4065%2021.642%2015.6358C21.8712%2015.865%2022%2016.1758%2022%2016.5V20.7778C22%2021.1019%2021.8712%2021.4128%2021.642%2021.642C21.4128%2021.8712%2021.1019%2022%2020.7778%2022C15.2672%2022%209.98226%2019.8109%206.08567%2015.9143C2.18908%2012.0177%200%206.73283%200%201.22222C0%200.898069%200.128769%200.587192%200.357981%200.357981C0.587192%200.128769%200.898069%200%201.22222%200H5.5C5.82415%200%206.13503%200.128769%206.36424%200.357981C6.59345%200.587192%206.72222%200.898069%206.72222%201.22222C6.72222%202.75%206.96667%204.21667%207.41889%205.58556C7.55333%206.01333%207.45555%206.49%207.11333%206.83222L4.42444%209.52111Z%22%20fill%3D%22%23FFA8CD%22%2F%3E%3C%2Fsvg%3E) center center no-repeat;
        background-size: 100% auto;
        position: absolute;
        left: 2rem;
        top: 1.4rem;
        z-index: 2;
    }
    #tbox_sp a span {
        display: block;
    }
    #gnav #snav_sp ul{
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
    #gnav #snav_sp ul li {
        width: 47%;
        text-align: center;
        margin: 0;
    }
    #gnav #snav_sp ul li a{
        background-color: #FD8DBD;
        color: #fff;
        font-weight: 600;
        font-size: 2.5vh;
        border-radius: 100px;
        line-height: 1 !important;
        letter-spacing: 0.06em;
        color: #fff;
        padding: 0.95em 1em 0.75em 1em !important;
        display: inline-block !important;
    }
    #gnav #snav_sp ul li.side-access a span {
        background: url(../img/sicon1.png) left center no-repeat;
        background-size: 1em auto;
        padding-left: 1.5em;
    }
    #gnav #snav_sp ul li.side-reservation a span {
        background: url(../img/sicon2.png) left center no-repeat;
        background-size: 1em auto;
        padding-left: 1.5em;
    }


}
@media (min-width: 768px) {
  #gnav {
    display: block !important;
  }
}

.txt-right{
    text-align: right;
}
a.window{
    background: url(../../common/img/icon_window.png) no-repeat center right;
    background-size: 1em;
    padding-right: 1.5em;
    text-decoration: underline;
}
a.window:hover{
    color: #F789B8;
}