@charset "UTF-8";

:root {
    --color-primary: #514f4c;
    --color-deep: #000;
    --color-dark: #373430;
    --color-basic: #565450;
    --color-light: #DDD;
    --color-pale: #edecec;
    --color-non: #FFF;
    --font-family-ja: "游ゴシック Medium", Yu Gothic Medium, "游ゴシック体", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", 'PingFang SC', 'Microsoft YaHei', 'PingFang TC', 'Microsoft JhengHei', sans-serif;
    --font-family-ja-min: 'Noto Serif JP', "游明朝", "YuMincho", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
    --font-family-en: 'Cormorant', serif;
    --font-family-en-cursive: 'Corinthia', cursive;
    --font-family-en-full: "Cormorant", serif;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

ul[class],
ol[class] {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul {
    padding: 0 0 0 1.5em;
    margin: 0;
}

:-webkit-any-link {
    color: var(--color-basic);
}

:-moz-any-link {
    color: var(--color-basic);
}

:any-link {
    color: var(--color-basic);
}

a {
    text-decoration: none;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    cursor: pointer;
}

a.button:hover,
a.icon:hover,
a:not(.swiper a):hover {
    text-decoration: none;
    opacity: .75;
}

::-moz-selection {
    background: var(--color-pale);
}

::selection {
    background: var(--color-pale);
}

*:focus {
    outline: none;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 62.5%;
    line-height: 1.15;
    overflow-x: hidden;
    overflow-y: scroll;
}

body {
    font-family: var(--font-family-ja);
    font-size: 1.4rem;
    line-height: 1.4;
    color: var(--color-basic);
    margin: 0;
    padding: 0;
}

/*//////////////////// LOADER ////////////////////////*/

.spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999;
    background: var(--color-non);
}

.spinner::after {
    content: "";
    height: 60px;
    width: 60px;
    border: 1px solid var(--color-dark);
    border-radius: 50%;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    animation: spinner 0.5s linear infinite;
}

@-webkit-keyframes spinner {

    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }

}

@keyframes spinner {

    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }

}

/*//////////////////// SCL ////////////////////////*/

.scl {
    display: none;
    position: fixed;
    right: 10px;
    bottom: 80px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 3;
}

@media (min-width: 821px) {

    .scl {
        bottom: 85px;
    }

}

/*//////////////////// LAYOUT ////////////////////////*/

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem
}

@media (min-width: 821px) {

    .container {
        max-width: 1240px;
    }

    .offset {
        max-width: 1000px;
        margin: auto;
    }

}

/*//////////////////// FLEX ////////////////////////*/

.contents-box,
.contents-img,
.contents-text {
    position: relative;
}

a.contents-img {
    display: block;
}

.contents-text .contents-inner {
    padding: 1.5rem;
}

@media (min-width: 821px) {

    .contents-wrap {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contents-wrap.col2 {
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }

    .contents-wrap>.contents-box,
    .contents-wrap>.contents-img,
    .contents-wrap>.contents-text {
        flex: 1;
    }

    .odd .contents-wrap:nth-child(odd),
    .even .contents-wrap:nth-child(even) {
        flex-direction: row-reverse;
    }

    .odd .contents-wrap:nth-child(odd) .contents-text .contents-inner,
    .even .contents-wrap:nth-child(even) .contents-text .contents-inner {
        padding: 2rem 2rem 2rem 0;
    }

    .odd .contents-wrap:nth-child(even) .contents-text .contents-inner,
    .even .contents-wrap:nth-child(odd) .contents-text .contents-inner {
        padding: 2rem 0 2rem 2rem;
    }

}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border-style: none;
}

.responsive {
    display: block;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.w-100 {
    width: 100%;
}

.sp {
    display: block;
}

.pc {
    display: none;
}

@media (min-width: 981px) {

    .sp {
        display: none !important;
    }

    .pc {
        display: block;
    }

}

/*//////////////////// TOPICPATH ////////////////////////*/

ul.topicpath {
    display: flex;
    overflow-x: scroll;
    word-break: keep-all;
    white-space: nowrap;
    font-size: 1.1rem;
    padding: 1rem;
}

ul.topicpath li:not(:first-of-type) {
    margin: 0 0 0 0.2rem;
}

@media (min-width: 821px) {

    ul.topicpath {
        overflow-x: hidden;
    }

}

/*//////////////////// HEADER ////////////////////////*/

header {
    position: relative;
    width: 100%;
    background: var(--color-non);
    z-index: 2;
    box-shadow: 0px 8px 20px -2px rgb(0 0 0 / 20%);
}

header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 4;
}

