*,
*::before,
*::after {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0
}

body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    background: #fff;
    color: #222;
    font-family: "游ゴシック体", yugothic, "游ゴシック", "Yu Gothic", "メイリオ", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6
}

article,
aside,
footer,
header,
nav,
section,
main {
    display: block
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    border: 0;
    margin: 0;
    padding: 0
}

a,
a:visited {
    color: inherit;
    outline: none
}

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

code,
kbd,
pre,
samp {
    font-family: monospace, sans-serif;
    font-size: inherit
}

ul,
ol {
    list-style: none
}

table {
    border: 1px solid #eee;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    width: 100%
}

th,
td {
    border: 1px solid #eee;
    padding: 4px 6px;
    text-align: left;
    vertical-align: top
}

blockquote,
q {
    quotes: none
}

blockquote::after,
blockquote::before,
q::after,
q::before {
    content: "";
    content: none
}

.section_title {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 400;
    font-size: 9vw;
    line-height: 8.5vw;
    text-align: center;
    color: #222
}

#tategaki,
#story1,
#story2,
#gif {
    background-color: #fff;
    padding-top: 7vw
}

#goods {
    background-color: #E8EDCB;
    padding-top: 7vw
}

.flexbox {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between
}

#start {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 10
}

.cloud {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    transform: scale(5)
}

.cloud_img {
    position: absolute;
    max-width: none;
    z-index: 11
}

.cloud_img:first-child {
    transform: translate(-300px, -10%);
    transform-origin: right bottom
}

.cloud_img:nth-child(2) {
    transform: translate(-150px, -9%);
    transform-origin: right bottom
}

.cloud_img:nth-child(3) {
    transform: translateY(-25%);
    transform-origin: right center
}

.cloud_img:nth-child(4) {
    transform: translate(150px, -25%);
    transform-origin: left bottom
}

.cloud_img:nth-child(5) {
    transform: translate(0)
}

.cloud_img:nth-child(6) {
    transform: translate(-300px, 8%);
    transform-origin: right top
}

.cloud_img:nth-child(7) {
    transform: translate(-150px, 25%);
    transform-origin: right top
}

.cloud_img:nth-child(8) {
    transform: translate(40%, 9%);
    transform-origin: center right
}

.cloud_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #0062ac
}

.cloud_img img {
    animation: clouds 20s cubic-bezier(.37, 0, .63, 1) infinite alternate both;
    animation: none
}

.cloud_img:first-child img {
    animation-delay: .1s
}

.cloud_img:nth-child(2) img {
    animation-delay: .2s
}

.cloud_img:nth-child(3) img {
    animation-delay: .3s
}

.cloud_img:nth-child(4) img {
    animation-delay: .4s
}

.cloud_img:nth-child(5) img {
    animation-delay: .5s
}

.cloud_img:nth-child(6) img {
    animation-delay: .6s
}

.cloud_img:nth-child(7) img {
    animation-delay: .7s
}

.cloud_img:nth-child(8) img {
    animation-delay: .8s
}

@keyframes clouds {
    0% {
        transform: translate3d(2.5%, 2.5%, 0)
    }
    to {
        transform: translate3d(-2.5%, -2.5%, 0)
    }
}

.cloud.js-active {
    animation: scall 1s linear
}

@keyframes scall {
    0% {
        transform: translate3d(0, 0, 0);
        transform: scale(5, 5)
    }
    to {
        transform: translate3d(0, 0, 0);
        transform: scale(20, 15)
    }
}

.cloud.js-active+.cloud_bg {
    animation: opacity 1s linear
}

.cloud.js-active .cloud_img {
    animation: opacity 1s linear
}

@keyframes opacity {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

.start_glass {
    width: 40vw;
    height: 40vw;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 12;
    background: rgba(255, 255, 255, .3);
    border-radius: 4px;
    border-left: 1px solid rgba(255, 255, 255, .3);
    border-top: 1px solid rgba(255, 255, 255, .3);
    backdrop-filter: blur(10px);
    box-shadow: 20px 20px 40px -6px rgba(0, 0, 0, .2);
    text-align: center;
    padding: 2.4vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

.glass_title {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 700;
    font-size: 3vw;
    letter-spacing: .4em;
    color: #fff;
    color: #6f7886;
    opacity: .7
}

.glass_txt {
    padding-top: 2.4vw
}

.glass_txt p {
    font-family: 'Noto Serif JP';
    font-style: normal;
    font-weight: 400;
    font-size: 1.25vw;
    line-height: 1.8;
    text-align: center;
    color: #FFF;
    color: #6f7886;
    opacity: .7
}

.glass_visual {
    padding-top: 2.4vw
}

.glass_icon {
    width: 4.8vw;
    margin: 0 auto
}

.glass_icon svg {
    fill: #fff;
    fill: #6f7886;
    opacity: .7
}

.glass_btn {
    width: 40%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto
}

.glass_btn span {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 700;
    font-size: 1.25vw;
    color: #FFF;
    color: #6f7886;
    opacity: .7;
    padding: 5px;
    cursor: pointer
}

.glass_small {
    padding-top: 2.4vw
}

.glass_small p {
    font-family: 'Noto Serif JP';
    font-style: normal;
    font-weight: 400;
    font-size: 1vw;
    color: #FFF;
    color: #6f7886;
    opacity: .7
}

#sound_btn {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 100px;
    bottom: 100px;
    z-index: 9
}

.sound_btn {
    overflow: hidden;
    filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, .35));
    background: #FFF;
    backdrop-filter: blur(5px);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    width: 50px;
    height: 50px
}

.sound_btn img {
    margin-top: 10px;
    width: 30px;
    height: 30px
}

.sound_btn.js-active img {
    transform: translate3D(0, -40px, 0)
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    padding: 1.1vw
}

.header_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 3.5vw
}

.header_item {
    display: inline-block
}

.header_item a {
    display: block;
    text-decoration: none;
    margin: 0 8px;
    font-family: 'Noto Serif JP';
    font-style: normal;
    font-weight: 400;
    font-size: 1.1vw;
    letter-spacing: .16em
}

#header {
    transition: color 0.4s cubic-bezier(.33, 0, .13, 1) 0s;
    color: rgb(255, 255, 255)
}

#header::after {
    content: "";
    display: block;
    width: calc(100% - 2.2vw);
    height: 1px;
    background-color: rgb(196, 196, 196);
    position: absolute;
    left: 1rem;
    bottom: 0;
    z-index: 5;
    transition: transform 2s cubic-bezier(.33, 0, .13, 1) 0s;
    transform: scaleX(0);
    transform-origin: left center
}

.header_right {
    transition: transform 1s cubic-bezier(.33, 0, .13, 1) 1.33s;
    transform: translateZ(0)
}

.header_right a {
    text-decoration: none;
    display: inline-flex;
    align-items: baseline;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid #fff;
    border-radius: 12px;
    background-color: transparent;
    color: #fff;
    font-style: normal;
    font-weight: 400;
    font-family: 'Noto Serif JP';
    font-size: 1.25vw;
    line-height: 1.25vw;
    cursor: pointer;
    padding: .8vw 2.3vw;
    transition: background-color 0.66s cubic-bezier(.33, 0, .13, 1) 0s, color 0.66s cubic-bezier(.33, 0, .13, 1) 0s, border-color 0.66s cubic-bezier(.33, 0, .13, 1) 0s
}

.header_right a span {
    display: inline-block;
    transition: transform 0.66s cubic-bezier(.33, 0, .13, 1) 0s
}

.header_right a span:first-child {
    font-family: 'Noto Serif JP';
    font-style: normal;
    font-weight: 400;
    letter-spacing: .16em
}

.header_right a span:nth-child(2) {
    font-size: 12px;
    font-family: 'Noto Serif JP';
    font-style: normal;
    font-weight: 400;
    letter-spacing: .16em;
    padding-left: 4px
}

.header_content {
    overflow: hidden
}

.header_item {
    transform: translateY(3.5vw);
    transition: transform 1s cubic-bezier(.33, 0, .13, 1) 1.33s
}

.header_right {
    transition: transform 1s cubic-bezier(.33, 0, .13, 1) 1.33s;
    transform: translateY(3.5vw)
}

#header.js-active .header_item,
#header.js-active .header_right {
    transform: translateY(0)
}

.header_item:first-child {
    transition-delay: 0.1s
}

.header_item:nth-child(2) {
    transition-delay: 0.2s
}

.header_item:nth-child(3) {
    transition-delay: 0.3s
}

.header_item:nth-child(4) {
    transition-delay: 0.4s
}

.header_item:nth-child(5) {
    transition-delay: 0.5s
}

