@charset "UTF-8";
/* :::::::::::::::::::::::::::::::::::::::: common :::::::::::::::::::::::::::::::::::::::: */
html {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", sans-serif;
    font-size: 62.5%;
    font-weight: 300;
    font-style: normal;
    letter-spacing: 0;
    line-height: 1;
    color: #53657f;
    background: #f5f1df;
    -webkit-overflow-scrolling: touch;
}
/* 
regularは、以下
font-weight: 400;
font-style: normal; 
*/
* {
    box-sizing: border-box;
    font-feature-settings: "palt";
}
/* :::::::::::::::::::: common html tag :::::::::::::::::::: */
a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
button {
    display: block;
    padding: 0;
    border-width: 0;
    cursor: pointer;
    background-color: transparent;
}
/* :::::::::::::::::::: helper class :::::::::::::::::::: */
.body {
    box-sizing: border-box;
    /* overflow-x: hidden; */
    position: relative;
    z-index: 0;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
}
.body.fixed {
    position: fixed;
    width: 100%;
}
.main {
    position: relative;
}
.img,
.video {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.en {
    font-family: "baskerville-display-pt", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: 0.05em;
}
.ja{
    font-family: "source-han-sans-japanese", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", sans-serif;
}
.display_ib {
    display: inline-block;
}
.underline {
    text-decoration: underline;
}
.text-shrink {
    display: inline-block;
    width: 0;
}
.text-link {
    opacity: 1;
    transition: opacity .3s;
}
@media (hover: hover) {
    .text-link:hover {
        opacity: .7;
    }
}
.text {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.1em;
}
.text + .text {
    padding-top: 2.5rem;
}
.fw_bold {
    font-weight: bold;
}

/* ::::: pc only ::::: */
.pc {
    display: block !important;
}
.tab-sp {
    display: none !important;
}
@media screen and (max-width: 1000px) {
    .pc {
        display: none !important;
    }
    .tab-sp {
        display: block !important;
    }
}
/* ::::: pc only end ::::: */
/* ::::: pc-tab only ::::: */
.pc-tab {
    display: block !important;
}
.sp {
    display: none!important;
}
@media screen and (max-width: 750px) {
    .pc-tab {
        display: none !important;
    }
    .sp {
        display: block!important;
    }
}
/* ::::: pc-tab only end ::::: */
/* ::::: wrapper ::::: */
.wrapper {
    width: 86%;
    margin: 0 auto;
    max-width: 130rem;
}
/* ----- wrapper responsive (1000) ----- */
@media screen and (max-width: 1000px) {
    .wrapper {
        width: 89%;
    }
}
/* ::::: wrapper end ::::: */
/* ::::: inview ::::: */
.inview {
    filter: blur(1px);
    opacity: 0;
    transition: filter 1.2s, opacity 1.2s;
}
.inview.show {
    filter: blur(0);
    opacity: 1.0;
}
/* ::::: inview end ::::: */
/* :::::::::::::::::::: helper class end :::::::::::::::::::: */

/* :::::::::::::::::::: header :::::::::::::::::::: */
.header {
    position: fixed;
    top: 3rem;
    left: 3%;
    z-index: 10;
    /*color: #f5f1df;*/
}
.header__list {
    display: flex;
    gap: 2.2rem;
}
.header__item {}
.header__link {
    position: relative;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}
.header__link::before {
    content: '';
    display: block;
    position: absolute;
    bottom: -0.2rem;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 1px;
    background: #53657f;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform 0.3s;
}
.header__link:hover::before,
.header__link.on::before {
    transform-origin: left top;
    transform: scale(1, 1);
}
/* -------------------- header responsive (1000) -------------------- */
@media screen and (max-width: 1000px) {
    .header {
        display: none;
    }
}
/* :::::::::::::::::::: header end :::::::::::::::::::: */
/* :::::::::::::::::::: hamButton :::::::::::::::::::: */
.hamButton {
    box-sizing: border-box;
    position: fixed;
    top: 2.5rem;
    right: 3%;
    height: 3rem;
    z-index: 1000;
}
.hamButton__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 1rem;
}
.hamButton__lineBase {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}
.hamButton__line {
    position: absolute;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 1px;
    background-color: #53657f;
}
.hamButton__line.--line1 {
    top: 0;
}
.hamButton__line.--line2 {
    bottom: 0;
}
@keyframes ham-line1 {
    0% {
        top: 0;
        transform: rotate(0);
    }
    60% {
        top: 50%;
        transform: rotate(0);
    }
    100% {
        top: 50%;
        transform: rotate(20deg);
        background-color: #f5f1df;
    }
}
@keyframes ham-line1-c {
    0% {
        top: 50%;
        transform: rotate(20deg);
    }
    40% {
        top: 50%;
        transform: rotate(0);
    }
    100% {
        top: 0;
        transform: rotate(0);
        background-color: #53657f;
    }
}
@keyframes ham-line2 {
    0% {
        bottom: 0;
        transform: rotate(0);
    }
    60% {
        bottom: 50%;
        transform: rotate(0);
    }
    100% {
        bottom: 50%;
        transform: rotate(-20deg);
        background-color: #f5f1df;
    }
}
@keyframes ham-line2-c {
    0% {
        bottom: 50%;
        transform: rotate(-20deg);
    }
    40% {
        bottom: 50%;
        transform: rotate(0);
    }
    100% {
        bottom: 0;
        transform: rotate(0);
        background-color: #53657f;
    }
}
/* -------------------- hamButton responsive (1000) -------------------- */
@media screen and (max-width: 1000px) {
    .hamButton {
        top: 2.5rem;
        right: 3%;
        height: 3rem;
    }
    .hamButton__inner {
        width: 4rem;
        height: 0.8rem;
    }
 }