.header-wrap,
.inner-menu>nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-wrap {
    padding: .8rem 1.4rem;
    background: #fff;
    align-items: center;
}

.inner-menu nav ul {
    font-size: 1.4rem;
    font-weight: 400;
    color: #222;
    letter-spacing: 0.1rem;
}

.inner-menu nav ul li {
    margin: 0 1rem;
}

.inner-menu>nav ul li:not(.toggle_btn) {
    display: none;
}

header .header-wrap {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}

header .header-wrap a {
    color: var(--color-non);
}

header .header-wrap .toggle_btn span {
    background: var(--color-non);
}

header .icon.tel::before {
    filter: brightness(30%);
}

/*//////////////////// HEADER logo ////////////////////////*/

.logo-outside {
    display: block;
}

.logo-outside,
.logo-inside {
    padding: 1rem;
}

@media (max-width: 381px) {

    header .logo-outside a img {
        max-width: 200px;
    }

}

@media (max-width: 349px) {

    header .logo-outside a img {
        max-width: 170px;
    }

}

@media (min-width: 981px) {

    .logo-outside,
    .logo-inside {
        padding: 1rem 0 1rem 2rem;
    }

    .logo-outside {
        display: none;
    }

    .logo-inside {
        display: block;
    }

}

/*//////////////////// HEADER level1 ////////////////////////*/

.level1 ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.level1>ul>li {
    border-bottom: 1px solid var(--color-light);
}

.level1>ul>li.parent>.parent-name,
.level1>ul>li>a {
    position: relative;
    display: block;
    font-family: var(--font-family-en);
    font-size: 1.8rem;
    padding: 2rem 1rem;
}

.level1>ul>li.parent.selected>a,
.level1>ul>li.parent.selected>a:hover {
    color: var(--color-dark);
    background: var(--color-light);
}

.level1 li.parent.selected .level2 {
    display: block;
}

.level1 li.parent.selected .level2 a {
    position: relative;
    display: block;
    padding: 1rem;
    color: var(--color-non);
}

.level1 li.parent.selected .level2 .banner a:nth-child(2) {
    padding: 1rem 0 0;
}

.level1 li.parent>a:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 17px;
    transform: translateY(-50%) rotate(0);
    transition: .2s;
    width: 12px;
    height: 12px;
    background: url(../../content/images/icon_toggle.svg) no-repeat center center/contain;
    margin-right: .5rem;
    filter: brightness(40%);
}

