/* @format */

/*--------------------------------
reset
--------------------------------*/
html,
body,
div,
p,
img,
iframe,
a,
span,
blockquote,
q,
address,
cite,
pre,
code,
em,
small,
strong,
b,
i,
header,
article,
section,
nav,
figure,
figcaption,
hgroup,
menu,
aside,
footer,
time,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
table,
tbody,
thead,
tfoot,
th,
tr,
td,
form,
fieldset,
legend,
label,
select,
input,
textarea,
button {
    margin: 0;
    padding: 0;
    border: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: baseline;
}
header,
article,
section,
nav,
figure,
figcaption,
hgroup,
menu,
aside,
footer {
    display: block;
}
ul li,
ol li {
    list-style-type: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
}
body {
    line-height: 1;
}
a {
    text-decoration: none;
}
img {
    vertical-align: middle;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
select,
option,
input,
textarea,
button {
    font: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}
input[type='radio'] {
    -webkit-appearance: radio;
    -moz-appearance: radio;
    appearance: radio;
}
input[type='checkbox'] {
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: checkbox;
}
blockquote::before,
blockquote::after,
q::before,
q::after {
    content: '';
    content: none;
}
[type='submit'],
[type='button'],
[type='reset'],
[type='file'],
button {
    cursor: pointer;
}
:focus {
    outline: none;
}
html {
    font-size: 62.5%;
}
body {
    font-family: YakuHanMP, 'dnp-shuei-mincho-pr6', sans-serif, 'Yu Mincho', serif, 'Apple Color Emoji',
        'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Sans Emoji';
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
}
a {
    color: inherit;
    -webkit-tap-highlight-color: rgba(238, 223, 227, 0.2);
}
sup,
sub {
    font-size: xx-small;
}

html,
body {
    overflow-y: auto;
    overscroll-behavior: auto;
}
body {
    overscroll-behavior-y: contain;
}
/*--------------------------------
common
--------------------------------*/
.ja-gothic {
    font-family: vdl-v7gothic, sans-serif;
}
.ja-mincho {
    font-family: YakuHanMP, 'dnp-shuei-mincho-pr6', sans-serif, 'Yu Mincho', serif, 'Apple Color Emoji',
        'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Sans Emoji';
}
.en-garamond {
    font-family: 'garamond-premier-pro', serif;
    font-weight: 500;
    font-style: normal;
}
.en-coforaffine {
    font-family: 'cofo-raffine', sans-serif, 'garamond-premier-pro', serif;
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
.is-italic {
    font-style: italic;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-left {
    text-align: left;
}
.small-text {
    font-size: 75%;
}
.mid-text {
    font-size: 125%;
}
.large-text {
    font-size: 150%;
}
.vertical-text {
    writing-mode: vertical-rl;
    -webkit-text-orientation: upright;
    text-orientation: upright;
    -webkit-font-feature-settings: normal;
    font-feature-settings: normal;
}
.fit-img {
    width: 100%;
    height: auto;
    vertical-align: middle;
}
.has-max {
    height: auto;
    max-width: 100%;
}
.flex-wrapper {
    display: flex;
    flex-wrap: wrap;
}
.flex-nowrap {
    flex-wrap: nowrap;
}
.align-center {
    align-items: center;
}
.justify-center {
    justify-content: center;
}
.has-gap {
    gap: 16px;
}
.col-2 {
    width: 50%;
}
.col-3 {
    width: calc(100% / 3);
}
.col-4 {
    width: calc(100% / 3);
}
.has-gap .col-2 {
    width: calc(50% - 8px);
}
.has-gap .col-3 {
    width: calc(100% / 3 - 11px);
}
.has-gap .col-4 {
    width: calc(100% / 4 - 12px);
}
@media screen and (max-width: 767px) {
    .col-2,
    .has-gap .col-2,
    .col-3,
    .has-gap .col-3 {
        width: 100%;
    }
    .has-gap .col-4 {
        width: calc(50% - 8px);
    }
    .has-gap .sp-col-3 {
        width: 100%;
    }
}
.img-wrapper {
    position: relative;
}
.img-wrapper .caption {
    padding: 0.4em 0;
    position: absolute;
    bottom: 0;
    left: 8px;
    right: 8px;
    z-index: 1;
}
.img-wrapper .caption.has-bg {
    left: auto;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.4em 0.6em;
    margin: 0;
}
.img-wrapper .caption.has-bg.left {
    left: 0;
    right: auto;
}
.inline-block {
    display: inline-block;
}
.grid-wrapper {
    display: grid;
}
.stack > * + * {
    margin-top: 32px;
}
.stack-half > * + * {
    margin-top: 16px;
}
@media screen and (max-width: 767px) {
    .stack-half > * + * {
        margin-top: 8px;
    }
}

/*--------------------------------
component
--------------------------------*/
.primary-heading {
    font-size: clamp(3rem, 2.38vw, 4rem);
    line-height: 1.4;
}
.secondary-heading {
    font-size: clamp(2rem, 1.66vw, 2.8rem);
    line-height: 1.4;
}
.tertiary-heading {
    font-size: clamp(1.8rem, 1.3vw, 2.2rem);
    line-height: 1.6;
}
.lead {
    font-size: clamp(1.4rem, 1.07vw, 1.8rem);
    line-height: 1.6;
}
.note {
    font-size: clamp(1.4rem, 0.95vw, 1.6rem);
    line-height: 1.5;
}
.caption {
    font-size: clamp(1rem, 0.714vw, 1.2rem);
    line-height: 1.6;
}
.block-heading {
    font-size: clamp(1.6rem, 1.19vw, 2rem);
    line-height: 1.6;
    letter-spacing: 0.03em;
    text-indent: 0.03em;
}
.section-title {
    font-size: clamp(5rem, 6.19vw, 10.4rem);
    color: #4b4b4b;
    letter-spacing: 0.06em;
}
.general-btn {
    width: 380px;
    height: 70px;
    position: relative;
    z-index: 2;
    display: inline-flex;
    font-size: 2rem;
    justify-content: center;
    align-items: center;
    border-radius: 35px;
    overflow: hidden;
    transition-duration: 0.4s;
}
@media screen and (max-width: 767px) {
    .general-btn {
        max-width: 295px;
        height: 56px;
        font-size: 1.6rem;
    }
}
.request-btn {
    background: #b2ac7b;
    color: #fff;
}
.general-btn::after {
    width: 18px;
    height: 15px;
    display: block;
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    z-index: 2;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 18px auto;
    transform: translateY(-50%);
    transition: 0.3s ease-out;
}
.request-btn::after {
    background-image: url(../img/common/arrow-white.svg);
}
.limited-btn {
    background: #866943;
    color: #fff;
}
.ghost-btn {
    color: #87969c;
    border: 1px solid;
}
.ghost-btn::after {
    background-image: url(../img/common/arrow-pink.svg);
    transition: 0.3s ease-out;
}
.more-btn {
    width: 240px;
    height: 38px;
    display: flex;
    position: relative;
    z-index: 2;
    justify-content: center;
    align-items: center;
    border-radius: 35px;
    font-size: 1.5rem;
    color: #292929;
    border: 1px solid;
    overflow: hidden;
    transition-duration: 0.4s;
}
.general-btn::before,
.more-btn::before {
    margin: auto;
    padding-top: 100%;
    width: 100%;
    height: 0;
    background: #292929;
    border-radius: 50%;
    content: '';
    display: block;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: -1;
    transform: translateY(-50%) scale(0.1);
    transition: opacity 0.5s, transform 0s;
    transition-delay: 0s, 0.4s;
}
.request-btn::before {
    background-color: #736f50;
}
.ghost-btn:hover {
    color: #fff;
    border-color: #292929;
}
.more-btn:hover {
    color: #fff;
    border-color: #292929;
}
.general-btn:hover::before,
.more-btn:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    transition-delay: 0s;
    transition: opacity 0.4s, transform 0.3s ease-in-out;
}
.more-btn::after {
    width: 8.5px;
    height: 7px;
    display: block;
    content: '';
    position: absolute;
    right: 13px;
    top: 50%;
    z-index: 2;
    background: url(../img/common/arrow-pink.svg) no-repeat center center;
    background-size: 8.5px auto;
    transform: translateY(-50%);
    transition: 0.3s ease-out;
}
.general-btn:hover::after {
    right: 8px;
}
.ghost-btn:hover::after,
.more-btn:hover::after {
    right: 8px;
    background-image: url(../img/common/arrow-white.svg);
}
.error-text {
    margin: 8px auto 0;
    font-size: 1.6rem;
    color: #c90000;
    background: #ffdede;
    border-radius: 40px;
    max-width: 300px;
    padding: 12px;
}

/*--------------------------------
layout
--------------------------------*/
.container {
    overflow-x: hidden;
    overflow-y: hidden;
}
/*.has-header .container {
    padding-top: 135px;
}*/
@media screen and (max-width: 767px) {
    .has-header .container {
        padding-top: 68px;
    }
}
.general-section .inner {
    margin: 0 auto;
    padding: 80px 0;
    width: calc(100% - 48px);
    max-width: 1300px;
}
@media screen and (max-width: 767px) {
    .general-section .inner {
        padding: 40px 0;
    }
}
.general-section .inner-min {
    padding: 40px 0;
}
@media screen and (max-width: 767px) {
    .general-section .inner-min {
        padding: 24px 0;
    }
}
.general-section .inner-wide {
    max-width: 1600px;
}
.general-section .inner-narrow {
    max-width: 800px;
}
.general-section .inner-fit {
    width: 100%;
    max-width: none;
}
.general-section .inner-full {
    max-width: none;
}
.general-section .inner + .inner {
    padding-top: 0;
}
@media screen and (max-width: 767px) {
    .general-section .sp-inner-fit {
        width: 100%;
    }
}
.btn-space {
    text-align: center;
}
* + .btn-space {
    margin-top: 40px;
}
.page-title {
    position: absolute;
    top: 2vw;
    left: 5.4vw;
    z-index: 5;
}

/*--------------------------------
header
--------------------------------*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    transition: 0.2s ease-out;
}

@media screen and (min-width: 901px) {
    .is-compact .header {
        background: #fff;
    }
}
.header.header-transparent {
    background: transparent;
}
.header .header-inner {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.header .menu-btn {
    margin-left: 40px;
    font-size: 1.6rem;
    color: #231815;
    transition: 0.6s;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.header .menu-btn * {
    pointer-events: none; /* 子要素を無効化して親だけ反応させる */
}
.header .menu-btn:hover {
    opacity: 0.7;
}
.header .menu-btn.none {
    opacity: 0;
    pointer-events: none;
}

.logo {
    font-size: clamp(1.4rem, 1.8vw, 3rem);
    text-align: center;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.header .nav-container .btn {
    padding: 4px 0;
    font-size: 1.6rem;
    display: block;
    text-align: center;
    transition: 0.6s;
}
.header .nav-container .btn:hover {
    opacity: 0.7;
}
.header .nav-container .btn.entry-btn {
    padding: 4px 30px;
    font-size: 2rem;
    color: #fff;
    background: #404f70;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.header .nav-container .btn.limited-btn {
    padding: 4px 30px;
    font-size: 2rem;
    color: #fff;
    background: #866943;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.name-pending {
    position: relative;
}
.name-pending-icon {
    position: absolute;
    color: #fff;
    background: #333;
    padding: 4px;
    bottom: -26px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.3rem;
}

.nav-container {
    padding-right: 40px;
    display: flex;
    flex-direction: column;
}
/*@media screen and (max-width: 900px) {
    .nav-container {
        display: block;
        max-width: 240px;
        position: fixed;
        top: 60px;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        transform: translateX(100%);
        pointer-events: none;
        transition: transform 0.4s cubic-bezier(0.7, 0, 0.84, 0);
    }
    .is-open {
        height: 100%;
        overflow: hidden;
    }
    .is-open .nav-container {
        transform: translateX(0);
        pointer-events: all;
    }
}*/
@media screen and (max-width: 767px) {
    .header {
        height: 60px;
    }
    .header .header-inner {
        height: 60px;
        background: #fff;
        transition: 0.6s ease-in;
    }
    .header.header-transparent .header-inner {
        background: transparent;
    }
    .logo {
    }
    .logo a {
        height: 26px;
    }
    .header .menu-btn {
        margin-left: 10px;
        font-size: 1.2rem;
    }
    .name-pending-icon {
        padding: 3px 5px;
        font-size: 0.7rem;
        bottom: -15px;
    }
    .header .nav-container .btn {
        padding: 4px 8px;
        font-size: 1.4rem;
    }
    .header .nav-container .btn.entry-btn {
        padding: 4px 12px;
        font-size: 1rem;
    }
    .nav-container {
        padding-right: 10px;
    }
}
.gnav {
    padding-right: 40px;
    height: 100%;
    justify-content: flex-end;
    align-items: center;
    order: 2;
    gap: 24px;
    transition: 0.2s ease-out;
}
.gnav .nav-list {
    height: 40px;
}

.gnav .nav-link {
    height: 100%;
    padding: 0 12px;
    display: block;
    text-align: center;
    position: relative;
    animation: fadeIn 1s ease-out 0.4s both;
}
@media screen and (max-width: 900px) {
    .gnav {
        padding: 40px 0;
        height: auto;
        flex-direction: column;
        order: 2;
        gap: 24px;
    }
}
.gnav .nav-link::after {
    width: 0;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    background: #87969c;
    transition: width 0.3s ease-out;
}
.gnav .nav-link:hover::after,
.gnav .nav-link.is-active::after {
    width: 100%;
}
.en-nav,
.ja-nav {
    display: block;
    line-height: 1.2;
}
.en-nav {
    font-size: 1.8rem;
}
.ja-nav {
    font-size: 1.2rem;
}
.upper-nav {
    align-items: center;
    max-width: 500px;
    gap: 10px;
}
.upper-nav .nav-list {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-right: 24px;
}
@media screen and (min-width: 901px) {
    .upper-nav .nav-list::after {
        width: 6px;
        height: 6px;
        display: block;
        content: '';
        border-right: 1px solid #222;
        border-bottom: 1px solid #222;
        transform: rotate(-45deg);
    }
}
@media screen and (max-width: 1380px) {
    .nav-container {
        padding-right: 0;
        margin-right: -18px;
    }
    .upper-nav {
        gap: 4px 10px;
    }
    .upper-nav .btn-list {
        width: 44%;
    }
    .header .nav-container .btn {
        font-size: 1.2vw;
    }
    .header .nav-container .btn.entry-btn {
        font-size: 1.3vw;
    }
    .header .nav-container .btn.limited-btn {
        font-size: 1.3vw;
    }
}
@media screen and (max-width: 900px) {
    .nav-container {
        padding-right: 10px;
        margin-top: 30px;
        margin-right: 0;
    }
    .upper-nav {
        flex-direction: column;
        max-width: 180px;
    }
    .upper-nav .btn-list {
        width: 100%;
    }
    .header .nav-container .btn {
        font-size: 1.4rem;
    }
    .header .nav-container .btn.entry-btn {
        padding: 4px 20px;
        font-size: 1.4rem;
    }
    .header .nav-container .btn.limited-btn {
        padding: 4px 20px;
        font-size: 1.4rem;
    }
}
@media screen and (max-width: 767px) {
    .nav-container {
        margin-top: 0;
    }
}
.cta-btn {
    width: 190px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.4;
}
@media screen and (min-width: 901px) {
    .is-compact .gnav {
        opacity: 0;
        transform: translateY(-10px);
    }
}
.hamburger {
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 30;
    text-align: center;
    transition: all 0.3s ease-out;
    cursor: pointer;
}
.hamburger i {
    margin: 3px 0;
    height: 2px;
    width: 30px;
    display: block;
    content: '';
    background: #000;
    mix-blend-mode: difference;
    transition: all 0.3s ease-out;
}
.active .hamburger i:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.active .hamburger i:nth-child(2) {
    opacity: 0;
}
.active .hamburger i:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
@media screen and (max-width: 767px) {
    .hamburger {
        width: 40px;
        height: 40px;
    }
    .hamburger i {
        width: 22px;
    }
}

/*--------------------------------
footer
--------------------------------*/

.footer-container {
    /* margin-top: -23%; */
    /* display: none; */
}
.footer-container.footer-active {
    display: block;
}
.footer .note {
    font-size: 1.7rem;
}
.footer-property-name {
    position: relative;
}
.footer-property-name .name-undecided {
    position: absolute;
    font-size: 1.3rem;
    color: #fff;
    background: #333;
    padding: 1px 3px 0;
    top: -24px;
    left: -24px;
}
.tel {
    padding: 40px 32px;
    text-align: center;
}
.tel-num {
    font-size: clamp(4rem, 3.21vw, 5.4rem);
    font-family: 'Times New Roman', Times, serif;
}
.address-wrap {
    padding: 40px 32px;
}
.foot-logo {
    margin: 0 auto;
    max-width: 930px;
    gap: 2vw;
    font-size: 1.4rem;
}
.foot-logo li {
    width: 30%;
}
.foot-logo a {
    margin-top: 24px;
    height: 48px;
    display: flex;
    align-items: center;
}
.foot-logo li:last-child a {
    margin-top: 20px;
}
.foot-logo li .logo-small {
    width: 84%;
}
@media screen and (max-width: 767px) {
    .footer-container {
        /*margin-top: -46%; */
    }
    .foot-logo li:first-child {
        margin-top: 0;
        width: 212px;
    }
    .foot-logo li {
        margin-top: 14px;
        width: 240px;
    }
    .foot-logo li:last-child {
        width: 240px;
    }
    .foot-logo a {
        margin-top: 8px;
    }
}
.copyright {
    padding: 8px 16px;
    background: #000;
    color: #fff;
    font-size: 1rem;
    line-height: 1.4;
    text-align: center;
    font-style: normal;
}
/*--------------------------------
top
--------------------------------*/
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #434f6e; /* 背景色 */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* ページ最前面 */
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
#loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
    background: #fff;
}
#loading-screen.hidden .loader:after {
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}
.loader {
    font-size: 10px;
    margin: 50px auto;
    text-indent: -9999em;
    width: 6em;
    height: 6em;
    border-radius: 50%;
    background: #ffffff;
    background: -moz-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
    background: -webkit-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
    background: -o-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
    background: -ms-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
    background: linear-gradient(to right, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
    position: relative;
    -webkit-animation: load3 1.4s infinite linear;
    animation: load3 1.4s infinite linear;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}
@media screen and (max-width: 767px) {
    .loader {
        width: 4em;
        height: 4em;
    }
}
.loader:before {
    width: 50%;
    height: 50%;
    background: #ffffff;
    border-radius: 100% 0 0 0;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
}
.loader:after {
    background: #434f6e;
    width: 85%;
    height: 85%;
    border-radius: 50%;
    content: '';
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
@-webkit-keyframes load3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes load3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.mv {
    position: relative;
}
.mv-text {
    max-width: 640px;
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
}

.mv-video-wrap {
    width: 100%;
    /*aspect-ratio: 2881 / 1760;*/
    aspect-ratio: 2881 / 1610;
    position: relative;
    overflow: hidden;
    background: #000;
    z-index: 30;
}

.mv-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mv-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 5s ease;
    pointer-events: none;
}
.mv-image.active {
    opacity: 1;
}
.mv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 767px) {
    .mv-video-wrap {
        /*aspect-ratio: auto; */
        aspect-ratio: 979 / 1738;
        width: 100%;
        height: 100dvh;
    }
}
/* stick調整 --------------------------------- */
.sticky-wrapper {
    position: relative;
    height: auto;
}
.mv {
}
.general-section.click-open-section {
}
/* コピー */
.main-copy-wrapper {
    position: absolute;
    width: 60%;
    max-width: 640px;
    top: 64%;
    left: 50%;
    height: auto;
    transform: translateX(-50%);
    z-index: 40;
    display: block;
}
.main-copy-wrapper.hidden {
    display: none;
}
.main-copy-wrapper02 {
    z-index: 20;
    position: absolute;
    width: 64%;
    max-width: 640px;
    top: 60%;
    left: 50%;
    height: auto;
    transform: translateX(-50%);
}
.main-copy-wrapper.fixed {
    position: fixed;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
}
.main-copy-wrapper img {
    position: absolute;
    width: 100%;
    transition: opacity 0.3s ease;
}
.main-copy-wrapper .logo-white {
    opacity: 1;
}
.main-copy-wrapper .logo-blue {
    opacity: 1;
}
@media screen and (max-width: 1200px) {
    .main-copy-wrapper {
        max-width: 480px;
    }
    .main-copy-wrapper02 {
        max-width: 480px;
    }
}
@media screen and (max-width: 480px) {
    .main-copy-wrapper {
        max-width: 560px;
        width: 80%;
    }
    .main-copy-wrapper02 {
        max-width: 560px;
        width: 80%;
    }
}
/* stick調整ここまで --------------------------------- */