.header_item:nth-child(6) {
    transition-delay: 0.6s
}

.header_item:nth-child(7) {
    transition-delay: 0.7s
}

#header.js-active .header_right {
    transition-delay: 0.8s
}

#header.js-active::after {
    transform: none
}

#header::before {
    content: none;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
    transition: transform 1s cubic-bezier(.33, 0, .13, 1) 0.5s;
    transform: translateY(-100%) translateZ(0);
    transform-origin: center top
}

#header.js-active::before {
    content: ""
}

.header_content {
    mix-blend-mode: difference
}

#header.js-header-bg::before {
    transform: none
}

#mv {
    height: 100vh;
    overflow: hidden;
    position: relative;
    width: 100%
}

#mv.js-active {
    position: fixed;
    z-index: -10;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden
}

.mv_bg {
    -webkit-transform: translateX(-50%);
    left: 50%;
    max-height: initial;
    max-width: initial;
    min-height: 100vh;
    min-width: 100%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    z-index: -1
}

.mv_content {
    left: 20%;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 1.6vw;
    z-index: 2
}

.mv_title {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 400;
    font-size: 8vw;
    line-height: 1.5;
    text-align: center;
    color: #FFF
}

#mv::before {
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: ' '
}

.mv_title {
    overflow: hidden
}

.mv_title span {
    display: block;
    transform: translateY(100%);
    transition: transform 1s cubic-bezier(.33, 0, .13, 1) 1.33s
}

.tategaki_txt {
    writing-mode: vertical-rl;
    margin: 1.6vw auto 0
}

.tategaki_txt p {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 400;
    font-size: 1.25vw;
    line-height: 2.3vw;
    padding-right: 2vw
}

#goods .flexbox {
    padding-top: 4vw;
    width: 80%;
    margin: 0 auto;
    flex-direction: row-reverse
}

.goods_left {
    width: 50%;
    display: grid;
    place-items: center
}

.goods_right {
    width: 50%;
    display: flex;
    align-items: end;
    justify-content: flex-end
}

.goods_tategaki {
    writing-mode: vertical-rl
}

.goods_tategaki p {
    font-family: 'Noto Serif JP';
    font-style: normal;
    font-weight: 400;
    font-size: 3vw;
    letter-spacing: .16em
}

.goods_right p {
    width: 65%;
    font-family: 'Noto Serif JP';
    font-style: normal;
    font-weight: 400;
    font-size: 1.25vw
}

.goods_sticky {
    padding-top: 7vw;
    position: relative;
    display: flex;
    flex-wrap: wrap
}

.goods_sticky_left {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 50%;
    height: 100vh
}

.goods_sticky_left_parent {
    width: 100%;
    height: 100%;
    position: relative
}

.goods_sticky_left_chird {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

.goods_sticky_right {
    width: 50%
}

.goods_sticky_left_small p {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 400;
    font-size: 1.25vw
}

.goods_sticky_left_name {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 400;
    font-size: 4vw;
    line-height: 1
}

.goods_sticky_left_btn {
    padding-top: 1.6vw
}

.goods_sticky_left_btn a {
    border: 1px solid #222;
    background-color: transparent;
    color: #222;
    width: 50%;
    padding: .8vw 1.6vw;
    font-family: 'Noto Serif JP';
    font-style: normal;
    font-weight: 400;
    font-size: 1.6vw;
    letter-spacing: .16em;
    text-align: center;
    text-decoration: none
}

.goods_sticky_left_chird {
    transition: all 1.0s ease-in-out;
    opacity: 0;
    visibility: hidden
}

.goods_sticky_left_chird.js-active {
    opacity: 1;
    visibility: visible
}

#footer {
    background-color: #2A4230;
    overflow: hidden
}

#footer .inner {
    width: 80vw;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 7vw
}

.footer_map {
    position: relative;
    display: block;
    width: 100%;
    height: 20vw;
    max-height: unset
}

.footer_map .map_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    width: 75%
}

.iframe_wrap {
    position: relative;
    width: 100%;
    height: 100%
}

.iframe_wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    filter: grayscale(100%)
}

.footer_map .map_txt {
    position: absolute;
    right: 0;
    top: 0;
    width: 25%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000
}

.map_txt_inner {
    padding: 1.6vw
}

.map_txt_inner p {
    padding-bottom: 1.25vw
}

.map_txt_title {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 400;
    font-size: 1.25vw
}

.map_txt_content {
    font-family: 'Noto Serif JP';
    font-style: normal;
    font-weight: 400;
    font-size: 1vw
}

.map_txt_btn {
    overflow: hidden;
    display: inline-block;
    padding: .8vw 1.6vw;
    border: 1px solid #222;
    line-height: 1.4;
    font-size: 1vw;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center
}

.map_txt_btn a {
    text-decoration: none;
    font-family: "Playfair Display", YuMincho, Yu Mincho, serif
}

.map_pin {
    width: 27px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%)
}

.footer_left {
    width: 80%
}

.footer_left,
.footer_right {
    padding-top: 3.2vw
}

.footer_item {
    padding-bottom: .5vw
}

.footer_item:last-child {
    padding-bottom: 0
}

.footer_item a {
    text-decoration: none;
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 400;
    font-size: 1vw;
    color: #fff
}

.footer_triangle {
    display: inline-block;
    background-color: #fff;
    width: 8px;
    height: 10px;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    margin-right: 4px
}

.footer_left.flexbox {
    justify-content: flex-start
}

.footer_list {
    padding-right: 3.25vw
}

.footer_list:last-child {
    padding-right: 0
}

.credit {
    padding-top: 2px
}

.footer_right_btn {
    border: 1px solid #FFF;
    padding: 1.1vw;
    width: 14vw;
    text-align: center;
    margin-bottom: 1.1vw
}

.footer_right_btn a {
    text-decoration: none;
    font-family: 'Noto Serif JP';
    font-style: normal;
    font-weight: 400;
    font-size: 1vw;
    letter-spacing: .16em;
    color: #FFF
}

.footer_logo {
    width: 14vw
}

.footer_cloud {
    margin: 0 calc(50% - 50vw);
    width: 100vw
}

.sp-bl {
    display: none
}

.sp-in {
    display: none
}

@media screen and (max-width:960px) {
    .section_title {
        font-size: 10.5vw
    }
    #tategaki,
    #goods,
    #footer .inner {
        padding-top: 15vw
    }
    .pc-bl {
        display: none
    }
    .sp-bl {
        display: block
    }
    .sp-in {
        display: inline
    }
}

@media screen and (max-width:960px) {
    .start_glass {
        width: 80vw;
        height: 80vw;
        padding: 0
    }
    .glass_title {
        font-size: 6vw
    }
    .glass_txt {
        padding-top: 3vw
    }
    .glass_visual {
        padding-top: 3vw
    }
    .glass_txt p {
        font-size: 3vw
    }
    .glass_small {
        padding-top: 3vw
    }
    .glass_small p {
        font-size: 3vw
    }
    .glass_icon {
        width: 7.5vw
    }
    .glass_btn span {
        font-size: 2.5vw
    }
    .glass_btn {
        width: 30%
    }
}

@media screen and (max-width:960px) {
    .mv_title {
        font-size: 14vw
    }
    .mv_content {
        left: 50%;
        padding: 0
    }
}

@media screen and (max-width:960px) {
    .tategaki_txt {
        writing-mode: horizontal-tb;
        margin-top: 7.5vw
    }
    .mobile_tategaki_right {
        writing-mode: vertical-rl;
        margin: 0 auto
    }
    .mobile_tategaki_left {
        writing-mode: vertical-rl;
        padding-top: 0vw;
        margin: 0 auto
    }
    .tategaki_txt p {
        font-size: 3vw;
        line-height: 1.5;
        padding-right: 3vw;
        padding-left: 3vw
    }
    .tategaki_txt .mobile_tategaki_left p {
        padding-right: 3vw;
        padding-left: 3vw
    }
}

@media screen and (max-width:960px) {
    .goods_tategaki p {
        font-size: 6vw
    }
    #goods .flexbox {
        display: block
    }
    .goods_left {
        width: 100%;
        display: grid;
        place-items: flex-end
    }
    .goods_right {
        width: 100%;
        display: flex;
        align-items: end;
        justify-content: flex-start;
        padding-top: 5vw;
        padding-left: 2.5vw
    }
    .goods_right p {
        width: 80%;
        font-size: 3vw
    }
    .goods_sticky_left_small {
        font-size: 2.5vw;
        margin-bottom: 2vw
    }
    .goods_sticky_left_name {
        margin-bottom: 16px
    }
    .goods_sticky_left_btn {
        font-size: 3.5vw
    }
    .goods_sticky_left_btn {
        padding-top: 0
    }
    .goods_sticky_left_btn a {
        width: auto;
        padding: 2vw 3vw
    }
    .goods_sticky_left_small p {
        font-size: 3vw
    }
    .goods_sticky_left_chird {
        height: 30%;
        width: 70%;
        left: 60%
    }
    .goods_sticky_left_btn a {
        font-size: 3vw
    }
}

