#fv {
    background: url(../images/top/fv-bg.jpg) no-repeat;
    background-size: cover;
    position: relative;
}
.fv-inner {
    padding: 200px 0 20px;
    margin: 0 auto;
    position: relative;
}
.fv-main-visual {
    margin: 0 auto;
    text-align: center;
}
.fv-catch-area {
    margin: 60px 0 0 60px;
}
.fv-main-catch {
    font-size: 5.5rem;
    font-weight: 500;
    color: #fff;
}
.fv-sub-catch {
    font-size: 1.8rem;
    font-weight: 200;
    color: #fff;
    letter-spacing: .05em;
}
.scrollbar-wrap {
    height: 200px;
    width: fit-content;
    position: relative;
    position: absolute;
    bottom: 0;
    right: 100px;
    transform: translateY(50%);
    z-index: 2;
}
.scrollbar-text {
    display: inline-block;
    padding: 0px 10px 130px 10px;
    color: #fff;
    font-size: 14px;
    font-family: serif;
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    writing-mode: vertical-lr;
}
.scrollbar {
    position: absolute;
    left: 0;
    bottom: 0;
}
.scrollbar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1px;
    height: 200px;
    background: #fff;
    animation: liner 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}
.sp-arrow {
    display: none;
}
@keyframes liner {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }
    30% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }
    70% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }
    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}

@media screen and (max-width: 640px) {
    .fv-inner {
        padding: 150px 2% 20px;
    }
    .fv-catch-area {
        margin: 20px 0 0;
        text-align: center;
    }
    .fv-main-catch {
        font-size: 3.2rem;
        font-weight: 500;
        color: #fff;
        line-height: 1.4;
    }
    .fv-sub-catch {
        font-size: 1.2rem;
        line-height: 1.8;
        margin-top: 20px;
    }
    .scrollbar-wrap {
        height: auto;
        width: auto;
        position: relative;
        transform: unset;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        right: unset;
        padding: 50px 0 0px;
    }
    .scrollbar {
        display: none;
    }
    .scrollbar-text {
        display: inline-block;
        padding: 0px;
        color: #fff;
        font-size: 1rem;
        font-family: serif;
        line-height: 1;
        letter-spacing: 0.1em;
        writing-mode: horizontal-tb;
    }
    .sp-arrow {
        position: relative;
        display: inline-block;
        width: 94.5px;
        height: 28px;
    }
    .sp-arrow::before,
    .sp-arrow::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: calc(50% - 0.5px);
        width: 1px;
        height: 55px;
        border-radius: 9999px;
        background-color: #fff;
        transform-origin: 50% calc(100% - 0.5px);
    }  
    .sp-arrow::before {
        transform: rotate(60deg);
    }  
    .sp-arrow::after {
        transform: rotate(-60deg);
    }
}

.section-title {
    text-align: center;
}
.noise-bg::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    background-image: url(../images/top/noise-texture.png);
    background-repeat: repeat;
    background-size: 100px;
    opacity: .5;
    mix-blend-mode: multiply;
}
.noise-bg .inner {
    position: relative;
    z-index: 2;
}

#about {
    background-color: #022944;
    padding: 100px 0 80px;
    position: relative;
}
#about .inner {
    position: relative;
    z-index: 2;
}
#about .section-title img {
    width: 310px;
}
.about-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
}
.about-inner .about-content-title {
    color: #fff;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 6rem;
    font-weight: 500;
    line-height: 1.6;
    border-left: solid 1px #fff;
    border-right: solid 1px #fff;
    margin-left: 30px;
}
.about-inner .about-content-title .line {
    border-left: solid 1px #fff;
    padding-left: .1em;
}
.about-inner .abont-content-description {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 2;
}
.auto-slider-pc {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
    gap: 12px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}
.auto-slider-pc .auto-slider-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    animation: scroll-left 45s infinite linear both;
    width: max-content;
}
.auto-slider-pc .auto-slider-inner .auto-slider-item {
    width: max-content;
}
.auto-slider-sp {
    display: none;
}
@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
@keyframes scroll-right {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}
.about-bg-img {
    position: absolute;
    top: 140px;
    left: 60px;
    width: 530px;
    z-index: 2;
}