.nav-fix {
    position: absolute;
    width: 88%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 62px;
    background: #866943;
    z-index: 1000 !important;
    border-radius: 14px 14px 0 0;
}
.nav-bottom-fix {
    opacity: 0;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s, height 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s,
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s, position 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}
.nav-bottom-fix.fixed {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    /* display: none; 一時的 */
    transition: 0.4s ease-in;
}
.nav-bottom-fix.fixed.fixed-none {
    opacity: 0;
    pointer-events: none;
}
.nav-bottom-fix.footer-none {
    opacity: 0;
    pointer-events: none;
    background: none;
    transition: opacity none;
}
.nav-bottom-fix.footer-none .nav-lists {
    transition: 0.4s;
    opacity: 0;
    pointer-events: none;
}
.nav-mv-fix {
}
.nav-mv-fix.hidden {
    opacity: 0;
    pointer-events: none;
}
.nav-fix .nav-lists {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 20px;
    width: 100%;
    height: 100%;
    text-align: center;
    opacity: 1;
    border-radius: 10px 10px 0 0;
    /*transition: 0.2s ease-out;
    transition-delay: 0.4s;*/
    transition: transform opacity 0.6s ease-in;
}
.nav-fix .nav-lists.hidden {
    transform: translateY(-500px); /* 上に移動 */
    height: 0;
    opacity: 0;
    overflow: hidden;
}
.nav-fix .nav-lists.footer-nav-hidden {
    transform: translateY(-500px); /* 上に移動 */
    height: 0;
    overflow: hidden;
}
.nav-fix .nav-list {
    width: 14%;
    font-size: 1.7rem;
    color: #fff;
}
.nav-fix .nav-list.nav-list-menuopen {
    width: 100%;
}
.nav-fix .nav-list .nav-btn {
    transition: 0.6s;
}
.nav-fix .nav-list .nav-btn.nav-btn-menuopen {
    cursor: pointer;
}
.nav-fix .nav-list .nav-btn:hover {
    opacity: 0.7;
}
.nav-fix.footer-contents-container {
    margin-bottom: 20%;
    position: inherit;
    width: 88%;
    height: 100%;
    overflow: hidden;
    margin: 0 auto -8%;
    transform: translateX(0);
    overflow: hidden;
}
.nav-fix.footer-contents-container.footer-contents-container-active {
    /*margin-bottom: -24%; */
}
.nav-fix.footer-contents-container .nav-bottom-contents {
    opacity: 1;
    height: 100%;
}
@media screen and (max-width: 2140px) {
    .nav-fix.footer-contents-container {
        margin: 0 auto -10%;
    }
}
@media screen and (max-width: 1600px) {
    .nav-fix.footer-contents-container {
        margin: 0 auto -12%;
    }
}
@media screen and (max-width: 1400px) {
    .nav-fix.footer-contents-container {
        margin: 0 auto -20%;
    }
}
@media screen and (max-width: 767px) {
    .nav-fix.footer-contents-container .nav-bottom-contents {
        transform: translateY(0);
    }
}
.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

