﻿* {
    box-sizing: border-box
}

:root {
    --font-size-base: 1.2rem;
    --base-scale-width: 1550;
    --max-content-width: 3000px;
    --content-width-xl: 1366px;
    --content-width-lg: 1200px;
    --content-width-mdl: 1008px;
    --content-width-md: 774px;
    --content-width-sm: 620px;
    --content-grid-column-gap: 24px;
    --scroll-bar-width: 0.1px;
    --side-margin: 107px;
    --header-height: 116px;
    --color-white: #fff;
    --color-black: #000;
    --color-boston-university-red: #cb0000;
    --color-silver-chalice: #acacac;
    --color-hint-of-red: #fbf9fa;
    --color-wild-sand: #f6f3f5;
    --color-quill-gray: #d6d5d2;
    --color-fuscous-gray: #52514C;
    --color-pink-flare: #e0c2c4;
    --color-heather: #b6c4d2;
    --color-almond: #e7dacc;
    --color-gravel: #464749;
    --color-monsoon: #898989;
    --color-gray-nurse: #E8E8E8;
    --background-color: var(--color-white);
    --light-grey: var(--color-quill-gray);
    --medium-grey: var(--color-silver-chalice);
    --dark-grey: #454545;
    --line-color: #E5E5E5;
    --base-text-color: var(--color-fuscous-gray);
    --text-color1: var(--color-pink-flare);
    --introduction-text-color: var(--base-text-color);
    --link-hover-color2: #d2b0b2;
    --link-color: var(--base-text-color);
    --link-visited-color: var(--link-color);
    --link-hover-color: var(--link-color);
    --link-active-color: var(--link-color);
    --ease-in-sine: cubic-bezier(0.47, 0, 0.745, 0.715);
    --ease-out-sine: cubic-bezier(0.39, 0.575, 0.565, 1);
    --ease-in-out-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
    --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
    --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
    --easein-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
    --ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
    --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
    --ease-in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);
    --ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-in-out-quint: cubic-bezier(0.86, 0, 0.07, 1);
    --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-in-out-expo: cubic-bezier(1, 0, 0, 1);
    --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
    --ease-out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
    --ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
    --ease-in-back: cubic-bezier(0.6, -0.28, 0.735, 0.045);
    --ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --ease-in-out-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --top-banner-zindex: 15;
    --header-zindex: 20;
    --navigation-zindex: 30;
    --toggle-navigation-button-zindex: 40;
    --overlay-zindex: 50;
    --opening-zindex: 60
}

:root {
    font-size: 16px
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: ryo-display-plusn, serif;
    font-style: normal;
    font-weight: 500;
    color: #586166
}

html::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/common/bg.jpg) left top no-repeat;
    background-size: cover;
    position: fixed;
    z-index: -1
}

img {
    width: 100%;
    max-width: 100%;
    vertical-align: bottom
}

a {
    text-decoration: none;
    transition: opacity .5s ease-in-out
}

a:hover {
    transition: opacity .5s ease-in-out;
    opacity: .7
}

.flex {
    display: flex
}

.grid {
    display: grid
}

.readmore,
.readmore2 {
    display: block;
    width: 254px;
    height: 46.5px;
    margin: 0 auto;
    font-size: 14px;
    font-family: "Aboreto";
    color: #b7a46b;
    background: #fff;
    letter-spacing: .08em;
    line-height: 46.5px;
    text-align: center;
    border: 1px #b7a46b solid;
    border-radius: 23.25px;
    transition: all .8s cubic-bezier(0.165, 0.84, 0.44, 1)
}

.readmore:hover,
.readmore2:hover {
    color: #fff;
    background: #b7a46b;
    transition: all .8s cubic-bezier(0.165, 0.84, 0.44, 1)
}

.readmore2 {
    color: #fff;
    background: #b7a46b
}

.readmore2:hover {
    color: #b7a46b;
    background: #fff
}

.sp {
    display: none
}

::placeholder {
    color: #413b2f;
    opacity: .5;
    line-height: 1.5
}

h1 {
    margin: 0;
    padding: 164px 94px 30px;
    font-weight: 400;
    background: #fff
}

h1 em {
    display: inline-block;
    margin-bottom: 6px;
    padding-right: 1em;
    font-family: "Aboreto";
    font-size: 30px;
    font-style: normal;
    letter-spacing: .08em;
    line-height: 1.333;
    color: #b7a46b;
    position: relative
}

h1 em::after {
    display: block;
    content: "";
    width: 120px;
    height: 1px;
    background: #b7a46b;
    position: absolute;
    left: 100%;
    top: .6em;
    z-index: 2
}

h1 small {
    display: block;
    font-size: 12px;
    letter-spacing: .2em;
    line-height: 2.5
}

.header_mv {
    position: relative
}

.header_mv .mv {
    display: block;
    width: calc(50% + 600px);
    margin-left: auto
}

.header_mv .mv.sp {
    display: none
}

.header_mv .big_title {
    width: 63.438vw;
    height: 18.375vw;
    margin: -46px 90px 0 auto
}

.header_mv .text {
    max-width: 1200px;
    margin: 20px auto 190px;
    padding-left: 1.5em;
    border-left: 3px #b7a46b solid;
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.143
}

.header_mv::before {
    display: block;
    content: "";
    width: 100%;
    height: calc(100% - 180px);
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1
}

.header_mv::after {
    display: block;
    content: "";
    width: 100%;
    height: 180px;
    background: linear-gradient(0, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    position: absolute;
    left: 0;
    top: calc(100% - 180px);
    z-index: -1
}

.plan_card {
    width: 380px;
    padding: 20px 20px 34px;
    background: #fff;
    font-size: 12px;
    letter-spacing: .1em
}

.plan_card .image {
    position: relative
}

.plan_card .image span {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    letter-spacing: .15em;
    height: 36px;
    line-height: 36px;
    padding: 0 1em;
    color: #fff;
    background: #c67cba
}

.plan_card .title {
    background: #b7a46b;
    color: #fff;
    font-size: 17px;
    line-height: 1.882;
    text-align: center;
    margin: 20px 0;
    padding: 4px 0
}

.plan_card .copy {
    padding: 1em .5em;
    border-top: 1px #b7a46b solid;
    border-bottom: 1px #b7a46b solid;
    line-height: 1.667
}

.plan_card .price {
    margin: 20px 0;
    padding: 10px;
    border-radius: 2px;
    background: #f8f6f0
}

.plan_card .price .label {
    display: inline-block;
    width: 100px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    background: #b7a46b;
    border-radius: 2px;
    margin-right: 20px
}

.plan_card .price .value {
    display: inline-block;
    width: calc(100% - 120px);
    vertical-align: middle
}

.plan_card .price .value em {
    font-style: normal;
    font-size: 18px;
    vertical-align: -2px
}

.plan_card .price .off {
    display: inline-block;
    margin: 9px 0 18px;
    height: 30px;
    line-height: 30px;
    padding: 3px .5em;
    border: 1px #b7a46b solid;
    background: #fff;
    border-radius: 2px
}

.plan_card .price .off em {
    font-style: normal;
    font-size: 18px;
    color: #b7a46b;
    vertical-align: -2px
}

.plan_card .benefits {
    position: relative;
    margin-bottom: .5em
}

.plan_card .benefits::after {
    display: block;
    content: "";
    width: calc(100% - 3em);
    height: 1px;
    background: #b7a46b;
    position: absolute;
    right: 0;
    top: 50%
}

.plan_card .bitem {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    padding: 0 .5em;
    border-radius: 15px;
    margin-bottom: 10px;
    margin-right: 10px;
    background: #fff;
    color: #b7a46b;
    border: 1px #b7a46b solid
}

.plan_card .bikou {
    margin: 20px 0
}

.plan_card .more {
    display: block;
    width: 254px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    color: #b7a46b;
    border: 1px #b7a46b solid;
    border-radius: 23px;
    margin: 0 auto
}

.wp-pagenavi {
    text-align: center
}

.wp-pagenavi span,
.wp-pagenavi a {
    display: inline-block;
    margin: 0 10px;
    color: #b7a46b;
    font-size: 14px
}

[data-animate][fade-in] {
    opacity: .01;
    transition: opacity 0s cubic-bezier(0.69, 0, 0.33, 1) 0s
}

[data-animate=active][fade-in] {
    opacity: 1;
    transition: opacity 1.3s cubic-bezier(0.69, 0, 0.33, 1) 0s
}

[data-animate][slide-up] {
    overflow-y: hidden
}

[data-animate][slide-up] img {
    transform: translateY(110%);
    transition: all 2s cubic-bezier(0.08, 0.92, 0.35, 1)
}

[data-animate=active][slide-up] img {
    transform: translateY(0);
    transition: all 2s cubic-bezier(0.08, 0.92, 0.35, 1)
}

.hover-slide p {
    transition: transform .4s var(--ease-out-quad)
}

.hover-slide:hover p {
    transform: translateX(10px)
}

[data-animate][slide-in] span {
    position: relative;
    display: inline-block;
    opacity: 0;
    -webkit-transform: translate(350%, 20%) skewX(-20deg);
    transform: translate(350%, 20%) skewX(-20deg);
    transition: all 1.9s ease calc(.02s*var(--char-index))
}

[data-animate=active][slide-in] span {
    opacity: 1;
    -webkit-transform: translate(0, 0) skewX(0deg);
    transform: translate(0, 0) skewX(0deg)
}

.photo_parallax {
    position: relative;
    overflow: hidden
}

.photo_parallax img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(1.6);
    transform-origin: left top
}

@keyframes cuisine_img1 {
    0% {
        margin-top: -10px
    }

    100% {
        margin-top: 10px
    }
}

@keyframes cuisine_img2 {
    0% {
        margin-top: -100px
    }

    100% {
        margin-top: 100px
    }
}

@keyframes cuisine_img3 {
    0% {
        margin-top: -50px
    }

    100% {
        margin-top: 50px
    }
}

@keyframes cuisine_img4 {
    0% {
        margin-top: -100px
    }

    100% {
        margin-top: 100px
    }
}

@keyframes cuisine_img5 {
    0% {
        margin-top: -150px
    }

    100% {
        margin-top: 150px
    }
}

@keyframes wedding_dress_img5 {
    0% {
        margin-top: -100px
    }

    100% {
        margin-top: 100px
    }
}

@keyframes party_report_anim {
    0% {
        background-position-y: -400px
    }

    100% {
        background-position-y: 0
    }
}

@keyframes down200 {
    0% {
        margin-top: -200px
    }

    100% {
        margin-top: 0
    }
}

@keyframes down100p {
    0% {
        margin-top: -100%
    }

    100% {
        margin-top: 0
    }
}

header {
    justify-content: space-between;
    width: 100%;
    height: 132px;
    padding: 35px 40px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    background: linear-gradient(0, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%)
}

header .header_logo {
    display: block;
    width: 193px;
    height: 52px;
    background: url("../img/common/logo_w.png") center center no-repeat;
    background-size: 100%
}

header .menu {
    padding-top: 4px
}

header .menu a {
    display: block;
    height: 46px;
    padding: 5px 36px 0;
    text-align: center;
    color: #586166;
    font-size: 14px;
    letter-spacing: .1em;
    line-height: 1.4;
    border-left: 1px #586166 solid;
    position: relative;
    transition: color .6s cubic-bezier(0.79, 0.17, 0.15, 0.96), opacity .4s
}

header .menu a::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 9px;
    top: 0;
    height: 100%;
    width: calc(100% - 18px);
    background: #ba83a8;
    opacity: 0;
    transform: scaleX(0.7);
    transition: transform .6s cubic-bezier(0.79, 0.17, 0.15, 0.96), opacity .4s;
    transform-origin: center
}

header .menu a:hover::before {
    transform: scaleX(1);
    opacity: .53;
    transition: .8s cubic-bezier(0.08, 0.92, 0.35, 1)
}

header .menu a+a {
    border-right: 1px #586166 solid
}

header .menu a+a::before {
    background: #b7a46b
}

header .menu a+a:hover::before {
    opacity: .6
}

header .menu a span {
    display: block;
    font-size: 12px
}

header .menu a.menubtn span {
    display: block;
    width: 20px;
    height: 1px;
    margin: 3px auto 4px;
    background: #586166;
    transition: all .6s cubic-bezier(0.79, 0.17, 0.15, 0.96), opacity .4s
}

header .menu a:hover {
    color: #fff;
    opacity: 1;
    transition: color .2s cubic-bezier(0.79, 0.17, 0.15, 0.96), opacity .4s
}

header .menu a:hover::before {
    opacity: 1
}

header .menu a:hover.menubtn span {
    background: #fff;
    transition: all .2s cubic-bezier(0.79, 0.17, 0.15, 0.96), opacity .4s
}

body.home header .header_logo img {
    transition: all .4s ease-in-out
}

body.home.scroll header .header_logo img {
    opacity: 1;
    transition: all .4s ease-in-out
}

body.show_menu nav {
    opacity: 1;
    transition: opacity .4s ease-in-out
}

nav {
    opacity: 0;
    transition: opacity .4s ease-in-out;
    position: fixed;
    left: 0;
    top: 0;
    padding-top: 132px;
    z-index: -1;
    width: 100%;
    height: 100%;
    transition: all .4s ease-in-out;
    background: url(../img/common/bg.jpg) left top no-repeat;
    background-size: cover
}

nav .nav {
    height: 100%
}

nav .nav .menu {
    width: calc(50% + 60px);
    height: 100%;
    overflow-y: scroll;
    padding: 50px 0
}

nav .nav .menu .submenu {
    justify-content: right
}

nav .nav .menu .submenu>div {
    width: 340px
}

nav .nav .menu .submenu>div+div {
    width: 360px
}

nav .nav .menu .submenu>div a {
    display: block;
    margin-bottom: 30px;
    color: #586166;
    transition: all .8s cubic-bezier(0.08, 0.92, 0.35, 1)
}

nav .nav .menu .submenu>div a:hover {
    color: #b7a46b;
    transition: all .8s cubic-bezier(0.08, 0.92, 0.35, 1)
}

nav .nav .menu .contact {
    width: 700px;
    margin: 85px 0 0 auto
}

nav .nav .menu .contact h2 {
    margin: 0 0 46px;
    font-size: 18px;
    font-weight: 500
}

nav .nav .menu .contact h2 small {
    display: block;
    font-size: 12px;
    margin-left: .5em
}

nav .nav .menu .contact h2 small span {
    display: inline-block;
    margin: 0 1em
}

nav .nav .menu .contact .flex {
    flex-wrap: wrap
}

nav .nav .menu .contact .flex a {
    display: flex;
    width: 227px;
    height: 60px;
    padding-left: 1em;
    align-items: center;
    color: #b7a46b;
    border: 1px #b7a46b solid;
    transition: all .4s ease-in-out;
    position: relative;
    overflow: hidden
}

nav .nav .menu .contact .flex a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translate(-100%, 0);
    transition: transform 240ms cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
    background: #b7a46b
}