/* :::::::::::::::::::: hamButton end :::::::::::::::::::: */
/* :::::::::::::::::::: hamMenu :::::::::::::::::::: */
.hamMenu {
    overflow-y: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100vh;
    color: #f5f1df;
    background-color: #53657f;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.hamMenu.-open {
    opacity: 1;
    visibility: visible;
}
.hamMenu__base {
    position: relative;
    z-index: 0;
    height: 100%;
}
.hamMenu__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hamMenu__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 2rem;
    margin: 0 auto;
}
.hamMenu__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-bottom: 4.5rem;
}
.hamMenu__item {
    overflow: hidden;
    padding-bottom: 0.2rem;
}
.hamMenu__item:not(:first-child) {
    margin-top: 3rem;
}
.hamMenu__link {
    position: relative;
    top: 4rem;
    font-size: 3.4rem;
    line-height: 1;
    transition: top 1s .4s, color 0.3s;
}
.hamMenu.-open .hamMenu__link {
    top: 0;
}
.hamMenu__link::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0.4rem;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 1px;
    background: #f5f1df;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform 0.3s;
}
.hamMenu__link:hover::before, .hamMenu__link.on::before {
    transform-origin: left top;
    transform: scale(1, 1);
}
.hamMenu__snsLinksWrap {
    overflow: hidden;
}
.hamMenu__snsLink {
    position: relative;
    top: 4rem;
    font-size: 3.2rem;
    padding-left: 4rem;
    opacity: 1;
    transition: top 1s .4s, opacity .3s;
}
.hamMenu.-open .hamMenu__snsLink {
    top: 0;
}
@media (hover: hover) {
    .hamMenu__snsLink:hover {
        opacity: .7;
    }
}
.hamMenu__snsLink::before {
    content: '';
    position: absolute;
    top: 0.6rem;
    left: 0;
    display: inline-block;
    width: 2.6rem;
    height: 2.6rem;
    background-image: url('/assets/img/common/icon-instagram.png');
    background-size: 2.6rem 2.6rem;
    background-repeat: no-repeat;
}
/* ----- responsive (1000) ----- */
@media screen and (max-width: 1000px) {
    .hamMenu {}
    .hamMenu__inner {
        min-height: 65rem;
    }
    .hamMenu__content {
        padding: 1rem;
    }
    .hamMenu__list {
        padding-bottom: 4.6rem;
    }
    .hamMenu__item:not(:first-child) {
        margin-top: 2.3rem;
    }
    .hamMenu__link {
        font-size: 2.1rem;
    }
    .hamMenu__link::before {
        bottom: 0.1rem;
    }
    .hamMenu__snsLink {
        font-size: 2rem;
        padding-left: 3.4rem;
    }
    .hamMenu__snsLink::before {
        top: 0.1rem;
        width: 2.2rem;
        height: 2.2rem;
        background-size: 2.2rem 2.2rem;
    }
}
/* :::::::::::::::::::: hamMenu end :::::::::::::::::::: */
/* :::::::::::::::::::: footer :::::::::::::::::::: */
.footer {}
.footer-upper {
    padding: 5.5rem 0 4rem;
    color: #f5f1df;
    background-color: #53657f;
}
.ft-wrapper {
    width: 93%;
    margin: 0 auto;
}
.footer-upper__nav-sns-links-area {}
.footerNav {
    padding-bottom: 1.2rem;
}
.footerNav__list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
}
.footerNav__item {}
.footerNav__link {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.1em;
    opacity: 1;
    transition: opacity .3s;
}
@media (hover: hover) {
    .footerNav__link:hover {
        opacity: .5;
    }
}
.footer-upper__subWrap {
    display: flex;
    justify-content: space-between;
}
.footer-upper__snsLinks {}
.footer-upper__snsLink {
    position: relative;
    padding-left: 2.7rem;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.1em;
    opacity: 1;
    transition: opacity .3s;
}
@media (hover: hover) {
    .footer-upper__snsLink:hover {
        opacity: .5;
    }
}
.footer-upper__snsLink::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    display: inline-block;
    width: 1.8rem;
    height: 1.8rem;
    background-image: url('/assets/img/common/icon-instagram.png');
    background-size: 1.8rem 1.8rem;
    background-repeat: no-repeat;
}
.footer-upper__copyright {
    padding-top: 0.8rem;
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: 0.1em;
}
.fooer-lower {
    display: flex;
    align-items: center;
    height: 11rem;
    color: #f5f1df;
    background-color: #47566c;
}
.fooer-lower.--fav {
    height: 9.8rem;
    background-color: #8b413a;
}
.fooer-lower__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-lower__logo {
    display: inline-block;
    width: 10.3rem;
}
.footer-lower__logo.--fav {
    width: 5rem;
}
.footer-lower__outsideLink {
    position: relative;
    padding-right: 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.1em;
    opacity: 1;
    transition: opacity .3s;
}
@media (hover: hover) {
    .footer-lower__outsideLink:hover {
        opacity: .7;
    }
}
.footer-lower__outsideLink::after {
    content: '';
    position: absolute;
    top: 2px;
    right: 0;
    display: inline-block;
    width: 9px;
    height: 9px;
    background-image: url('/assets/img/common/icon-outside-link.png');
    background-size: 9px 9px;
    background-repeat: no-repeat;
}
/* -------------------- footer responsive (1000) -------------------- */
@media screen and (max-width: 1000px) {
    .footer {}
    .footer-upper {
        padding: 4.2rem 0 3.2rem;
    }
    .ft-wrapper {
        /* width: 89%; */
    }
    .footer-upper__nav-sns-links-area {}
    .footerNav {
        padding-bottom: 3.2rem;
    }
    @media screen and (max-width: 600px) {
        .footerNav__list {
            gap: 0.8rem 2rem;
            /* max-width: 40rem; */
        }
        .footerNav__item {
        }
        .footerNav__item:nth-child(3n) {
        }
        .footerNav__link {
            font-size: 1.4rem;
        }
    }
    .footer-upper__copyright {
        padding-top: 0.7rem;
    }
    .fooer-lower {
        height: 15.8rem;
    }
    .fooer-lower.--fav{
        height: auto;
        padding-top: 2.2rem;
        padding-bottom: 2rem;
    }
    .fooer-lower__inner {
        flex-direction: column;
    }
    .footer-lower__logo.--fav{
        width: 4.8rem;
    }
    .footer-lower__outsideLink {
        margin-top: 3rem;
    }
    .footer-lower__outsideLink.--fav{
        margin-top: 1.3rem;
    }
}
/* :::::::::::::::::::: footer end :::::::::::::::::::: */
/* :::::::::::::::::::: home :::::::::::::::::::: */
/* :::::::::: load :::::::::: */
/* .loading {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #231815;
    transition: opacity 1.8s, visibility 1.8s;
}
.body.loading-end .loading {
    opacity: 0;
    visibility: hidden;
}
.loadingContentWrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.loadingCircleImg {
    width: 2.5rem;
    animation: loading .5s linear infinite;
}
@keyframes loading {
    0% {
        ransform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
} */
/* :::::::::: load end :::::::::: */
/* :::::::::: homeKv :::::::::: */
.homeKv {
    position: relative;
}
.homeKv > .img {
    min-height: 70rem;
    height: 100vh;
    object-fit: cover;
}
.homeKv__mainTitle {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -49%);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.homeKv__large-logo-part {
    overflow: hidden;
    position: relative;
    display: inline-block;
    width: 50vw;
    /* width: 36rem; */
}
.homeKv__large-logo-part > .img {
    position: relative;
    top: 7.5rem;
    transition: top 1.2s 1.2s ,opacity 1.2s 1s;
    opacity: 0;
}
.homeKv__mainTitle.inview2.show .homeKv__large-logo-part > .img {
    top: 0;
    opacity: 1;
}
.homeKv__small-logo-part {
    overflow: hidden;
    position: relative;
    display: inline-block;
    width:57vw;
    /* width: 27.4rem; */
    /* margin-top: 1.5rem; */
    margin-top: 2.07vw;
}
.homeKv__small-logo-part > .img {
    position: relative;
    top: 2.5rem;
    transition: top 1.2s 1.2s ,opacity 1.2s 1s;
    opacity: 0;
}
.homeKv__mainTitle.inview2.show .homeKv__small-logo-part > .img {
    top: 0;
    opacity: 1;
}
/* ---------- homeKv responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
    .homeKv {}
    .homeKv > .img {
        height: 100dvh;
        min-height: auto;
        min-height: initial;
    }
    .homeKv__large-logo-part {
         width: 75vw; 
        /* width: 21rem; */
    }
    .homeKv__large-logo-part > .img {
        /* top: 4.5rem; */
    }
    .homeKv__small-logo-part {
        /* width: 16rem;
        margin-top: 0.9rem; */
    }
    .homeKv__small-logo-part > .img {
        /* top: 1.3rem; */
    }
}

