@charset "utf-8";

/*--------------------------------------------------
opening
--------------------------------------------------*/
body {
    opacity: 0;
    transition: opacity 3.0s ease;
}

body.loaded {
    opacity: 1;
}


.m_kv_copy {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 2.0s ease 1.0s, transform 2.0s ease 1.0s;
    will-change: opacity, transform;
}

body.loaded .m_kv_copy {
    opacity: 1;
    transform: scale(1);
}

.fade {
    opacity: 0;
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
}

/*--------------------------------------------------
bace
--------------------------------------------------*/
img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


body {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.1em;
    line-height: 1.5;
    font-size: 14px;
}

.font_eng {
    font-family: "Libre Baskerville", serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
}


/*root color */
:root {
    --white-color: #ffffff;
    --black-color: #151515;
    --gray-color: #4a4a4a;
    --gray-color02: #d7d7d7;
    --gray-color03: #5c5c5c;
    --base-color: #fef7f2;
    --accent-color: #AA894B;
}

:root {
    --content-width-sm: 680px;
    --content-width-from: 760px;
    --content-width-md: 960px;
    --content-width: 1080px;
    --content-width-lg: 1124px;
}

.l_container-sm,
.l_container-from,
.l_container-md,
.l_container,
.l_container-lg {
    width: 100%;
    padding: 0 16px;
    margin: 0 auto;
}

.l_container-sm {
    max-width: calc(var(--content-width-sm) + 32px);
}

.l_container-from {
    max-width: calc(var(--content-width-sm) + 32px);
}

.l_container-md {
    max-width: calc(var(--content-width-md) + 32px);
}

.l_container {
    max-width: calc(var(--content-width) + 32px);
}

.l_container-lg {
    max-width: calc(var(--content-width-lg) + 32px);
}

.l_contents {
    padding: 80px 0 0 0;
}

@media screen and (min-width: 1080px) {
    .l_contents {
        padding: 120px 0 0 0;
    }
}

html,
body {
    min-height: 100%;
    margin: 0;
    padding: 0;
}

/*--------------------------------------------------
header
--------------------------------------------------*/

.l_header {
    width: 100%;
    height: 96px;
    background: transparent;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    top: 0;
    left: 0;
    z-index: 1000;
}

@media screen and (min-width: 1080px) {
    .l_header {
        padding: 0 48px;
    }
}

.l_header-logo_link {
    font-weight: 1000;
    font-size: 12px;
    color: var(--white-color);
    z-index: 999;
}


/* .hamburger */
.hamburger-menu {
    position: relative;
    width: 48px;
    height: 48px;
    background: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1600;
}

.hamburger-menu__icon {
    width: 20px;
    height: 12px;
    position: relative;
}

.hamburger-bar {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    border-radius: 1px;
    background: #000;
    transition: 0.4s;
}

.hamburger-bar:nth-child(1) {
    top: 0;
}

.hamburger-bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-bar:nth-child(3) {
    top: 100%;
    transform: translateY(-100%);
}

.hamburger-menu.active .hamburger-bar:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(25deg);
}

.hamburger-menu.active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-bar:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-25deg);
}

.l_header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--black-color);
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 1500;
}

@media screen and (min-width: 1080px) {
    .l_header-nav {
        width: 30%;
        transform: translateX(260%);
    }
}

.l_header-nav.active {
    transform: translateX(0%);
    opacity: 1;
    pointer-events: auto;
}

@media screen and (min-width: 1080px) {
    .l_header-nav.active {
        transform: translateX(234%);
    }
}

.logo-area {
    text-align: center;
    margin: 24px 48px;
    width: 100px;
}

.logo {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #000;
    font-weight: bold;
}

.container-header-nav {
    max-width: 600px;
    margin: 0 32px;
    color: var(--white-color);
}



.item-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.number {
    font-weight: bold;
    font-size: 16px;
    color: var(--accent-color);
}

.line {
    flex-grow: 1;
    height: 1px;
    background-color: #ffffff42;
}

.title {
    font-weight: bold;
    margin-left: 40px;
    font-size: 12px;
}

.description {
    margin-top: 4px;
    margin-left: 40px;
    font-size: 12px;
}

.m_kv {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 2s ease-in-out;
}

.top_kv {
    background-image: url("../img/home/kv1-img.webp");
}

.logo_img-wraper {
    width: 120px;
    height: 100px;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (min-width: 1080px) {
    .logo_img-wraper {
        width: 240px;
        height: 200px;
        top: 35%;
    }
}

.m_kv_box {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-5%, 15%);
    text-align: left;
}

@media screen and (min-width: 1080px) {
    .m_kv_box {
        position: absolute;
        top: 60%;
        left: 40%;
        transform: translate(-50%, -50%);
    }

    .u_dn_lg {
        display: none;
    }
}