@media screen and (max-width: 640px) {
    #about {
        padding: 60px 0;
        position: relative;
    }
    #about .section-title img {
        width: 216px;
    }
    .about-inner {
        width: 100%;
        flex-direction: column;
        margin: 60px 0;
    }
    .about-inner .title-wrap {
        width: 100%;
    }
    .about-inner .about-content-title {
        font-size: 3.4rem;
        margin: 0 auto;
    }
    .about-inner .text-wrap {
        width: 100%;
        margin-top: 40px;
        padding-left: 5%;
        text-align: left;
    }
    .about-inner .abont-content-description {
        font-size: 1.7rem;
    }
    .about-bg-img {
        top: 200px;
        left: -25px;
        width: 240px;
    }
    .auto-slider-pc {
        display: none;
    }
    .auto-slider-sp {
        display: flex;
        width: 100%;
        overflow: hidden;
        position: relative;
        gap: 5px;
        margin-top: 5px;
        z-index: 2;
    }
    .auto-slider-sp .auto-slider-inner {
        display: flex;
        align-items: center;
        gap: 5px;
        animation: scroll-left 20s infinite linear both;
        width: max-content;
    }
    .auto-slider-sp.reverse .auto-slider-inner {
        animation: scroll-right 20s infinite linear both;
    }
    .auto-slider-sp .auto-slider-inner .auto-slider-item {
        width: 200px;
    }
}

#store {
    background: url(../images/top/store-bg.jpg) repeat;
    padding: 120px 0 240px;
}
#store .section-title img {
    width: 270px;
}
.store-wrap {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 220px;
}
.store-wrap.reverse {
    flex-direction: row-reverse;
}
.store-wrap .store-slider-content {
    width: 630px;
    position: relative;
    z-index: 2;
}
.store-wrap .store-slider-content .slick-dots {
    display: flex;
    margin-top: 10px;
    gap: 4px;
}
.store-wrap .store-slider-content .slick-dots > li {
    width: calc((100% - 16px) / 5);
    opacity: .7;
    cursor: pointer;
    transition: all .2s ease-in-out;
}
.store-wrap .store-slider-content .slick-dots > li:hover {
    opacity: 1;
}
.store-wrap .store-slider-content .slick-dots > li.slick-active {
    opacity: 1;
}
.store-wrap .store-text-content {
    width: calc(100% - 700px);
    color: #211815;
    position: relative;
    z-index: 2;
}
.store-wrap .store-text-content .store-name {
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: .1em;
}
.store-wrap .store-text-content .store-description {
    font-size: 2rem;
    line-height: 1.8;
    font-weight: 500;
    margin-top: 20px;
}
.store-wrap .store-text-content .store-description.store-information {
    font-size: 1.7rem;
    font-weight: 300;
}
.store-wrap .store-text-content .store-more-btn {
    padding: 10px 45px;
    background-color: #fcee21;
    color: #211815;
    font-size: 1.8rem;
    font-weight: 400;
    display: inline-block;
    margin-top: 30px;
    border-radius: 30px;
    position: relative;
}
.store-wrap .store-text-content .store-more-btn::before,
.store-wrap .store-text-content .store-more-btn::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.5px);
    right: 20px;
    width: 9px;
    height: 1px;
    border-radius: 9999px;
    background-color: #211815;
    transform-origin: calc(100% - 0.5px) 50%;
}
.store-wrap .store-text-content .store-more-btn::before {
    transform: rotate(45deg);
}
.store-wrap .store-text-content .store-more-btn::after {
    transform: rotate(-45deg);
}
.store-item-bg-img {
    position: absolute;
    mix-blend-mode: multiply;
    z-index: 1;
}
.sibi01 {
    top: -180px;
    left: 100px;
}
.sibi02 {
    bottom: -100px;
    right: -70px;
}
.sibi03 {
    top: 80px;
    left: -200px;
}
.sibi04 {
    bottom: -80px;
    right: calc(50% + 90px);
}