@media screen and (max-width:960px) {
    .footer_map .map_txt {
        display: none
    }
    .footer_map {
        width: 100%;
        height: 62.5vw;
        margin-top: 7.5vw
    }
    .footer_map .map_bg {
        width: 100%
    }
    .map_pin {
        width: 4vw
    }
    #footer .footer_map+.flexbox {
        display: block
    }
    .footer_left {
        width: 100%
    }
    .footer_list {
        width: 50%
    }
    .footer_item {
        padding-bottom: 2vw;
        padding-left: 2vw
    }
    .footer_list:last-child {
        width: 100%;
        padding-top: 2vw
    }
    .footer_left.flexbox {
        padding-left: 3vw
    }
    .footer_right_btn {
        width: 60%;
        margin: 0 auto 5vw;
        padding: 2vw 3vw
    }
    .footer_right_btn a {
        font-size: 3vw
    }
    .footer_left,
    .footer_right {
        padding-top: 6vw
    }
    .footer_logo {
        width: 50%;
        margin: 0 auto
    }
    .footer_item a {
        font-size: 3vw
    }
}

#mobile_reserve_btn {
    display: none
}

@media screen and (max-width:960px) {
    .header_content {
        height: 10vw
    }
    .header_right {
        display: none
    }
    #header {
        width: 100vh;
        transform-origin: left bottom;
        transform: rotate(90deg);
        top: -10vw;
        padding: 0
    }
    #header::before {
        content: none
    }
    .header_item {
        transform: translateY(10vw)
    }
    #header::after {
        width: 100vh;
        top: 0
    }
    #header.js-header-bg {
        color: #222
    }
    .header_left {
        margin: 0 auto
    }
    .header_item a {
        font-size: 3.5vw;
        margin: 0 3vw
    }
    #mobile_reserve_btn {
        display: block;
        position: fixed;
        bottom: 5vw;
        right: 2.5vw;
        z-index: 5
    }
    .mobile_header_reserve a {
        border: 2px solid #fff;
        text-decoration: none;
        width: 9vw;
        writing-mode: vertical-rl;
        letter-spacing: .2em;
        font-family: 'Noto Serif JP';
        padding: 3.75vw 0;
        border-radius: 5px;
        font-size: 3.5vw;
        line-height: 1.4;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        color: #fff
    }
    #mobile_reserve_btn {
        overflow: hidden
    }
    #mobile_reserve_btn .mobile_header_reserve {
        transform: translateY(100%);
        transition: transform 1s cubic-bezier(.33, 0, .13, 1) 1.33s, background-color 0.66s cubic-bezier(.33, 0, .13, 1) 0s, color 1.33s cubic-bezier(.33, 0, .13, 1) 0s, border-color 1.33s cubic-bezier(.33, 0, .13, 1) 0s;
        transition-delay: 1.7s
    }
    #mobile_reserve_btn.js-active .mobile_header_reserve {
        transform: translateY(0)
    }
    #mobile_reserve_btn.js-header-bg .mobile_header_reserve a {
        color: #222;
        border-color: #222;
        background-color: #fff
    }
}

#niina_loading {
    width: 100vw;
    height: 100vh;
    transition: all 1s;
    background-color: #F5F5F5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: grid;
    place-items: center
}

.spinner {
    width: 500px;
    height: 500px;
    position: relative
}

.spinner span {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    white-space: nowrap
}

.loaded {
    opacity: 0;
    visibility: hidden
}

@media screen and (max-width:960px) {
    .spinner {
        width: 50vw;
        height: 50vw
    }
    .spinner span {
        font-size: 4vw;
        bottom: 10vw
    }
}

section.slider-part {
    position: relative;
    height: 100vh;
    overflow: hidden
}

section.slider-part .mySwiper {
    height: 100%;
    background: transparent
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    -ms-touch-action: auto;
    touch-action: auto
}

.swiper-slide .slide2 {
    background-color: #fff
}

#tategaki {
    width: 100vw;
    height: 100vh
}

.full_tategaki_content {
    writing-mode: vertical-rl;
    color: #fff;
    width: 80vw;
    margin: 0 auto;
    padding-top: 0
}

.full_tategaki_title {
    font-family: 'Noto Serif JP';
    font-style: normal;
    font-weight: 400;
    font-size: 90px;
    letter-spacing: .1em
}

.full_tategaki_txt {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    margin-right: 30vw;
    margin-top: 5vw
}

.full_tategaki_txt p {
    line-height: 5vw
}

.title_wrapper {
    width: 100%;
    height: 100%;
    position: relative
}

.mv_title {
    overflow: hidden
}

.mv_title span {
    display: block;
    transform: translateY(100%);
    transition: transform 1s cubic-bezier(.33, 0, .13, 1) 1.33s
}

#js-mv-title.js-active .mv_title span {
    transform: translateY(0)
}

#tategaki {
    background-color: transparent!important;
    color: #fff!important
}

#tategaki .section_title {
    color: #fff
}

@media screen and (max-width:960px) {
    .mobile_tategaki_right,
    .mobile_tategaki_left {
        writing-mode: horizontal-tb;
        margin: 0 auto
    }
    .tategaki_txt p {
        font-size: 4.2vw;
        margin-top: 5vw
    }
    #tategaki .inner {
        width: 90%
    }
    .tategaki_txt {
        margin-top: 5vw
    }
    #tategaki .section_title {
        font-size: 16vw;
        line-height: 16vw;
        padding-top: 10vw
    }
    .full_tategaki_content {
        writing-mode: horizontal-tb
    }
    .full_tategaki_title {
        writing-mode: vertical-rl;
        margin: 0 auto;
        font-size: 14vw
    }
    .full_tategaki_txt {
        margin-right: 0;
        margin-top: 5vh;
        font-size: 3.6vw;
        font-size: 1.7vh;
        text-align: center
    }
    .full_tategaki_txt p {
        line-height: 2.3
    }
    .tategaki_txt p {
        text-align: center
    }
}

#price {
    background-color: #597961;
    padding-top: 7vw;
    padding-bottom: 7vw
}

#price .section_title {
    font-family: 'Noto Serif JP';
    font-style: normal;
    font-weight: 400;
    font-size: 4vw;
    line-height: 1;
    color: #fff;
    padding-top: 2vw
}

.price_glass_wrapper {
    width: 90%;
    margin: 0 auto;
    background-color: #77927E;
    padding-top: 2vw;
    padding-bottom: 2vw
}

.price_large_table table tr th,
.price_large_table table tr td {
    text-align: center;
    white-space: nowrap
}

.price_large_table table {
    width: 70vw;
    max-width: 100%;
    margin: 4vw auto;
    border: 2px solid #597961
}

.price_large_table table tr th {
    background-color: #5A7A62;
    color: #fff;
    padding: 2vw 4vw;
    font-family: 'Shippori Mincho';
    font-style: normal;
    font-weight: 600;
    font-size: 2.4vw;
    line-height: 1
}

.price_large_table table tr th.price_hiruyoru {
    font-family: 'Shippori Mincho';
    font-style: normal;
    font-weight: 600;
    font-size: 3.2vw;
    line-height: 1;
    letter-spacing: .12em
}

.price_large_table table tr td {
    padding: 4vw;
    background-color: #E1E6E2;
    color: #5A7A62
}

.price_table_nihon {
    font-family: 'Shippori Mincho';
    font-style: normal;
    font-weight: 600;
    font-size: 3.2vw;
    line-height: 1;
    letter-spacing: .12em
}

.price_table_price {
    font-family: 'Shippori Mincho';
    font-style: normal;
    font-weight: 600;
    font-size: 2.4vw;
    line-height: 1;
    letter-spacing: .12em
}

.price_hiruyoru {
    position: relative
}

.price_hiruyoru span {
    position: absolute;
    bottom: .6vw;
    font-family: 'Shippori Mincho';
    font-style: normal;
    font-weight: 600;
    font-size: 1vw;
    line-height: 1;
    letter-spacing: .24em;
    left: 50%;
    transform: translateX(-50%)
}

.price_table_price {
    position: relative
}

.price_table_price span {
    position: absolute;
    bottom: 2.8vw;
    font-family: 'Shippori Mincho';
    font-style: normal;
    font-weight: 600;
    font-size: 1vw;
    line-height: 1;
    letter-spacing: .24em;
    left: 50%;
    transform: translateX(-50%)
}