@-webkit-keyframes navFadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 80px, 0);
        transform: translate3d(0, 80px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes navFadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 50px, 0);
        transform: translate3d(0, 50px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.navFadeInUp {
    -webkit-animation-name: navFadeInUp;
    animation-name: navFadeInUp;
    animation-delay: 1.8s;
}

@media screen and (max-width: 767px) {
    .nav-fix {
        width: 88%;
        height: 50px;
    }
    .nav-fix .nav-lists {
        flex-wrap: wrap;
        gap: 0;
    }
    .nav-fix .nav-list {
        width: 30%;
        font-size: 1.4rem;
        letter-spacing: -0.03em;
        color: #fff;
    }
    .nav-fix .nav-list.nav-list-menuopen {
        width: 30%;
    }
    .nav-fix.footer-contents-container.footer-contents-container-active {
        margin-bottom: 0;
    }
}
.click-open-inner {
    padding: 500px 0 0;
}
.click-open-img {
    margin: 0 auto;
    width: 78px;
    height: 85px;
    cursor: pointer;
    position: relative;
}
.click-open {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 100%;
    height: 100%;
    background-size: contain;
    transition: 0.6s;
}
.click-open-bg {
    transition: 0.6s;
}
.click-open-img img:hover {
    opacity: 0.7;
}
.click-open-img:hover .click-open-bg {
    transform: rotate(90deg);
}
.click-open-img img.click-open {
    opacity: 1;
    transition: 0.6s;
}
.click-open-img img.click-close {
    opacity: 0;
    pointer-events: none;
}
.click-open-img.active img.click-open {
    opacity: 0;
    pointer-events: none;
}
.click-open-img.active .click-open-bg {
    opacity: 0;
}
.click-open-img.active img.click-close {
    opacity: 1;
    pointer-events: auto;
}
.click-open-note {
    padding-top: 820px;
    margin-top: -180px;
    display: none;
    opacity: 0;
    position: relative;
    transition: opacity 1s ease, transform 0.6s ease;
    transform: translateY(-60px);
}
.click-open-note.show {
    display: block;
}
.click-open-note.active {
    opacity: 1;
    transform: translateY(0);
}
.click-open-text {
    position: absolute;
    text-align: center;
    font-size: 1.5rem;
    line-height: 2.4;
    color: #404f70;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}
@media screen and (max-width: 1200px) {
    .click-open-inner {
        padding: 420px 0 0;
    }
}

@media screen and (max-width: 767px) {
    .click-open-inner {
        padding: 300px 0 0;
    }
    .click-open-img {
    }
    .click-open-text {
        width: 94%;
        font-size: 1.3rem;
    }
    .click-open-note {
        margin-top: -90px;
        padding-top: 600px;
    }
}
@media screen and (max-width: 480px) {
    .click-open-inner {
        padding: 300px 0 0;
    }
}

.kodo {
    margin: 50px auto 0;
}
.kodo-inner {
    margin: 0 auto;
    max-width: 1140px;
}
.kodo-heading {
    padding: 10px 0;
    text-align: center;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(228, 228, 233, 1) 10%,
        rgba(178, 178, 192, 1) 20%,
        rgba(136, 139, 159, 1) 30%,
        rgba(87, 95, 123, 1) 40%,
        rgba(75, 85, 114, 1) 50%,
        rgba(87, 95, 123, 1) 60%,
        rgba(136, 139, 159, 1) 70%,
        rgba(178, 178, 192, 1) 80%,
        rgba(228, 228, 233, 1) 90%,
        rgba(255, 255, 255, 1) 100%
    );
    color: #fff;
    font-size: 3rem;
}
.kodo-text {
    margin: 18px auto 0;
    text-align: center;
    color: #104583;
    font-size: 4rem;
    line-height: 1.2;
}
.kodo-text-sub {
    font-size: 2.6rem;
    display: inline-block;
    line-height: 1.4;
}
.kodo-property-name {
    position: relative;
}
.kodo-property-name-sub {
    padding: 3px 4px 5px;
    position: absolute;
    bottom: -28px;
    left: 56%;
    font-size: 1.3rem;
    color: #fff;
    background: #333;
}
@media screen and (max-width: 767px) {
    .kodo {
        margin: 74px auto 0;
    }
    .kodo-heading {
        padding: 2% 0;
        background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(178, 178, 192, 1) 10%,
            rgba(87, 95, 123, 1) 30%,
            rgba(75, 85, 114, 1) 50%,
            rgba(87, 95, 123, 1) 70%,
            rgba(178, 178, 192, 1) 90%,
            rgba(255, 255, 255, 1) 100%
        );
        font-size: 1.6rem;
        letter-spacing: -0.04em;
    }
    .kodo-text {
        margin: 14px auto 0;
        font-size: 2.8rem;
        letter-spacing: -0.02em;
        line-height: 1.4;
    }
    .kodo-text-sub {
        font-size: 1.8rem;
    }
    .kodo-property-name {
        margin-top: 10px;
    }
    .kodo-property-name-sub {
        padding: 2px 4px 2px;
        bottom: auto;
        left: -2px;
        font-size: 0.9rem;
        top: -18px;
    }
}
.usp {
    margin: 40px auto 0;
}
.usp-inner {
    margin: 0 auto;
    max-width: 1060px;
}
@media screen and (max-width: 767px) {
    .usp {
        margin: 50px auto 0;
    }
    .usp-inner {
        margin: 0 auto;
        max-width: 90%;
    }
}
.entry-btn-block {
    margin: 120px auto 0;
}
.entry-btn-block-wrap {
    margin: 0 auto;
    max-width: 770px;
    display: flex;
    justify-content: center;
    gap: 0 20px;
}
.entry-btn-block .entry-btn {
    padding: 24px 32px;
    background: #404f70;
    color: #fff;
    display: flex;
    justify-content: space-between;
    width: 48%;
    border-radius: 8px;
    transition: 0.6s;
    box-shadow: 3px 4px 5px rgba(0, 0, 0, 0.3);
}
.entry-btn-block .entry-btn:hover {
    opacity: 0.7;
}
.entry-btn-block .limited-btn {
    background: #866943;
}
.entry-btn-en {
    margin-top: 3px;
    font-size: 1.8rem;
    font-family: 'garamond-premier-pro', serif;
}
.entry-btn-jp {
    font-size: 1.9rem;
}
.btn-block-text {
    margin: 40px auto 0;
    text-align: center;
    font-size: 1.9rem;
    line-height: 1.4;
}
.btn-block-text:last-child {
    margin: 10px auto 0;
}
@media screen and (max-width: 767px) {
    .entry-btn-block {
        margin: 50px auto 0;
    }
    .entry-btn-block-wrap {
        max-width: 100%;
        gap: 20px 0;
        flex-direction: column;
    }
    .entry-btn-block .entry-btn {
        padding: 24px 36px;
        width: 100%;
    }
    .entry-btn-en {
        font-size: 1.4rem;
    }
    .entry-btn-jp {
        font-size: 1.5rem;
    }
    .btn-block-text {
        margin: 30px auto 0;
        font-size: 1.5rem;
    }
}