@media screen and (max-width: 640px) {
    #store {
        padding: 60px 0;
        overflow: hidden;
    }
    #store .section-title img {
        width: 200px;
    }
    .store-wrap {
        flex-direction: column;
        align-items: center;
        margin-top: 100px;
    }
    .store-wrap.reverse {
        flex-direction: column;
        margin-top: 160px;
    }
    .store-wrap .store-slider-content {
        width: 100%;
    }
    .store-wrap .store-slider-content .slick-dots {
        margin-top: 5px;
    }
    .store-wrap .store-text-content {
        width: 100%;
        margin-top: 40px;
    }
    .store-wrap .store-text-content .store-name {
        font-size: 2.4rem;
    }
    .store-wrap .store-text-content .store-description {
        font-size: 1.7rem;
    }
    .store-wrap .store-text-content .store-description.store-information {
        font-size: 1.2rem;
    }
    .store-wrap .store-text-content .store-more-btn {
        padding: 7px 45px;
        font-size: 1.3rem;
        margin-top: 20px;
        margin-left: auto;
        display: block;
        width: 182px;
    }
    .store-wrap .store-text-content .store-more-btn::before,
    .store-wrap .store-text-content .store-more-btn::after {
        right: 15px;
        width: 6px;
    }
    .sibi01 {
        top: -85px;
        left: 15px;
    }
    .sibi02 {
        bottom: unset;
        top: 330px;
        right: 5px;
    }
    .sibi03 {
        top: -110px;
        left: 30px;
    }
    .sibi04 {
        bottom: unset;
        top: 300px;
        right: 20px;
    }
}

#hotels {
    background-color: #fff;
    padding: 120px 0 240px;
}
#hotels .section-title img {
    width: 280px;
}
.restaurants-block {
    margin-top: 80px;
}
.restaurants-title {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
}
.restaurants-title .w-bg {
    background-color: #fff;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}
.restaurants-title img {
    width: 280px;
}
.restaurants-title::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #e1ca9f;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 0;
}
.rest-inner {
    display: flex;
    justify-content: space-between;
}
.rest-inner .rest-link {
    color: #211815;
    text-align: center;
    font-size: 2rem;
    transition: all .2s;
}
.rest-inner .rest-link .rest-name {
    margin-top: 15px;
}
.rest-inner .rest-link:hover {
    opacity: .7;
}
@media screen and (max-width:640px) {
    #hotels {
        padding: 60px 0;
        overflow: hidden;
    }
    #hotels .section-title img {
        width: 200px;
    }
    .restaurants-title img {
        width: 200px;
    }
    .rest-inner {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    .rest-inner .rest-link {
        width: calc(50% - 10px);
    }
    .rest-inner .rest-link .rest-name {
        font-size: 1.5rem;
    }
    .restaurants-block {
        margin-top: 30px;
    }
    #store-03,#store-04,#store-05 {
        margin-top: 70px;
    }
    #store-03 .store-wrap .store-text-content .store-name,
    #store-04 .store-wrap .store-text-content .store-name,
    #store-05 .store-wrap .store-text-content .store-name {
        line-height: 1.4;
    }
}

#message {
    padding: 120px 0;
    background: url(../images/top/message-bg1.png) no-repeat;
    background-size: cover;
}
.section-title-sp {
    display: none;
    text-align: center;
}
.section-title-sp img {
    width: 200px;
}
#message .section-title img {
    width: 300px;
}
.message-inner {
    max-width: 1270px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    gap: 100px;
}
.ceo-img-sp {
    display: none;
}
.message-text-area {
    width: 455px;
    padding-top: 70px;
}
.message-content {
    margin-top: 95px;
    color: #fff;
    letter-spacing: .1em;
}
.message-content .position {
    font-size: 2rem;
    font-weight: 500;
}
.message-content .ceo-name {
    font-size: 3.8rem;
    font-weight: 500;
}
.message-content .message-description {
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 2;
    margin-top: 30px;
}