nav .nav .menu .contact .flex a:hover::before {
    transform: translate(0, 0);
    transition: transform 240ms cubic-bezier(0.165, 0.84, 0.44, 1)
}

nav .nav .menu .contact .flex a span {
    line-height: 1.3;
    transition: color 240ms cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 2
}

nav .nav .menu .contact .flex a span small {
    display: block
}

nav .nav .menu .contact .flex a:hover span {
    color: #fff;
    transition: color 240ms cubic-bezier(0.165, 0.84, 0.44, 1)
}

nav .nav .menu .contact .flex a:nth-of-type(2n) {
    margin-left: 10px;
    margin-right: 200px
}

nav .nav .menu .contact .flex a:nth-of-type(n+3) {
    margin-top: 10px
}

nav .nav .menu .contact .flex a::after {
    display: block;
    content: "";
    width: 4px;
    height: 4px;
    background: #b7a46b;
    position: absolute;
    right: 20px;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%) rotate(45deg);
    transform-origin: center;
    transition: all 240ms ease-in-out
}

nav .nav .menu .contact .flex a:hover::after {
    background: #fff;
    transition: all 240ms ease-in-out
}

nav .nav .menu .contact .tel {
    margin-top: 45px
}

nav .nav .menu .contact .tel a {
    display: inline-block;
    padding-left: 26px;
    font-size: 22px;
    background: url(../img/common/icon_tel.png) left center no-repeat;
    background-size: 19px;
    color: #586166;
    letter-spacing: .1em
}

nav .nav .menu .contact .tel span {
    display: block;
    font-size: 12px;
    letter-spacing: .2em
}

nav .nav .menu_slider {
    width: calc(50% - 60px)
}

body.nomv .header_logo,
body.nomv nav .menu:not(.contact) {
    color: #886168
}

.breadcrumb {
    background: #fff;
    font-size: 12px
}

.breadcrumb .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 10px
}

.breadcrumb .homeicon {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(../img/common/icon_home.png) center center no-repeat;
    background-size: contain;
    vertical-align: -2px
}

.breadcrumb i {
    display: inline-block;
    width: 30px;
    height: 1em;
    position: relative
}

.breadcrumb i::before {
    display: block;
    content: "";
    position: absolute;
    left: calc(50% - 2px);
    top: 50%;
    width: 4px;
    height: 4px;
    background: #33424a;
    transform: rotate(45deg)
}

.breadcrumb span,
.breadcrumb a {
    color: #33424a
}

.reserve_cv {
    padding: 90px 0;
    background: #f8f6f0
}

.reserve_cv .reservation {
    width: 680px;
    margin: 0 auto
}

.reserve_cv .reservation h2 {
    margin: 0 0 46px;
    font-size: 18px;
    font-weight: 500;
    text-align: center
}

.reserve_cv .reservation h2 small {
    display: block;
    font-size: 12px;
    margin-left: .5em
}

.reserve_cv .reservation h2 small span {
    display: inline-block;
    margin: 0 1em
}

.reserve_cv .reservation .flex {
    flex-wrap: wrap;
    justify-content: center
}

.reserve_cv .reservation .flex a {
    display: flex;
    width: 330px;
    height: 80px;
    padding-left: 1em;
    align-items: center;
    color: #fff;
    background: #b7a46b;
    border: 1px #b7a46b solid;
    transition: all .4s ease-in-out;
    position: relative;
    overflow: hidden
}

.reserve_cv .reservation .flex a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translate(-100%, 0);
    transition: transform 240ms cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
    background: #fff
}

.reserve_cv .reservation .flex a:hover::before {
    transform: translate(0, 0);
    transition: transform 240ms cubic-bezier(0.165, 0.84, 0.44, 1)
}

.reserve_cv .reservation .flex a span {
    line-height: 1.3;
    transition: color 240ms cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 2
}

.reserve_cv .reservation .flex a span small {
    display: block
}

.reserve_cv .reservation .flex a:hover span {
    color: #b7a46b;
    transition: color 240ms cubic-bezier(0.165, 0.84, 0.44, 1)
}

.reserve_cv .reservation .flex a:nth-of-type(2n) {
    margin-left: 20px
}

.reserve_cv .reservation .flex a:nth-of-type(n+3) {
    margin-top: 30px
}

.reserve_cv .reservation .flex a::after {
    display: block;
    content: "";
    width: 4px;
    height: 4px;
    background: #fff;
    position: absolute;
    right: 20px;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%) rotate(45deg);
    transform-origin: center;
    transition: all 240ms ease-in-out
}

.reserve_cv .reservation .flex a:hover::after {
    background: #b7a46b;
    transition: all 240ms ease-in-out
}

.reserve_cv .reservation .tel {
    margin-top: 45px;
    text-align: center
}

.reserve_cv .reservation .tel a {
    display: inline-block;
    padding-left: 26px;
    font-size: 22px;
    background: url(../img/common/icon_tel.png) left center no-repeat;
    background-size: 19px;
    color: #586166;
    letter-spacing: .1em
}

.reserve_cv .reservation .tel span {
    display: block;
    font-size: 12px;
    letter-spacing: .2em
}

footer {
    background: #fff;
    padding: 200px 0 100px;
    position: relative;
    overflow: clip
}

footer .footer_inner {
    animation: down200 ease-out;
    animation-timeline: view();
    animation-range: cover 0% cover 100%
}

footer .footer_inner .nav {
    max-width: 1200px;
    margin: 0 auto
}

footer .footer_inner .nav .flex {
    justify-content: space-between
}

footer .footer_inner .nav .flex .nav1 .footer_logo {
    display: block;
    width: 253px;
    margin-bottom: 40px
}

footer .footer_inner .nav .flex .nav1 .flex>div:first-child {
    width: 212px
}

footer .footer_inner .nav .flex .nav1 .flex>div:last-child {
    flex: 1
}

footer .footer_inner .nav .flex .nav1 .flex a {
    display: inline-block;
    margin-bottom: 24px;
    font-size: 12px;
    color: #586166;
    transition: all .8s cubic-bezier(0.08, 0.92, 0.35, 1)
}

footer .footer_inner .nav .flex .nav1 .flex a:hover {
    color: #b7a46b;
    transition: all .8s cubic-bezier(0.08, 0.92, 0.35, 1)
}

footer .footer_inner .nav .flex .nav2 {
    width: 470px
}

footer .footer_inner .nav .flex .nav2 .title {
    margin: 0 0 46px;
    font-size: 18px;
    font-weight: 500
}

footer .footer_inner .nav .flex .nav2 .title small {
    display: block;
    font-size: 12px;
    margin-left: .5em
}

footer .footer_inner .nav .flex .nav2 .title small span {
    display: inline-block;
    margin: 0 1em
}

footer .footer_inner .nav .flex .nav2 .flex {
    flex-wrap: wrap
}

footer .footer_inner .nav .flex .nav2 .flex a {
    display: flex;
    width: 227px;
    height: 60px;
    padding-left: 1em;
    align-items: center;
    color: #b7a46b;
    border: 1px #b7a46b solid;
    transition: all .4s ease-in-out;
    position: relative;
    overflow: hidden
}

footer .footer_inner .nav .flex .nav2 .flex a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translate(-100%, 0);
    transition: transform 240ms cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
    background: #b7a46b
}

footer .footer_inner .nav .flex .nav2 .flex a:hover::before {
    transform: translate(0, 0);
    transition: transform 240ms cubic-bezier(0.165, 0.84, 0.44, 1)
}

footer .footer_inner .nav .flex .nav2 .flex a span {
    line-height: 1.3;
    transition: color 240ms cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 2
}

footer .footer_inner .nav .flex .nav2 .flex a span small {
    display: block
}

footer .footer_inner .nav .flex .nav2 .flex a:hover span {
    color: #fff;
    transition: color 240ms cubic-bezier(0.165, 0.84, 0.44, 1)
}

footer .footer_inner .nav .flex .nav2 .flex a:nth-of-type(2n) {
    margin-left: 10px
}

footer .footer_inner .nav .flex .nav2 .flex a:nth-of-type(n+3) {
    margin-top: 10px
}

footer .footer_inner .nav .flex .nav2 .flex a::after {
    display: block;
    content: "";
    width: 4px;
    height: 4px;
    background: #b7a46b;
    position: absolute;
    right: 20px;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%) rotate(45deg);
    transform-origin: center;
    transition: all 240ms ease-in-out
}

footer .footer_inner .nav .flex .nav2 .flex a:hover::after {
    background: #fff;
    transition: all 240ms ease-in-out
}

footer .footer_inner .nav .flex .nav2 .tel {
    margin-top: 45px
}

footer .footer_inner .nav .flex .nav2 .tel a {
    display: inline-block;
    padding-left: 26px;
    font-size: 22px;
    background: url(../img/common/icon_tel.png) left center no-repeat;
    background-size: 19px;
    color: #586166;
    letter-spacing: .1em
}

footer .footer_inner .nav .flex .nav2 .tel span {
    display: block;
    font-size: 12px;
    letter-spacing: .2em
}

footer .footer_inner .group .our_group {
    display: flex;
    width: 227px;
    height: 60px;
    margin: 20px auto 0;
    align-items: center;
    color: #b7a46b;
    text-align: center;
    border: 1px #b7a46b solid;
    transition: all .4s ease-in-out;
    position: relative;
    overflow: hidden;
    cursor: pointer
}

footer .footer_inner .group .our_group::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translate(-100%, 0);
    transition: transform 240ms cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
    background: #b7a46b
}

footer .footer_inner .group .our_group:hover::before {
    transform: translate(0, 0);
    transition: transform 240ms cubic-bezier(0.165, 0.84, 0.44, 1)
}

footer .footer_inner .group .our_group span {
    flex: 1;
    line-height: 60px;
    transition: color 240ms cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 2
}

footer .footer_inner .group .our_group span small {
    display: block
}

footer .footer_inner .group .our_group:hover span {
    color: #fff;
    transition: color 240ms cubic-bezier(0.165, 0.84, 0.44, 1)
}

footer .footer_inner .group .our_group:nth-of-type(2n) {
    margin-left: 10px;
    margin-right: 200px
}

footer .footer_inner .group .our_group:nth-of-type(n+3) {
    margin-top: 10px
}

footer .footer_inner .group .our_group::after {
    display: block;
    content: "";
    width: 0;
    height: 0;
    border: 6px rgba(0, 0, 0, 0) solid;
    border-top: 6px #b7a46b solid;
    position: absolute;
    right: 20px;
    top: calc(50% - 3px);
    z-index: 2;
    transform-origin: center;
    transition: all 240ms ease-in-out
}

footer .footer_inner .group .our_group:hover::after {
    border-top: 6px #fff solid;
    transition: all 240ms ease-in-out
}

footer .footer_inner .group .flex {
    display: none;
    justify-content: center;
    align-items: flex-end;
    padding-top: 50px
}

footer .footer_inner .group .flex a {
    display: block;
    font-size: 12px;
    letter-spacing: .2em;
    line-height: 1.667;
    text-align: center;
    color: #33424a
}

footer .footer_inner .group .flex a+a {
    margin-left: 20px
}

footer .footer_inner .group .flex a:nth-of-type(1) img {
    width: 146.6px;
    margin-bottom: 4px
}

footer .footer_inner .group .flex a:nth-of-type(2) img {
    width: 81.8px
}

footer .footer_inner .group .flex a:nth-of-type(3) img {
    width: 159.6px;
    margin-bottom: 16px
}

footer .footer_inner .group .our_group.show::before {
    transform: translate(0, 0);
    transition: transform 240ms cubic-bezier(0.165, 0.84, 0.44, 1)
}

footer .footer_inner .group .our_group.show span {
    color: #fff;
    transition: color 240ms cubic-bezier(0.165, 0.84, 0.44, 1)
}

footer .footer_inner .group .our_group.show::after {
    border: 6px rgba(0, 0, 0, 0) solid;
    border-bottom: 6px #fff solid;
    top: calc(50% - 10px);
    transition: all 240ms ease-in-out
}

footer .footer_inner .copyright {
    max-width: 1200px;
    margin: 84px auto 0;
    justify-content: space-between
}

footer .footer_inner .copyright .left {
    font-size: 12px;
    letter-spacing: .2em
}

footer .footer_inner .copyright .left address {
    display: inline-block;
    font-style: normal;
    margin-left: 1em
}

footer .footer_inner .copyright .right a {
    display: inline-block;
    margin-right: 20px;
    color: #586166;
    transition: all .8s cubic-bezier(0.08, 0.92, 0.35, 1)
}

footer .footer_inner .copyright .right a.facebook {
    width: 23px;
    margin-right: 13px
}

footer .footer_inner .copyright .right a.instagram {
    width: 23px;
    margin-right: 13px
}

footer .footer_inner .copyright .right a.youtube {
    width: 29px;
    vertical-align: -3px
}

footer .footer_inner .copyright .right a:hover {
    color: #b7a46b;
    transition: all .8s cubic-bezier(0.08, 0.92, 0.35, 1)
}

footer .footer_inner .copyright .right a img {
    vertical-align: bottom
}

body.error404 main .content {
    position: relative
}

body.error404 main .content::before {
    display: block;
    content: "";
    width: 100%;
    height: 180px;
    background: linear-gradient(0, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1
}

body.error404 main .content::after {
    display: block;
    content: "";
    width: 100%;
    height: 180px;
    background: linear-gradient(0, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1
}

body.error404 main .content .inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 200px 0;
    text-align: center
}

body.error404 main .content .inner a {
    color: #b7a46b
}

body.home header,
body.home main,
body.home footer {
    opacity: 0;
    transition: all 2s cubic-bezier(0.08, 0.92, 0.35, 1)
}

body.home.ready header,
body.home.ready main,
body.home.ready footer {
    opacity: 1;
    transition: all 2s cubic-bezier(0.08, 0.92, 0.35, 1)
}

body:not(.home) .loading {
    display: none
}

body.home .loading {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10000;
    background: url(../img/common/bg.jpg) center center no-repeat;
    background-size: cover
}

body.home .loading img {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 1s cubic-bezier(0.08, 0.92, 0.35, 1)
}

body.home .loading img.img1 {
    width: 330px
}

body.home .loading img.img2 {
    width: 210px
}

body.home .loading img.img3 {
    width: 330px
}

body.home .loading img.img4 {
    width: 208px
}

body.home .loading img.show {
    opacity: 1;
    transition: all 1s cubic-bezier(0.08, 0.92, 0.35, 1)
}

body.home.ready .loading {
    opacity: 0;
    z-index: -1;
    transition: all 2s cubic-bezier(0.08, 0.92, 0.35, 1)
}

body.home main .videobox {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .8s cubic-bezier(0.08, 0.92, 0.35, 1);
    transform: scale(0.9);
    transform-origin: center bottom;
    overflow: hidden
}

body.home main .videobox video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    min-width: 130%;
    min-height: 130%
}

body.home main .videobox.scaleup {
    transform: scale(1);
    transition: all .8s cubic-bezier(0.08, 0.92, 0.35, 1)
}