.pickup-section {
    height: 100%;
}
.pickup-section-inner {
    background: #fff;
    transition: 0.6s;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.pickup-text-block {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    gap: 1rem;
    font-size: 3rem;
    gap: 0 160px;
}
.pickup-text-block.pickup-text-left {
    position: absolute;
    top: 0;
}
.pickup-section.active .pickup-section-inner {
    background: #404f70;
}

.pickup-slider-container {
    margin-left: calc((100vw - 800px) / 2);
}
@media screen and (min-width: 2000px) {
    .pickup-slider-container {
        margin-left: calc((100vw - 1000px) / 2);
    }
}
@media screen and (max-width: 1520px) {
    .pickup-slider-container {
        margin-left: calc((100vw - 1100px) / 2);
    }
}
@media screen and (max-width: 1100px) {
    .pickup-slider-container {
        margin-left: calc((100vw - 800px) / 2);
    }
}
@media screen and (max-width: 900px) {
    .pickup-slider-container {
        margin-left: calc((100vw - 700px) / 2);
    }
}

.pickup-btn-wrap {
    width: 50vw;
    min-width: 660px;
    transition: 0.4s ease-out;
    transform: scale(0.8);
    transition: all 0.5s ease;
}
@media screen and (min-width: 2000px) {
    .pickup-btn-wrap {
        margin-top: 8%;
        min-width: 800px;
    }
}
.pickup-btn-wrap.btn-current {
    transform: scale(1);
}
.pickup-text-block {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    gap: 1rem;
    font-size: 3rem;
    gap: 0 160px;
}
.pickup-text-block.pickup-text-right {
    margin-top: -20px;
    position: absolute;
    bottom: 0;
}
.pickup-text {
    margin-top: -12px;
    font-size: 25rem;
    color: #404f70;
    animation: marquee-left 34s linear infinite;
    font-family: 'cofo-raffine', sans-serif, 'garamond-premier-pro', serif;
    font-display: swap;
    transition: 1.2s ease-in;
}
.pickup-section.active .pickup-text {
    color: #96aeda;
}
.pickup-text-right .pickup-text {
    margin-top: 0;
    margin-bottom: -80px;
    animation: marquee-right 34s linear infinite;
}
@keyframes marquee-left {
    0% {
        translate: 0;
    }
    100% {
        translate: calc(-100% - 1rem);
    }
}
@keyframes marquee-right {
    0% {
        translate: calc(-100% - 1rem);
    }
    100% {
        translate: 0;
    }
}
.pickup-slider {
    margin: -4% auto 0;
    z-index: 1;
    position: relative;
    display: flex;
    gap: 0;
}
.pickup-slider .slick-slide {
    opacity: 0.5; /* 中央以外は薄く */
    transform: scale(0.8); /* 中央以外は縮小 */
    transition: all 0.5s ease; /* なめらかに */
}
.pickup-slider .slick-center {
    opacity: 1;
    transform: scale(1); /* 中央は通常サイズ */
}
.pickup-slider-text-wrap {
    text-align: center;
    color: #fff;
}
.pickup-slider-text-en {
    margin: 0 auto;
    max-width: 54%;
    font-size: 2.5rem;
    border-bottom: 1px solid #fff;
    position: relative;
    line-height: 0.8;
}
.pickup-slider-text-en::before,
.pickup-slider-text-en::after {
    content: '•';
    position: absolute;
    top: 56%;
    font-size: 2rem;
    color: #fff;
}
.pickup-slider-text-en::before {
    left: -1px; /* 左の点の位置調整 */
}
.pickup-slider-text-en::after {
    right: -1px; /* 右の点の位置調整 */
}
.pickup-slider-text-jp {
    margin-top: 10px;
    font-size: 3.2rem;
}
.pickup-slider .pickup-comingsoon {
    pointer-events: none;
}
.pickup-slider .pickup-comingsoon .pickup-btn .pickup-btn-img-wrap {
    position: relative;
}
.pickup-slider .pickup-comingsoon .pickup-btn .pickup-btn-img-wrap:before {
    content: 'comingsoon';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
    color: #fff;
    font-size: 3rem;
}
.pickup-slider .pickup-btn .pickup-btn-img {
    display: inline-block;
    transition: transform 0.3s ease;
}
.pickup-slider .pickup-btn:hover .pickup-btn-img {
    transform: scale(1.03);
}

@media screen and (max-width: 767px) {
    .pickup-section {
        position: relative;
        width: 100%;
    }
    .pickup-section-inner {
        background: #fff;
        transition: 0.6s;
        height: 99vh; /* 画面高さいっぱい */
        overflow: hidden;
        display: block;
    }
    .pickup-slider-container {
        margin-left: auto;
        /*margin-bottom: calc((100vw - 1500px) / 2);*/
    }
    .pickup-slider {
        flex-direction: column;
        align-items: center;
    }
    .pickup-btn-wrap {
        width: 80%;
        min-width: auto;
        position: relative;
    }
    .pickup-text-block.pickup-text-left {
        position: inherit;
    }
    .pickup-text {
        margin-top: -4px;
        font-size: 8rem;
    }
    .pickup-text.pickup-text-sub {
        margin-left: -110px;
    }
    .pickup-slider {
        margin: 0 auto 0;
    }
    .pickup-slider .slick-list {
        margin: 0 auto;
        height: auto !important;
        max-width: 80%;
    }
    /* 共通の小さいサイズ */
    .pickup-slider .slick-slide {
        transform: scale(0.88);
        transition: transform 0.3s ease;
        opacity: 0.6;
    }

    /* 現在のスライド（＝先頭表示されてるもの）は大きく */
    .pickup-slider .slick-slide.slick-current {
        transform: scale(1);
        opacity: 1;
    }
    .pickup-slider-text-jp {
        margin-top: 10px;
        font-size: 1.6rem;
    }
    .pickup-slider-text-en {
        margin: 0 auto;
        max-width: 54%;
        font-size: 1.4rem;
        border-bottom: 1px solid #fff;
        position: relative;
        line-height: 0.8;
    }
    .pickup-slider-text-en::before,
    .pickup-slider-text-en::after {
        top: 65%;
        font-size: 1rem;
    }
    .pickup-slider-text-en::before {
        left: -3px;
    }
    .pickup-slider-text-en::after {
        right: -3px;
    }
    .pickup-text-block.pickup-text-right {
        margin-top: -8px;
        position: absolute;
        bottom: 0;
    }
    .pickup-text-right .pickup-text {
        margin-bottom: -25px;
    }
    .pickup-slider .pickup-comingsoon .pickup-btn .pickup-btn-img-wrap:before {
        font-size: 2rem;
    }
}
@media screen and (max-width: 480px) {
    .pickup-section-inner {
        height: 96dvh;
    }
}
.general-section.plan-section {
    padding: 214px 0 34%;
    background-image: url(../img/top/plan-bg.webp);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 40%;
}
.plan-section-inner {
    position: relative;
}
.plan-section-inner .plan-note {
    margin: 40px auto 48px;
    max-width: 980px;
    font-size: 2rem;
    color: #434f6e;
    line-height: 1.5;
}
.plan-section-ttl {
    color: #866943;
}
.plan-section-ttl .ttl-border {
    position: relative;
    font-size: 20rem;
    display: inline-block;
    line-height: 0.8;
    font-family: 'cofo-raffine', sans-serif;
}
.plan-section-ttl .ttl-border:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: #866943;
    left: 0;
    bottom: 43px;
    transform: translate(0px, 30px);
    transition: 0.8s ease;
    opacity: 0;
}
.plan-section-ttl .ttl-border:after {
    content: '•';
    position: absolute;
    right: -2px;
    bottom: 30px;
    font-size: 3rem;
    color: #866943;
    transform: translate(0px, 30px);
    transition: 0.8s ease;
    opacity: 0;
}
.plan-section-ttl .ttl-border.animate::before {
    transform: translate(0px, 0px);
    opacity: 1;
}
.plan-section-ttl .ttl-border.animate::after {
    transform: translate(0px, 0px);
    opacity: 1;
}
.plan-section-btns {
    margin: 78px auto 0;
    max-width: 1060px;
    display: flex;
    justify-content: center;
    gap: 0 20px;
}
.plan-section-btn {
    width: 30%;
}
.plan-section-btn a {
    background: #8e95a7;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    padding: 26px 0 30px;
    width: 100%;
    height: 100%;
    display: block;
    transition: 0.6s;
}
.plan-section-btn.btn-limited a {
    background: #8f7a5c;
}
.plan-section-btn a:hover {
    opacity: 0.7;
}
.plan-section-btn.btn-limited a {
    padding: 8px 0 0;
    position: relative;
}
.plan-section-btn .plan-name {
    display: block;
    font-size: 5.7rem;
}
.plan-section-btn .plan-name .text-small {
    font-size: 1.6rem;
}
.plan-area {
    margin: 8px auto 0;
    padding-bottom: 10px;
    max-width: 80%;
    display: block;
    font-size: 2.7rem;
    border-bottom: 1px solid #fff;
}
.plan-detail {
    margin: 10px auto 0;
    display: block;
    font-size: 1.9rem;
}
.plan-section-btn.btn-limited a .plan-limited {
    padding: 8px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    color: #8f7a5c;
    display: block;
    border: 1px solid #8f7a5c;
    border-radius: 0 0 10px 10px;
    font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
    .general-section.plan-section {
        padding: 90px 0 40%;
        background-image: none;
    }
    .plan-section-ttl .ttl-border {
        font-size: 8rem;
    }
    .plan-section-ttl .ttl-border:before {
        bottom: 17px;
    }
    .plan-section-ttl .ttl-border:after {
        bottom: 4px;
    }
    .plan-section-inner .plan-note {
        margin: 30px auto 0;
        text-align: center;
        font-size: 1.4rem;
        width: 100%;
    }
    .plan-section-btns {
        margin: 40px auto 0;
        max-width: 80%;
        flex-direction: column;
        gap: 20px 0;
    }
    .plan-section-btn {
        width: 100%;
    }
    .plan-section-btn.btn-limited a {
        padding: 26px 0 40px;
    }
    .plan-section-btn .plan-name {
        font-size: 4.56rem;
    }
    .plan-section-btn .plan-name .text-small {
        font-size: 1.28rem;
    }
    .plan-area {
        font-size: 2.16rem;
    }
    .plan-detail {
        font-size: 1.52rem;
    }
    .plan-section-btn.btn-limited a .plan-limited {
        font-size: 1.2rem;
    }
}