@media screen and (max-width: 640px) {
    #message {
        padding: 60px 0;
        background: #f9f9f9;
    }
    .section-title-sp {
        display: block;
    }
    .message-inner {
        flex-direction: column;
        margin-top: 40px;
        padding: 0 5%;
        gap: 30px;
    }
    .ceo-img-sp {
        display: block;
    }
    .message-text-area {
        width: 100%;
        padding-top: 0;
    }
    .message-content {
        margin-top: 0;
    }
    .message-content .position {
        font-size: 1.3rem;
        color: #022944;
    }
    .message-content .ceo-name {
        font-size: 2.8rem;
        color: #022944;
    }
    .message-content .message-description {
        font-size: 1.7rem;
        font-weight: 500;
        line-height: 1.8;
        margin-top: 15px;
        color: #022944;
    }
}

#company {
    background-color: #022944;
    padding: 100px 0;
    position: relative;
}
#company .company-inner {
    display: flex;
    justify-content: space-between;
}
#company .section-title {
    margin-left: 40px;
}
#company .section-title img {
    width: 236px;
}
#company .company-table {
    width: 850px;
    border-top: solid 1px #fff;
}
#company .company-table .row {
    display: flex;
    align-items: center;
    padding: 20px 15px;
    border-bottom: solid 1px #fff;
    color: #fff;
    font-size: 1.8rem;
}
#company .company-table .row .th {
    width: 170px;
}

@media screen and (max-width: 640px) {
    #company {
        padding: 60px 0;
    }
    #company .section-title {
        margin-left: 0;
    }
    #company .company-inner {
        display: flex;
        flex-direction: column;
    }
    #company .section-title img {
        width: 160px;
    }
    #company .company-table {
        width: 100%;
        margin-top: 50px;
    }
    #company .company-table .row {
        padding: 17px 5px;
        align-items: center;
    }
    #company .company-table .row .th {
        width: 110px;
        font-size: 1.3rem;
        flex-shrink: 0;
    }
    #company .company-table .row .td {
        font-size: 1.3rem;
        margin-top: 0;
    }
}

#contact {
    background: url(../images/top/store-bg.jpg) repeat;
    padding: 120px 0 100px;
}
#contact .section-title img {
    width: 187px;
}
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}
.contact-description {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: 60px;
}
.contact-form {
    margin-top: 30px;
}
.contact-form .row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    align-items: center;
}
.contact-form .row .th {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #022944;
    width: 200px;
}
.contact-form .row .th .required {
    color: #ddbb85;
    font-size: 1.2rem;
    margin-left: 10px;
}
.contact-form .row .td {
    width: calc(100% - 220px);
}
.contact-form .row .td input {
    width: 100%;
    background-color: #fff;
    border: solid 1px #ccc;
    padding: 12px;
    font-size: 1.4rem;
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
}
.contact-form .row .td textarea {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    width: 100%;
    height: 10em;
    background-color: #fff;
    border: solid 1px #ccc;
    padding: 15px;
    font-size: 1.4rem;
}
.contact-form .submit-wrap {
    width: 100%;
    text-align: center;
    margin-top: 40px;
}
.contact-form .submit-wrap p {
    text-align: center;
}
.contact-form .submit-wrap input[type="submit"] {
    width: 220px;
    background-color: #022944;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 400;
    padding: 15px 0;
    margin: 0 auto;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}
.contact-form .submit-wrap .wpcf7-spinner {
    display: block;
    margin: 10px auto 0;
}

@media screen and (max-width:640px) {
    #contact {
        padding: 60px 0;
    }
    #contact .section-title img {
        width: 145px;
    }
    .contact-description {
        text-align: center;
        font-size: 1.3rem;
        font-weight: 500;
        margin-top: 30px;
    }
    .contact-form {
        margin-top: 20px;
    }
    .contact-form .row {
        flex-direction: column;
        padding: 10px 0;
    }
    .contact-form .row .th {
        width: 100%;
        margin-bottom: 10px;
    }
    .contact-form .row .td {
        width: 100%;
    }
    .contact-form .submit-wrap {
        margin-top: 20px;
    }
}