@media (min-width: 981px) {

    .level1 {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .level1 li.parent {
        background: none;
    }

    .level1>ul>li.parent>.parent-name,
    .level1>ul>li>a {
        color: var(--color-basic);
        padding: 0;
    }

    .level1>ul>li.parent.selected>a,
    .level1>ul>li.parent.selected>a:hover {
        color: var(--color-non) !important;
        background: rgba(70, 67, 62, 1);
    }

    .level1 li.parent>a:after {
        display: none;
    }


    .level1>ul>li.single.selected>a,
    .level1>ul>li.single.selected>a:hover {
        color: var(--color-non) !important;
        background: rgba(70, 67, 62, 1);
    }

}

/*//////////////////// HEADER level2 ////////////////////////*/

.level2 {
    display: none;
    background: rgba(57, 54, 50, .92);
    width: 100%;
    left: 0;
    opacity: 0;
    animation: slideIn .2s ease-out forwards;
    box-shadow: rgb(0 0 0 / 10%) 0 20px 25px -5px, rgb(0 0 0 / 4%) 0 10px 10px -5px;
}

@keyframes slideIn {

    0% {
        transform: translateY(-1%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }

}

.level2-inner {
    width: 100%;
}

.level2-inner:before,
.level2-inner:after {
    content: " ";
    display: table;
}

.level2-inner:after {
    clear: both;
}

.level2 .cat {
    letter-spacing: .1rem;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 400;
    padding-top: 0.6em;
}

li.parent.selected>a:after {
    transform: translateY(-50%) rotate(90deg);
}

@media (min-width: 981px) {

    .level1 li.parent.selected .level2 a {
        padding: .5rem 1rem .5rem 0;
        color: var(--color-non);
    }

    li.parent.selected>a:after {
        filter: brightness(100);
    }

    .level2-inner .container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        column-gap: 20px;
        row-gap: 10px;
        width: 100%;
        max-width: 1240px;
    }

}

/*//////////////////// HEADER nav ////////////////////////*/

nav {
    display: block;
    position: fixed;
    top: 0;
    left: -280px;
    bottom: 0;
    width: 280px;
    -webkit-overflow-scrolling: touch;
    transition: all 0.5s;
    z-index: 3;
}

.active nav {
    top: 0;
    left: 0;
    background: var(--color-non);
    overflow-y: auto;
}

@media (min-width: 981px) {

    nav {
        position: static;
        right: 0;
        width: auto;
    }

}

/*//////////////////// HEADER icon ////////////////////////*/

.icon-contact {
    position: absolute;
    top: 13px;
    right: 60px;
    filter: brightness(0);
}

.icon-map {
    position: absolute;
    top: 13px;
    right: 100px;
    filter: brightness(0);
}

@media (min-width: 981px) {

    li.pc .icon-contact {
        position: relative;
        top: 0;
        right: 0;
        margin: 1.5rem;
    }
    li.pc .icon-map {
        position: relative;
        top: 0;
        right: 0;
        margin: 1.5rem 0 1.5rem 1.5rem;
    }

}

/*//////////////////// HEADER toggle_btn ////////////////////////*/

.toggle_btn {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 3;
}

header .toggle_btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-basic);
    border-radius: 4px;
    transition: all 0.5s;
}

.toggle_btn span:nth-child(1) {
    top: 4px;
}

.toggle_btn span:nth-child(2) {
    top: 14px;
}

.toggle_btn span:nth-child(3) {
    bottom: 4px;
}

.active .toggle_btn span {
    background-color: var(--color-pale);
}

.active .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-315deg);
}

.active .toggle_btn span:nth-child(2) {
    opacity: 0;
}

.active .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(315deg);
}

@media (min-width: 981px) {

    .toggle_btn {
        display: none;
    }

}

/*//////////////////// HEADER mask ////////////////////////*/

.mask {
    display: none;
    transition: all 0.5s;
}

.active .mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
    opacity: 0.8;
    z-index: 2;
    cursor: pointer;
}

.level2 .cat {
    font-family: var(--font-family-en);
    font-size: 1.8rem;
    border-bottom: 1px dotted #888;
    padding: 2.5rem 0 .5rem;
    margin: 0 0 .5rem;
    color: var(--color-non);
}

@media (min-width: 981px) {

    .level1>ul {
        display: flex;
        justify-content: end;
        align-items: center;
    }

    .level2-inner {
        display: flex;
        justify-content: end;
        margin: auto;
    }

    .level2-inner>div {
        width: 25%;
        float: left;
        padding: 0 1rem 2rem;
    }

    .level2-inner>.banner {
        margin: 2rem 0 0;
    }

    .level1>ul>li.parent>.parent-name,
    .level1>ul>li.single>.parent-name {
        display: inline-block;
        cursor: pointer;
        font-size: 1.9rem;
        line-height: 1;
        letter-spacing: .02rem;
        padding: 2rem 2rem;
    }

    .level1>ul>li.parent>.parent-name.under,
    .level1>ul>li.single>.parent-name.under {
        background: var(--color-primary);
        color: var(--color-non);
    }

    .level1>ul>li>a:not(.level1>ul>li.parent>a) {
        padding: 2rem 1rem;
    }

    .level1>ul>li {
        display: inline-block;
        border: none;
    }

    .level1 .level2 {
        position: absolute;
        top: 59px;
        padding: 1rem 0;
    }

}

/*//////////////////// TOP BLOCK ////////////////////////*/

.top-block {
    display: none;
}