/* :::::::::: homeKv end :::::::::: */
/* :::::::::: homeIntro :::::::::: */
.homeIntro {}
.homeIntro__sec {
    padding: 13rem 0 16rem;
}
.homeIntro__texts {}
.homeIntro__text {
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.8;
    letter-spacing: 0.1em;
}
.homeIntro__text + .homeIntro__text {
    padding-top: 2.7rem;
}
.homeIntro__titleImg {
    width: 26rem;
    margin: 7rem auto 0;
}
.homeIntro__en-texts {
    padding-top: 5.4rem;
}
.homeIntro__en-text {
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.4;
}
.homeIntro__en-text.--small {
    font-size: 1rem;
}
.homeIntro__en-text + .homeIntro__en-text {
    padding-top: 1.8rem;
}
/* ---------- homeIntro responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
    .homeIntro {}
    .homeIntro__sec {
        padding: 7rem 0 7.2rem;
    }
    .homeIntro__text + .homeIntro__text {
        padding-top: 1.2rem;
    }
    .homeIntro__titleImg {
        width: 18rem;
        margin: 4.5rem auto 0;
    }
    .homeIntro__en-texts {
        padding-top: 4.2rem;
    }
    .homeIntro__en-text {
        font-size: 1rem;
    }
    .homeIntro__en-text + .homeIntro__en-text {
        padding-top: 1.2rem;
    }
}
/* :::::::::: homeIntro end :::::::::: */
/* :::::::::: homeMenu :::::::::: */
.homeMenu {
    background: #dfd7cb;
}
/* :::::::::: homeMenu end :::::::::: */
/* :::::::::: homeMenus :::::::::: */
.homeMenus {}
.homeMenus__sec {
    display: flex;
    flex-wrap: wrap;
}
.homeMenus-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    aspect-ratio: 640/400;
}
.homeMenus-link.--pointer-event_none {
    pointer-events: none;
}
.homeMenus__title {
    position: relative;
    z-index: 2;
    font-size: 4.2rem;
    line-height: 1.2;
}
.homeMenus__hoverTitleWrap {
    overflow: hidden;
    position: relative;
    z-index: 2;
    display: inline-block;
}
.homeMenus__hoverTitle {
    position: relative;
    top: 4.5rem;
    transition: top .7s;
}
.homeMenus__hoverTitleWrap.inview2.show .homeMenus__hoverTitle {
    top: 0;
}
.homeMenus__hoverTextWrap {
    display: block;
    width: 100%;
    overflow: hidden;
    position: absolute;
    bottom: -3rem;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, 0);
    height: 2rem;
    text-align: center;
}
.homeMenus__hoverText {
    position: relative;
    top: 2rem;
    font-size: 1.6rem;
    line-height: 1;
    transition: top .5s;
}