.price_kome {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 600;
    font-size: 1.6vw;
    color: #fff;
    text-align: center
}

.price_glass_wrapper_small {
    width: 48%;
    padding: 4vw;
    background-color: #77927E
}

.price_rental_logo {
    width: 8vw;
    height: 8vw;
    position: relative;
    border: 2px solid #FFF
}

.price_rental_logo p {
    position: absolute;
    left: 50%;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Shippori Mincho';
    font-style: normal;
    font-weight: 600;
    font-size: 2.4vw;
    line-height: 1;
    letter-spacing: .12em;
    color: #FFF;
    white-space: nowrap
}

.price_rental_logo p span {
    font-size: 1.25vw
}

.price_lental_wrapper {
    padding-top: 4vw;
    width: 90%;
    margin: 0 auto
}

.price_lental_left,
.price_lental_right {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 400;
    font-size: 1.4vw;
    line-height: 2;
    color: #FFF
}

.price_rental_content {
    width: calc(100% - 14vw);
    align-items: center
}

.slide6 {
    position: relative
}

.slide6 a {
    display: none
}

#dasyutu {
    display: none
}

@media screen and (max-width:960px) {
    .slide6 a {
        display: block;
        position: absolute;
        width: 50px;
        height: 50px;
        left: 50%;
        transform: translateX(-50%);
        display: block;
        text-decoration: none;
        bottom: 20vh
    }
    #dasyutu {
        display: block;
        width: 100vw;
        height: 10px
    }
}

@media screen and (max-width:960px) {
    .price_large_table table {
        width: 80%;
        border: 1px solid #597961
    }
    .price_large_table table tr th {
        font-size: 3.5vw;
        padding: 5vw 2vw
    }
    .price_large_table table tr td {
        padding: 5vw 2vw;
        font-size: 3.5vw
    }
    .price_large_table table tr th.price_hiruyoru {
        font-size: 3.5vw
    }
    .price_hiruyoru span {
        font-size: 2vw
    }
    .price_table_price span {
        font-size: 2vw;
        bottom: 1.25vw
    }
    .price_kome {
        font-size: 3vw
    }
    .price_glass_wrapper {
        padding-top: 5vw;
        padding-bottom: 5vw
    }
    .price_lental_wrapper {
        display: block
    }
    .price_glass_wrapper_small {
        width: 100%
    }
    .price_rental_logo {
        width: 15vw;
        height: 15vw
    }
    .price_rental_logo p {
        font-size: 4vw
    }
    .price_rental_logo p span {
        font-size: 2.5vw
    }
    .price_rental_content {
        width: calc(100% - 20vw)
    }
    .price_lental_left,
    .price_lental_right {
        font-size: 2.5vw
    }
    .price_glass_wrapper_small:nth-child(2) {
        margin-top: 6vw
    }
    .price_lental_wrapper {
        padding-top: 6vw
    }
    #price .section_title {
        font-size: 4.5vw
    }
    .price_hiruyoru span {
        bottom: 1.5vw
    }
}

#access {
    background-color: #fff;
    padding-top: 100px
}

#access .section_title {
    font-family: 'Noto Serif JP';
    font-style: normal;
    font-weight: 400;
    font-size: 64px;
    line-height: 1;
    letter-spacing: .12em;
    text-align: left
}

.access_iframe_wrap {
    margin-top: 60px;
    position: relative;
    width: 100%;
    padding-top: 66%
}

.access_iframe_wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.access_img {
    margin: 60px auto 0;
    width: 60%
}

.access_txt_title {
    font-size: 28px
}

.access_txt_title span {
    font-size: 14px
}

.access_txt_flex {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #aaa;
    justify-content: space-between
}

.access_flex_left {
    padding-left: 20px
}

.access_flex_right {
    padding: 20px
}

.access_txt {
    padding-top: 75px;
    width: 60%;
    margin: 0 auto
}

.access_txt {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 400;
    color: #222;
    letter-spacing: .1em
}

.access_txt_title span {
    margin-left: 10px
}

.access_txt_link {
    text-align: right
}

.access_txt_link a {
    display: inline-flex;
    padding: 10px 30px;
    text-decoration: none;
    background-color: #222;
    color: #fff;
    font-family: "Noto serif JP"
}

.flexbox.tokiwakan {
    align-items: center
}

@media screen and (max-width:960px) {
    #access .section_title {
        font-size: 10.5vw
    }
    #access {
        padding-top: 15vw
    }
    .access_txt_title {
        font-size: 5vw
    }
    .flexbox.tokiwakan {
        display: block;
        text-align: center
    }
    .access_txt_link {
        text-align: center;
        margin-top: 5vw
    }
    .access_txt {
        width: 100%
    }
    .access_flex_left {
        padding-left: 2.5vw
    }
    .access_flex_right {
        padding: 2.5vw
    }
    .access_txt_flex {
        padding: 3vw 0
    }
    .access_txt_link a {
        font-size: 12px
    }
    .access_img {
        width: 100%
    }
}

#menu {
    display: none
}

#js-menu {
    display: none
}

@media screen and (max-width:960px) {
    #menu {
        display: block
    }
    #js-menu {
        display: block
    }
}

#menu {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9;
    width: 0;
    height: 0
}

#menu.menu-active {
    z-index: 9999
}

.menu_button {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1.5rem;
    font-family: Cinzel;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .05rem;
    line-height: 1.4;
    cursor: pointer;
    font-weight: 700;
    z-index: 1
}

.menu_button_text {
    height: 18px;
    overflow: hidden
}

.menu_button_text_list {
    transition: transform 0.5s;
    line-height: 20px
}

.menu-active .menu_button_text_list {
    transform: translate3D(0, -20px, 0)
}

#g-nav {
    position: fixed;
    z-index: -1;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    background: #fff;
    transition: all 0.6s;
    font-family: "Noto serif JP"
}

#menu.menu-active #g-nav {
    right: 0
}

#menu.menu-active #g-nav #g-nav-list {
    position: relative;
    z-index: 999;
    width: 100%;
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch
}

.g_nav_inner {
    padding-left: 40px
}

.g_nav_main {
    padding-top: 28.21vw;
    width: 100%;
    padding-bottom: 10.26vw
}

.g_nav_main li {
    margin-bottom: 3vw
}

.g_nav_main li a {
    letter-spacing: .06em;
    display: inline-block;
    vertical-align: top;
    line-height: 1;
    color: #222;
    font-size: 4vw;
    text-decoration: none;
    font-family: "Noto serif JP"
}

.g_nav_side {
    border-top: 1px solid #222;
    padding-top: 10.26vw
}

.g_nav_side li {
    margin-bottom: 5.13vw
}

.g_nav_side li a {
    font-size: 16px;
    letter-spacing: .06em;
    display: inline-block;
    vertical-align: top;
    line-height: 1;
    text-decoration: none
}

.g_nav_info {
    margin-bottom: 10.26vw
}

.g_nav_info li {
    margin-bottom: 2.5vw
}

.g_nav_info li a {
    text-decoration: none;
    font-size: 3vw;
    letter-spacing: .06em;
    display: inline-block;
    vertical-align: top;
    line-height: 1
}

.g_nav_sns {
    fill: #040000
}

.g_nav_sns ul li {
    width: 3.59vw;
    height: 4.36vw;
    position: relative;
    margin-right: 7.69vw
}

.g_nav_sns ul li a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.g_nav_sns ul li a i {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.g_nav_sns .nav_sns ul li svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.g_nav_sns ul {
    display: flex;
    align-items: center
}

.g_nav_bottom {
    position: absolute;
    bottom: 10%;
    width: 100%
}

.g_nav_reserve {
    width: 79.48%;
    margin: auto;
    position: relative;
    padding: 10.26vw 0
}

.g_nav_reserve a {
    text-decoration: none;
    color: #222;
    border: 1px solid #222;
    display: inline-block;
    padding: 10px 20px
}

#menu .menu_button_text_item:first-child {
    color: #fff
}

#menu.js-header-bg .menu_button_text_item:first-child {
    color: #222
}

@media screen and (max-width:960px) {
    header {
        display: none
    }
    .mv_title span {
        display: block;
        transform: translateY(100%);
        transition: transform 1s cubic-bezier(.33, 0, .13, 1) 0.2s
    }
}

.g_nav_sound_wrapper {
    margin-top: 20px;
    width: 50px;
    height: 50px;
    overflow: hidden
}

.g_nav_sound_wrapper.js-active img {
    transform: translate3D(0, -50px, 0)
}