@media (min-width: 981px) {

    header .top-block {
        position: relative;
        z-index: 2;
        display: flex;
    }

    header.fixed .top-block {
        display: none;
    }

    .top-block ul {
        display: flex;
        list-style: none;
        margin: 0;
    }

    .top-block .left-item {
        justify-content: flex-start;
        width: 300px;
    }

    .top-block .right-item {
        display: flex;
        justify-content: flex-end;
        align-items: end;
        width: calc(100% - 300px);
        padding: 0 5rem 0 0;
    }

    .top-block .right-item>li>a,
    .top-block .internal-outer>li {
        font-size: 2rem;
        font-weight: 600;
        padding: 0;
        margin: 0;
    }

    .top-block .right-item {
        padding-right: 5rem;
    }

    .top-block ul li .button {
        background: none;
        border: none;
        padding: 0.5rem;
    }

    .top-block ul li .button.icon span {
        font-size: 2.4rem;
    }

    .top-block ul li .inner-text {
        padding: 0 1rem 0 0;
        ;
    }

    .top-block ul li .button.icon {
        background: var(--color-non);
        color: var(--color-dark);
        font-weight: 500;
        font-size: 1.3rem;
        padding: .5rem 1rem .5rem;
        margin: 0;
    }

    .top-block i.fa {
        padding: 1.4rem;
    }

}

/*//////////////////// HEADER fixed ////////////////////////*/

header.fixed .header-wrap {
    background: var(--color-non);
    box-shadow: 0px 8px 20px -2px rgba(0, 0, 0, 0.2);
}

header.fixed .header-wrap a {
    color: var(--color-dark);
}

header.fixed .header-wrap .toggle_btn span {
    background-color: var(--color-dark);
}

header.fixed .header-logo img {
    filter: invert();
}

/*//////////////////// HEADER reservation ////////////////////////*/

.level1>ul>li.sp {
    padding: 4rem 0;
    border-bottom: none;
}

.level1>ul>li.parent.sp {
    padding: 0;
    border-bottom: 1px solid var(--color-light);
}

.level1 li.sp .g3 {
    text-align: center;
    padding: 0 1rem;
}

.level1 li.parent.selected .level2 ul.reservation li .button:not(.button.tel) {
    border: 1px solid var(--color-basic);
    margin: 1rem 1rem 0;
}

.level1 li.parent.selected .level2 ul.reservation li:first-child .button {
    background: var(--color-non);
    color: var(--color-basic);
}

.level1 li.parent.selected .level2 ul.reservation li:first-child .button.mark.arrowR::after {
    filter: brightness(0);
}

.level1 li.parent.selected .level2 ul.reservation li:last-child .button {
    background: none;
    border: none;
}

.level1 li.parent.selected .level2 ul.reservation li:last-child .button.tel {
    font-family: var(--font-family-ja-min);
    font-size: 2rem;
    margin: auto;
    /*color: var(--color-basic);*/
}

.level1 li.parent.selected .level2 .banner {
    margin: 2rem 0 0;
}

@media (min-width: 981px) {

    .level1 li.parent.selected .level2 ul.reservation li:last-child .button.tel>span>span {
        display: inline-block;
    }

}

.level1 li.parent.selected .level2 ul.reservation li:last-child .button.tel::before {
    filter: brightness(100);
}

/*//////////////////// FOOTER ////////////////////////*/

footer {
    padding: 0;
    text-align: left;
}

footer .logo {
    text-align: center;
    margin: 0 0 2rem;
}

/*
footer .logo img {
    width: 160px;
}
*/

footer .container {
    padding: 0;
}

footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

footer .internal-link {
    width: 100%;
}

footer .internal-link dl {
    margin: 0;
}

footer dt {
    position: relative;
    font-family: var(--font-family-en);
    font-size: 1.8rem;
    background: none;
    border-bottom: 1px solid var(--color-pale);
    text-align: left;
    padding: 2rem 1rem;
}

footer dd {
    display: none;
    background: var(--color-non);
}

footer dd li {
    background: none !important;
    padding: 1rem 0;
}

footer dd li {
    border-bottom: 1px solid var(--color-pale);
    box-sizing: border-box;
}

footer .profile {
    width: 100%;
    padding: 2rem 1.5rem 10rem;
    text-align: center;
}

footer dl dt::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 17px;
    transform: translateY(-50%) rotate(0);
    transition: .2s;
    width: 12px;
    height: 12px;
    background: url(../../content/images/icon_toggle.svg) no-repeat center center/contain;
    margin-right: .5rem;
    filter: brightness(40%);
}

footer dl.active dt::after {
    transform: translateY(-50%) rotate(90deg);
}

.copyright {
    font-family: var(--font-family-en);
    width: 100%;
    text-align: center;
    border-top: 1px solid var(--color-light);
    padding: 1rem 0;
}