.homeMenus-link.--pointer-event_none .show .homeMenus__hoverText {
    top: 0;
}
.homeMenus-link .homeMenus__hoverText::before {
    content: 'VIEW MENU';
    position: relative;
    font-size: 1.6rem;
    line-height: 1;
}
.homeMenus-link.--pointer-event_none .homeMenus__hoverText::before {
    content: 'COMING SOON';
    top: 0;
}
.homeMenus-link__img {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    height: 100%;
}
.homeMenus-link__img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    background-color: transparent;
    transition: background-color .5s;

}
.homeMenus-link:hover .homeMenus__hoverText{
    top: 0;
}
.homeMenus-link:hover .homeMenus-link__img::before,
.homeMenus-link.--pointer-event_none .homeMenus-link__img::before {
    background-color: rgba(0, 0, 0, 0.3);
}
.homeMenus-link.--pointer-event_none .homeMenus__hoverTitleWrap .homeMenus__hoverTitle{
    top:0 !important; 
}
.homeMenus-link.--pointer-event_none .homeMenus__hoverText{
    top:0 !important;
}
.homeMenus-link__img > .img {
    transform: scale(1.01);
    object-fit: cover;
    transition: transform .5s;
}
.homeMenus-link:hover .homeMenus-link__img > .img {
    transform: scale(1.07);
}

/* ---------- homeMenus responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
    .homeMenus {}
    .homeMenus__sec {
        gap: 2rem;
        width: 89%;
        margin: 0 auto;
    }
    .homeMenus-link {
        width: 100%;
    }
    .homeMenus-link {
        width: 100%;
    }
    .homeMenus__title {
        font-size: 2.6rem;
    }
    .homeMenus__hoverTextWrap {
        bottom: -2.5rem;
        height: 1.8rem;
    }
    .homeMenus__hoverText {
        top: 1.8rem;
        font-size: 1.5rem;
    }
    .homeMenus-link .show .homeMenus__hoverText {
        top: 0;
    }
    /* .homeMenus-link .homeMenus-link__img::before,
    .homeMenus-link.--pointer-event_none .homeMenus-link__img::before {
        background-color: rgba(0, 0, 0, 0.3);
    } */
}
/* :::::::::: homeMenus end :::::::::: */
/* :::::::::: homeInfo :::::::::: */
.homeInfo {}
.homeInfo__sec {
    width: 94%;
    padding: 13.2rem 0 16.8rem;
    margin: 0 auto;
}
.homeInfo__title {
    overflow: hidden;
    position: relative;
    text-align: center;
    font-size: 4.2rem;
    line-height: 1.2;
}
.homeInfo__hoverTitle {
    position: relative;
    top: 4.5rem;
    transition: top .7s;
}
.homeInfo__title.inview2.show .homeInfo__hoverTitle {
    top: 0;
}
.homeInfo__tableWrap {
    padding: 6.3rem 0 7rem;
    border: 1px solid #dfd7cb;
    margin-top: 2.2rem;
}
.homeInfo-table {
    width: 68rem;
    /* width: 52rem; */
    margin: 0 auto;
}
.homeInfo-table__body {}
.homeInfo-table__tr {
    display: flex;
    width: 100%;
}
.homeInfo-table__tr {
    padding-top: 3.7rem;
    border-top: 1px solid #dfd7cb;
    margin-top: 3.2rem;
}
.homeInfo-table__tr:first-child {
    padding-top: initial;
    border-top: none;
    margin-top: 0;
}
.homeInfo-table__th {
    text-align: left;
    width: 25rem;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0;
}
.homeInfo-table__td {
    width: calc(100% - 21rem);
    font-size: 1.6rem;
    line-height: 1.75;
    letter-spacing: 0;
}
.homeInfo-table__tdTexts {
    display: flex;
    width: 100%;
}
.homeInfo-table__tdTexts.--margin-top {
    margin-top: 1.5rem;
}
.homeInfo-table__strong {
    display: inline-block;
    width: 15rem;
}
.homeInfo-table__text {
    display: inline-block;
    width: calc(100% - 12rem);
}
.homeInfo-table__note {
    font-size: 1.4rem;
    line-height: 1.5;
    opacity: 0.6;
    padding-top: 3rem;
    letter-spacing: 0.03em;
}
.homeInfo-table__link {
    font-size: 1.8rem;
}
.homeInfo-table__link .tel-num {
    margin-left: 2.2rem;
    opacity: 1;
    transition: opacity .3s;
}
@media (hover: hover) {
    .homeInfo-table__link:hover .tel-num {
        opacity: .7;
    }
}
/* ---------- homeInfo responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
    .homeInfo {}
    .homeInfo__sec {
        width: 89%;
        padding: 8.2rem 0 8rem;
    }
    .homeInfo__title {
        font-size: 3rem;
    }
    .homeInfo__tableWrap {
        padding: 3.8rem 1rem 3.8rem;
        margin-top: 2.2rem;
    }
    .homeInfo-table {
        width: 28rem;
    }
    .homeInfo-table__tr {
        flex-direction: column;
    }
    .homeInfo-table__tr:nth-child(2) {
        padding-top: 2.5rem;
        margin-top: 2.5rem;
    }
    .homeInfo-table__th {
        width: 100%;
    }
    .homeInfo-table__td {
        width: 100%;
        padding-top: 1.4rem;
        font-size: 1.5rem;
        line-height: 1.8;
    }
    .homeInfo-table__tdTexts {
        display: flex;
        width: 100%;
    }
    .homeInfo-table__tdTexts.--margin-top {
        margin-top: 1.4rem;
    }
    .homeInfo-table__strong {
        width: 15rem;
    }
    .homeInfo-table__text {
        width: calc(100% - 10rem);
    }
    .homeInfo-table__note {
        padding-top: 2rem;
    }
    .homeInfo-table__link {
        font-size: 1.5rem;
    }
    .homeInfo-table__link .tel-num {
        margin-left: 2.2rem;
    }
}
/* :::::::::: homeInfo end :::::::::: */
/* :::::::::::::::::::: c-bgMediaSecBlock :::::::::::::::::::: */
.c-bgMediaSecBlock {}
.c-bgMediaSecBlock.--margin-top {
    margin-top: 6rem;
}
.c-bgMediaSecBlock__link,
.c-bgMediaSecBlock__sec {
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 100%;
    min-height: 31.25vw;
    max-height: 850px;
    padding: 18rem 0;
}
.c-bgMediaSecBlock.--pointer-event_none .c-bgMediaSecBlock__link,
.c-bgMediaSecBlock__sec {
    pointer-events: none;
}
@media screen and (min-width: 1300px) {
    .c-bgMediaSecBlock__link {
        min-height: unset;
        height: 31.25vw;
        max-height: 850px;
    }
}
.c-bgMediaSecBlock__link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0);
    transition: background-color .3s;
}
.c-bgMediaSecBlock.--pointer-event_none .c-bgMediaSecBlock__link::before,
.c-bgMediaSecBlock__link:hover::before {
    background-color: rgba(255, 255, 255, 0.5);
}
.c-bgMediaSecBlock__title {
    position: relative;
    z-index: 1;
    width: 83%;
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    font-size: 4.2rem;
    font-weight: 400;
    line-height: 1.2;
}
.c-bgMediaSecBlock__hoverTitleWrap {
    overflow: hidden;
    position: relative;
    z-index: 2;
    display: inline-block;
}
.c-bgMediaSecBlock__hoverTitle {
    position: relative;
    top: 4.5rem;
    transition: top .7s;
}
.c-bgMediaSecBlock.--pointer-event_none .c-bgMediaSecBlock__hoverTitle,
.c-bgMediaSecBlock__title.inview2.show .c-bgMediaSecBlock__hoverTitle {
    top: 0;
}
.c-bgMediaSecBlock__hoverTextWrap {
    overflow: hidden;
    position: absolute;
    bottom: -3rem;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, 0);
    height: 2rem;
    text-align: center;
}
.c-bgMediaSecBlock__hoverText {
    position: relative;
    top: 2rem;
    font-size: 1.6rem;
    line-height: 1;
    transition: top .5s;
}
.c-bgMediaSecBlock:hover .c-bgMediaSecBlock__hoverText {
    top: 0;
}
.c-bgMediaSecBlock.--pointer-event_none .c-bgMediaSecBlock__hoverText {
    top: 0;
}
.c-bgMediaSecBlock .c-bgMediaSecBlock__hoverText::before {
    content: '';
    position: relative;
    font-size: 1.6rem;
    line-height: 1;
}
.c-bgMediaSecBlock .c-bgMediaSecBlock__hoverText::before {
    content: 'VIEW MORE';
    top: 0;
}
.c-bgMediaSecBlock.--pointer-event_none .c-bgMediaSecBlock__hoverText::before {
    content: 'COMING SOON';
    top: 0;
}
.c-bgMediaSecBlock__bgi {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
}
.c-bgMediaSecBlock__bgi > .img {
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.6s;
}
.c-bgMediaSecBlock__link:hover .c-bgMediaSecBlock__bgi > .img {
    transform: scale(1.06);
}
/* -------------------- c-bgMediaSecBlock responsive (1000) -------------------- */
@media screen and (max-width: 1000px) {
    .c-bgMediaSecBlock.--margin-top {
        margin-top: 2rem;
    }
    .c-bgMediaSecBlock__link,
    .c-bgMediaSecBlock__sec {
        width: 89%;
        margin: 0 auto;
    }
    .c-bgMediaSecBlock__title {
        width: 89%;
        font-size: 3rem;
        line-height: 1.2;
    }
    .c-bgMediaSecBlock__hoverTextWrap {
        bottom: -2.5rem;
        height: 1.8rem;
    }
    .c-bgMediaSecBlock .show .c-bgMediaSecBlock__hoverText {
        top: 0;
    }
    .c-bgMediaSecBlock.--pointer-event_none .show .c-bgMediaSecBlock__hoverText {
        /* top: 0; */
    }
    .c-bgMediaSecBlock .c-bgMediaSecBlock__hoverText::before {
        content: '';
    }
}
/* -------------------- c-bgMediaSecBlock responsive (750) -------------------- */
@media screen and (max-width: 750px) {
    .c-bgMediaSecBlock__link {
        min-height: 65vw;
        height: auto;
        max-height: 850px;
        padding: 7rem 0 8chrem;
    }
}
/* -------------------- c-bgMediaSecBlock responsive (600) -------------------- */
@media screen and (max-width: 600px) {
    .c-bgMediaSecBlock__link {
        padding: 8rem 0 10rem;
    }
}