.general-section.contents-section {
    background: #866943;
}
.contents-inner {
    margin: 0 auto;
    padding: 80px 0 100px;
    max-width: 1230px;
    width: calc(100% - 50px);
    position: relative;
}
.footer-contents-container .contents-inner {
    padding: 180px 0 180px;
}
.contents-close-btn {
    color: #fff;
    position: sticky;
    top: 14px;
    left: 14px;
    font-size: 4rem;
    cursor: pointer;
    display: none;
}
.active .contents-close-btn {
    display: inline-block;
}
.footer-nav-active .contents-close-btn {
    display: none;
}
.contents-ttl {
    text-align: center;
    color: #fff;
    font-family: 'garamond-premier-pro', serif;
    font-size: 3.1rem;
}
.contents-lists {
    margin: 40px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 34px 4%;
}
.contents-list {
    width: 16%;
    position: relative;
    cursor: pointer;
}
.contents-list.contents-comingsoon {
    pointer-events: none;
}
.contents-list:before {
    padding: 5px;
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 140px;
    border: 1px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    overflow: visible;
    z-index: 10;
    display: block;
    pointer-events: none;
}
.contents-list-btn {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 140px;
    overflow: hidden;
    display: block;
}
.contents-comingsoon .contents-list-btn:before {
    position: absolute;
    content: '';
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    z-index: 2;
}
.contents-list-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.contents-list:hover .contents-list-btn img {
    transform: scale(1.1);
}
.contents-list-btn .list-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    color: #fff;
    text-align: center;
    font-family: 'garamond-premier-pro', serif;
    font-size: 2.3rem;
    width: 100%;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
}
.contents-list-btn .list-name .list-name-num {
    margin-bottom: 10px;
    display: block;
    font-size: 3.1rem;
    position: relative;
}
.contents-list-btn .list-name .list-name-num:after {
    position: absolute;
    width: 44px;
    height: 1px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    background: #fff;
    box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.35);
}
.contents-list-btn .list-name .list-name-ja {
    margin-top: 10px;
    display: block;
    font-size: 1.6rem;
    line-height: 1.4;
}
.contents-list-btn .list-name .list-name-ja .list-name-ja-sub {
    margin-top: 4px;
    display: block;
    font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
    .contents-inner {
        padding: 40px 0 40px;
    }
    .footer-contents-container .contents-inner {
        padding: 140px 0 70px;
    }
    .contents-close-btn {
        top: 4px;
        left: 0;
        font-size: 3rem;
    }
    .contents-ttl {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    .contents-lists {
        margin: 20px auto 0;
        gap: 20px 8%;
        max-width: 94%;
        justify-content: center;
    }
    .contents-list {
        width: 26%;
    }
    .contents-list-btn .list-name .list-name-num {
        margin-bottom: 8px;
        font-size: 1.8rem;
    }
    .contents-list-btn .list-name {
        font-size: 1.2rem;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9), 0 2px 4px rgba(0, 0, 0, 0.8), 0 2px 6px rgba(0, 0, 0, 0.7);
    }
    .contents-list-btn .list-name .list-name-ja {
        font-size: 1.1rem;
    }
    .contents-list-btn .list-name .list-name-ja .list-name-ja-sub {
        font-size: 0.9rem;
        margin-bottom: 3px;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9), 0 1px 2px rgba(0, 0, 0, 0.9), 0 2px 3px rgba(0, 0, 0, 0.9);
    }
    .contents-list-btn img {
        filter: brightness(0.7);
    }
}