@media (min-width: 821px) {

    footer {
        padding: 4rem 0 0;
    }

    footer .profile {
        flex: 1;
        padding: 0 0 4rem 3rem;
    }

    footer .internal-link {
        flex: 3.5;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        column-gap: 30px;
    }

    footer .contents-wrap {
        align-items: baseline;
        max-width: 1240px;
        margin: auto;
    }

    footer dl {
        display: block;
        margin: 0;
        border: none;
    }

    footer dt {
        font-family: var(--font-family-en);
        font-size: 2rem;
        font-weight: 400;
        letter-spacing: .05rem;
        line-height: 1.4;
        white-space: nowrap;
        pointer-events: none;
        width: 100%;
        padding: 0;
        margin: 0 0 .5rem;
        border-bottom: 1px solid var(--color-basic);
    }

    footer dt:after {
        display: none;
    }

    footer dd {
        display: block !important;
        background: none;
        width: auto;
        border: none;
    }

    footer dd li {
        line-height: 1.2;
        background: none !important;
        border: none;
        padding: .8rem 0;
    }

    footer dd a {
        pointer-events: auto;
    }

}

@media (min-width: 821px) and (max-width: 1280px) {

    footer {
        padding: 4rem 1.5rem 0;
    }

}

/*//////////////////// TITLE ////////////////////////*/

.title {
    display: flex;
    justify-content: center;
    align-items: center;
}

/*//////////////////// DL DT DD ////////////////////////*/

dt {
    font-weight: 500;
    padding: 1rem;
    margin: 0;
    text-align: center;
}

dd {
    padding: 1rem;
    margin: 0 0 1rem;
}

@media (min-width: 821px) {

    dl {
        display: flex;
        flex-wrap: wrap;
        line-height: 1.8;
    }

    dt {
        width: 25%;
        margin: 0 0 1rem;
        text-align: left;
        border-bottom: 1px solid var(--color-pale);
    }

    dd {
        width: 75%;
        border-bottom: 1px solid var(--color-pale);
    }

    dl.line dt:not(footer dt) {
        padding: 1.3rem;
        margin: 0;
        border-bottom: 1px solid var(--color-light);
    }

    dl.line dd:not(footer dd) {
        padding: 1.3rem;
        margin: 0;
        border-bottom: 1px solid var(--color-light);
    }

    dl.line dt:not(footer dt):first-of-type,
    dl.line dd:not(footer dd):first-of-type {
        border-top: 1px solid var(--color-light);
    }

    dl.bg dt {
        background: var(--color-pale);
        color: var(--color-basic);
    }

}

/*//////////////////// RIGHT BLOCK ////////////////////////*/

.right-block {
    display: none;
}

.right-block {
    display: block;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 2;
    width: 100%;
}

.right-block .right-block-inner a:hover {
    text-decoration: none;
}

.right-block-inner ul {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
    background: var(--color-primary);
    padding: 0;
    margin: 0;
}

.right-block .right-block-inner li:not(:last-child) {
    border-right: 1px dotted var(--color-light);
    width: 100%;
    margin: 1rem 0;
}

@media (min-width: 821px) {

    .right-block {
        width: auto;
    }

}

.right-block .right-block-inner li .button:not(.button.tel) {
    font-family: var(--font-family-ja);
    font-size: 1.2rem;
    width: 100%;
    padding: .3rem 2rem;
}

.right-block .right-block-inner li .button.tel>span {
    display: none;
}

.right-block .right-block-inner li .button.tel .button-inner {
    display: none;
}

@media (min-width: 821px) {

    .right-block .right-block-inner li .button.tel>span {
        display: inline-block;
    }

    .right-block .right-block-inner li .button.tel .button-inner {
        display: flex;
    }

}

/*//////////////////// BOTTOM-BLOCK ////////////////////////*/

.bottom-block {
    position: relative;
    background: var(--color-dark);
    margin-top: 10rem;
    padding-bottom: 1px;
    padding: 2rem 0 1px;
}

.bottom-block .is-text {
    position: absolute;
    top: -4rem;
    left: auto;
    right: 0;
    font-family: var(--font-family-en);
    font-size: 4rem;
    color: var(--color-dark);
}

.bottom-block h2 {
    color: var(--color-non);
    padding: 2rem 0 0;
}