/* :::::::::: homeAccess :::::::::: */
.homeAccess {}
.homeAccess__sec {
    padding: 13.2rem 0 0;
}
.homeAccess__title {
    overflow: hidden;
    text-align: center;
    font-size: 4.2rem;
    line-height: 1.2;
}
.homeAccess__hoverTitle {
    position: relative;
    top: 4.5rem;
    transition: top .7s;
}
.homeAccess__title.inview2.show .homeAccess__hoverTitle {
    top: 0;
}
.homeAccess__mapArea {
    width: 93%;
    padding-top: 2rem;
    margin: 0 auto;
}
.homeAccess__mapArea iframe {
    width: 100%;
    min-height: 54rem;
    aspect-ratio: 1200 / 540;
    filter: grayscale(100%);
}
.homeAccess__address {
    text-align: center;
    padding-top: 3.6rem;
}
.homeAccess__jp-address {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.05em;
}
.homeAccess__en-address {
    display: inline-block;
    padding-top: 0.8rem;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
}
/* ---------- homeAccess responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
    .homeAccess {}
    .homeAccess__sec {
        padding: 8rem 0 0;
    }
    .homeAccess__title {
        font-size: 3rem;
    }
    .homeAccess__mapArea {
        width: 100%;
        padding-top: 2.3rem;
    }
    .homeAccess__mapArea iframe {
        width: 100%;
        min-height: unset;
        aspect-ratio: 360 / 252;
    }
}
/* :::::::::: homeAccess end :::::::::: */
/* :::::::::: homeGallery :::::::::: */
.homeGallery {}
.homeGallery__sec {
    padding: 12.5rem 0 21rem;
}
.homeGallery__title {
    overflow: hidden;
    text-align: center;
    font-size: 4.2rem;
    line-height: 1.2;
}
.homeGallery__hoverTitle {
    position: relative;
    top: 4.5rem;
    transition: top .7s;
}
.homeGallery__title.inview2.show .homeGallery__hoverTitle {
    top: 0;
}
.homeGallery__sliderArea {
    padding-top: 2rem;
}
/* :::::::::: slick :::::::::: */
/* c-slickSlide */
.c-slickSlide {
    position: relative;
}
.c-slickSlide__figure {
    display: table;
    width: 100%;
    max-width: 75vw;
    padding: 0 2rem;
}
.c-slickSlide__figure > .img {
    display: table-row;
    width: 100%;
}
/* slick-slide__navArea */
.c-slickSlide__lowerArea {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: space-between;
    margin-top: 7rem;
}
/* slick-slide__nav */
.c-slickSlide__nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
}
/* slick-arrow */
.c-slickSlide__arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-block;
    width: 2rem;
    height: 6.2rem;
    background-image: url('/assets/img/common/next-arrow.png');
    background-size: 2rem 6.2rem;
    background-repeat: no-repeat;
}
.c-slickSlide__arrow.-prev {
    left: 6%;
    transform: translateX(0) translateY(-50%) rotate(180deg);
}
.c-slickSlide__arrow.-next {
    right: 6%;
    transform: translateX(0) translateY(-50%);
}
/* slick-arrow end */
/* ---------- homeGallery responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
    .homeGallery {}
    .homeGallery__sec {
        padding: 7rem 0 9rem;
    }
    .homeGallery__title {
        font-size: 3rem;
    }
    .homeGallery__sliderArea {
        padding-top: 2rem;
    }
}
/* ---------- slick responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
    /* slickの高さと横幅の最大値、マージンを設定 */
    .c-slickSlide__figure {
        max-width: 75vw;
        padding: 0 0.5rem;
    }
    /* slick-slide__nav */
    .c-slickSlide__arrow {
        width: 1.2rem;
        height: 3.72rem;
        background-size: 1.2rem 3.72rem;
    }
    .c-slickSlide__arrow.-prev {
        left: 7%;
    }
    .c-slickSlide__arrow.-next {
        right: 7%;
    }
    @media screen and (max-width: 750px) {
        .c-slickSlide__arrow.-prev {
            left: 4%;
        }
        .c-slickSlide__arrow.-next {
            right: 4%;
        }
    }
}
/* :::::::::: slick end :::::::::: */
/* :::::::::: homeGallery end :::::::::: */
/* :::::::::::::::::::: home end :::::::::::::::::::: */
/* :::::::::::::::::::: party-plan :::::::::::::::::::: */
/* :::::::::: pageKv :::::::::: */
.pageKv {
    position: relative;
}
.pageKv__sec {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%,-50%);
    width: 86%;
}
.pageKv__title {
    overflow: hidden;
    text-align: center;
    font-size: 6rem;
    color: #f5f1df;
}
.pageKv__hoverTitle {
    position: relative;
    top: 7rem;
    transition: top .8s;
}
.pageKv__title.inview2.show .pageKv__hoverTitle {
    top: 0;
}
.pageKv__text {
    padding-top: 1.6rem;
    text-align: center;
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.1em;
}
.pageKv__hoverText {
    filter: blur(1px);
    opacity: 0;
    transition: filter 1.2s .8s, opacity 0.5s .8s;
}
.pageKv__text.inview2.show .pageKv__hoverText {
    filter: blur(0);
    opacity: 1;
}
.pageKv > .img {
    min-height: 56rem;
    max-height: 80rem;
    object-fit: cover;
}
/* ---------- pageKv responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
    .pageKv {}
    .pageKv__sec {
        width: 89%;
    }
    .pageKv__title {
        font-size: 4rem;
    }
    .pageKv__hoverTitle {
        top: 5rem;
    }
    .pageKv__text {
        /* padding-top: 1.6rem; */
    }
    .pageKv > .img {
        min-height: 56rem;
        max-height: 80rem;
    }
}
/* ---------- pageKv responsive (750) ---------- */
@media screen and (max-width: 750px) {
    .pageKv > .img {
        min-height: 40rem;
        max-height: 56rem;
    }
}
/* :::::::::: pageKv end :::::::::: */
/* :::::::::: pp-linkButtons :::::::::: */
.pp-linkButtons {}
.pp-linkButtons.--upper {}
.pp-linkButtons.--lower {}
.pp-linkButtons__sec {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem 2rem;
    width: 50%;
    padding: 13.5rem 0 0;
    margin: 0 auto;
}
.pp-linkButtons.--upper .pp-linkButtons__sec {
    padding: 13.5rem 0 0;
}
.pp-linkButtons.--lower .pp-linkButtons__sec {
    padding: 11.2rem 0 0;
}
.pp-linkButtons__link {
    display: inline-block;
    width: calc((100% - 2rem) / 2);
    padding: 2.2rem 2rem 2.4rem;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.1em;
    opacity: 1;
    transition: opacity .3s;
}
.pp-linkButtons__link.--orange {
    background-color: #b35047;
}
.pp-linkButtons__link.--transparent {
    position: relative;
    width: 100%;
    padding: 2.3rem 2rem 2.5rem;
    border: 1px solid #fff;
}
.pp-linkButtons__link.--transparent::before {
    content: '';
    position: absolute;
    top: 2.2rem;
    left: 3rem;
    z-index: 1;
    display: inline-block;
    width: 18px;
    height: 22px;
    background-image: url('/assets/img/common/icon-pdf.png');
    background-size: 18px 22px;
    background-repeat: no-repeat;
}
@media (hover: hover) {
    .pp-linkButtons__link:hover {
        opacity: .7;
    }
}
/* ---------- pp-linkButtons responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
    .pp-linkButtons {}
    .pp-linkButtons.--upper {}
    .pp-linkButtons.--lower {}
    .pp-linkButtons__sec {
        gap: 1rem;
        width: 89%;
        padding: 8rem 0 0;
        margin: 0 auto;
    }
    .pp-linkButtons.--upper .pp-linkButtons__sec {
        padding: 8rem 0 0;
    }
    .pp-linkButtons.--lower .pp-linkButtons__sec {
        padding: 8rem 0 0;
    }
    .pp-linkButtons__link {
        width: 100%;
        padding: 2.1rem 2rem 2.3rem;
        font-size: 1.5rem;
    }
    .pp-linkButtons__link.--transparent {
        padding: 2.1rem 2rem 2.3rem;
        margin-top: 1rem;
    }
    .pp-linkButtons__link.--transparent::before {
        top: 2rem;
    }
}
/* :::::::::: pp-linkButtons end :::::::::: */
/* :::::::::: pp-cards :::::::::: */
.pp-cards {
    width: 80%;
    padding: 11rem 0 16.7rem;
    margin: 0 auto;
}
/* ::::: pp-card ::::: */
.pp-card {
    display: flex;
    align-items: center;
}
.pp-card.--reverse {
    flex-direction: row-reverse;
}
.pp-card + .pp-card {
    padding-top: 11rem;
}
.pp-card__img {
    width: calc(100% - 40rem + 3.8rem);
    filter: blur(1px);
    opacity: 0;
    transition: filter .6s, opacity .6s;
}
.pp-card.inview2.show .pp-card__img {
    filter: blur(0);
    opacity: 1.0;
}
.pp-card__conts {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 40rem;
    margin-left: -3.8rem;
    text-align: right;
}
.pp-card.--reverse .pp-card__conts {
    /* display: flex;
    flex-direction: column;
    justify-content: end; */
    margin-right: -3.8rem;
    margin-left: 0;
    text-align: left;
}
.pp-card__title {
    position: relative;
    display: inline-block;
    width: 100%;
    padding-bottom: 1.6rem;
    text-align: right;
    font-size: 4.2rem;
    line-height: 1;
    opacity: 0;
    transition: filter .6s .6s, opacity .6s .6s;
}
.pp-card.inview2.show .pp-card__title {
    filter: blur(0);
    opacity: 1.0;
}
.pp-card.--reverse .pp-card__title {
    text-align: left;
}
.pp-card__title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transform-origin: left;
    transform: scale(0,1);
    display: block;
    width: 100%;
    padding-top: 1px;
    background-color: #53657f;
    transition: transform 1.2s 0.8s;
}
.pp-card.inview2.show .pp-card__title::before {
    transform: scale(1,1);
}
/* pp-card-info */
.pp-card-info {
    display: flex;
    flex-direction: column;
    align-items: end;
    margin-top: 2.4rem;
    filter: blur(1px);
    opacity: 0;
    transition: filter .6s .6s, opacity .6s .6s;
}
.pp-card.inview2.show .pp-card-info {
    filter: blur(0);
    opacity: 1.0;
}
.pp-card.--reverse .pp-card-info {
    align-items: start;
}
.pp-card-info__free-flow {
    font-size: 1.6rem;
    line-height: 1.4;
    letter-spacing: 0.06em;
    vertical-align: middle;
}
.pp-card-info__free-flow .en.--lh {
    line-height: 1.3;
    padding-right: 0.3rem;
    vertical-align: middle;
}
.pp-card-info__price {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}
.pp-card-info__price--medium {
    margin-top: 1rem;
    margin-right: 0.8rem;
    font-size: 1.6rem;
    letter-spacing: 0.06em;
}
.pp-card-info__price--medium .en.--lh {
    line-height: 1.5;
    padding-right: 0.3rem;
}
.pp-card-info__price--large {
    font-size: 3rem;
}
.pp-card-info__price--small {
    margin-top: 0.5rem;
    margin-left: 0.4rem;
    font-size: 1.2rem;
    letter-spacing: 0.06em;
}
/* pp-card-info end */
.pp-card__linkWrap {
    width: 20rem;
    margin: 5rem 0 0 auto;
    opacity: 0;
    transition: filter .6s .6s, opacity .6s .6s;
}
.pp-card.inview2.show .pp-card__linkWrap {
    filter: blur(0);
    opacity: 1.0;
}
.pp-card.--reverse .pp-card__linkWrap {
    margin: 5rem auto 0 0;
}
.pp-card__link {
    position: relative;
    padding-right: 1.5rem;
    font-size: 1.8rem;
    opacity: 1;
    transition: opacity 0.4s;
}
@media (hover: hover) {
    .pp-card__link:hover {
        opacity: .7;
    }
}
.pp-card__link::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    right: 0;
    display: inline-block;
    width: 7px;
    height: 12px;
    background-image: url('/assets/img/common/icon-angle-right.png');
    background-size: 7px 12px;
    background-repeat: no-repeat;
    transition: right .3s;
}
@media (hover: hover) {
    .pp-card__link:hover::before {
        right: -0.5rem;
    }
}
/* ::::: pp-card end ::::: */
/* ---------- pp-cards responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
    .pp-cards {
        width: 89%;
        padding: 8rem 0 8rem;
    }
    /* ::::: pp-card ::::: */
    .pp-card {
        flex-direction: column;
        align-items: center;
    }
    .pp-card.--reverse {
        flex-direction: column;
    }
    .pp-card + .pp-card {
        padding-top: 6rem;
    }
    .pp-card__img {
        width: 100%;
    }
    .pp-card__conts {
        width: 100%;
        margin-top: 3.1rem;
        margin-left: 0;
        text-align: left;
    }
    .pp-card.--reverse .pp-card__conts {
        margin-right: 0;
        margin-left: 0;
    }
    .pp-card__title {
        width: 100%;
        padding-bottom: 1.5rem;
        text-align: left;
        font-size: 3rem;
        line-height: 1.2;
    }
    /* pp-card-info */
    .pp-card-info {
        display: block;
        margin-top: 3.1rem;
    }
    .pp-card-info__price--large {
        font-size: 2.5rem;
    }
    .pp-card-info__price--medium {
        margin-top: 0.5rem;
        margin-right: 0.8rem;
    }
    /* pp-card-info end */
    .pp-card__linkWrap {
        width: auto;
        margin: 2.5rem 0 0 0;
    }
    .pp-card.--reverse .pp-card__linkWrap {
        margin: 2.5rem 0 0 0;
    }
    /* ::::: pp-card end ::::: */
}
/* :::::::::: pp-cards end :::::::::: */
/* :::::::::: pp-floor :::::::::: */
.pp-floor {
    background-color: #b35047;
}
.pp-floor__sec {
    width: 80%;
    padding: 6rem 0 7rem;
    margin: 0 auto;
}
.pp-floor__title {
    overflow: hidden;
    text-align: center;
    font-size: 4.2rem;
    line-height: 1.2;
}
.pp-floor__hoverTitle {
    position: relative;
    top: 4.5rem;
    transition: top .7s;
}
.pp-floor__title.inview2.show .pp-floor__hoverTitle {
    top: 0;
}
.pp-floor__img {
    margin-top: 2rem;
}
.pp-floor__text {
    padding-top: 3.2rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.1em;
}
.pp-floor__smText {
    text-align: center;
    padding-top: 0.6rem;
    font-size: 1.2rem;
    line-height: 1.8;
    letter-spacing: 0.1em;
}
/* ---------- pp-floor responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
    .pp-floor {}
    .pp-floor__sec {
        width: 89%;
        padding: 6rem 0 7rem;
    }
    .pp-floor__title {
        font-size: 3rem;
    }
    .pp-floor__hoverTitle {
        top: 3.5rem;
    }
    .pp-floor__img {
        margin-top: 2rem;
    }
    .pp-floor__text {
        padding-top: 3.2rem;
        text-align: left;
    }
    .pp-floor__smText {
        padding-top: 0.6rem;
        text-align: left;
    }
}
/* :::::::::: pp-floor end :::::::::: */
/* :::::::::: pp-gallery :::::::::: */
.pp-gallery {}
.pp-gallery__sec {
    padding-top: 13.2rem;
}
.pp-gallery__title {
    overflow: hidden;
    text-align: center;
    font-size: 4.2rem;
    line-height: 1.2;
}
.pp-gallery__hoverTitle {
    position: relative;
    top: 4.5rem;
    transition: top .7s;
}
.pp-gallery__title.inview2.show .pp-gallery__hoverTitle {
    top: 0;
}
.pp-gallery__sliderArea {
    margin-top: 2rem;
}
/* ---------- pp-gallery responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
    .pp-gallery {}
    .pp-gallery__sec {
        padding-top: 8rem;
    }
    .pp-gallery__title {
        font-size: 3rem;
    }
    .pp-gallery__hoverTitle {
        top: 3.5rem;
    }
    .pp-gallery__sliderArea {
        margin-top: 2rem;
    }
}
/* :::::::::: pp-gallery end :::::::::: */
/* :::::::::: pp-form :::::::::: */
.pp-form {}
.pp-form__sec {
    padding: 13rem 0 16rem;
}
.pp-form__title {
    overflow: hidden;
    text-align: center;
    font-size: 4.2rem;
    line-height: 1.2;
}
.pp-form__hoverTitle {
    position: relative;
    top: 4.5rem;
    transition: top .7s;
}
.pp-form__title.inview2.show .pp-form__hoverTitle {
    top: 0;
}
.pp-form__textWrap {
    padding-top: 2rem;
}
.pp-form__text {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.1em;
}
.pp-form__formArea {
    width: 55rem;
    margin: 6.5rem auto 0;
}
/* ---------- responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
    .pp-form {}
    .pp-form__sec {
        padding: 4rem 0 7.5rem;
    }
    .pp-form__title {
        font-size: 3rem;
    }
    .pp-form__hoverTitle {
        top: 3rem;
    }
    .pp-form__textWrap {
        padding-top: 2rem;
    }
    .pp-form__formArea {
        width: 89%;
        margin: 5rem auto 0;
    }
}
/* :::::::::: pp-form end :::::::::: */
/* :::::::::::::::::::: party-plan end :::::::::::::::::::: */
/* :::::::::::::::::::: contact :::::::::::::::::::: */
.contact {}
/* :::::::::: contact-form :::::::::: */
.contact-form {}
.contact-form__sec {
    padding: 13.5rem 0 17rem;
    width: 57rem;
    margin: 0 auto;
}
/* ---------- contact-form responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
    .contact-form {}
    .contact-form__sec {
        padding: 7.2rem 0 7.5rem;
        width: 89%;
    }
}
/* :::::::::: contact-form end :::::::::: */
/* :::::::::::::::::::: contact end :::::::::::::::::::: */
/* :::::::::::::::::::: contact-completed :::::::::::::::::::: */
.completed {}
.completed__sec {
    width: 80%;
    padding: 11rem 0 17rem;
    margin: 0 auto;
    text-align: center;
}
.completed__text {
    font-size: 2.3rem;
    line-height: 2;
    letter-spacing: 0.05em;
}
.completed__smallTexts {
    padding-top: 3rem;
}
.completed__smallText {
    position: relative;
    display: inline-block;
    padding-left: 1em;
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.05em;
}
.completed__smallText::before {
    content: '※';
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.05em;
}
.completed__linkWrap {
    padding-top: 5.5rem;
}
.completed__link {
    display: inline-block;
    width: 32rem;
    padding: 2.2rem 2rem 2.4rem;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.05em;
    background-color: #b35047;
    opacity: 1;
    transition: opacity .3s;
}
@media (hover: hover) {
    .completed__link:hover {
        opacity: .7;
    }
}
/* ---------- contact-completed responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
    .completed {}
    .completed__sec {
        width: 89%;
        padding: 7rem 0 7.5rem;
    }
    .completed__text {
        text-align: left;
        font-size: 1.7rem;
        line-height: 1.8;
    }
    .completed__smallTexts {
        padding-top: 1.5rem;
        text-align: left;
    }
    .completed__smallText {
        text-align: left;
        padding-left: 1.1em;
    }
    .completed__linkWrap {
        padding-top: 3.5rem;
    }
    .completed__link {
        width: 100%;
        padding: 2.1rem 2rem 2.3rem;
        font-size: 1.5rem;
    }
}
/* :::::::::::::::::::: contact-completed end :::::::::::::::::::: */