/* ナビ内のCONTENTSエリア */
.nav-fix .nav-bottom-contents {
    background: #866943;
    opacity: 0;
    transform: translateY(-10px);
    transition: 1.6s;
}

.nav-fix.active {
    height: 80%;
    overflow-y: auto;
    width: 100%;
    border-radius: 0;
}
.nav-fix.active .nav-bottom-contents {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
@media screen and (max-width: 767px) {
    .nav-fix.active {
        height: 80%;
    }
}
.nav-bottom-fix.footer-nav-active {
    height: 100%;
    overflow-y: auto;
    width: 100%;
    position: relative;
    transform: translateX(-50%) translateY(-40%);
}
.nav-bottom-fix.footer-nav-active .nav-bottom-contents {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.nav-bottom-fix.footer-nav-active.footer-relative {
    position: relative;
}
@media screen and (max-width: 1600px) {
    .nav-bottom-fix.footer-nav-active {
        transform: translateX(-50%) translateY(-30%);
    }
}
@media screen and (max-width: 1240px) {
    .nav-bottom-fix.footer-nav-active {
        transform: translateX(-50%) translateY(-24%);
    }
}
@media screen and (max-width: 980px) {
    .nav-bottom-fix.footer-nav-active {
        transform: translateX(-50%) translateY(-14%);
    }
}
@media screen and (max-width: 767px) {
    .nav-bottom-fix.footer-nav-active {
        transform: translateX(-50%) translateY(-30%);
    }
}

/*--------------------------------
privacy
--------------------------------*/
.privacy .container {
    padding-top: 100px;
}
.privacy .page-title {
    position: unset;
}

/*--------------------------------
state
--------------------------------*/
.disabled {
    opacity: 0.1;
    cursor: default;
    pointer-events: none;
}
.none {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}
.is-none {
    display: none;
}
.is-fv {
    opacity: 0;
    animation-fill-mode: both;
    visibility: hidden;
}
.bg-light {
    background: #edefef;
}
.is-light {
    color: #fff;
}
.is-shadow {
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.8), 0 0 4px rgba(0, 0, 0, 0.4);
}
.is-shine {
    position: relative;
    overflow: hidden;
}
.is-shine::before {
    content: '';
    position: absolute;
    display: block;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8));
    width: 50px;
    height: 50px;
    top: -60px;
    left: -60px;
    animation: shine-run 3s ease-in infinite;
}
@keyframes shine-run {
    0% {
        transform: scale(0) rotate(50deg);
        opacity: 0;
    }

    40% {
        transform: scale(1) rotate(50deg);
        opacity: 1;
    }

    100% {
        transform: scale(250) rotate(50deg);
        opacity: 0;
    }
}
.is-thin {
    font-weight: 300;
}
.is-bold {
    font-weight: 700;
}
.line-wide {
    line-height: 2.4;
}
.letter-wide {
    letter-spacing: 0.1em;
}
.is-gold {
    color: #b2ac7b;
}
.is-alert {
    color: #c90000;
}
.underline {
    text-decoration: underline;
}
.unscrollable {
    overflow-y: hidden;
}
.is-round {
    border-radius: 14px;
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    .sp-none {
        display: none;
    }
    .slick-slide img.sp-none {
        display: none;
    }
    .mb-80 {
        margin-bottom: 32px;
    }
}
@media screen and (min-width: 768px) {
    .pc-none {
        display: none;
    }
    .slick-slide img.pc-none {
        display: none;
    }
}