.bottom-block h2 span {
    font-size: 2.8rem;
}

.bottom-block .g1 li .button {
    height: 60px;
    background: var(--color-dark);
    border-color: var(--color-dark);
}

@media (min-width: 821px) {

    .bottom-block {
        padding: 4rem 0 1px;
        margin-top: 14rem;
    }

    .bottom-block h2 {
        padding: 4rem 0 0;
    }

    .bottom-block .is-text {
        top: -10rem;
        font-size: 10rem;
    }

    .bottom-block .g1 li .button {
        height: 50px;
    }

}


/*ここからスタイルよりもってきた*/


@media (min-width: 600px) and (max-width: 820px) {

    .bottom-block .is-text {
        top: -6rem;
        font-size: 6rem;
    }

}

@media (min-width: 821px) and (max-width: 980px) {

    .bottom-block .is-text {
        top: -8rem;
        font-size: 8rem;
    }

}

@media (min-width: 981px) {

    .bottom-block {
        margin-top: 20rem;
    }

    .bottom-block .is-text {
        top: -10rem;
        font-size: 10rem;
    }

}

/*//////////////////// SNS ////////////////////////*/

.bottom-block-sns {
    position: relative;
    background: var(--color-basic);
    margin-top: 0;
}

.bottom-block-sns .contents-box.sns {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-pale);
    padding: 2rem 0;
}

.bottom-block-sns .contents-box.sns .contents-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottom-block-sns .contents-box.sns div>span {
    font-family: var(--font-family-en);
    font-size: 2rem;
    margin: 0 2rem 0 0;
}

.bottom-block-sns .contents-box.sns li:nth-child(2) {
    margin: 0 1rem;
}

/*//////////////////// BUTTON ////////////////////////*/

.button {
    display: inline-block;
    font-family: var(--font-family-ja-min);
    color: var(--color-non);
    line-height: 1.4;
    vertical-align: middle;
    text-decoration: none;
    text-align: center;
    background: var(--color-primary);
    border-color: var(--color-primary);
    border-width: 1px;
    border-style: solid;
    white-space: nowrap;
    padding: .3rem 3rem;
    -webkit-appearance: none;
    border-radius: 0;
}

.button:not(.tel) span {
    display: block;
    font-family: var(--font-family-en);
    font-weight: 400;
    font-size: 1.8rem;
    letter-spacing: .05rem;
    width: 100%;
}

/*//////////////////// BUTTON mark////////////////////////*/

.button.mark {
    position: relative;
    letter-spacing: .1rem;
}

.button.mark span {
    display: inline;
}

.button.mark.arrowT,
.button.mark.arrowR,
.button.mark.arrowD,
.button.mark.arrowL {
    padding: 0.5rem 4.8rem;
}

@media (min-width: 821px) {

    .button.mark.arrowT,
    .button.mark.arrowR,
    .button.mark.arrowD {
        padding: 0.5rem 4.8rem 0.5rem 8rem;
    }

    .button.mark.arrowL {
        padding: 0.5rem 3.6rem 0.5rem 4.8rem;
    }

}

.button.mark.arrowR::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    transition: .2s;
    background: url(../../content/images/icon_arrowR.svg) no-repeat center center/contain;
    filter: brightness(100);
    top: 50%;
    transform: translateY(-50%) rotate(0);
    margin: 0 0 0 .5rem;
}

.button.mark.arrowL::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    transition: .2s;
    background: url(../../content/images/icon_arrowL.svg) no-repeat center center/contain;
    filter: brightness(100);
    top: 50%;
    transform: translateY(-50%) rotate(0);
}

.button.mark.arrowU::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    transition: .2s;
    background: url(../../content/images/icon_arrowU.svg) no-repeat center center/contain;
    filter: brightness(100);
    top: 50%;
    transform: translateY(-50%) rotate(0);
    margin: 0 0 0 .5rem;
}

.button.mark.arrowD::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    transition: .2s;
    background: url(../../content/images/icon_arrowD.svg) no-repeat center center/contain;
    filter: brightness(100);
    top: 50%;
    transform: translateY(-50%) rotate(0);
    margin: 0 0 0 .5rem;
}

.button.white {
    background: var(--color-non);
    color: var(--color-dark);
    border-color: var(--color-basic);
}