.m_kv_copy {
    font-size: 24px;
    font-weight: bold;
    color: var(--white-color);
    line-height: 1.5;
    margin-bottom: 20px;
}

@media screen and (min-width: 1080px) {
    .m_kv_copy {
        font-size: 48px;
        text-shadow:
            0 0 3px var(--black-color),
            0 0 6px var(--black-color);
    }
}

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.scroll_down {
    position: relative;
    width: 100%;
    height: 100vh;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.scroll_down:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
}

.scroll_down a {
    display: inline-block;
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    z-index: 2;
    color: #fff;
    font-size: 8px;
    font-weight: bold;
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1;
    letter-spacing: .2em;
    text-transform: uppercase;
    text-decoration: none;
    writing-mode: horizontal-tb;
    transition: .2s;
    overflow: hidden;
    padding: 0 0 100px;
    text-align: center;
}

@media screen and (min-width: 1080px) {
    .scroll_down a {
        font-size: 14px;
    }
}

.scroll_down a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 80px;
    background: #ddd;
    transform: translateX(-50%);
}

.scroll_down a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 80px;
    background: rgb(0, 200, 255);
    transform: translateX(-50%);
}

.scroll_down a:hover {
    opacity: .5;
}

#type01 a:after {
    animation: sdl01 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl01 {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }

    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }

    50.1% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}

.origin {
    background-image: url(../img/home/kv4.webp);
    position: relative;
    z-index: 1;
}

.origin-logo_img-wrap {
    width: 81px;
    height: 55px;
    margin-bottom: 20px;
}

@media screen and (min-width: 1080px) {
    .origin-logo_img-wrap {
        width: 162px;
        height: 110px;
        margin: 64px 0 0 0;
    }
}