@media screen and (max-width:960px) {
    .g_nav_sound_wrapper {
        width: 30px;
        height: 30px
    }
    .g_nav_sound_wrapper.js-active img {
        transform: translate3D(0, -30px, 0)
    }
    #sound_btn {
        visibility: hidden
    }
    .g_nav_sound {
        position: absolute;
        top: 0
    }
}

.footer_map {
    margin-top: 60px;
    border: 1px solid #000
}

.goods_sticky_left_btn a {
    transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out
}

.goods_sticky_left_btn a:hover {
    background-color: #000;
    color: #E8EDCB
}

.map_txt_btn {
    transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out
}

.map_txt_btn:hover {
    color: #fff;
    background-color: #222
}

#form_submit input {
    font-family: "Noto serif JP"!important;
    transition: all 0.5s ease-in-out
}

#form_submit:hover {
    background-color: #fff;
    border: 1px solid #597961
}

#form_submit:hover input {
    color: #597961
}

.footer_right_btn {
    transition: background-color 0.5s ease-in-out
}

.footer_right_btn a {
    transition: color 0.5s ease-in-out
}

.footer_right_btn:hover {
    background-color: #fff
}

.footer_right_btn:hover a {
    color: #2A4230
}

@media screen and (max-width:960px) {
    .full_tategaki_content {
        padding: 30px
    }
}

.full_tategaki_txt {
    opacity: 0;
    transition: all 1s ease-in-out;
    transition-delay: 1.2s
}

.full_tategaki_title {
    opacity: 0;
    transition: all 1s ease-in-out;
    transition-delay: 0.7s
}

.swiper-slide-active .full_tategaki_title,
.swiper-slide-active .full_tategaki_txt {
    opacity: 1
}

@media screen and (max-width:960px) {
    .full_tategaki_txt {
        transition-delay: 1.5s
    }
    .full_tategaki_title {
        transition-delay: 1.0s
    }
}

@media screen and (max-width:960px) {
    .anime_line {
        position: relative
    }
    .anime_line::before,
    .anime_line::after {
        position: absolute;
        content: "";
        width: 0;
        height: 1px;
        background: #fff
    }
    .anime_line2::before,
    .anime_line2::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 0;
        background: #fff
    }
    .swiper-slide-active .anime_line:before {
        top: 0;
        left: 0;
        animation: lineAnime .5s linear 0.5s forwards
    }
    .swiper-slide-active .anime_line2::before {
        top: 0;
        right: 0;
        animation: lineAnime2 .5s linear 1.0s forwards
    }
    .swiper-slide-active .anime_line::after {
        bottom: 0;
        right: 0;
        animation: lineAnime .5s linear 1.5s forwards
    }
    .swiper-slide-active .anime_line2::after {
        bottom: 0;
        left: 0;
        animation: lineAnime2 .5s linear 2.0s forwards
    }
    @keyframes lineAnime {
        0% {
            width: 0%
        }
        100% {
            width: 100%
        }
    }
    @keyframes lineAnime2 {
        0% {
            height: 0%
        }
        100% {
            height: 100%
        }
    }
}

#tategaki {
    opacity: 0;
    transition: opacity 1s ease-in-out 1s
}

.swiper-slide-active #tategaki {
    opacity: 1
}

@media screen and (max-width:960px) {
    .footer_list:first-child,
    .footer_list:nth-child(2) {
        width: 100%;
        text-align: center;
        margin-right: 0
    }
    .footer_list:nth-child(2) {
        padding-top: 2vw
    }
    .footer_triangle {
        display: none
    }
    #footer .inner {
        padding-top: 10vw
    }
}

@media screen and (max-width:960px) {
    .glass_icon {
        width: 9.5vw
    }
    .glass_btn {
        width: 50%
    }
    .glass_btn span {
        font-size: 5.5vw
    }
    .glass_title {
        font-size: 8vw
    }
}

.fadeUpTrigger {
    opacity: 0;
    transition: opacity 1s ease-in-out
}

.fadeUpTrigger.fadeUp {
    opacity: 1
}

@media screen and (min-width:961px) {
    .full_tategaki_content {
        width: 70vw;
        display: flex;
        flex-direction: column;
        height: 85%;
        padding-top: 10%;
        padding-bottom: 5%;
        justify-content: space-between
    }
    .full_tategaki_txt {
        display: flex;
        justify-content: flex-end
    }
    .full_tategaki_title {
        font-size: 12vh
    }
    .full_tategaki_txt {
        margin-top: 0;
        margin-right: 0;
        font-size: 2.4vh
    }
}

.inner {
    width: 80vw;
    max-width: 100%;
    margin: 0 auto
}

#faq,
#contact {
    background-color: #fff
}

#faq {
    padding-top: 7vw;
    padding-bottom: 7vw
}

.faq_content {
    max-width: 60%
}

#faq .section_title {
    font-size: 2vw
}

#faq .flexbox {
    align-items: center;
    justify-content: space-around
}

.faq_content_q {
    display: flex;
    align-items: center;
    gap: 1.6vw
}

.faq_q_icon {
    font-size: 2vw;
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 400
}

.faq_q_txt {
    font-family: 'Noto Serif JP';
    font-style: normal;
    font-weight: 600;
    line-height: 1.8;
    font-size: 1.25vw;
    letter-spacing: .1em
}

.faq_content_a {
    margin: 1vw 0 0 .7vw;
    padding: 0 0 0 2.4vw;
    font-size: 1vw;
    line-height: 2.4;
    position: relative
}

.faq_content_a:before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 80%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #dfdfdb;
    content: ""
}

.faq_content ul li {
    margin-top: 2.8vw
}

#contact {
    padding-bottom: 7vw;
    padding-top: 7vw
}

#contact .section_title {
    font-size: 8.8vw;
    margin-bottom: 2.4vw
}

.form_first_select {
    width: 25%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.form_first_select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.form_first_select {
    position: relative
}

.form_first_select:after {
    content: "";
    position: absolute;
    right: 2vw;
    top: 1.6vw;
    width: 1.1vw;
    height: 1.1vw;
    border-top: 1px solid #1b1c1e;
    border-left: 1px solid #1b1c1e;
    transform: translateY(-50%) rotate(-135deg);
    font-size: 1.4vw;
    pointer-events: none
}

.form_second_select {
    width: 23%
}

.form_third_select {
    width: 48%
}

form#mail_form .form_small_content select,
form#mail_form .form_small_content input {
    width: 100%;
    color: #1b1c1e;
    height: 4vw;
    border-radius: 10px;
    padding: 0 2vw;
    background-color: transparent;
    border: 1px solid #1b1c1e;
    font-size: 1.6vw;
    line-height: 4vw;
    font-family: 'Noto sans JP';
    font-style: normal;
    font-weight: 400
}

form#mail_form .form_small_content select:invalid {
    color: rgba(27, 28, 30, .5)
}

.form_small_content input::placeholder {
    color: rgba(27, 28, 30, .5)
}

.form_large_content {
    width: 100%;
    margin-top: 2.3vw
}

form#mail_form .form_large_content textarea {
    width: 100%;
    resize: none;
    border: 1px solid #1b1c1e;
    border-radius: 10px;
    font-size: 1.6vw;
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 400;
    padding: 1vw 2vw
}

form#mail_form .form_large_content textarea::placeholder {
    color: rgba(27, 28, 30, .5)
}

#form_submit {
    background: #597961;
    border-radius: 10px;
    width: 14vw;
    height: 4vw;
    margin-right: 0;
    margin-left: auto;
    margin-top: 2.3vw
}

#form_submit input {
    background-color: transparent;
    border: none;
    width: 100%;
    height: 100%;
    line-height: 4vw;
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 400;
    font-size: 1.6vw;
    color: #fff
}

@media screen and (max-width:960px) {
    #faq .flexbox {
        display: block
    }
    #faq .section_title {
        font-size: 6vw;
        text-align: left
    }
    .faq_content {
        max-width: 100%;
        margin: 13vw 0
    }
    .faq_content_q {
        gap: 4.26667vw;
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline
    }
    .faq_q_icon {
        font-size: 5vw
    }
    .faq_q_txt {
        font-size: 3.5vw
    }
    .faq_content_a {
        margin: 4.26667vw 0 0 2.66667vw;
        padding: 0 0 0 6.66667vw;
        font-size: 3vw;
        letter-spacing: .1em;
        line-height: 2
    }
    #contact .section_title {
        font-size: 8vw
    }
    .form_first_select,
    .form_second_select,
    .form_third_select {
        width: 100%
    }
    form#mail_form .form_small_content select,
    form#mail_form .form_small_content input {
        font-size: 3.5vw;
        height: 13.5vw;
        padding: 3.5vw 7.5vw;
        margin-bottom: 3.5vw
    }
    .form_first_select:after {
        content: "";
        position: absolute;
        right: 7.5vw;
        top: 5.5vw;
        width: 3vw;
        height: 3vw;
        border-top: 1px solid #1b1c1e;
        border-left: 1px solid #1b1c1e;
        transform: translateY(-50%) rotate(-135deg);
        font-size: 3vw;
        pointer-events: none
    }
    .form_large_content {
        margin: 0
    }
    form#mail_form .form_large_content textarea {
        font-size: 3.5vw;
        padding: 3.5vw 7.5vw
    }
    #form_submit {
        width: 40%;
        height: 10vw;
        margin-top: 3.5vw
    }
    #form_submit input {
        height: 10vw;
        font-size: 3.5vw
    }
}