body.home main h2 {
    margin: 0 0 140px;
    font-size: 30px;
    color: #b7a46b;
    letter-spacing: .08em;
    font-family: "Aboreto";
    font-weight: 400;
    text-align: center;
    position: relative
}

body.home main h2 small {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    letter-spacing: .2em;
    color: #33424a;
    font-family: ryo-display-plusn, serif
}

body.home main h2::after {
    display: block;
    content: "";
    width: 1px;
    height: 80px;
    background: #b7a46b;
    position: absolute;
    left: 50%;
    top: calc(100% + 30px);
    z-index: 2
}

body.home main .mv {
    position: relative;
    overflow: clip
}

body.home main .mv .mv_slider {
    font-size: 0;
    width: 100%;
    aspect-ratio: 16/9
}

body.home main .mv .mv_slider .img1 {
    overflow: hidden
}

body.home main .mv .mv_slider .img2 div,
body.home main .mv .mv_slider .img3 div {
    display: inline-block;
    width: 50%;
    overflow: hidden
}

body.home main .mv .mv_slider img {
    transform: scale(1);
    transform-origin: center center;
    transition: all 5s linear
}

body.home main .mv .mv_slider .slick-active:not(.init) img {
    transform: scale(1.09);
    transition: all 5s linear
}

body.home main .mv .copybox {
    position: absolute;
    height: 100vh;
    width: 100%;
    top: 22vw;
    z-index: 10;
    text-align: center
}

body.home main .mv .copy {
    width: 100%;
    text-align: center;
    position: sticky;
    top: 22vw;
    font-size: 3.313vw;
    letter-spacing: .08em;
    line-height: 1.4;
    color: #fff
}

body.home main .mv .copy img {
    width: 31.25vw;
    height: 6.25vw;
    margin: 0 auto 30px;
    display: block
}

body.home main .mv .copy small {
    display: block;
    font-size: 1.75vw;
    font-family: ryo-display-plusn, serif;
    letter-spacing: .1em;
    margin-top: .6vw;
    text-align: center
}