.origin_txt-box {
    width: calc(100% - 32px);
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.origin_txt-box p {
    font-size: 20px;
    font-weight: bold;
    color: var(--white-color);
    line-height: 2;
}

@media screen and (min-width: 1080px) {
    .origin_txt-box p {
        font-size: 24px;
    }
}

.origin_txt-box p:last-child {
    line-height: 1.5;
    margin-top: 60px;
}

.origin-logo_img-wrap {
    position: absolute;
    bottom: 23%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (min-width: 1080px) {
    .origin-logo_img-wrap {
        bottom: 15%;
    }
}

/* photo */
.photo {
    background: var(--black-color);
    height: 100vh;
}

.photo-container {
    max-width: 800px;
    height: 100vh;
    padding: 80px 0;
    margin: 0 16px;
    position: relative;
    overflow: hidden;
}

@media screen and (min-width: 1080px) {
    .photo-container {
        max-width: 100%;
    }
}

.photo-img1 {
    width: 60%;
    height: auto;
    position: absolute;
    top: 10%;
    left: 30%;
    z-index: 3;
}

.photo-img2 {
    width: 30%;
    height: auto;
    position: absolute;
    top: 32%;
    right: -15%;
    z-index: 2;
}

.photo-img3 {
    width: 44%;
    height: auto;
    position: absolute;
    top: 64%;
    left: 22%;
    z-index: 3;
}

.photo-img4 {
    width: 65%;
    height: auto;
    position: absolute;
    top: 55%;
    right: -33%;
    z-index: 2;
}

@media screen and (min-width: 1080px) {
    .photo-img1 {
        width: 28%;
        top: 5%;
        left: 30%;
    }

    .photo-img2 {
        width: 20%;
        top: 15%;
        left: 75%;
        z-index: 3;
    }

    .photo-img3 {
        width: 25%;
        left: 15%;
        top: 40%;
        z-index: 1;
    }

    .photo-img4 {
        width: 40%;
        left: 80%;
        z-index: 3;
    }
}

.photo-text1 {
    position: absolute;
    top: 15%;
    left: 40%;
    font-size: 88px;
    font-weight: bold;
    color: var(--gray-color03);
    z-index: 2;
}

.photo-rectangle {
    z-index: 1;
    width: 45%;
    height: 85%;
    background: var(--gray-color);
    position: absolute;
    top: 8%;
    left: 78%;
}

.photo-text2 {
    position: absolute;
    top: 76%;
    left: 40%;
    font-size: 88px;
    font-weight: bold;
    color: var(--gray-color03);
    overflow: hidden;
    z-index: 2;
}

@media screen and (min-width: 1080px) {
    .photo-text1 {
        left: 80%;
    }

    .photo-text2 {
        left: 55%;
    }
}

@keyframes float {
    0% {
        transform: translateX(-50%) translateY(0);
    }

    25% {
        transform: translateX(-50%) translateY(-5px);
    }

    50% {
        transform: translateX(-50%) translateY(0);
    }

    75% {
        transform: translateX(-50%) translateY(5px);
    }

    100% {
        transform: translateX(-50%) translateY(0);
    }
}

.intro {
    background-image: url(../img/home/bg-silk.webp);
    position: relative;
    z-index: 1;
}

.intro-logo_img-wrap {
    width: 100px;
    height: 85px;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (min-width: 1080px) {
    .intro-logo_img-wrap {
        width: 150px;
        height: 130px;
        top: 15%;
    }
}

.intro p {
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    color: var(--black-color);
    line-height: 2.5;
    text-align: center;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (min-width: 1080px) {
    .intro p {
        font-size: 20px;
    }
}

.arrow__icon {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.arrow__icon span {
    display: block;
    width: 100%;
    height: 100%;
    background: transparent;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(135deg);
    position: absolute;
    left: 0;
}

.arrow__icon span:nth-child(1) {
    top: 0;
}

.arrow__icon span:nth-child(2) {
    top: -100%;
}

.arrow__icon span:nth-child(3) {
    top: -200%;
}

.service-main-ttl {
    font-weight: 1000;
    font-size: 20px;
    letter-spacing: normal;
    text-align: center;
    color: var(--accent-color);
    margin-top: 60px;
}

.contents-border {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gray-color02);
    margin: 32px 0 auto;
}

@media screen and (min-width: 1080px) {
    .flex-container {
        display: flex;
        flex-wrap: wrap;
        gap: 32px;
    }

    .flex-container>div {
        flex: 0 0 calc(50% - 16px);
        box-sizing: border-box;
    }
}

.service_img-wrap {
    margin-top: 24px;
}

.service-ttl {
    display: flex;
    align-items: center;
    justify-content: start;
    color: var(--gray-color);
    font-size: 15px;
    gap: 8px;
    margin-top: 20px;
}

.service-ttl::before {
    content: "";
    width: 15px;
    height: 15px;
    background: var(--gray-color);
    top: 50%;
    margin-left: 2px;
}

.service-txt {
    margin: 16px;
    line-height: 2.5;
    font-weight: bold;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.service-list img {
    aspect-ratio: 3/2;
    object-fit: cover;
}

.service-list.service-list_beauty {
    grid-template-columns: repeat(3, 1fr);
}


.btn {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
    margin-top: 64px;
    margin-right: 16px;
    margin-bottom: 80px;
}

.btn-wrap {
    width: 48px;
    height: 48px;
    margin-left: 16px;
}


/*--------------------------------------------------
footer
--------------------------------------------------*/
.l_footer {
    background: var(--black-color);
    text-align: center;
    color: var(--white-color);
}

.l_footer-logo_link {
    display: inline-block;
    width: 123px;
    height: 102px;
    margin-top: 64px;
}

.l_footer_item {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 40px;
}

.accordion {
    padding-top: 64px;
}

.accordion:not(:last-of-type) {
    margin-bottom: 100px;
}

.accordion_list {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
}

.accordion_item {
    overflow: hidden;
}

.accordion_ttl {
    background: transparent;
    text-align: left;
    padding: 16px;
    cursor: pointer;
    position: relative;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
    border-bottom: 1px solid var(--white-color);
}

.accordion_txt {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    text-align: left;
}

.accordion_txt_company p:not(:first-child) {
    margin-top: 16px;
}

.accordion_ttl::before,
.accordion_ttl::after {
    content: "";
    position: absolute;
    background: var(--white-color);
    top: 50%;
    right: 30px;
    width: 20px;
    height: 1px;
    transition: transform 0.3s ease;
    transform-origin: center;
}


.accordion_ttl::after {
    transform: translateY(-50%) rotate(90deg);
}


.accordion_ttl::before {
    transform: translateY(-50%) rotate(0deg);
}


.accordion_ttl.is_active::after {
    transform: translateY(-50%) rotate(-180deg);
}

.accordion_txt.open {
    padding: 20px 16px;
}

.accordion_txt.open.accordion_txt_instruct {
    display: flex;
    gap: 32px;
}

.site-map_item-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 32px 0;
}



.back-to-top-wrap {
    width: 100%;
}

.back-to-top {
    display: flex;
    align-items: center;
    margin-top: 64px;
    gap: 16px;
    justify-content: end;
    padding-right: 16px;
}

.back-to-top p {
    font-size: 20px;
}

.back-to-top span {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid var(--white-color);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 16px;
}

.l_footer-copy {
    font-size: 12px;
    margin-top: 40px;
    padding-bottom: 16px;
}

/*--------------------------------------------------
company
--------------------------------------------------*/

.company-section-area {
    background: var(--base-color);
    padding: 80px 0;
}


.ttl-wrap {
    background: var(--accent-color);
    height: 200px;
    position: relative;
}

@media screen and (min-width: 1080px) {
    .ttl-wrap {
        background: transparent;
    }
}

.section-ttl {
    text-align: center;
    color: var(--white-color);
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (min-width: 1080px) {
    .section-ttl {
        color: var(--accent-color);
        font-size: 32px;
        top: 60%;
    }
}

.company_main .section-ttl::after {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.company-information .section-ttl::after {
    font-size: 12px;
    content: "CORPORATE INFORMATION";
    white-space: nowrap;
}

@media screen and (min-width: 1080px) {
    .company-information .section-ttl::after {
        font-size: 16px;
    }
}

.founders-message .section-ttl::after {
    font-size: 12px;
    content: "FOUNDERS MESSAGE";
    white-space: nowrap;
}

@media screen and (min-width: 1080px) {
    .founders-message .section-ttl::after {
        font-size: 16px;
    }
}

.company-detail-wrap {
    padding: 32px 24px 80px 24px;
}

.info-head {
    margin-top: 32px;
}

.info-txt {
    margin-top: 16px;
}

.info-txt .business {
    margin-left: 16px;
}

@media screen and (min-width: 1080px) {
    .info-txt {
        font-size: 18px;
    }
}

.company-img-wrap {
    height: 100vh;
}

.company-border {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--gray-color02);
    margin: 32px 0 auto;
}

.message-txt-wrap {
    max-width: var(--content-width-sm);
    margin: 64px auto 0;
    padding: 0 16px;
}

.message-txt {
    line-height: 2.5;
}

@media screen and (min-width: 1080px) {
    .message-txt {
        font-size: 18px;
    }
}

.sigh-wrap {
    display: flex;
    align-items: end;
    justify-content: end;
    gap: 16px;
    padding: 40px 0;
}

.sigh-img-wrap {
    width: 120px;
}

.scroll-target {
  scroll-margin-top: 100px; /* 上に100pxの余白をとる */
}

/*--------------------------------------------------
privacy
--------------------------------------------------*/
.pp-tou {
    background: var(--black-color);
    color: var(--white-color);
    padding: 80px 0;
}

.pp_main {
    color: var(--white-color);
    max-width: var(--content-width-sm);
    padding: 0 16px;
    margin-bottom: 80px;
    margin: 0 auto;
}

.pp_title {
    font-weight: bold;
}

.pp_title-desc {
    margin-top: 16px;
    font-weight: 100;
}

.pp_desc-wrap {
    font-weight: 100;
}

.pp_desc-item {
    margin-top: 32px;
}

.desc-txt_ma-lg {
    margin-top: 32px;
}

.tou_main {
    color: var(--white-color);
    max-width: var(--content-width-sm);
    padding: 0 16px;
    margin-bottom: 80px;
    margin: 0 auto;
}

.tou_title {
    font-weight: bold;
    margin-top: 80px;
}

.tou_title-desc {
    margin-top: 16px;
    font-weight: 100;
}

.tou_desc-wrap {
    font-weight: 100;
}

.tou_desc-item {
    margin-top: 32px;
}

.logo-color-change {
    color: var(--black-color);
}

/*--------------------------------------------------
service
--------------------------------------------------*/
.resort-beauty {
    margin-top: 100px;
}
.service .l_header-logo_link {
    color: var(--black-color);
}

.service_main .section-ttl {
    font-size: 16px;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

@media screen and (min-width: 1080px) {
    .service_main .section-ttl {
        font-size: 18px;
        top: 80%;
    }
}

.service_main .section-ttl::after {
    font-family: "Libre Baskerville", serif;
    font-weight: bold;
    letter-spacing: normal;
    position: absolute;
    top: -150%;
    left: 50%;
    transform: translateX(-50%);
}

.resort-beauty .section-ttl::after {
    font-size: 20px;
    content: "RESORT BEAUTY";
    white-space: nowrap;
}

.resort-island .section-ttl::after {
    font-size: 20px;
    content: "ISLAND EXPERIENCE";
    white-space: nowrap;
}

.resort-gourmet .section-ttl::after {
    font-size: 20px;
    content: "GOURMET & LOCAL";
    white-space: nowrap;
}

.resort-move .section-ttl::after {
    font-size: 20px;
    content: "STAY & MOVE";
    white-space: nowrap;
}

.resort-connect .section-ttl::after {
    font-size: 20px;
    content: "CONNECT & SUPPORT";
    white-space: nowrap;
}

.resort_img-wrap {
    margin: 8px 16px;
}

.service_main p {
    font-size: 16px;
    margin: 48px 16px;
    letter-spacing: 0.2em;
    line-height: 32px;
}

@media screen and (min-width: 1080px) {
    .service_main p {
        font-size: 18px;
    }
}

@media screen and (min-width: 1080px) {
    .u_wsm-lg {
        width: 600px;
        margin: 0 auto;
    }

    .u_df-lg {
        display: flex;
    }
}