.button.white.mark.arrowR::after,
.button.white.mark.arrowL::after,
.button.white.mark.arrowU::after,
.button.white.mark.arrowD::after {
    filter: brightness(0);
}

.area .button.white {
    background: none;
    color: var(--color-dark);
    border-color: var(--color-dark);
}

.button.dark {
    background: var(--color-dark);
    color: var(--color-non);
    border-color: var(--color-dark);
}

/*//////////////////// ICON SVG ////////////////////////*/

.icon.mail:before {
    content: "";
    filter: brightness(0);
    padding: .8rem;
    margin: 0 0 0 .5rem;
    background: url(../../content/images/icon_mail.svg) no-repeat center/contain;
}

.button.icon.mail {
    font-family: var(--font-family-ja-min);
    font-weight: 500;
    font-size: 2rem;
}

.icon.tel::before {
    content: "";
    padding: .8rem;
    margin: 0 0 0 .5rem;
    background: url(../../content/images/icon_tel.svg) no-repeat center/contain;
}

.venue .icon.tel::before {
    filter: brightness(0);
}

.button.icon.tel {
    font-family: var(--font-family-ja-min);
    font-weight: 500;
    font-size: 2rem;
}

.button.icon.tel::before {
    padding: 1rem;
    margin: 0 1rem 0 0;
}

.button.icon.tel .button-inner {
    line-height: 1;
}

.button.icon.tel .button-inner span {
    font-family: var(--font-family-ja);
    font-size: 1.2rem;
    line-height: 1.4;
}

@media (min-width: 821px) {

    .button.icon.tel {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        font-size: 2.4rem;
    }

    .right-block .button.icon.tel {
        width: 300px;
    }

    .button.icon.tel {
        display: inline-block;
        font-size: 2.4rem;
        margin: 0 .5rem;
    }

    .button.icon.tel .button-inner {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    a[href^="tel:"] {
        pointer-events: none;
    }

}

.button.white.icon.tel {
    border: none;
}

.button.white.icon.tel::before {
    filter: brightness(30%);
}

/*//////////////////// G1 ////////////////////////*/

.g1 .contents-inner {
    max-width: 1000px;
    padding: 1rem 0;
    margin: 2rem auto 0;
}

.g1 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.g1 li {
    width: calc(90% / 2);
    margin: 0 .5rem;
    border-top: 1px dotted var(--color-basic);
}

.bottom-block .g1 li {
    border-top: 1px dotted var(--color-non);
}

.bottom-block .g1 li:first-child {
    border-top: none;
}

.g1 li .button {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    height: 50px;
    font-family: var(--font-family-ja);
}

@media (min-width: 821px) {

    .g1 {
        padding: 0 0 4rem;
        margin: 0 auto 4rem;
    }

    .g1 ul {
        flex-wrap: nowrap;
    }

    .g1 li {
        width: calc(100% / 6);
        border-top: none;
        border-right: 1px solid var(--color-basic);
        margin: 0;
    }

    .g1 li:first-child {
        border-left: 1px solid var(--color-basic);
    }

    .bottom-block .g1 li {
        border-right: 1px solid var(--color-non);
    }

    .bottom-block .g1 li {
        border-top: none;
    }

    .bottom-block .g1 li:first-child {
        border-left: 1px solid var(--color-non);
    }

    .bottom-block .g1 {
        margin: 0 auto;
    }

}

.bottom-block .g1 li {
    width: 100%;
}

@media (min-width: 821px) {

    .bottom-block .g1 {
        max-width: 800px;
    }

    .bottom-block .g1 li {
        width: calc(100% / 3);
    }

}

/*//////////////////// G3 ////////////////////////*/

.g3 .button.tel {
    width: 100%;
    padding: 0;
}

.g3 .button:not(.tel) {
    display: block;
    font-family: var(--font-family-ja);
    padding: 0.5rem 0;
    margin: .5rem 0 1rem;
}

.g3>div {
    margin: 2rem 0 0;
}

/*//////////////////// Global sunpalace ////////////////////////*/

.global-japanese {
    font-family: var(--font-family-ja-min);
    font-size: 1.2rem;
    margin-left: 1rem;
    letter-spacing: 0;
}

span.footer-name {
    font-family: var(--font-family-en);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: inline-block;
}

span.footer-name-japanese{
    font-size: 1.3rem;
}