dl dt {
    display: none
}

@media screen and (max-width:960px) {
    .faq_content_a {
        visibility: hidden;
        height: 0;
        opacity: 0;
        overflow: hidden;
        padding-bottom: 0;
        transition: opacity 1s ease-in-out, height 1s ease-in-out
    }
    .faq_content_a.js-faq-opa {
        visibility: visible;
        opacity: 1;
        height: auto;
        padding-bottom: 10px
    }
    .faq_content_q {
        position: relative
    }
    .faq_content_q::before,
    .faq_content_q::after {
        position: absolute;
        content: "";
        display: block;
        transition: all 0.4s;
        background: #000;
        right: 0;
        top: 50%;
        width: 10px;
        height: 2px;
        transform: translate(-50%, -50%)
    }
    .faq_content_q::before {
        transform: translate(-50%, -50%) rotate(90deg)
    }
    .faq_q_icon {
        display: none
    }
    .faq_content_a {
        font-size: 2.8vw
    }
    .faq_q_txt {
        font-size: 3.2vw
    }
    .faq_content ul li {
        border-bottom: 1px solid #000;
        padding-left: 3%
    }
    .faq_content ul li:first-child {
        border-top: 1px solid #000;
        padding-top: 2.8vw
    }
    .faq_content_q.js-faq-minus::before {
        transform: translate(-50%, -50%) rotate(0deg)
    }
}

#main_text01,
#main_text02,
#main_text03,
#main_text04 {
    background-color: #fff;
    padding-top: 20vw
}

#main_text01 {
    padding-top: 0
}

.main_text_visual {
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .6)), url(images/main_text_bg01.jpg) no-repeat center center / cover;
    padding-top: 64%;
    position: relative
}

#main_text02 .main_text_visual {
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .6)), url(images/main_text_bg02.jpg) no-repeat center center / cover
}

#main_text03 .main_text_visual {
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .6)), url(images/main_text_bg03.jpg) no-repeat center center / cover
}

#main_text04 .main_text_visual {
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .6)), url(images/main_text_bg04.jpg) no-repeat center center / cover
}

.main_text_visual_title {
    position: absolute;
    bottom: 0;
    padding-bottom: 7vw;
    padding-left: 9vw
}

.main_text_visual_title p {
    font-family: 'Noto Serif JP';
    font-style: normal;
    font-weight: 600;
    font-size: 4vw;
    letter-spacing: .12em;
    color: #fff
}

.nain_text_text {
    padding-top: 10vw;
    width: 62.5vw;
    margin: 0 auto;
    padding-bottom: 10vw
}

.main_text_content p {
    font-weight: 400;
    letter-spacing: -.07em;
    font-size: 1vw;
    line-height: 3.19;
    font-family: 'Cinzel';
    margin: -.5px 0
}

.main_text_title p {
    font-family: 'Noto Serif JP';
    font-style: normal;
    font-weight: 700;
    font-size: 1.25vw;
    letter-spacing: .12em
}

.main_text_small_img {
    padding-left: 8.3vw
}

#main_text02 .main_text_small_img {
    padding-top: 10vw;
    padding-left: 0;
    padding-right: 8.3vw;
    flex-direction: row-reverse
}

.main_text_medium_img {
    padding-left: 8.3vw;
    padding-top: 7vw;
    width: 65vw
}

#main_text01 .main_text_small_img_wrapper:first-child,
#main_text02 .main_text_small_img_wrapper:first-child,
#main_text03 .main_text_small_img_wrapper:first-child,
#main_text04 .main_text_small_img_wrapper:first-child {
    width: 40%
}

#main_text01 .main_text_small_img_wrapper:nth-child(2),
#main_text02 .main_text_small_img_wrapper:nth-child(2),
#main_text03 .main_text_small_img_wrapper:nth-child(2),
#main_text04 .main_text_small_img_wrapper:nth-child(2) {
    margin-top: 8.3vw;
    width: 50%
}

#main_text01 .main_text_small_img_wrapper:nth-child(2),
#main_text04 .main_text_small_img_wrapper:nth-child(2) {
    margin-top: 18vw
}

#main_text02 .main_text_small_img_wrapper:nth-child(2) {
    margin-top: 18vw
}

.main_text_big_img {
    width: 100%;
    padding-top: 7vw
}

#main_text02 .main_text_big_img {
    padding-top: 0
}

#main_text02 .main_text_big_img {
    width: 100%;
    margin: 0 auto;
    padding-left: 8.7vw;
    padding-right: 8.7vw
}

@media screen and (max-width:960px) {
    #main_text01,
    #main_text02,
    #main_text03,
    #main_text04 {
        padding-top: 15vw
    }
    #main_text01 {
        padding-top: 0
    }
    .main_text_visual {
        padding-top: 0;
        width: 100vw;
        height: 100vh
    }
    #main_text01 .flexbox,
    #main_text02 .flexbox,
    #main_text03 .flexbox,
    #main_text04 .flexbox {
        display: block
    }
    .main_text_visual_title {
        padding-bottom: 6vw;
        padding-left: 6vw
    }
    .main_text_visual_title p {
        font-size: 5vw
    }
    .main_text_title p {
        font-size: 3.75vw;
        margin-bottom: 11vw
    }
    .main_text_content p {
        font-size: 3vw
    }
    .nain_text_text {
        width: 100%;
        padding-left: 6vw;
        padding-right: 6vw
    }
    .main_text_small_img {
        padding-left: 0
    }
    #main_text01 .main_text_small_img_wrapper:first-child,
    #main_text02 .main_text_small_img_wrapper:first-child,
    #main_text03 .main_text_small_img_wrapper:first-child,
    #main_text04 .main_text_small_img_wrapper:first-child {
        width: 100vw;
        height: 128vw;
        overflow: hidden
    }
    #main_text01 .main_text_small_img_wrapper:first-child img,
    #main_text02 .main_text_small_img_wrapper:first-child img,
    #main_text03 .main_text_small_img_wrapper:first-child img,
    #main_text04 .main_text_small_img_wrapper:first-child img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }
    #main_text01 .main_text_small_img_wrapper:nth-child(2),
    #main_text02 .main_text_small_img_wrapper:nth-child(2),
    #main_text03 .main_text_small_img_wrapper:nth-child(2),
    #main_text04 .main_text_small_img_wrapper:nth-child(2) {
        margin-top: 15vw;
        padding: 0 10vw 15vw;
        width: 100vw;
        height: 128vw;
        overflow: hidden
    }
    #main_text01 .main_text_small_img_wrapper:nth-child(2) img,
    #main_text02 .main_text_small_img_wrapper:nth-child(2) img,
    #main_text03 .main_text_small_img_wrapper:nth-child(2) img,
    #main_text04 .main_text_small_img_wrapper:nth-child(2) img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }
    .main_text_big_img {
        padding-top: 7.5vw;
        overflow: hidden
    }
}

.mtfadeTrigger {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-in-out
}

.mtfadeTrigger.mtfade {
    opacity: 1;
    transform: translateY(0)
}

.animeDelay {
    transition-delay: 0s
}

.test {
    -webkit-transform: scale(1.3);
    transform: scale(1.3)
}