body.home main .top_message {
    position: relative;
    overflow: clip;
    padding: 190px 0 970px;
    text-align: center;
    background: url(../img/common/bg.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed
}

body.home main .top_message .copybox {
    text-align: center;
    position: relative;
    z-index: 2;
    height: 83vw;
    margin: -72vw 0 50px
}

body.home main .top_message .copy {
    width: 100%;
    text-align: center;
    position: sticky;
    top: 22vw;
    font-size: 3.313vw;
    letter-spacing: .08em;
    line-height: 1.4;
    color: #586166
}

body.home main .top_message .copy img {
    width: 31.25vw;
    height: 6.25vw;
    margin: 0 auto 30px;
    display: block
}

body.home main .top_message .copy small {
    display: block;
    font-size: 1.75vw;
    font-family: ryo-display-plusn, serif;
    letter-spacing: .1em;
    margin-top: .6vw;
    text-align: center
}

body.home main .top_message .textbox {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 30vw;
    height: 1800px
}

body.home main .top_message .textbox .stbox {
    position: sticky;
    top: 0
}

body.home main .top_message .textbox .stbox h2 {
    font-size: 22px;
    font-family: ryo-display-plusn, serif;
    letter-spacing: .1em;
    line-height: 1.818;
    color: #586166
}

body.home main .top_message .textbox .stbox .text {
    margin: 0 auto 70px;
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.857
}

body.home main .ceremony {
    position: relative;
    overflow: clip;
    padding-top: 200px;
    height: 78vw;
    overflow: hidden;
    background: rgba(255, 255, 255, .4)
}

body.home main .ceremony::after {
    display: block;
    content: "";
    width: 100%;
    height: 120px;
    background: linear-gradient(0, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0
}

body.home main .ceremony .image {
    position: absolute;
    z-index: 2;
    overflow: hidden
}

body.home main .ceremony .image.img1 {
    width: 444px;
    height: 318px;
    right: 77px;
    top: 63px
}

body.home main .ceremony .image.img2 {
    width: 352px;
    height: 502px;
    left: 80px;
    top: 233px
}

body.home main .ceremony .image.img3 {
    width: 206px;
    height: 206px;
    left: 327px;
    top: 705px
}

body.home main .ceremony .image.img4 {
    width: 479px;
    height: 278px;
    right: 297px;
    top: 855px
}

body.home main .ceremony h3 {
    margin: 0 0 64px;
    font-size: 22px;
    letter-spacing: .1em;
    line-height: 1.667;
    color: #586166;
    font-weight: 400;
    position: relative;
    text-align: center
}

body.home main .ceremony .text {
    margin-bottom: 30px;
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.857;
    position: relative;
    text-align: center
}

body.home main .ceremony .link {
    position: relative
}

body.home main .wedding_hall {
    position: relative;
    padding: 212px 0 100px;
    background: url(../img/common/bg.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed
}

body.home main .wedding_hall::before {
    display: block;
    content: "";
    width: 100%;
    height: 180px;
    background: linear-gradient(0, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0
}

body.home main .wedding_hall::after {
    display: block;
    content: "";
    width: 100%;
    height: 120px;
    background: linear-gradient(0, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0
}

body.home main .wedding_hall .flex {
    justify-content: flex-end;
    animation: down200 ease-out;
    animation-timeline: view();
    animation-range: cover 0% cover 100%
}

body.home main .wedding_hall .flex .contents {
    width: 480px
}

body.home main .wedding_hall .flex .contents h2 {
    margin-top: 60px;
    margin-bottom: 120px;
    text-align: left
}

body.home main .wedding_hall .flex .contents h2::after {
    left: 26px;
    top: calc(100% + 20px)
}

body.home main .wedding_hall .flex .contents h3 {
    margin: 0 0 40px;
    font-size: 22px;
    letter-spacing: .1em;
    line-height: 1.667;
    color: #586166;
    font-weight: 400;
    position: relative
}

body.home main .wedding_hall .flex .contents .text {
    margin-bottom: 30px;
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.857;
    position: relative
}

body.home main .wedding_hall .flex .contents .readmore {
    margin-left: 0
}

body.home main .wedding_hall .flex .movie {
    width: calc(50% + 120px)
}

body.home main .wedding_hall .flex .movie video {
    width: 100%
}

body.home main .wedding_hall .big_title {
    position: absolute;
    left: calc(50% - 278px);
    top: 730px;
    z-index: 2
}

body.home main .wedding_hall .image {
    width: 206px;
    margin: 140px calc(50% + 294px) 87px auto;
    overflow: hidden
}

body.home main .wedding_hall .image img {
    transform: scale(1.2);
    transition: all 3s cubic-bezier(0.08, 0.92, 0.35, 1)
}

body.home main .wedding_hall .image[data-animate=active] img {
    transform: scale(1);
    transition: all 3s cubic-bezier(0.08, 0.92, 0.35, 1)
}

body.home main .wedding_hall .movie2 {
    width: 730px;
    margin-right: calc(50% - 285px);
    margin-left: auto
}

body.home main .wedding_hall .movie2 video {
    width: 100%
}

body.home main .bridal_fair {
    position: relative;
    height: 960px;
    padding: 210px 0 230px;
    background: url(../img/common/bg.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    overflow: clip
}

body.home main .bridal_fair .bridal_inner {
    height: 1840px;
    position: relative;
    margin-top: -1000px
}

body.home main .bridal_fair .bridal_inner .bridal_content {
    position: sticky;
    top: 25vh;
    height: 840px
}

body.home main .bridal_fair .bridal_inner .bridal_content::before {
    display: block;
    content: "";
    width: 100%;
    height: 500px;
    background: linear-gradient(0, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    position: absolute;
    left: 0;
    top: -332px;
    z-index: 0
}

body.home main .bridal_fair .bridal_inner .bridal_content::after {
    display: block;
    content: "";
    width: 100%;
    height: 300px;
    background: linear-gradient(0, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0
}

body.home main .bridal_fair .bridal_inner .bridal_content h2 {
    margin-bottom: 80px
}

body.home main .bridal_fair .bridal_inner .bridal_content h2::after {
    height: 40px;
    top: calc(100% + 15px)
}

body.home main .bridal_fair .bridal_inner .bridal_content h3 {
    margin: 0 0 60px;
    font-size: 22px;
    letter-spacing: .1em;
    line-height: 1.667;
    color: #586166;
    font-weight: 400;
    text-align: center;
    position: relative
}

body.home main .bridal_fair .bridal_inner .bridal_content .bf_slider {
    margin-bottom: 80px
}

body.home main .bridal_fair .bridal_inner .bridal_content .bf_slider .item {
    position: relative;
    display: block;
    width: 280px;
    height: 280px;
    margin: 0 10px;
    overflow: hidden
}

body.home main .bridal_fair .bridal_inner .bridal_content .bf_slider .item img {
    transition: all 1.5s cubic-bezier(0.08, 0.92, 0.35, 1)
}

body.home main .bridal_fair .bridal_inner .bridal_content .bf_slider .item:hover img {
    transform: scale(1.1);
    transition: all 1.5s cubic-bezier(0.08, 0.92, 0.35, 1)
}

body.home main .bridal_fair .bridal_inner .bridal_content .bf_slider .item span {
    display: block;
    height: 44px;
    line-height: 44px;
    padding: 0 1em;
    color: #fff;
    background: #b7a46b;
    position: absolute;
    left: 0;
    bottom: 20px
}

body.home main .bridal_fair .bridal_inner .bridal_content .big_title {
    width: 1250px;
    position: absolute;
    top: 134px;
    left: calc(50% - 625px)
}

body.home main .wedding_plan {
    position: relative;
    padding: 110px 0 346px;
    background: #fff url(../img/top/wedding_plan_bg.jpg) center center no-repeat;
    background-size: cover
}

body.home main .wedding_plan::before {
    display: block;
    content: "";
    width: 100%;
    height: 300px;
    background: linear-gradient(0, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0
}

body.home main .wedding_plan::after {
    display: block;
    content: "";
    width: 100%;
    height: 300px;
    background: linear-gradient(0, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0
}

body.home main .wedding_plan h2 {
    margin-bottom: 80px
}

body.home main .wedding_plan h2::after {
    height: 40px;
    top: calc(100% + 15px)
}

body.home main .wedding_plan h3 {
    margin: 0 0 60px;
    font-size: 22px;
    letter-spacing: .1em;
    line-height: 1.667;
    color: #586166;
    font-weight: 400;
    text-align: center;
    position: relative
}

body.home main .wedding_plan .wp_slider .item {
    position: relative;
    display: block;
    width: 400px;
    margin: 0 20px
}

body.home main .wedding_plan .wp_slider .item .img {
    display: block;
    overflow: hidden;
    margin-bottom: 10px;
    transform: scale(0.8);
    transition: transform .5s;
    transform-origin: center bottom;
    position: relative;
    transition: all 1s ease-out
}

body.home main .wedding_plan .wp_slider .item .img img {
    transition: all 1.5s cubic-bezier(0.08, 0.92, 0.35, 1)
}

body.home main .wedding_plan .wp_slider .item:hover .img img {
    transform: scale(1);
    transition: all 1.5s cubic-bezier(0.08, 0.92, 0.35, 1)
}

body.home main .wedding_plan .wp_slider .item .cat {
    display: block;
    height: 36px;
    line-height: 36px;
    padding: 0 1em;
    color: #fff;
    font-size: 14px;
    letter-spacing: .15em;
    background: #c67cba;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2
}

body.home main .wedding_plan .wp_slider .item .title {
    display: block;
    text-align: center;
    color: #33424a;
    line-height: 2
}

body.home main .wedding_plan .wp_slider .item.slick-center .img {
    transform: scale(1);
    transition: all 1s ease-out
}

body.home main .wedding_plan .wp_slider .slick-arrow {
    width: 20px;
    height: 20px;
    position: absolute;
    top: calc(50% - 50px);
    z-index: 3;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    border-top: 2px #b7a46b solid;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    font-size: 0
}

body.home main .wedding_plan .wp_slider .slick-prev {
    border-left: 2px #b7a46b solid;
    transform: rotate(-45deg);
    left: calc(50% - 17vw)
}

body.home main .wedding_plan .wp_slider .slick-next {
    border-right: 2px #b7a46b solid;
    transform: rotate(45deg);
    right: calc(50% - 17vw)
}

body.home main .wedding_plan .wp_slider+div {
    margin-top: 80px
}

body.home main .cuisine {
    position: relative;
    padding: 229px 0 500px;
    background: url(../img/top/cuisine_bg.jpg) center center no-repeat;
    background-size: cover;
    overflow: clip
}

body.home main .cuisine>img,
body.home main .cuisine .image {
    position: absolute;
    z-index: 2
}

body.home main .cuisine>img.img1,
body.home main .cuisine .image.img1 {
    width: 550px;
    right: 0;
    top: 141px;
    animation: cuisine_img1 linear;
    animation-timeline: view();
    animation-range: cover 0% cover 100%
}

body.home main .cuisine>img.img2,
body.home main .cuisine .image.img2 {
    width: 250px;
    left: 209px;
    top: 465px;
    animation: cuisine_img2 linear;
    animation-timeline: view();
    animation-range: cover 0% cover 100%
}

body.home main .cuisine>img.img3,
body.home main .cuisine .image.img3 {
    width: 614px;
    left: 0;
    top: 927px;
    animation: cuisine_img3 linear;
    animation-timeline: view();
    animation-range: cover 0% cover 100%
}

body.home main .cuisine>img.img4,
body.home main .cuisine .image.img4 {
    width: 288px;
    right: 129px;
    top: 1130px;
    animation: cuisine_img4 linear;
    animation-timeline: view();
    animation-range: cover 0% cover 100%
}

body.home main .cuisine>img.img5,
body.home main .cuisine .image.img5 {
    width: 183px;
    left: calc(100% - 547px);
    top: 1429px;
    animation: cuisine_img5 linear;
    animation-timeline: view();
    animation-range: cover 0% cover 100%
}

body.home main .cuisine .image {
    overflow: hidden
}

body.home main .cuisine .image img {
    transform: scale(1.2);
    transition: all 3s cubic-bezier(0.08, 0.92, 0.35, 1)
}

body.home main .cuisine .image[data-animate=active] img {
    transform: scale(1);
    transition: all 3s cubic-bezier(0.08, 0.92, 0.35, 1)
}

body.home main .cuisine h2 {
    margin-bottom: 124px
}

body.home main .cuisine h2::after {
    height: 40px;
    top: calc(100% + 15px)
}

body.home main .cuisine .text {
    margin-bottom: 75px;
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.857;
    position: relative;
    text-align: center;
    z-index: 1
}

body.home main .cuisine .text p {
    margin: 0
}

body.home main .cuisine .text p+p,
body.home main .cuisine .text p .big_title_after {
    margin-top: 86px
}

body.home main .cuisine .link {
    position: relative;
    z-index: 2
}

body.home main .cuisine .big_title {
    width: 933.6px;
    position: absolute;
    top: 420px;
    left: calc(50% - 466.8px);
    z-index: -1
}

body.home main .wedding_dress {
    position: relative;
    padding: 250px 0 2740px;
    background: url(../img/common/bg.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed
}

body.home main .wedding_dress::after {
    display: block;
    content: "";
    width: 100%;
    height: 2861px;
    background: url(../img/top/wedding_dress_bg.png) center bottom no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0
}

body.home main .wedding_dress .image {
    position: absolute;
    z-index: 2;
    overflow: hidden
}

body.home main .wedding_dress .image.img1 {
    width: 307px;
    height: 477px;
    right: 134px;
    top: 321px
}

body.home main .wedding_dress .image.img2 {
    width: 396px;
    height: 575px;
    left: 68px;
    top: 523px
}

body.home main .wedding_dress .image.img3 {
    width: 646px;
    height: 869px;
    right: 200px;
    top: 1027px
}

body.home main .wedding_dress .image.img4 {
    width: 439px;
    height: 330px;
    left: 247px;
    top: 1388px
}

body.home main .wedding_dress .image.img5 {
    width: 900px;
    height: 465px;
    left: calc(50% - 450px);
    top: 2068px;
    animation: wedding_dress_img5 linear;
    animation-timeline: view();
    animation-range: cover 0% cover 100%
}

body.home main .wedding_dress .image.img6 {
    width: 381.8px;
    height: 521.5px;
    left: calc(50% - 415px);
    top: 2571px
}

body.home main .wedding_dress .image.img7 {
    width: 268px;
    height: 428px;
    right: calc(50% - 340px);
    top: 2778px
}

body.home main .wedding_dress h2 {
    margin-bottom: 80px
}

body.home main .wedding_dress h2::after {
    height: 40px;
    top: calc(100% + 15px)
}

body.home main .wedding_dress .text {
    margin-bottom: 70px;
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.857;
    text-align: center;
    position: relative
}

body.home main .wedding_dress .big_title {
    position: absolute;
    z-index: 2
}

body.home main .wedding_dress .big_title.dress {
    width: 661px;
    top: 918px;
    left: calc(50% - 117px)
}

body.home main .wedding_dress .big_title.kimono {
    width: 978px;
    bottom: 806px;
    left: calc(50% - 489px)
}

body.home main .hot_topics {
    position: relative;
    padding: 316px 0 269px;
    background: url(../img/common/bg.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed
}

body.home main .hot_topics::before {
    display: block;
    content: "";
    width: 100%;
    height: 800px;
    background: linear-gradient(0, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0
}

body.home main .hot_topics .flex {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative
}

body.home main .hot_topics .flex .h2 {
    width: 390px
}

body.home main .hot_topics .flex .h2 h2 {
    margin-top: 56px;
    margin-bottom: 30px;
    text-align: left
}

body.home main .hot_topics .flex .h2 h2::after {
    display: none
}

body.home main .hot_topics .flex .h2 .readmore2 {
    margin-left: 0
}

body.home main .hot_topics .flex .contents a {
    align-items: flex-end
}

body.home main .hot_topics .flex .contents a .date,
body.home main .hot_topics .flex .contents a .cat {
    display: inline-block;
    font-size: 12px;
    letter-spacing: .2em;
    color: #c67cba
}

body.home main .hot_topics .flex .contents a .cat {
    margin-left: 21px;
    position: relative
}

body.home main .hot_topics .flex .contents a .cat::before {
    display: block;
    content: "";
    width: 1px;
    height: 12px;
    background: #c67cba;
    position: absolute;
    left: -12px;
    top: 3px
}

body.home main .hot_topics .flex .contents a .title {
    display: block;
    width: 438px;
    margin-bottom: 54px;
    position: relative;
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 1.5;
    color: #33424a
}

body.home main .hot_topics .flex .contents a .title::after {
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background: #b7a46b;
    position: absolute;
    left: 0;
    bottom: -10px
}

body.home main .hot_topics .flex .contents a .image {
    display: block;
    overflow: hidden
}

body.home main .hot_topics .flex .contents a .image img {
    transition: all 1.5s cubic-bezier(0.08, 0.92, 0.35, 1)
}

body.home main .hot_topics .flex .contents a:hover .image img {
    transform: scale(1.1);
    transition: all 1.5s cubic-bezier(0.08, 0.92, 0.35, 1)
}

body.home main .hot_topics .flex .contents a+a {
    margin-top: 48px
}

body.home main .hot_topics .big_title {
    width: 713px;
    position: absolute;
    top: -83px;
    left: calc(50% - 117px);
    z-index: 2
}

body.home main .party_report {
    position: relative;
    padding: 120px 0 160px;
    background: url(../img/top/party_report_bg.jpg) center top no-repeat;
    background-size: 150%;
    animation: party_report_anim linear;
    animation-timeline: view();
    animation-range: cover 0% cover 100%
}

body.home main .party_report h2 {
    margin-bottom: 80px
}

body.home main .party_report h2::after {
    height: 40px;
    top: calc(100% + 15px)
}

body.home main .party_report h2 small {
    color: #fff
}

body.home main .party_report .text {
    margin-bottom: 70px;
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.857;
    text-align: center;
    color: #fff;
    position: relative
}

body.home main .party_report .flex {
    justify-content: center
}

body.home main .party_report .flex a {
    width: 320px;
    margin: 0 20px 40px
}

body.home main .party_report .flex a .title {
    display: block;
    margin-top: 8px;
    font-size: 22px;
    font-weight: 400;
    font-family: "Aboreto";
    letter-spacing: .08em;
    color: #b7a46b
}

body.home main .party_report .flex a .content {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    letter-spacing: .15em;
    color: #fff
}

body.home main .party_report .flex a .image {
    display: block;
    height: 220px;
    overflow: hidden
}

body.home main .party_report .flex a .image i {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transform-origin: center;
    transition: all 1.5s cubic-bezier(0.08, 0.92, 0.35, 1)
}

body.home main .party_report .flex a:hover .image i {
    transform: scale(1.1);
    transition: all 1.5s cubic-bezier(0.08, 0.92, 0.35, 1)
}

body.home main .party_report .readmore {
    background: rgba(0, 0, 0, 0)
}

body.home main .party_report .readmore:hover {
    border-color: #fff
}

body.post-type-archive-plan main .ad .ad_slider a {
    display: block;
    width: 1000px;
    height: 400px;
    margin: 25px
}

body.post-type-archive-plan main .ad .ad_slider .slick-dots {
    margin: 30px 0 0;
    list-style: none;
    display: flex;
    justify-content: center
}

body.post-type-archive-plan main .ad .ad_slider .slick-dots li {
    width: 145px;
    height: 4px;
    margin: 0;
    padding: 0;
    font-size: 0;
    border-bottom: 1px #707070 solid;
    background: rgba(0, 0, 0, 0)
}

body.post-type-archive-plan main .ad .ad_slider .slick-dots li.slick-active {
    background: #b7a46b;
    border-color: #b7a46b
}

body.post-type-archive-plan main .ad .ad_slider .slick-dots li button {
    display: none
}

body.post-type-archive-plan main .tabbox {
    padding: 100px 0;
    position: relative
}

body.post-type-archive-plan main .tabbox::before {
    display: block;
    content: "";
    width: 100%;
    height: 180px;
    background: linear-gradient(0, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1
}

body.post-type-archive-plan main .tabbox .tab {
    display: flex;
    justify-content: center
}

body.post-type-archive-plan main .tabbox .tab a {
    width: 200px;
    height: 30px;
    line-height: 30px;
    padding: 0 1em;
    font-size: 12px;
    letter-spacing: .1em;
    border-bottom: 1px #b7a46b solid;
    position: relative;
    color: #33424a
}

body.post-type-archive-plan main .tabbox .tab a+a {
    margin-left: 10px
}

body.post-type-archive-plan main .tabbox .tab a::after {
    display: block;
    content: "";
    width: 4px;
    height: 4px;
    background: #b7a46b;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: rotate(45deg);
    z-index: 1
}

body.post-type-archive-plan main .tabbox .tab a.current {
    background: #b7a46b;
    color: #fff
}

body.post-type-archive-plan main .tabbox .tab a.current::after {
    background: #fff
}

body.post-type-archive-plan main .list {
    padding-bottom: 100px;
    background: #fff
}

body.post-type-archive-plan main .list .flex {
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto
}

body.post-type-archive-plan main .list .flex .plan_card {
    box-shadow: 0 0 20px rgba(0, 0, 0, .16);
    margin-bottom: 80px
}

body.single-plan main .period {
    text-align: center
}

body.single-plan main .period h2 {
    display: inline-block;
    padding: .3em 2.3em;
    color: #fff;
    background: #b7a46b;
    font-size: 18px;
    letter-spacing: .1em;
    line-height: 1.889
}

body.single-plan main .period .h2text {
    max-width: 900px;
    margin: 15px auto 50px;
    padding: 30px 0 12px;
    border-left: 2px #b7a46b double;
    border-right: 2px #b7a46b double;
    position: relative
}

body.single-plan main .period .h2text::before,
body.single-plan main .period .h2text::after {
    display: block;
    content: "";
    width: 1px;
    height: 100%;
    background: #b7a46b;
    position: absolute;
    top: 0
}

body.single-plan main .period .h2text::before {
    left: 4px
}

body.single-plan main .period .h2text::after {
    right: 4px
}

body.single-plan main .period .plan_slider {
    width: 1000px;
    margin: 0 auto
}

body.single-plan main .period .plan_slider .slick-dots {
    list-style: none;
    margin: 30px auto 0;
    padding: 0;
    font-size: 0;
    text-align: center
}

body.single-plan main .period .plan_slider .slick-dots li {
    display: inline-block;
    margin: 0 5px;
    padding: 0
}

body.single-plan main .period .plan_slider .slick-dots li button {
    cursor: pointer;
    outline: none;
    appearance: none;
    width: 5px;
    height: 5px;
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0);
    border: 2px #b7a46b solid;
    transform: rotate(45deg);
    font-size: 0
}

body.single-plan main .period .plan_slider .slick-dots li.slick-active button {
    background: #b7a46b
}

body.single-plan main .style {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 0 130px
}

body.single-plan main .style h2 {
    display: inline-block;
    margin: 0 0 20px;
    color: #fff;
    background: #c67cba;
    padding: .4em 2em;
    font-size: 18px;
    letter-spacing: .1em;
    line-height: 1.889
}

body.single-plan main .style .option::after {
    display: block;
    content: "";
    clear: both
}

body.single-plan main .style .option .item {
    float: left;
    border: 1px #b7a46b solid;
    height: 30px;
    line-height: 30px;
    margin-right: 16px
}

body.single-plan main .style .option .item.flex {
    display: flex
}

body.single-plan main .style .option .item>div {
    font-size: 15px;
    letter-spacing: .2em;
    padding: 0 1.5em
}

body.single-plan main .style .option .item>div.ob {
    background: #b7a46b;
    color: #fff
}

body.single-plan main .style .option .item>div em {
    font-style: normal;
    color: #b7a46b;
    font-size: 22px
}

body.single-plan main .style .option .item>div.ob+div em {
    font-size: 28px
}

body.single-plan main .style .text {
    margin: 40px 0;
    border-top: 1px #b7a46b solid;
    border-bottom: 1px #b7a46b solid;
    padding: 15px 50px;
    line-height: 2.143;
    letter-spacing: .15em
}

body.single-plan main .style h3 {
    display: inline-block;
    margin: 4px 20px 0 0;
    width: 100px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    background: #b7a46b;
    font-size: 12px;
    letter-spacing: .1em;
    border-radius: 2px
}

body.single-plan main .style .h3box {
    display: flex;
    letter-spacing: .15em;
    line-height: 2.143
}

body.single-plan main .style .benefits {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px #b7a46b solid
}

body.single-plan main .style .benefits h3 {
    margin-bottom: 20px
}

body.single-plan main .style .benefits .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

body.single-plan main .style .benefits .items .item {
    width: 480px
}

body.single-plan main .style .benefits .items .item:nth-of-type(n+3) {
    margin-top: 50px
}

body.single-plan main .style .benefits .items .item table {
    border-collapse: collapse;
    width: 100%
}

body.single-plan main .style .benefits .items .item table .img {
    width: 170px;
    background-color: #aaa;
    background-size: cover;
    background-position: center center
}

body.single-plan main .style .benefits .items .item table .title {
    background-color: #b7a46b;
    color: #fff;
    font-size: 22px;
    letter-spacing: .1em;
    text-align: center;
    height: 110px;
    vertical-align: middle
}

body.single-plan main .style .benefits .items .item table .title small {
    font-size: 14px;
    letter-spacing: .15em
}

body.single-plan main .style .benefits .items .item table .content {
    padding: 0 1em;
    text-align: left;
    border-right: 1px #b7a46b solid;
    border-bottom: 1px #b7a46b solid
}

body.single-plan main .style .benefits .items .item table .content .flex {
    min-height: 110px;
    align-items: center
}

body.single-plan main .style .benefits .items .item table .content .flex p {
    margin: 0;
    padding: 0 1em;
    text-indent: -1em;
    font-size: 12px;
    letter-spacing: .1em;
    line-height: 1.667
}

body.single-plan main .style .benefits .items .item table .content .flex p::before {
    display: inline;
    content: "・"
}

body.single-plan main .style .benefits .items .item table .content .flex p.noindent {
    padding: 0;
    text-indent: 0
}

body.single-plan main .style .benefits .items .item table .content .flex p.noindent::before {
    display: none
}

body.single-plan main .style .benefits .items .item table .content .flex.noindent p {
    padding: 0;
    text-indent: 0
}

body.single-plan main .style .benefits .notice {
    margin-top: 1.5em;
    font-size: 12px;
    letter-spacing: .1em;
    line-height: 1.667
}

body.single-plan main .included {
    background: #f8f6f0;
    padding: 80px 0 74px
}

body.single-plan main .included h2 {
    width: 360px;
    height: 45px;
    margin: 0 auto;
    line-height: 45px;
    text-align: center;
    border: 1px #b7a46b solid;
    color: #b7a46b;
    background: rgba(0, 0, 0, 0);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: .1em
}

body.single-plan main .included table {
    border-collapse: collapse;
    width: 100%;
    max-width: 900px;
    margin: 46px auto 0
}

body.single-plan main .included table tr+tr {
    border-top: 1px #b7a46b solid
}

body.single-plan main .included table th {
    width: 120px;
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.143;
    padding: 1em 0;
    text-align: left;
    font-weight: 400;
    position: relative
}

body.single-plan main .included table th::after {
    display: block;
    content: "";
    height: calc(100% - 16px);
    width: 0;
    border-left: 2px #b7a46b dotted;
    position: absolute;
    left: 100%;
    top: 8px
}

body.single-plan main .included table td {
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.143;
    padding: 1em;
    font-weight: 400
}

body.single-plan main .step {
    padding: 130px 0 0;
    background: #fff
}

body.single-plan main .step .item {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 0;
    text-align: center;
    font-size: 18px;
    letter-spacing: .1em;
    background: #e2e2e2;
    border: 1px #e2e2e2 solid;
    position: relative
}

body.single-plan main .step .item:nth-of-type(2n) {
    background: #fff
}

body.single-plan main .step .item+.item {
    margin-top: 20px
}

body.single-plan main .step .item+.item::before {
    display: block;
    content: "";
    height: 100%;
    border-left: 2px #b7a46b dotted;
    position: absolute;
    left: 89px;
    bottom: 50%;
    z-index: 2
}

body.single-plan main .step .item small {
    display: block;
    font-size: 14px;
    letter-spacing: .15em
}

body.single-plan main .step .item .no {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    position: absolute;
    left: 60px;
    top: calc(50% - 29px);
    z-index: 3;
    font-size: 14px;
    letter-spacing: .08em;
    line-height: 1.3;
    color: #b7a46b;
    background: #fff
}

body.single-plan main .step .item:nth-of-type(2n) .no {
    color: #fff;
    background: #b7a46b
}

body.single-plan main .step .link {
    display: block;
    margin: 80px auto 0;
    width: 360px;
    height: 46px;
    line-height: 46px;
    border-radius: 23px;
    border: 1px #b7a46b solid;
    text-align: center;
    font-size: 14px;
    letter-spacing: .15em;
    color: #b7a46b
}

body.single-plan main .reservation {
    padding: 130px 0;
    position: relative
}

body.single-plan main .reservation::before {
    display: block;
    content: "";
    width: 100%;
    height: 180px;
    background: linear-gradient(0, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1
}

body.single-plan main .reservation h2 {
    margin: 0 0 46px;
    font-size: 18px;
    font-weight: 500;
    text-align: center
}

body.single-plan main .reservation h2 small {
    display: block;
    font-size: 12px;
    margin-left: .5em
}

body.single-plan main .reservation h2 small span {
    display: inline-block;
    margin: 0 1em
}

body.single-plan main .reservation .flex {
    flex-wrap: wrap;
    justify-content: center
}

body.single-plan main .reservation .flex a {
    display: flex;
    width: 330px;
    height: 80px;
    padding-left: 1em;
    align-items: center;
    color: #fff;
    background: #b7a46b;
    border: 1px #b7a46b solid;
    transition: all .4s ease-in-out;
    position: relative;
    overflow: hidden
}

body.single-plan main .reservation .flex a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translate(-100%, 0);
    transition: transform 240ms cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
    background: #fff
}

body.single-plan main .reservation .flex a:hover::before {
    transform: translate(0, 0);
    transition: transform 240ms cubic-bezier(0.165, 0.84, 0.44, 1)
}

body.single-plan main .reservation .flex a span {
    line-height: 1.3;
    transition: color 240ms cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 2
}

body.single-plan main .reservation .flex a span small {
    display: block
}

body.single-plan main .reservation .flex a:hover span {
    color: #b7a46b;
    transition: color 240ms cubic-bezier(0.165, 0.84, 0.44, 1)
}

body.single-plan main .reservation .flex a:nth-of-type(2n) {
    margin-left: 20px
}

body.single-plan main .reservation .flex a::after {
    display: block;
    content: "";
    width: 4px;
    height: 4px;
    background: #fff;
    position: absolute;
    right: 20px;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%) rotate(45deg);
    transform-origin: center;
    transition: all 240ms ease-in-out
}

body.single-plan main .reservation .flex a:hover::after {
    background: #b7a46b;
    transition: all 240ms ease-in-out
}

body.concept .header_mv .mv {
    height: 36vw;
    object-fit: cover
}

body.concept .header_mv .big_title {
    width: 60.875vw;
    height: 8.375vw;
    margin-bottom: 10vw
}

body.concept main h2 {
    margin: 0 0 80px;
    font-size: 30px;
    color: #b7a46b;
    letter-spacing: .08em;
    font-family: "Aboreto";
    font-weight: 400;
    position: relative
}

body.concept main h2 small {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    letter-spacing: .2em;
    color: #33424a;
    font-family: ryo-display-plusn, serif
}

body.concept main h2::after {
    display: block;
    content: "";
    width: 1px;
    height: 40px;
    background: #b7a46b;
    position: absolute;
    left: 24px;
    top: calc(100% + 15px);
    z-index: 2
}

body.concept main h3 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: .1em;
    margin: 0 0 30px
}

body.concept main .message {
    padding: 170px 0 100px;
    text-align: center
}

body.concept main .message h2 {
    margin: 0 0 140px;
    font-size: 22px;
    font-family: ryo-display-plusn, serif;
    color: #586166
}

body.concept main .message h2::after {
    height: 80px;
    left: 50%
}

body.concept main .message .text {
    letter-spacing: .15em;
    line-height: 2.857
}

body.concept main .bgbox {
    position: relative;
    background: #fff
}

body.concept main .bgbox .bg1 {
    width: calc(50% - 40px);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0
}

body.concept main .bgbox .bg2 {
    width: calc(50% - 40px);
    position: absolute;
    right: 0;
    top: 540px;
    z-index: 0
}

body.concept main .bgbox .thought {
    position: relative;
    padding: 140px 0 460px
}

body.concept main .bgbox .thought::before {
    display: block;
    content: "";
    width: 100%;
    height: 100px;
    background: linear-gradient(0, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 0;
    bottom: 100%;
    z-index: -1
}

body.concept main .bgbox .thought .thought_inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

body.concept main .bgbox .thought .thought_inner .flex {
    align-items: center
}

body.concept main .bgbox .thought .thought_inner .flex .text {
    width: 520px;
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.857
}

body.concept main .bgbox .thought .thought_inner .img1 {
    width: calc(100% - 520px)
}

body.concept main .bgbox .thought .img2 {
    position: absolute;
    left: calc(50% - 336px);
    top: 814px;
    width: 510px;
    height: 314px;
    z-index: 1
}

body.concept main .bgbox .residence {
    position: relative;
    z-index: 1
}

body.concept main .bgbox .residence .flex {
    position: relative;
    z-index: 1
}

body.concept main .bgbox .residence .flex .image {
    width: 50%
}

body.concept main .bgbox .residence .flex .flex {
    padding-left: 150px;
    align-items: center;
    max-width: 600px
}

body.concept main .bgbox .residence .flex .flex .text {
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.857
}

body.concept main .bgbox .residence .flex .flex .text small {
    display: block;
    margin-top: 60px;
    font-size: 12px;
    letter-spacing: .1em;
    line-height: 1.667
}

body.concept main .bgbox .concept {
    margin-bottom: 180px;
    padding: 140px 0 60px;
    position: relative;
    z-index: 1
}

body.concept main .bgbox .concept::after {
    display: block;
    content: "";
    width: 100%;
    height: 100px;
    background: linear-gradient(0, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    position: absolute;
    left: 0;
    top: 100%;
    z-index: -1
}

body.concept main .bgbox .concept .flex {
    max-width: 1200px;
    margin: 0 auto
}

body.concept main .bgbox .concept .flex .flex {
    width: 565px;
    align-items: center
}

body.concept main .bgbox .concept .flex .flex .text {
    margin-right: 100px;
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.857
}

body.concept main .bgbox .concept .flex .image {
    width: 635px
}

body.concept main .support {
    position: relative;
    z-index: 1
}

body.concept main .support .flex {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto
}

body.concept main .support .flex .image {
    width: 460px
}

body.concept main .support .flex .flex {
    padding-left: 75px;
    align-items: center
}

body.concept main .support .flex .flex .text {
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.857
}

body.concept main .support .flex .flex .text small {
    display: block;
    margin-top: 60px;
    font-size: 12px;
    letter-spacing: .1em;
    line-height: 1.667
}

body.concept main .wedding_dress {
    position: relative;
    padding: 290px 0 1320px;
    background: url(../img/concept/dress_bg.png) center bottom no-repeat;
    background-size: contain
}

body.concept main .wedding_dress .image {
    position: absolute
}

body.concept main .wedding_dress .image.img1 {
    width: 307px;
    height: 477px;
    right: 100px;
    top: 360px
}

body.concept main .wedding_dress .image.img2 {
    width: 397px;
    height: 585px;
    left: 100px;
    top: 658px
}

body.concept main .wedding_dress .image.img3 {
    width: 464px;
    height: 624px;
    right: 263px;
    top: 747px
}

body.concept main .wedding_dress .image.img4 {
    width: 493px;
    height: 330px;
    left: 305px;
    top: 1327px
}

body.concept main .wedding_dress h2 {
    text-align: center
}

body.concept main .wedding_dress h2::after {
    left: 50%
}

body.concept main .wedding_dress .text {
    text-align: center;
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.867
}

body.concept main .human {
    text-align: center
}

body.concept main .human h2 {
    margin: 150px 0 70px;
    font-family: ryo-display-plusn, serif
}

body.concept main .human .text {
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.867
}

body.concept main .planner {
    padding: 180px 0
}

body.concept main .planner .item {
    width: 636px;
    margin: 0 25px
}

body.concept main .planner .item h2 {
    margin-top: 90px
}

body.concept main .planner .item .text {
    font-size: 14px;
    line-height: 2.867
}

body.stage .header_mv .mv {
    height: 36vw;
    object-fit: cover
}

body.stage main .felice {
    position: relative;
    z-index: 2
}

body.stage main .felice>.flex {
    position: relative
}

body.stage main .felice>.flex .img1 {
    width: calc(50% - 83px)
}

body.stage main .felice>.flex .textbox {
    margin-left: 150px;
    text-align: center;
    align-items: center
}

body.stage main .felice>.flex .textbox h2 {
    width: 160px;
    margin: 0 auto 90px;
    position: relative
}

body.stage main .felice>.flex .textbox h2::after {
    display: block;
    content: "";
    width: 1px;
    height: 40px;
    background: #b7a46b;
    position: absolute;
    left: 50%;
    top: calc(100% + 30px);
    z-index: 2
}

body.stage main .felice>.flex .textbox .text {
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.867
}

body.stage main .felice .img2 {
    position: absolute;
    width: 510px;
    height: 314px;
    left: calc(50% + 67px);
    top: 44.875vw
}

body.stage main .bgbox {
    position: relative;
    z-index: 1;
    background: #fff
}

body.stage main .bgbox::before {
    display: block;
    content: "";
    width: 100%;
    height: 200px;
    background: linear-gradient(0, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 0;
    bottom: 100%;
    z-index: -1
}

body.stage main .bgbox .bg {
    position: absolute;
    width: 100%;
    top: 880px;
    z-index: -1
}

body.stage main .bgbox .felice2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 350px 0 560px;
    position: relative
}

body.stage main .bgbox .felice2 .flex>div {
    width: 430px
}

body.stage main .bgbox .felice2 .flex>div .text {
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.867
}

body.stage main .bgbox .felice2 .flex .img1 {
    width: 670px;
    height: 450px;
    margin-top: 120px
}

body.stage main .bgbox .felice2 .img2 {
    position: absolute;
    left: 236px;
    top: 800px;
    width: 330px;
    height: 450px
}

body.stage main .bgbox .maururu {
    max-width: 1200px;
    margin: 0 auto;
    position: relative
}

body.stage main .bgbox .maururu>.flex .textbox {
    margin-right: 80px;
    text-align: center;
    align-items: center
}

body.stage main .bgbox .maururu>.flex .textbox h2 {
    width: 160px;
    margin: 0 auto 90px;
    position: relative
}

body.stage main .bgbox .maururu>.flex .textbox h2::after {
    display: block;
    content: "";
    width: 1px;
    height: 40px;
    background: #b7a46b;
    position: absolute;
    left: 50%;
    top: calc(100% + 30px);
    z-index: 2
}

body.stage main .bgbox .maururu>.flex .textbox .text {
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.867
}

body.stage main .bgbox .maururu>.flex .img1 {
    width: 680px
}

body.stage main .bgbox .maururu .img2 {
    width: 510px;
    height: 314px;
    position: absolute;
    left: 50%;
    top: 820px;
    transform: translateX(-50%)
}

body.stage main .bgbox .maururu2 {
    padding: 440px 0 460px;
    position: relative
}

body.stage main .bgbox .maururu2 .flex {
    max-width: 1200px;
    margin: 0 auto
}

body.stage main .bgbox .maururu2 .flex .img1 {
    width: 670px;
    height: 450px;
    margin-top: 50px
}

body.stage main .bgbox .maururu2 .flex .textbox {
    margin-left: 60px
}

body.stage main .bgbox .maururu2 .flex .textbox .text {
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.867
}

body.stage main .bgbox .maururu2 .img2 {
    width: 330px;
    height: 450px;
    position: absolute;
    left: calc(50% + 270px);
    bottom: 155px
}

body.ceremony .header_mv .mv {
    height: 36vw;
    object-fit: cover
}

body.ceremony .header_mv .big_title {
    width: 72.063vw;
    height: 8.375vw;
    margin-bottom: 10vw
}

body.ceremony main h2 {
    margin: 0 0 80px;
    position: relative;
    font-family: ryo-display-plusn, serif
}

body.ceremony main h2 small {
    display: block;
    font-size: 14px;
    letter-spacing: .08em;
    color: #b7a46b;
    font-family: "Aboreto";
    font-weight: 400
}

body.ceremony main h2 small {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    letter-spacing: .2em;
    color: #33424a;
    font-family: ryo-display-plusn, serif
}

body.ceremony main h2::after {
    display: block;
    content: "";
    width: 1px;
    height: 40px;
    background: #b7a46b;
    position: absolute;
    left: 24px;
    top: calc(100% + 15px);
    z-index: 2
}

body.ceremony main .chapel {
    position: relative;
    z-index: 1
}

body.ceremony main .chapel::before {
    display: block;
    content: "";
    width: 100%;
    height: 180px;
    background: linear-gradient(0, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 0;
    top: 650px;
    z-index: -1
}

body.ceremony main .chapel::after {
    display: block;
    content: "";
    width: 100%;
    height: calc(100% - 830px);
    background: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1
}

body.ceremony main .chapel .img1.pc {
    display: block;
    width: calc(50% + 450px);
    margin-left: auto
}

body.ceremony main .chapel .textbox {
    max-width: 1200px;
    margin: -317px auto 265px
}

body.ceremony main .chapel .textbox .text {
    width: 400px;
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.867
}

body.ceremony main .chapel .big_title {
    width: 786px;
    position: absolute;
    left: calc(50% - 95px);
    top: 815px
}

body.ceremony main .chapel .img2,
body.ceremony main .chapel .img3 {
    width: 512px;
    margin-right: 26px
}

body.ceremony main .garden {
    padding: 220px 0 0;
    position: relative;
    background: #fff
}

body.ceremony main .garden .bg {
    position: absolute;
    width: 750px;
    right: 0;
    top: -166px;
    z-index: 0
}

body.ceremony main .garden .img1.pc {
    display: block;
    width: calc(50% + 450px);
    margin-right: auto;
    position: relative;
    z-index: 1
}

body.ceremony main .garden .textbox {
    display: flex;
    justify-content: flex-end;
    max-width: 1200px;
    margin: -340px auto 265px;
    position: relative;
    z-index: 1
}

body.ceremony main .garden .textbox .text {
    width: 400px;
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.867
}

body.ceremony main .garden .imagebox {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

body.ceremony main .garden .imagebox .img2 {
    display: block;
    margin-left: auto;
    width: 380px;
    height: 550px
}

body.ceremony main .garden .imagebox .img3 {
    display: block;
    margin-top: -186px;
    width: 670px;
    height: 430px
}

body.ceremony main .garden .imagebox .big_title {
    width: 850px;
    position: absolute;
    left: 11px;
    top: 100px
}

body.ceremony main .shinzen {
    padding: 245px 0 0;
    position: relative;
    background: #fff
}

body.ceremony main .shinzen::after {
    display: block;
    content: "";
    width: 100%;
    height: calc(100% - 500px);
    background: linear-gradient(0, rgb(237, 237, 237) 0%, rgba(237, 237, 237, 0) 100%);
    position: absolute;
    left: 0;
    top: 500px;
    z-index: 0
}

body.ceremony main .shinzen .img1.pc {
    display: block;
    width: calc(50% + 450px);
    margin-left: auto;
    position: relative;
    z-index: 1
}

body.ceremony main .shinzen .textbox {
    max-width: 1200px;
    margin: -317px auto 265px;
    position: relative;
    z-index: 1
}

body.ceremony main .shinzen .textbox .text {
    width: 400px;
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.867
}

body.ceremony main .shinzen .img2,
body.ceremony main .shinzen .img3 {
    width: 512px;
    margin-right: 26px;
    margin-bottom: -158px;
    position: relative;
    z-index: 1
}

body.ceremony main .water {
    background: url(../img/ceremony/water_bg.jpg) center top no-repeat;
    background-size: cover;
    padding: 380px 0 180px;
    position: relative
}

body.ceremony main .water::before {
    display: block;
    content: "";
    width: 100%;
    height: 180px;
    background: linear-gradient(0, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1
}

body.ceremony main .water .img1.pc {
    display: block;
    width: calc(50% + 450px);
    margin-right: auto
}

body.ceremony main .water .textbox {
    display: flex;
    justify-content: flex-end;
    max-width: 1200px;
    margin: -340px auto 265px
}

body.ceremony main .water .textbox .text {
    width: 400px;
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.867
}

body.ceremony main .water .imagebox {
    max-width: 1200px;
    margin: 0 auto;
    position: relative
}

body.ceremony main .water .imagebox .img2 {
    display: block;
    margin-left: auto;
    width: 380px;
    height: 550px
}

body.ceremony main .water .imagebox .img3.pc {
    display: block;
    margin-top: -186px;
    width: 670px;
    height: 430px
}

body.ceremony main .water .imagebox .big_title {
    width: 685px;
    position: absolute;
    left: 122px;
    top: 274px
}

body.ceremony main .water a {
    display: block;
    margin: 120px auto 0;
    width: 390px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    background: #b7a46b;
    color: #fff;
    border-radius: 23px;
    font-size: 14px;
    letter-spacing: .15em
}

body.banquet .header_mv .big_title {
    width: 60.75vw;
    height: 10.938vw;
    margin-bottom: 7.438vw
}

body.banquet main h2 {
    margin: 0 0 80px;
    font-size: 30px;
    color: #b7a46b;
    letter-spacing: .08em;
    font-family: "Aboreto";
    font-weight: 400;
    position: relative
}

body.banquet main h2 img {
    width: 160px
}

body.banquet main h2 small {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    letter-spacing: .2em;
    color: #33424a;
    font-family: ryo-display-plusn, serif
}

body.banquet main h2::after {
    display: block;
    content: "";
    width: 1px;
    height: 40px;
    background: #b7a46b;
    position: absolute;
    left: 80px;
    top: calc(100% + 15px);
    z-index: 2
}

body.banquet main h3 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: .1em;
    margin: 0 0 30px
}

body.banquet main section:not(.atelier) {
    position: relative
}

body.banquet main section:not(.atelier) .img.pc {
    display: block;
    width: calc(50% + 450px);
    margin-left: auto
}

body.banquet main section:not(.atelier) .textbox {
    max-width: 1200px;
    margin: -317px auto 265px
}

body.banquet main section:not(.atelier) .textbox .text {
    width: 400px;
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.867
}

body.banquet main section:not(.atelier) .img1,
body.banquet main section:not(.atelier) .img2,
body.banquet main section:not(.atelier) .img3 {
    width: 416px;
    margin-right: 26px
}

body.banquet main .felice::before {
    display: block;
    content: "";
    width: 100%;
    height: 180px;
    background: linear-gradient(0, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1
}

body.banquet main .felice::after {
    display: block;
    content: "";
    width: 100%;
    height: 1100px;
    background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 80%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 0;
    top: 180px;
    z-index: -1
}

body.banquet main .atelier {
    padding-top: 230px;
    position: relative
}

body.banquet main .atelier::after {
    display: block;
    content: "";
    width: 100%;
    height: 180px;
    background: linear-gradient(0, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1
}

body.banquet main .atelier .flex {
    max-width: 1200px;
    margin: 0 auto
}

body.banquet main .atelier .flex .textbox {
    display: flex;
    text-align: center;
    align-items: center;
    width: 450px
}

body.banquet main .atelier .flex .textbox h2::after {
    left: 50%
}

body.banquet main .atelier .flex .textbox .text {
    width: 400px;
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.867
}

body.banquet main .atelier .flex .img {
    width: calc(100% - 450px)
}

body.banquet main .maururu {
    background: url(../img/banquet/maururu_bg.jpg) center top no-repeat;
    background-size: cover;
    padding: 380px 0 180px
}

body.banquet main .maururu a {
    display: block;
    margin: 120px auto 0;
    width: 390px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    background: #b7a46b;
    color: #fff;
    border-radius: 23px;
    font-size: 14px;
    letter-spacing: .15em
}

body.cuisine .header_mv .big_title {
    width: 51.063vw;
    height: 8.375vw;
    margin-bottom: 10vw
}

body.cuisine main h2 {
    margin: 0 0 80px;
    font-size: 30px;
    color: #b7a46b;
    letter-spacing: .08em;
    font-family: "Aboreto";
    font-weight: 400;
    position: relative
}

body.cuisine main h2 small {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    letter-spacing: .2em;
    color: #33424a;
    font-family: ryo-display-plusn, serif
}

body.cuisine main h2::after {
    display: block;
    content: "";
    width: 1px;
    height: 40px;
    background: #b7a46b;
    position: absolute;
    left: 80px;
    top: calc(100% + 15px);
    z-index: 2
}

body.cuisine main .text {
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.857
}

body.cuisine main .cuisine {
    position: relative;
    background: url(../img/top/cuisine_bg.jpg) center center no-repeat;
    background-size: cover;
    padding: 250px 0 310px;
    text-align: center
}

body.cuisine main .cuisine img:not(.big_title) {
    position: absolute
}

body.cuisine main .cuisine .img1 {
    width: 610px;
    right: 0;
    top: -100px;
    animation: cuisine_img1 linear;
    animation-timeline: view();
    animation-range: cover 0% cover 100%
}

body.cuisine main .cuisine .img2 {
    width: 250px;
    right: calc(50% + 308px);
    top: 303px;
    animation: cuisine_img2 linear;
    animation-timeline: view();
    animation-range: cover 0% cover 100%
}

body.cuisine main .cuisine .img3 {
    width: 597px;
    left: 0;
    top: calc(100% - 718px);
    animation: cuisine_img3 linear;
    animation-timeline: view();
    animation-range: cover 0% cover 100%
}

body.cuisine main .cuisine .img5 {
    width: 183px;
    left: calc(50% + 287px);
    top: 659px;
    animation: cuisine_img5 linear;
    animation-timeline: view();
    animation-range: cover 0% cover 100%
}

body.cuisine main .cuisine .img4 {
    width: 288px;
    left: calc(50% + 312px);
    top: calc(100% - 212px);
    animation: cuisine_img4 linear;
    animation-timeline: view();
    animation-range: cover 0% cover 100%
}

body.cuisine main .cuisine h3 {
    margin: 0;
    font-size: 18px;
    letter-spacing: .1em;
    line-height: 1.889
}

body.cuisine main .cuisine .text {
    margin-top: 40px;
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.857
}

body.cuisine main .cuisine .big_title {
    width: 934px;
    margin: 100px auto 0;
    position: relative;
    z-index: 1
}

body.cuisine main .bgbox {
    background: url(../img/cuisine/bg.jpg) center bottom no-repeat;
    background-size: cover
}

body.cuisine main .bgbox .style {
    padding-top: 110px
}

body.cuisine main .bgbox .style .textbox {
    width: 950px;
    margin: 0 auto
}

body.cuisine main .bgbox .style .big_title {
    display: block;
    width: 511px;
    margin: -32px auto 0 calc(50% + 33px);
    position: relative;
    z-index: 2
}

body.cuisine main .bgbox .style .img1 {
    display: block;
    width: 50%;
    height: 510px;
    margin: -30px 0 0 auto;
    position: relative;
    z-index: 1
}

body.cuisine main .bgbox .style .img2 {
    display: block;
    width: 288px;
    height: 368px;
    margin: -290px calc(50% + 160px) 0 auto
}

body.cuisine main .bgbox .finger {
    margin-top: -10px
}

body.cuisine main .bgbox .finger .textbox {
    width: 950px;
    margin: 0 auto;
    padding-left: 475px
}

body.cuisine main .bgbox .finger .big_title {
    display: block;
    width: 508px;
    margin: 157px auto 0 calc(50% + 133px);
    position: relative;
    z-index: 2
}

body.cuisine main .bgbox .finger .img1 {
    display: block;
    width: 347px;
    height: 510px;
    margin: -310px auto 0 0;
    position: relative;
    z-index: 1
}

body.cuisine main .bgbox .finger .img2 {
    display: block;
    width: 742px;
    margin: -240px auto 0 calc(50% - 292px)
}

body.cuisine main .bgbox .grill {
    margin-top: -52px
}

body.cuisine main .bgbox .grill .textbox {
    width: 950px;
    margin: 0 auto;
    padding-left: 52px
}

body.cuisine main .bgbox .grill .img1 {
    display: block;
    width: 288px;
    height: 288px;
    margin: 22px auto 0 calc(50% + 310px)
}

body.cuisine main .bgbox .grill .img2 {
    display: block;
    width: 499px;
    height: 728px;
    margin: -120px calc(50% - 50px) 0 auto
}

body.cuisine main .bgbox .dessert {
    margin-top: -337px;
    padding-bottom: 315px
}

body.cuisine main .bgbox .dessert .textbox {
    width: 950px;
    margin: 0 auto;
    padding-left: 600px
}

body.cuisine main .bgbox .dessert .big_title {
    display: block;
    width: 741px;
    margin: 45px calc(50% - 243px) 0 auto;
    position: relative;
    z-index: 2
}

body.cuisine main .bgbox .dessert .img1 {
    display: block;
    width: 288px;
    height: 288px;
    margin: 93px calc(50% - 100px) 0 auto;
    position: relative;
    z-index: 1
}

body.cuisine main .bgbox .dessert .img2 {
    display: block;
    width: 288px;
    height: 210px;
    margin: -288px auto 0 calc(50% + 160px)
}

body.cuisine main .staff {
    padding: 377px 0 125px;
    background: #fff
}

body.cuisine main .staff .flex {
    width: 814px;
    margin: 0 auto;
    justify-content: space-between
}

body.cuisine main .staff .flex+.flex {
    margin-top: 71px
}

body.cuisine main .staff .flex .textbox {
    width: 447px;
    display: flex
}

body.cuisine main .staff .flex .textbox>div {
    align-items: center
}

body.cuisine main .staff .flex .textbox>div h2 {
    margin-bottom: 20px
}

body.cuisine main .staff .flex .textbox>div h2::after {
    display: none
}

body.cuisine main .staff .flex .textbox>div .text {
    font-size: 12px;
    letter-spacing: .2em;
    line-height: 2.5
}

body.cuisine main .staff .flex .image {
    width: 284px
}

body.cuisine main .staff a {
    display: block;
    margin: 120px auto 0;
    width: 390px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    background: #b7a46b;
    color: #fff;
    border-radius: 23px;
    font-size: 14px;
    letter-spacing: .15em
}

body.dress .header_mv .big_title {
    width: 55.125vw
}

body.dress main h2 {
    margin: 0 0 80px;
    font-size: 30px;
    color: #b7a46b;
    letter-spacing: .08em;
    font-family: "Aboreto";
    font-weight: 400;
    position: relative
}

body.dress main h2 img {
    width: 160px
}

body.dress main h2 small {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    letter-spacing: .2em;
    color: #33424a;
    font-family: ryo-display-plusn, serif
}

body.dress main h2::after {
    display: block;
    content: "";
    width: 1px;
    height: 40px;
    background: #b7a46b;
    position: absolute;
    left: 26px;
    top: calc(100% + 15px);
    z-index: 2
}

body.dress main h3 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: .1em;
    margin: 0 0 30px
}

body.dress main .text {
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.867
}

body.dress main .bgbox {
    background: url(../img/dress/dress_bg.png) center bottom no-repeat;
    background-size: contain;
    padding-bottom: 222px
}

body.dress main .bgbox .dress .flex {
    max-width: 1366px;
    justify-content: space-between;
    margin: 0 auto
}

body.dress main .bgbox .dress .flex .textbox {
    padding-top: 76px;
    padding-left: 183px
}

body.dress main .bgbox .dress .flex .img1 {
    width: 585px
}

body.dress main .bgbox .dress .img2 {
    display: block;
    width: 400px;
    height: 570px;
    margin: -185px calc(50% + 200px) 0 auto
}

body.dress main .bgbox .dress .img3 {
    display: block;
    width: 500px;
    height: 330px;
    margin: -222px auto 0 calc(50% - 152px)
}

body.dress main .bgbox .place {
    padding: 175px 0 230px
}

body.dress main .bgbox .place .flex {
    max-width: 1200px;
    margin: 0 auto
}

body.dress main .bgbox .place .flex .imagebox {
    width: 50%;
    padding-left: 100px
}

body.dress main .bgbox .place .flex .textbox {
    width: 50%;
    padding-left: 80px
}

body.dress main .bgbox .place .flex .textbox h2 {
    font-family: ryo-display-plusn, serif;
    font-size: 18px;
    letter-spacing: .1em;
    line-height: 1.889;
    color: #586166
}

body.dress main .bgbox .kimono .flex {
    max-width: 1200px;
    margin: 0 auto
}

body.dress main .bgbox .kimono .flex .textbox {
    width: 50%;
    display: flex;
    padding-left: 100px
}

body.dress main .bgbox .kimono .flex .img1 {
    width: 50%
}

body.dress main .bgbox .kimono .img2.pc {
    display: block;
    width: 400px;
    height: 570px;
    margin: -50px calc(50% + 200px) 0 auto
}

body.dress main .bgbox .kimono .img3 {
    display: block;
    width: 329px;
    height: 223px;
    margin: -233px auto 0 calc(50% - 172px)
}

body.post-type-archive-news .tabbox {
    padding: 80px 0 100px;
    position: relative
}

body.post-type-archive-news .tabbox::before {
    display: block;
    content: "";
    width: 100%;
    height: 180px;
    background: linear-gradient(0, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1
}

body.post-type-archive-news .tabbox .tab {
    display: flex;
    justify-content: center
}

body.post-type-archive-news .tabbox .tab a {
    width: 200px;
    height: 30px;
    line-height: 30px;
    padding: 0 1em;
    font-size: 12px;
    letter-spacing: .1em;
    border-bottom: 1px #b7a46b solid;
    position: relative;
    color: #33424a
}

body.post-type-archive-news .tabbox .tab a+a {
    margin-left: 10px
}

body.post-type-archive-news .tabbox .tab a::after {
    display: block;
    content: "";
    width: 4px;
    height: 4px;
    background: #b7a46b;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: rotate(45deg);
    z-index: 1
}

body.post-type-archive-news .tabbox .tab a.current {
    background: #b7a46b;
    color: #fff
}

body.post-type-archive-news .tabbox .tab a.current::after {
    background: #fff
}

body.post-type-archive-news .list {
    padding-bottom: 130px;
    position: relative
}

body.post-type-archive-news .list::before {
    display: block;
    content: "";
    width: 100%;
    height: 180px;
    background: linear-gradient(0, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1
}

body.post-type-archive-news .list .flex {
    flex-wrap: wrap;
    justify-content: left;
    max-width: 1200px;
    margin: 0 auto
}

body.post-type-archive-news .list .flex .item {
    width: calc((100% - 32px)/3);
    box-shadow: 0 0 20px rgba(0, 0, 0, .16);
    margin-left: 16px;
    margin-bottom: 50px;
    padding: 20px 20px 30px;
    background: #fff
}

body.post-type-archive-news .list .flex .item:nth-of-type(3n+1) {
    margin-left: 0
}

body.post-type-archive-news .list .flex .item .meta {
    display: flex;
    justify-content: space-between;
    margin: 38px 0 16px 10px
}

body.post-type-archive-news .list .flex .item .meta span {
    font-size: 12px;
    letter-spacing: .1em
}

body.post-type-archive-news .list .flex .item .meta span.cat {
    color: #b7a46b
}

body.post-type-archive-news .list .flex .item .title {
    display: inline-block;
    margin: 0 0 36px 10px;
    font-size: 12px;
    letter-spacing: .1em
}

body.post-type-archive-news .list .flex .item a {
    display: block;
    width: 254px;
    height: 46px;
    margin: 0 auto;
    line-height: 46px;
    text-align: center;
    border: 1px #b7a46b solid;
    border-radius: 23px;
    color: #b7a46b;
    font-size: 14px;
    letter-spacing: .08em;
    font-family: "Aboreto"
}

body.post-type-archive-news .list .wp-pagenavi {
    margin-top: 80px
}

body.single-news main .header_mv .big_title {
    width: 55.125vw
}

body.single-news main .title {
    padding-top: 70px;
    position: relative
}

body.single-news main .title::before {
    display: block;
    content: "";
    width: 100%;
    height: 180px;
    background: linear-gradient(0, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1
}

body.single-news main .title h2 {
    max-width: 900px;
    margin: 0 auto 10px;
    padding: 2px 1em;
    border-left: 2px #b7a46b double;
    border-right: 2px #b7a46b double;
    font-size: 18px;
    letter-spacing: .1em;
    line-height: 1.889;
    font-weight: 400;
    text-align: center;
    position: relative
}

body.single-news main .title h2::before,
body.single-news main .title h2::after {
    display: block;
    content: "";
    width: 1px;
    height: 100%;
    background: #b7a46b;
    position: absolute;
    top: 0
}

body.single-news main .title h2::before {
    left: 4px
}

body.single-news main .title h2::after {
    right: 4px
}

body.single-news main .title .meta {
    display: flex;
    justify-content: center;
    font-size: 12px;
    letter-spacing: .1em
}

body.single-news main .title .meta .cat {
    margin-left: 32px;
    color: #b7a46b
}

body.single-news main .content {
    position: relative
}

body.single-news main .content::before {
    display: block;
    content: "";
    width: 100%;
    height: 180px;
    background: linear-gradient(0, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1
}

body.single-news main .content .inner {
    max-width: 1000px;
    margin: 46px auto 0;
    padding: 74px 50px 184px;
    border-top: 1px #b7a46b solid;
    line-height: 2.143
}

body.single-news main .content .inner img {
    width: auto
}

body.single-news main .content .inner .tolist {
    margin-top: 190px;
    text-align: center
}

body.single-news main .content .inner .tolist a {
    font-size: 14px;
    letter-spacing: .2em;
    color: #b7a46b
}

body.faq main {
    padding-bottom: 130px;
    position: relative
}

body.faq main::before {
    display: block;
    content: "";
    width: 100%;
    height: 180px;
    background: linear-gradient(0, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1
}

body.faq main .header_mv .big_title {
    width: 28.25vw;
    height: 10.75vw
}

body.faq main .tabbox {
    padding: 80px 0 50px
}

body.faq main .tabbox .tab {
    display: flex;
    justify-content: center
}

body.faq main .tabbox .tab a {
    min-width: 200px;
    height: 30px;
    line-height: 30px;
    padding: 0 2em 0 1em;
    font-size: 12px;
    letter-spacing: .1em;
    border-bottom: 1px #b7a46b solid;
    position: relative;
    color: #33424a
}

body.faq main .tabbox .tab a+a {
    margin-left: 10px
}

body.faq main .tabbox .tab a::after {
    display: block;
    content: "";
    width: 4px;
    height: 4px;
    background: #b7a46b;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: rotate(45deg);
    z-index: 1
}

body.faq main .tabbox .tab a.current {
    background: #b7a46b;
    color: #fff
}

body.faq main .tabbox .tab a.current::after {
    background: #fff
}

body.faq main .list .inner {
    max-width: 1000px;
    margin: 0 auto
}

body.faq main .list .inner .item {
    padding: 30px 40px;
    position: relative
}

body.faq main .list .inner .item:nth-of-type(2n+1) {
    background: rgba(221, 221, 221, .42)
}

body.faq main .list .inner .item .question {
    font-size: 16px;
    letter-spacing: .1em;
    line-height: 1.875;
    color: #b7a46b;
    margin-bottom: 10px;
    position: relative
}

body.faq main .list .inner .item .question::before {
    display: block;
    content: "Q";
    font-size: 20px;
    position: absolute;
    left: -26px;
    top: -5px
}

body.faq main .list .inner .item .answer {
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.143;
    position: relative
}

body.faq main .list .inner .item .answer::before {
    display: block;
    content: "A";
    font-size: 16px;
    position: absolute;
    left: -22px;
    top: -1px
}

body.post-type-archive-report main {
    position: relative;
    padding-bottom: 130px
}

body.post-type-archive-report main::before {
    display: block;
    content: "";
    width: 100%;
    height: 180px;
    background: linear-gradient(0, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1
}

body.post-type-archive-report main .tabbox {
    padding: 80px 0 50px;
    position: relative
}

body.post-type-archive-report main .tabbox::before {
    display: block;
    content: "";
    width: 100%;
    height: 180px;
    background: linear-gradient(0, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1
}

body.post-type-archive-report main .tabbox .tab {
    display: flex;
    justify-content: center
}

body.post-type-archive-report main .tabbox .tab a {
    min-width: 87px;
    height: 30px;
    line-height: 30px;
    padding: 0 2em 0 1em;
    font-size: 12px;
    letter-spacing: .1em;
    border-bottom: 1px #b7a46b solid;
    position: relative;
    color: #33424a
}

body.post-type-archive-report main .tabbox .tab a+a {
    margin-left: 10px
}

body.post-type-archive-report main .tabbox .tab a::after {
    display: block;
    content: "";
    width: 4px;
    height: 4px;
    background: #b7a46b;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: rotate(45deg);
    z-index: 1
}

body.post-type-archive-report main .tabbox .tab a.current {
    background: #b7a46b;
    color: #fff
}

body.post-type-archive-report main .tabbox .tab a.current::after {
    background: #fff
}

body.post-type-archive-report main .list .flex {
    max-width: 1340px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: space-between
}

body.post-type-archive-report main .list .flex a {
    display: block;
    width: 320px;
    margin-bottom: 95px
}

body.post-type-archive-report main .list .flex a .title {
    display: block;
    margin-top: 8px;
    font-size: 22px;
    font-weight: 400;
    font-family: "Aboreto";
    letter-spacing: .08em;
    color: #33424a
}

body.post-type-archive-report main .list .flex a .content {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    letter-spacing: .15em;
    color: #b7a46b
}

body.post-type-archive-report main .list .flex a .image {
    display: block;
    height: 220px;
    overflow: hidden
}

body.post-type-archive-report main .list .flex a .image i {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transform-origin: center;
    transition: all 1.5s cubic-bezier(0.08, 0.92, 0.35, 1)
}

body.post-type-archive-report main .list .flex a:hover .image i {
    transform: scale(1.1);
    transition: all 1.5s cubic-bezier(0.08, 0.92, 0.35, 1)
}

body.single-report main {
    position: relative;
    padding-bottom: 130px
}

body.single-report main::before {
    display: block;
    content: "";
    width: 100%;
    height: 180px;
    background: linear-gradient(0, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1
}

body.single-report main .title {
    padding-top: 75px;
    position: relative
}

body.single-report main .title::before {
    display: block;
    content: "";
    width: 100%;
    height: 180px;
    background: linear-gradient(0, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1
}

body.single-report main .title .inner {
    max-width: 900px;
    margin: 0 auto
}

body.single-report main .title .inner h2 {
    text-align: center;
    margin: 0 auto;
    padding: 2px 1em;
    border-left: 2px #b7a46b double;
    border-right: 2px #b7a46b double;
    font-size: 18px;
    letter-spacing: .1em;
    line-height: 1.889;
    font-weight: 400;
    text-align: center;
    position: relative
}

body.single-report main .title .inner h2::before,
body.single-report main .title .inner h2::after {
    display: block;
    content: "";
    width: 1px;
    height: 100%;
    background: #b7a46b;
    position: absolute;
    top: 0
}

body.single-report main .title .inner h2::before {
    left: 4px
}

body.single-report main .title .inner h2::after {
    right: 4px
}

body.single-report main .title .inner .subtitle {
    text-align: center;
    color: #b7a46b;
    font-size: 14px;
    letter-spacing: .15em
}

body.single-report main .title .inner .meta {
    display: flex;
    justify-content: center;
    margin: 22px auto;
    font-size: 12px;
    letter-spacing: .1em
}

body.single-report main .title .inner .meta div+div {
    margin-left: 2.5em
}

body.single-report main .content {
    max-width: 1000px;
    margin: 50px auto 0;
    padding-top: 80px;
    border-top: 1px #b7a46b solid
}

body.single-report main .content .inner {
    max-width: 900px;
    margin: 0 auto
}

body.single-report main .content .inner .movie {
    margin: 90px 0 100px
}

body.single-report main .content .inner .movie iframe {
    width: 100%;
    aspect-ratio: 16/9
}

body.single-report main .content .inner .chapter {
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.143
}

body.single-report main .content .inner .chapter h3 {
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.143;
    font-weight: 400;
    margin: 96px 0 0
}

body.single-report main .content .inner .chapter p {
    margin: 2em 0
}

body.single-report main .content .inner .chapter .copy {
    margin-top: 0
}

body.single-report main .content .inner .tolist {
    margin-top: 80px;
    text-align: center
}

body.single-report main .content .inner .tolist a {
    font-size: 14px;
    letter-spacing: .2em;
    color: #b7a46b
}

body.flow main {
    padding-bottom: 130px;
    position: relative
}

body.flow main::before {
    display: block;
    content: "";
    width: 100%;
    height: 180px;
    background: linear-gradient(0, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1
}

body.flow main .header_mv .big_title {
    width: 32.188vw;
    height: 8.188vw
}

body.flow main .step .item {
    max-width: 1000px;
    margin: 0 auto;
    padding: 36px 0;
    height: 220px;
    text-align: center;
    font-size: 18px;
    letter-spacing: .1em;
    background: #e2e2e2;
    border: 1px #e2e2e2 solid;
    position: relative
}

body.flow main .step .item:nth-of-type(2n) {
    background: #fff
}

body.flow main .step .item+.item {
    margin-top: 80px
}

body.flow main .step .item+.item::before {
    display: block;
    content: "";
    height: calc(100% + 80px);
    border-left: 2px #b7a46b dotted;
    position: absolute;
    left: 89px;
    bottom: 160px;
    z-index: 2
}

body.flow main .step .item small {
    display: block;
    margin-top: 30px;
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.143
}

body.flow main .step .item .no {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    position: absolute;
    left: 60px;
    top: 30px;
    z-index: 3;
    font-size: 14px;
    letter-spacing: .08em;
    line-height: 1.3;
    color: #b7a46b;
    background: #fff
}

body.flow main .step .item:nth-of-type(2n) .no {
    color: #fff;
    background: #b7a46b
}

body.access main {
    padding-bottom: 170px;
    position: relative
}

body.access main::before {
    display: block;
    content: "";
    width: 100%;
    height: 180px;
    background: linear-gradient(0, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1
}

body.access main .header_mv .big_title {
    width: 46.625vw;
    height: 8.375vw
}

body.access main .google_map {
    padding: 170px 0 100px
}

body.access main .google_map .inner {
    max-width: 1000px;
    margin: 0 auto
}

body.access main .google_map .inner iframe {
    width: 100%;
    height: 452px
}

body.access main .contents .inner {
    max-width: 900px;
    margin: 0 auto
}

body.access main .contents .inner .logo {
    width: 227px;
    margin: 0 auto 36px;
    text-align: center
}

body.access main .contents .inner .logo small {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    letter-spacing: .1em
}

body.access main .contents .inner .flex {
    justify-content: space-between
}

body.access main .contents .inner .flex div {
    font-size: 12px;
    letter-spacing: .2em;
    line-height: 2.5
}

body.access main .contents .inner .flex div .address,
body.access main .contents .inner .flex div .train {
    margin-bottom: 36px
}

body.access main .map .inner {
    max-width: 1000px;
    margin: 72px auto 0;
    padding-top: 90px;
    border-top: 1px #b7a46b solid
}

body.access main .map .inner .flex {
    justify-content: space-between
}

body.access main .map .inner .flex div {
    width: 438px
}

body.privacypolicy main .contents {
    padding: 100px 0 160px;
    position: relative
}

body.privacypolicy main .contents::before {
    display: block;
    content: "";
    width: 100%;
    height: 180px;
    background: linear-gradient(0, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1
}

body.privacypolicy main .contents::after {
    display: block;
    content: "";
    width: 100%;
    height: 180px;
    background: linear-gradient(0, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1
}

body.privacypolicy main .contents .inner {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 14px;
    letter-spacing: .05em;
    line-height: 2.143
}

body.privacypolicy main .contents .inner h3 {
    color: #b7a46b;
    margin: 2em 0 0;
    font-weight: 400
}

body.privacypolicy main .contents .inner ol {
    padding-left: 1.5em
}

body.privacypolicy main .contents .inner ol li {
    padding-left: .2em
}

body.privacypolicy main .contents .inner .signature {
    text-align: right;
    margin-top: 32px
}

body.rentalspace main {
    position: relative
}

body.rentalspace main .header_mv .big_title {
    width: 47.875vw;
    height: 18.375vw
}

body.rentalspace main h2 {
    margin: 0 0 80px;
    font-size: 30px;
    color: #b7a46b;
    letter-spacing: .08em;
    font-family: ryo-display-plusn, serif;
    font-weight: 400;
    position: relative
}

body.rentalspace main h2 img {
    width: 160px
}

body.rentalspace main h2 small {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    letter-spacing: .2em;
    color: #33424a
}

body.rentalspace main h2::after {
    display: block;
    content: "";
    width: 1px;
    height: 40px;
    background: #b7a46b;
    position: absolute;
    left: 26px;
    top: calc(100% + 15px);
    z-index: 2
}

body.rentalspace main .rental {
    padding: 130px 0;
    position: relative
}

body.rentalspace main .rental::after {
    display: block;
    content: "";
    width: 100%;
    height: 180px;
    background: linear-gradient(0, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1
}

body.rentalspace main .rental h2 {
    font-size: 24px;
    text-align: center
}

body.rentalspace main .rental h2::after {
    left: 50%
}

body.rentalspace main .rental p {
    margin: 60px 0 90px;
    text-align: center;
    font-size: 18px;
    letter-spacing: .1em;
    line-height: 1.889
}

body.rentalspace main .rental .circles {
    position: relative;
    display: flex;
    justify-content: center
}

body.rentalspace main .rental .circles div {
    width: 300px;
    height: 300px;
    padding-top: 160px;
    border: 1px #b7a46b solid;
    border-radius: 100%;
    background: rgba(255, 255, 255, .7) url(../img/rentalspace/illust1.png) center 55px no-repeat;
    background-size: 67px;
    text-align: center;
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.857;
    position: relative;
    z-index: 1
}

body.rentalspace main .rental .circles div.c2 {
    z-index: 2;
    margin: 0 -20px;
    background-image: url(../img/rentalspace/illust2.png);
    background-position-y: 71px;
    background-size: 84px
}

body.rentalspace main .rental .circles div.c3 {
    background-image: url(../img/rentalspace/illust3.png);
    background-position-y: 57px;
    background-size: 60px
}

body.rentalspace main .rental .circles div em {
    color: #b7a46b;
    font-size: 30px;
    letter-spacing: .08em;
    line-height: 1.1;
    font-family: "Aboreto";
    font-weight: 400;
    font-style: normal;
    display: block
}

body.rentalspace main .minutes {
    background: #f8f6f0;
    padding: 160px 0;
    position: relative;
    z-index: 1
}

body.rentalspace main .minutes .inner {
    max-width: 1200px;
    margin: 0 auto
}

body.rentalspace main .minutes .inner .flex {
    justify-content: space-between
}

body.rentalspace main .minutes .inner .flex .left {
    width: 600px;
    padding-top: 10px
}

body.rentalspace main .minutes .inner .flex .left .text {
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.143;
    margin-bottom: 70px
}

body.rentalspace main .minutes .inner .flex .left .text h2 {
    font-size: 22px;
    line-height: 1.818
}

body.rentalspace main .minutes .inner .flex .left img {
    width: 100%
}

body.rentalspace main .minutes .inner .flex .right {
    width: 100%;
    margin-top: 50px
}

body.rentalspace main .minutes .inner .flex .right img+img {
    margin-top: 50px
}

body.rentalspace main .scene {
    position: relative;
    padding: 130px 0 230px;
    background: #fff
}

body.rentalspace main .scene::before {
    display: block;
    content: "";
    width: 750px;
    height: 2076px;
    background: url(../img/rentalspace/scene_bg1.jpg) left top no-repeat;
    background-size: 100%;
    position: absolute;
    left: 0;
    top: -340px;
    z-index: 0
}

body.rentalspace main .scene::after {
    display: block;
    content: "";
    width: 750px;
    height: 2076px;
    background: url(../img/rentalspace/scene_bg2.jpg) left top no-repeat;
    background-size: 100%;
    position: absolute;
    right: 0;
    top: -276px;
    z-index: 0
}

body.rentalspace main .scene h2 {
    text-align: center;
    font-size: 22px;
    letter-spacing: .1em;
    color: #586166;
    position: relative;
    z-index: 1
}

body.rentalspace main .scene h2::after {
    display: none
}

body.rentalspace main .scene .flex {
    max-width: 820px;
    margin: 0 auto;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 1
}

body.rentalspace main .scene .flex .item {
    width: 380px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .16)
}

body.rentalspace main .scene .flex .item:nth-of-type(n+3) {
    margin-top: 50px
}

body.rentalspace main .scene .flex .item .title {
    margin: 20px 0 10px;
    color: #b7a46b
}

body.rentalspace main .scene .flex .item .title .illust {
    width: 87px;
    height: 78px;
    border-right: 1px #b7a46b solid;
    text-align: center;
    font-size: 12px;
    letter-spacing: .08em;
    line-height: 1.333
}

body.rentalspace main .scene .flex .item .title .illust img {
    width: 43px;
    margin-bottom: 4px
}

body.rentalspace main .scene .flex .item .title .title {
    display: flex;
    width: calc(100% - 87px);
    justify-content: center;
    align-items: center
}

body.rentalspace main .scene .flex .item:nth-of-type(2) .title .illust img {
    width: 61px;
    margin: 8px auto 13px
}

body.rentalspace main .scene .flex .item:nth-of-type(3) .title .illust img {
    width: 44px;
    margin: 0 auto 5px
}

body.rentalspace main .scene .flex .item:nth-of-type(4) .title .illust img {
    width: 61px;
    margin: 8px auto 13px
}

body.rentalspace main .scene a {
    display: block;
    width: 390px;
    height: 60px;
    line-height: 60px;
    font-size: 14px;
    letter-spacing: .15em;
    color: #fff;
    background: #b7a46b;
    text-align: center;
    border-radius: 30px;
    margin: 140px auto 0;
    position: relative;
    z-index: 1
}

body.rentalspace main .space_info {
    background: #fff;
    position: relative;
    z-index: 1;
    padding-bottom: 1px
}

body.rentalspace main .space_info h2 {
    text-align: center;
    margin-bottom: 130px;
    font-family: "Aboreto"
}

body.rentalspace main .space_info h2::after {
    height: 80px;
    left: 50%
}

body.rentalspace main .space_info h2 small {
    font-family: ryo-display-plusn, serif
}

body.rentalspace main .felice {
    padding: 0 0 180px;
    position: relative
}

body.rentalspace main .felice::before {
    display: block;
    content: "";
    width: 100%;
    height: 180px;
    background: linear-gradient(0, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1
}

body.rentalspace main .felice .image {
    width: 750px;
    margin-left: auto
}

body.rentalspace main .felice .text {
    max-width: 1200px;
    margin: -630px auto 0
}

body.rentalspace main .felice .text div {
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.143
}

body.rentalspace main .felice .text img {
    display: block;
    width: 520px;
    margin: 120px 0 30px
}

body.rentalspace main .felice .text a {
    display: block;
    width: 180px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    background: #b7a46b;
    border-radius: 20px
}

body.rentalspace main .felice .felice_slider {
    margin-top: 135px
}

body.rentalspace main .felice .felice_slider img {
    display: block;
    width: 437px;
    height: 291px;
    margin: 0 8px
}

body.rentalspace main .maururu {
    padding: 176px 0;
    background: #f8f6f0
}

body.rentalspace main .maururu .image {
    width: 750px;
    margin-right: auto
}

body.rentalspace main .maururu .text {
    max-width: 1200px;
    margin: -630px auto 0;
    padding-left: 680px
}

body.rentalspace main .maururu .text div {
    font-size: 14px;
    letter-spacing: .15em;
    line-height: 2.143
}

body.rentalspace main .maururu .text img {
    display: block;
    width: 520px;
    margin: 120px 0 30px
}

body.rentalspace main .maururu .text a {
    display: block;
    width: 180px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    background: #b7a46b;
    border-radius: 20px;
    margin-left: auto
}

body.rentalspace main .maururu .maururu_slider {
    margin-top: 135px
}

body.rentalspace main .maururu .maururu_slider img {
    display: block;
    width: 437px;
    height: 291px;
    margin: 0 8px
}

body.rentalspace main .maururu .contactlink {
    display: block;
    width: 390px;
    height: 60px;
    line-height: 60px;
    font-size: 14px;
    letter-spacing: .15em;
    color: #fff;
    background: #b7a46b;
    text-align: center;
    border-radius: 30px;
    margin: 150px auto 0;
    position: relative;
    z-index: 1
}

body.rentalspace main .cuisine {
    padding: 150px 0 130px
}

body.rentalspace main .cuisine h2 {
    text-align: center;
    margin-bottom: 165px
}

body.rentalspace main .cuisine h2::after {
    left: 50%;
    height: 80px
}

body.rentalspace main .cuisine .plan {
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between
}

body.rentalspace main .cuisine .plan .left {
    width: 566px
}

body.rentalspace main .cuisine .plan .left .title {
    font-size: 30px;
    letter-spacing: .1em;
    border-bottom: 1px #b7a46b solid;
    padding-bottom: 4px;
    margin-bottom: 10px
}

body.rentalspace main .cuisine .plan .left .title span {
    display: inline-block;
    width: 142px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #c67cba;
    color: #fff;
    font-size: 14px;
    letter-spacing: .15em;
    vertical-align: 6px;
    margin-right: 10px
}

body.rentalspace main .cuisine .plan .left .title small {
    font-size: 16px
}

body.rentalspace main .cuisine .plan .left .course .pricetext {
    font-size: 22px
}

body.rentalspace main .cuisine .plan .left .course .pricetext small {
    font-size: 16px
}

body.rentalspace main .cuisine .plan .left .course .menu {
    font-size: 14px;
    letter-spacing: .15em;
    margin-top: 10px;
    padding: 0 10px 5px 18px;
    background: #f1f1f1
}

body.rentalspace main .cuisine .plan .left .course .menu .label {
    display: block;
    width: 142px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    background: #b7a46b;
    margin: 0 auto 8px -18px;
    border-radius: 2px
}

body.rentalspace main .cuisine .plan .left .course .menu .text+.label {
    margin-top: 20px
}

body.rentalspace main .cuisine .plan .left .course .menu .text p {
    margin: 10px 0;
    text-indent: -9.2em;
    padding-left: 9.2em
}

body.rentalspace main .cuisine .plan .left .course+.course {
    margin-top: 54px
}

body.rentalspace main .cuisine .plan .right {
    width: 600px
}

body.rentalspace main .cuisine .plan .right .option {
    margin-top: 20px;
    padding: 0 0 15px 18px;
    border: 1px #b7a46b solid;
    background: #fff
}

body.rentalspace main .cuisine .plan .right .option .label {
    display: block;
    width: 142px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    background: #b7a46b;
    margin: 0 auto 12px -18px;
    border-radius: 2px
}

body.rentalspace main .cuisine .plan+.plan {
    margin-top: 120px;
    padding-top: 120px;
    position: relative
}

body.rentalspace main .cuisine .plan+.plan::before {
    display: block;
    content: "";
    width: 900px;
    height: 1px;
    background: #33424a;
    position: absolute;
    left: 150px;
    top: 0
}

body.rentalspace main .price {
    padding: 117px 0 128px;
    background: #fff
}

body.rentalspace main .price h2 {
    text-align: center;
    font-family: "Aboreto"
}

body.rentalspace main .price h2::after {
    left: 50%
}

body.rentalspace main .price h2 small {
    font-family: ryo-display-plusn, serif
}

body.rentalspace main .price table {
    width: 1000px;
    margin: 0 auto;
    border-collapse: collapse
}

body.rentalspace main .price table td {
    border: 1px #ddd solid;
    padding: 1em;
    font-size: 12px;
    letter-spacing: .1em
}

body.rentalspace main .price table td.bg1 {
    width: 182px;
    background: #ddd;
    text-align: center;
    vertical-align: top;
    padding-top: 3em;
    font-size: 16px
}

body.rentalspace main .price table td.bg1 small {
    display: block;
    font-size: 12px;
    letter-spacing: .2em
}

body.rentalspace main .price table td.bg1.bt {
    border-bottom-color: #fff
}

body.rentalspace main .price table td.bg2 {
    font-size: 14px;
    letter-spacing: .15em;
    vertical-align: center;
    background: #f7f7f7;
    width: 182px
}

body.rentalspace main .price table td.yen {
    white-space: nowrap
}

body.rentalspace main .price table td em {
    display: block;
    font-size: 14px;
    font-style: normal
}

body.rentalspace main .contact {
    padding: 82px 0 70px;
    background: #f8f6f0
}

body.rentalspace main .contact h2 {
    text-align: center;
    margin-bottom: 100px;
    font-family: "Aboreto"
}

body.rentalspace main .contact h2::after {
    left: 50%
}

body.rentalspace main .contact h2 small {
    font-family: ryo-display-plusn, serif
}

body.rentalspace main .contact .flex {
    max-width: 900px;
    margin: 0 auto;
    justify-content: space-between
}

body.rentalspace main .contact .flex .map {
    width: 460px
}

body.rentalspace main .contact .flex .map iframe {
    width: 100%;
    height: 293px
}

body.rentalspace main .contact .flex .text {
    width: 375px;
    font-size: 12px;
    line-height: 2.5;
    letter-spacing: .2em
}

body.rentalspace main .contact .flex .text .logo {
    width: 227px;
    margin-bottom: 40px
}

body.rentalspace main .contact .flex .text .logo small {
    display: block;
    width: 227px;
    text-align: center;
    margin-top: 12px;
    font-size: 12px;
    letter-spacing: .1em
}

body.rentalspace main .contact .flex .text .hours {
    margin-top: 40px
}

body.rentalspace main .link {
    padding: 80px 0;
    background: #fff
}

body.rentalspace main .link a {
    display: block;
    width: 390px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #b7a46b;
    color: #fff;
    font-size: 14px;
    letter-spacing: .15em;
    margin: 0 auto;
    border-radius: 30px
}

/*# sourceMappingURL=pc.min.css.map */