@media screen and (max-width:960px) {
    .animeDelay {
        transition-delay: 0
    }
    .sp-zoom-mtfade-wrapper {
        width: 100%;
        height: 100%;
        overflow: hidden
    }
    .sp-zoom-mtfade-wrapper img {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
        transition: transform 1.5s ease-in-out 1s
    }
    .mtfadeTrigger.sp-zoom-mtfade {
        opacity: 1;
        transform: translateY(0)
    }
    .mtfade .sp-zoom-mtfade-wrapper img {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@media screen and (max-width:960px) {
    .main_text_small_img {
        position: relative;
        height: 70vh;
        padding-left: 6vw;
        padding-right: 6vw
    }
    #main_text01 .main_text_small_img_wrapper:first-child,
    #main_text02 .main_text_small_img_wrapper:first-child,
    #main_text03 .main_text_small_img_wrapper:first-child,
    #main_text04 .main_text_small_img_wrapper:first-child {
        position: absolute;
        width: 60vw;
        height: 80vw;
        overflow: hidden;
        right: 6vw;
        top: 0;
        z-index: 1
    }
    #main_text01 .main_text_small_img_wrapper:nth-child(2),
    #main_text02 .main_text_small_img_wrapper:nth-child(2),
    #main_text03 .main_text_small_img_wrapper:nth-child(2),
    #main_text04 .main_text_small_img_wrapper:nth-child(2) {
        margin-top: 0;
        padding: 0;
        width: 55vw;
        height: 70vw;
        overflow: hidden;
        position: absolute;
        margin-right: 0;
        left: 6vw;
        bottom: 0
    }
    .main_text_medium_img {
        width: 100%;
        padding-left: 6vw;
        padding-right: 6vw;
        padding-top: 15vw
    }
    #main_text02 .main_text_small_img_wrapper:first-child {
        left: 6vw;
        right: auto;
        top: 10vw
    }
    #main_text02 .main_text_small_img_wrapper:nth-child(2) {
        right: 6vw;
        bottom: 0;
        left: auto;
        z-index: 2
    }
    #main_text02 .main_text_big_img {
        height: 40vh;
        width: 100%;
        padding: 0
    }
    #main_text02 .main_text_big_img img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }
    #main_text03 .main_text_small_img_wrapper:nth-child(2) {
        z-index: 2
    }
    #main_text03 .main_text_big_img {
        height: 50vh;
        width: 100%
    }
    #main_text03 .main_text_big_img img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }
}

#nagare {
    background-color: #fff;
    padding-left: 5%;
    padding-bottom: 7vw
}

.nagare_sticky {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.nagare_sticky_left {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 15%;
    height: 100vh;
    display: flex;
    align-items: center
}

.nagare_sticky_left_headline p {
    font-size: 1.25vw;
    margin-bottom: 1vw;
    font-family: 'Noto Serif JP';
    font-style: normal;
    font-weight: 600;
    line-height: 2;
    letter-spacing: .12em
}

.nagare_sticky_left li a {
    text-decoration: none;
    display: block;
    font-size: 1.1vw;
    margin-bottom: 1.1vw;
    padding-left: .7vw
}

.nagare_sticky_right {
    width: 80%
}

.nagare_sticky_right_content {
    padding-top: 7vw;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: row-reverse
}

.nagare_sticky_right_content_right {
    width: 70%
}

.nagare_sticky_right_content_left {
    width: 25%
}

.nagare_sticky_right_content_title {
    font-family: 'Noto Serif JP';
    font-style: normal;
    font-weight: 700;
    font-size: 1.6vw;
    margin-bottom: 1.6vw
}

.nagare_sticky_right_content_txt {
    line-height: 2;
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 400;
    font-size: 1vw;
    letter-spacing: .12em
}

@media screen and (max-width:960px) {
    .nagare_sticky_left {
        width: 17%
    }
    .nagare_sticky_right_content {
        display: block;
        padding-top: 7.5vw
    }
    .nagare_sticky_right_content_right {
        width: 100%
    }
    .nagare_sticky_right_content_left {
        width: 100%;
        padding-top: 5vw
    }
    .nagare_sticky_left_headline p {
        font-size: 3.5vw
    }
    #nagare {
        padding-left: 3vw
    }
    .nagare_sticky_left li a {
        font-size: 2.5vw;
        padding-left: 0
    }
    .nagare_sticky_left {
        height: 40vh
    }
    .nagare_sticky_right_content_title {
        font-size: 3.5vw;
        margin-bottom: 3.5vw
    }
    .nagare_sticky_right_content_txt {
        font-size: 2.5vw
    }
    #main_text02 .main_text_visual {
        background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .6)), url(images/main_text_bg02-sp.jpg) no-repeat center center / cover
    }
    #main_text03 .main_text_visual {
        background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .6)), url(images/main_text_bg03-sp.jpg) no-repeat center center / cover
    }
}

.nagare_tab_content {
    display: none
}

.nagare_tab_content.tab-active {
    display: block
}

.nagare_tab_item.tab-active {
    border-bottom: 1px solid #000
}

.main_text_content {
    width: 60%
}

@media screen and (max-width:960px) {
    .main_text_title {
        display: none
    }
    .main_text_content {
        width: 100%
    }
}

#price {
    background-color: transparent
}

.price_inner {
    width: 62.5%;
    max-width: 100%;
    margin: 60px auto 0
}

.price_table {
    width: 100%;
    margin: 60px auto 0
}

.price_table_grid {
    display: grid;
    grid-template-rows: 5vw 5vw 5vw;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    font-family: 'Shippori Mincho';
    font-style: normal;
    font-weight: 600;
    font-size: 1.25vw
}

.price_table_grid.price_hour {
    grid-template-rows: 5vw 5vw 5vw 5vw 5vw 5vw
}

.price_table_grid .price_table_grid_chird {
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 5vw;
    color: #5A7A62;
    background-color: rgba(255, 255, 255, .7);
    border-bottom: 1px solid #5A7A62;
    border-right: 1px solid #5A7A62
}

.price_table_grid .price_table_grid_chird:nth-child(2n) {
    border-left: 1px solid #5A7A62
}

.price_table_grid .price_table_grid_chird:first-child {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
    background-color: #5A7A62;
    color: #fff;
    border-radius: 10px 10px 0 0
}

.price_table_grid .price_table_grid_chird:last-child {
    border-radius: 0 0 10px 0
}

.price_table_grid .price_table_grid_chird:nth-last-child(2) {
    border-radius: 0 0 0 10px
}

.price_table_grid_chird span {
    font-size: 1vw;
    font-weight: 400
}

.price_small {
    width: 100%;
    margin: 0 auto;
    padding-top: 4vw;
    font-family: 'Cinzel';
    font-style: normal;
    color: #fff;
    font-size: 1vw;
    line-height: 2
}

#price .section_title {
    color: #222;
    text-align: left;
    padding-bottom: 30px;
    font-family: 'Noto Serif JP';
    display: none
}

@media screen and (max-width:960px) {
    .price_inner .flexbox {
        display: block;
        padding-left: 5vw;
        padding-right: 5vw
    }
    .price_table {
        width: 100%
    }
    .price_table_grid {
        display: grid;
        grid-template-rows: 15vw 15vw 15vw;
        font-size: 4vw
    }
    .price_table_grid.price_hour {
        grid-template-rows: 15vw 15vw 15vw 15vw 15vw 15vw;
        padding-top: 7.5vw
    }
    .price_table_grid .price_table_grid_chird {
        line-height: 15vw
    }
    .price_small {
        width: 100%;
        padding-left: 6vw;
        padding-right: 6vw;
        font-size: 2.5vw;
        padding-top: 5vw
    }
    #price .section_title {
        font-size: 10vw;
        padding-left: 5vw;
        padding-bottom: 5vw
    }
    .price_table_grid_chird span {
        font-size: 2.5vw
    }
    .price_inner {
        width: 100%
    }
    .price_table {
        margin-top: 30px
    }
}

.price_table_grid_chird {
    position: relative
}

.price_table_grid_chird span {
    display: block;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: -1.5vw;
    letter-spacing: .1em
}

@media screen and (max-width:960px) {
    .price_table_grid_chird span {
        bottom: -4vw
    }
}

#goods_banner {
    background-color: #fff;
    overflow: hidden
}

.goods_banner_bg {
    width: 100vw;
    height: 120vh;
    margin: 0 auto;
    border: 1px solid #000;
    background: url(images/goods01.jpg) no-repeat top center / cover;
    position: relative
}

.goods_banner_bg::before {
    background-color: rgba(0, 0, 0, .3);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: ' '
}

.goods_banner_content {
    position: absolute;
    bottom: 30%;
    color: #fff;
    font-weight: 700;
    text-align: center;
    width: 100%;
    font-family: 'Cinzel'
}

.goods_banner_title {
    font-style: normal;
    font-weight: 400;
    font-size: 2.5vw;
    padding-bottom: .7vw
}

.goods_banner_txt {
    padding-bottom: 1.4vw;
    font-size: 1.25vw;
    font-family: 'Noto Sans JP', sans-serif
}

.goods_banner_btn a {
    text-decoration: none;
    border: 1px solid #fff;
    background-color: rgba(0, 0, 0, .3);
    display: inline-block;
    padding: .8vw 1.6vw;
    font-family: 'Noto Serif JP';
    font-style: normal;
    font-weight: 400;
    letter-spacing: .16em;
    text-align: center;
    transition: all 0.5s ease-in-out;
    font-size: 1.1vw
}

.goods_banner_btn a:hover {
    background-color: rgba(255, 255, 255, .5);
    border: 1px solid #000;
    color: #000
}

@media screen and (max-width:960px) {
    .goods_banner_bg {
        width: 100vw;
        height: 100vh;
        background-position-x: right
    }
    .goods_banner_title {
        font-size: 5vw;
        padding-bottom: 3vw
    }
    .goods_banner_txt {
        padding-bottom: 5vw;
        font-size: 3vw
    }
    .goods_banner_btn a {
        padding: 2vw 3vw;
        font-size: 3vw
    }
    .goods_banner_content {
        bottom: 20%
    }
}

#access_small {
    padding-top: 7vw;
    padding-bottom: 7vw;
    background-color: #fff
}

.access_small_content {
    max-width: 60%
}

#access_small .section_title {
    font-size: 2vw
}

#access_small .flexbox {
    align-items: center;
    justify-content: space-around
}

.access_small_title {
    font-family: 'Noto Serif JP';
    font-style: normal;
    font-weight: 600;
    line-height: 1.8;
    font-size: 1.25vw;
    letter-spacing: .1em;
    margin-top: 40px
}

.access_small_txt {
    margin: 1vw 0 0 .7vw;
    font-size: 1vw;
    line-height: 2.4
}

@media screen and (max-width:960px) {
    #access_small .flexbox {
        display: block
    }
    #access_small .section_title {
        font-size: 6vw;
        text-align: left
    }
    .access_small_content {
        max-width: 100%
    }
    .access_small_title {
        font-size: 3.2vw;
        margin-top: 20px
    }
    .access_small_txt {
        font-size: 2vw
    }
}

.map_txt_btn {
    overflow: hidden;
    display: inline-block;
    padding: .8vw 1.6vw;
    border: 1px solid #222;
    line-height: 1.4;
    font-size: 1vw;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 30px
}

.map_txt_btn a {
    text-decoration: none;
    font-family: "Playfair Display", YuMincho, Yu Mincho, serif
}

@media screen and (max-width:960px) {
    .map_txt_btn {
        margin-top: 5vw;
        padding: 2vw 3vw;
        font-size: 3vw
    }
}

#mobile_reserve {
    display: none
}

@media screen and (max-width:960px) {
    #mobile_reserve {
        display: block;
        width: 100%;
        position: fixed;
        bottom: 0;
        z-index: 8;
        background: rgba(26, 25, 24, .8)
    }
    #mobile_reserve a {
        display: block;
        text-decoration: none;
        padding: 12px 20px;
        text-align: center;
        color: #fff;
        font-size: 16px;
        font-family: "Noto serif JP";
        letter-spacing: .1em
    }
}

.footer_triangle {
    display: none
}

.credit .footer_triangle {
    display: inline-block
}

.credit_title {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 400;
    font-size: 1vw;
    color: #fff;
    cursor: pointer
}

.credit_body {
    margin-top: 1.4vw;
    padding: 1.4vw 1.4vw .7vw;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 600;
    font-size: .8vw;
    line-height: 1;
    letter-spacing: .16em;
    color: #FFF;
    background-color: rgba(121, 132, 123, .3)
}

.credit_body span {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 400;
    font-size: .7vw;
    line-height: 1;
    letter-spacing: .16em
}

.credit_body ul {
    display: grid;
    grid-template-rows: 3.5vw 3.5vw;
    grid-template-columns: 10.5vw 10.5vw 10.5vw 10.5vw
}

.credit_body ul li {
    width: 100%;
    height: 100%;
    overflow: hidden
}

.credit_body ul li a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    position: relative;
    line-height: 3.5vw
}

.credit_body ul li a span {
    display: block;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    left: 50%;
    white-space: nowrap
}

@media screen and (max-width:960px) {
    .footer_item {
        padding-left: 0
    }
    .credit_title {
        text-align: center;
        font-size: 3vw;
        display: block;
        margin: 0 auto;
        width: 50%;
        position: relative;
        left: -10px
    }
    .credit_body ul {
        grid-template-rows: 12.5vw 12.5vw 12.5vw 12.5vw;
        grid-template-columns: 50% 50%
    }
    .credit_body ul li a {
        line-height: 12.5vw
    }
    .credit_body {
        margin-top: 2.5vw;
        padding: 3.75vw 3.75vw 2vw
    }
    .credit_body ul li a {
        font-size: 3vw
    }
    .credit_body ul li a span {
        font-size: 2.5vw
    }
}

.credit_body {
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out
}

.credit_body.js-credit-active {
    visibility: visible;
    opacity: 1
}

.credit_title {
    text-decoration: underline;
    text-underline-offset: 4px;
    line-height: 1.5
}

.credit_title.js-credit-active {
    text-decoration: none
}

#js-credit-trigger .footer_triangle {
    transform: rotate(0deg);
    transition: transform 0.5s linear
}

#js-credit-trigger.js-credit-active .footer_triangle {
    transform: rotate(90deg)
}

@media screen and (max-width:960px) {
    .credit_body {
        height: 0;
        transition: opacity 0.5s ease-in-out 0.1s, visibility 0.5s ease-in-out 0.1s, height 0.3s linear
    }
    .credit_body.js-credit-height {
        height: 58.25vw
    }
    .credit_body.js-credit-active {
        height: 58.25vw
    }
}

#footer {
    position: relative
}

.copy {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    letter-spacing: .16em;
    color: #222;
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center
}

@media screen and (max-width:960px) {
    .copy {
        font-size: 2vw;
        bottom: 2.5vw
    }
}

#onsen_banner {
    background-color: #fff;
    overflow: hidden
}

#onsen_banner .goods_banner_bg {
    width: 100vw;
    height: 120vh;
    margin: 0 auto;
    border: 1px solid #000;
    background: url(images/m_txt_04-1.jpg) no-repeat top center / cover;
    position: relative
}

#news {
    padding-top: 7vw;
    padding-bottom: 7vw;
    background-color: #fff
}

.news_content {
    width: 60%
}

#news .section_title {
    font-size: 2vw
}

#news .flexbox {
    align-items: center;
    justify-content: space-around
}

.news_list_item {
    border-bottom: 1px solid rgba(34, 34, 34, .5)
}

.news_list_item:first-child {
    border-top: 1px solid rgba(34, 34, 34, .5)
}

.news_list_item a {
    display: flex;
    align-items: center;
    padding: 1.6vw;
    color: inherit;
    text-decoration: none
}

.news_list_left {
    width: 20vw;
    height: 14vw;
    margin: 0 1.6vw 0 0
}

.news_list_img {
    width: 20vw;
    height: 14vw;
    overflow: hidden
}

.news_list_img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.news_list_right {
    width: calc(100% - 21.6vw)
}

.news_list_label span {
    background-color: #000;
    color: #fff;
    display: inline-block;
    height: 1.5vw;
    vertical-align: top;
    line-height: 1.5vw;
    margin: 0 1vw 0 0;
    padding: 0 .5vw;
    font-size: .8vw;
    font-family: 'Noto Serif JP';
    font-style: normal;
    font-weight: 600
}

.news_list_txt {
    font-family: 'Noto Serif JP';
    font-style: normal;
    font-weight: 400;
    font-size: 1vw;
    line-height: 1.6;
    letter-spacing: .12em;
    color: #222;
    padding-top: .7vw;
    padding-bottom: .7vw
}

.news_list_date {
    text-align: right
}

.news_list_date span {
    font-family: 'Noto Serif JP';
    font-style: normal;
    font-weight: 400;
    font-size: .7vw;
    color: #222
}

@media screen and (max-width:960px) {
    #news .flexbox {
        display: block
    }
    #news .section_title {
        font-size: 6vw;
        text-align: left
    }
    .news_content {
        width: 100%
    }
    .news_title {
        font-size: 3.2vw;
        margin-top: 20px
    }
    .news_list_item a {
        padding: 3vw 0
    }
    .news_list_left {
        width: 30vw;
        height: 20vw;
        margin: 0 3vw 0 0
    }
    .news_list_img {
        width: 30vw;
        height: 20vw
    }
    .news_list_right {
        width: calc(100% - 33vw)
    }
    .news_list_txt {
        font-size: 2.5vw;
        padding-top: 1vw;
        padding-bottom: 1vw
    }
    .inner {
        width: 90vw
    }
    .news_list_label span {
        height: 4vw;
        line-height: 4vw;
        margin: 0 2vw 0 0;
        padding: 0 1vw;
        font-size: 2vw;
        vertical-align: baseline
    }
    .news_list_date span {
        font-size: 2vw
    }
}