@charset "utf-8";

/*====================
common
=====================*/
:root {
    --contentWidth: 91.4%;
    --contentPadding: 4.2%;

    --primary-white: #FFFEFE;
    --primary-black: #374D56;
    --primary-blue: #8CCFDF;
    --primary-beige: #F3EAE1;
}

html {
    font-size: 62.5%;
}

body {
    color: var(--primary-black);
    font-family:
        "Zen Old Mincho",
        serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8;

    margin: 0 auto;
    width: 100vw;
    height: auto;
}

img {
    max-width: 100%;
    height: auto;
}

/* タイトル */
.title__wrap {
    width: min-content;
}

.section--title {
    color: var(--primary-black);
    text-align: center;
    font-family: "Bonheur Royale";
    font-size: 15rem;
    font-weight: 400;
}

.section--title::after {
    content: '';
    position: absolute;
    background: var(--primary-black);
    width: 300px;
    height: 1px;
    rotate: -45deg;
    display: inline-block;
    bottom: 130px;
    right: -10%;
}

/* サブタイトル */
.section--title {
    position: relative;

    &::before {
        position: absolute;
        content: attr(data-sub);
        bottom: 12%;
        right: -40%;
        font-family: "Zen Old Mincho";
        font-size: 2.4rem;
    }
}

.tbbr {
    display: none;
}

.spbr {
    display: none;
}

/* common tb (600px～1023px) */
@media screen and (min-width: 600px) and (max-width: 1023px) {

    /* タイトル */
    .section--title {
        font-size: 12rem;
    }

    .section--title::after {
        content: '';
        position: absolute;
        width: 220px;
        bottom: 90px;
        right: -10%;
    }

    /* サブタイトル */
    .section--title {
        position: relative;

        &::before {
            position: absolute;
            content: attr(data-sub);
            bottom: 7%;
            right: -7%;
            font-size: 1.8rem;
        }
    }

    .tbbr {
        display: unset;
    }

    .pcbr {
        display: none;
    }
}/* tb  */

/* common sp(599px以下） */
@media screen and (max-width: 599px) {
    body {
        font-size: 1.6rem;
    }

    /* タイトル */
    .section--title {
        font-size: 10rem;
    }

    .section--title::after {
        content: '';
        position: absolute;
        width: 190px;
        bottom: 90px;
        right: -10%;
    }

    /* サブタイトル */
    .section--title {
        position: relative;

        &::before {
            position: absolute;
            content: attr(data-sub);
            bottom: 7%;
            right: -7%;
            font-size: 1.6rem;
        }
    }

    .spbr {
        display: unset;
    }

    .pcbr {
        display: none;
    }

    .tbbr {
        display: none;
    }
}/* sp 599px */

/*====================
header
=====================*/
.nav {
    background: url(../images/menu_pc.jpg) no-repeat;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    background-size: cover;
    background-position: center;
    aspect-ratio: 9/5;

    display: flex;
    padding: 120px 6.94% 40px;
    flex-direction: column;
    align-items: center;
}

.nav--sp {
    display: none;
}

/* .nav初期表示 */
.nav {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    opacity: 0;
    transition: 0.8s;
    pointer-events: none; /* クリックイベントを無効化 */
}

.nav__header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 120px;
    padding: 0 4% 0 0;
    width: 100vw;
}

.nav__wrap {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 5% 2% 5% 5.5%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-header {
    width: 305px;
}

.nav__list {
    display: flex;
    flex-direction: column;
}

.nav__item {
    display: flex;
    padding: 1.2% 0;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--primary-black);
}

.nav__item:nth-child(3) {
    display: block;
    align-items: center;
    border-bottom: 1px solid var(--primary-black);
}

.nav-service {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__menu__item {
    font-family: "Cormorant Garamond";
    font-size: 3rem;
    font-weight: 500;
}

.nav__ja {
    font-family: "Zen Kaku Gothic New";
    font-size: 1.8rem;
    font-weight: 400;
    margin:  0 20px 0 40px;
}

.nav__menu__txt {
    font-family: "Zen Kaku Gothic New";
    font-size: 1.6rem;
    font-weight: 400;
    margin: 10px 0 10px 40px;
}

/* .nav.active表示 */
.nav.active {
    opacity: 1;
    pointer-events: auto; /* クリックイベントを有効化 */
}

.header__menu.active {
    opacity: 0;
    transition: 0.3s;
}

/* header tb (600px～1023px) */
@media screen and (min-width: 600px) and (max-width: 1023px) {

    .logo-header {
        width: 200px;
    }

    .nav__wrap {
        padding: 0;
    }

    .nav__menu__item {
        font-size: 2.8rem;
    }

    .nav__ja {
        font-size: 1.8rem;
    }

    .nav__menu__txt {
        margin: 0 0 0 40px;
    }
}/* tb  */


/* header sp(599px以下） */
@media screen and (max-width: 599px) {
    .nav {
        display: none
    }

    .nav--sp {
        background: url(../images/menu_pc.jpg) no-repeat;
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
        background-size: cover;
        background-position: center;
        aspect-ratio: 9/5;

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav__header--sp {
        display: flex;
        padding: 15px 4%;
        justify-content: flex-end;
        align-items: center;
        gap: 81px;
        align-self: stretch;
    }

    .nav__btn--sp {
        width: 16px;
        height: 16px;
    }

    .nav__wrap--sp {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .logo-header {
        width: 115px;
    }

    /* .nav--sp初期表示 */
    .nav--sp {
        width: 100%;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 100;
        transform: translateX(200%);
        transition: transform 0.6s;
        padding-top: 70px;
        height: 100vh;
    }

    .nav__item--sp {
        display: flex;
        width: 100%;
        padding: 10px;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid var(--primary-black);
        gap: 20px;
    }

    .nav__menu-en {
        font-family: "Cormorant Garamond";
        font-size: 2.4rem;
        font-weight: 500;
    }

    .nav__menu-ja {
        font-family: "Zen Kaku Gothic New";
        font-size: 1.6rem;
        font-weight: 400;
    }

    /* .nav--sp.active表示 */
    .nav--sp.active {
        transform: translateX(0);
    }

}/* sp 599px */

/*====================
article__header
=====================*/
.header {
    display: flex;
    width: 100%;
    background: transparent;
    padding: 40px 40px 0px;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 100;
}

.logo-mark {
    width: 80px;
    height: auto;
}

.header__menu__wrap {
    display: flex;
    padding-left: 40px;
    justify-content: center;
    align-items: center;
    gap: 40px;

    /* ヘッダー固定 */
    position: fixed;
    top: 60px;
    right: 4%;
    z-index: 999;
}

.header__menu {
    display: flex;
    padding: 0px 40px;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
    border-right: 1px solid #374D56;

    /* ヘッダー固定 */
    position: fixed;
    top: 40px;
    right: 10%;
    z-index: 999;
    opacity: 1; /* 初期表示はopacity: 1 */
    transition: opacity 0.3s ease-in-out; /* スムーズなトランジション */
}

.header__menu.header__menu--hidden {
    opacity: 0; /* スクロール時に非表示にするスタイル */
}

.menu__item {
    font-family: "Cormorant Garamond";
    font-size: 2.8rem;
    font-weight: 500;
}

/* ハンバーガーメニュー */
.menu__btn {
    position: relative;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
    width: 46px;
    height: 16px;
    transition: 1.2s;
    z-index: 999;
}

.menu__btn span {
    display: inline-block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-black);
    transition: 0.6s;
}

.menu__btn span:nth-of-type(1) {
    top: 0;
}

.menu__btn span:nth-of-type(2) {
    top: 10px;
}

.menu__btn span:nth-of-type(3) {
    bottom: 0;
}

.menu__btn span:nth-of-type(2) {
    bottom: 0;
    top: auto;
}

.menu__btn.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(45deg);
}

.menu__btn.active span:nth-of-type(2) {
    transform: translateY(-5px) rotate(-45deg);
}

.header--sp {
    display: none;
}

/* article__header tb (600px～1023px) */
@media screen and (min-width: 600px) and (max-width: 1023px) {
    .header {
        padding: 20px 20px 0px;
    }

    .logo-mark {
        width: 60px;
    }

    .header__menu__wrap {
        top: 50px;
        right: 3%;
    }

    .menu__item {
        font-size: 2rem;
    }

    .header__menu {
        right: 14%;
    }

    .menu__btn {
        width: 38px;
    }
}/* tb */

/* article__header sp(599px以下） */
@media screen and (max-width: 599px) {
    .header {
        display: none;
    }

    .header--sp {
        display: flex;
        width: 100vw;
        height: 70px;
        padding: 16px;
        justify-content: center;
        align-items: center;
        gap: 90px;
        flex-shrink: 0;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 100;
    }


    /* .header--sp.invert表示 */
    .header--sp.invert {
        background-color: rgba(255, 254, 254, 0.80);
        transition: 0.6s;
    }

    .logo_header--sp {
        position: sticky;
        width: 112px;
        z-index: 101;
        /* opacity: 0; */
    }

    .logo_header--sp {
        opacity: 0; /* 初期は非表示 */
        transition: opacity 0.3s ease-in-out;
    }

    /* .logo_header--sp.active表示 */
    .logo_header--sp.active {
        opacity: 1;
        transition: 0.3s;
    }

    .header__menu__wrap {
        display: flex;
        padding-left: 40px;
        justify-content: center;
        align-items: center;
        gap: 40px;

        /* ヘッダー固定 */
        position: fixed;
        top: 26px;
        right: 4%;
        z-index: 101;
    }

    /* ハンバーガーメニュー */
    .menu__btn {
        width: 32px;
        height: 16px;
    }

    .menu__btn span {
        display: inline-block;
        position: absolute;
        left: 0;
        width: 100%;
        height: 1px;
        background: var(--primary-black);
        transition: 0.6s;
    }

    .menu__btn span:nth-of-type(1) {
        top: 0;
    }

    .menu__btn span:nth-of-type(2) {
        top: 10px;
    }

    .menu__btn span:nth-of-type(3) {
        bottom: 0;
    }


    .menu__btn span:nth-of-type(2) {
        bottom: 0;
        top: auto;
    }

    .menu__btn.active span:nth-of-type(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .menu__btn.active span:nth-of-type(2) {
        transform: translateY(-5px) rotate(-45deg);
    }
}/* sp 599px */

/*====================
fadeIn
=====================*/
.fadeIn {
    opacity: 0;
    transition: opacity 1.6s; /* opacity のみをトランジション */
}

.fadeIn.animated {
    animation: fadeIn 1s ease-in-out forwards; /* キーフレーム */
}

/* キーフレームの定義 */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/*====================
fadeUp
=====================*/
.fadeUp {
    transform: translateY(60px); /* translateY を使用 */
    opacity: 0;
    transition: transform 1.6s, opacity 1.6s; /* transform と opacity をトランジション */
}

.fadeUp.animated {
    animation: fadeUp 1s ease-in-out forwards; /* キーフレーム */
}

/* キーフレームの定義*/
@keyframes fadeUp {
    0% {
        transform: translateY(60px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/*====================
news
=====================*/
.section--news {
    display: flex;
    background: url(../images/News_backgroubd.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 60px 10.4%;
    flex-direction: column;
    align-items: flex-end;
    gap: 40px;
    position: sticky;
    z-index: 2;
}

/* タイトル */
.title__wrap_news {
    width: 400px;
}

.section--title_news {
    color: var(--primary-white);
    text-align: center;
    font-family: "Bonheur Royale";
    font-size: 12rem;
}

.section--title_news::after {
    content: '';
    position: absolute;
    background: var(--primary-white);
    width: 286px;
    height: 1px;
    rotate: -45deg;
    display: inline-block;
    bottom: 45%;
    right: 12%;
}

/* サブタイトル */
.section--title_news {
    position: relative;

    &::before {
        position: absolute;
        content: attr(data-sub);
        bottom: 18%;
        right: 18%;
        font-family: "Zen Old Mincho";
        font-size: 2.4rem;
    }
}

.news--item {
    text-align: right;
    gap: 30px;
}

.news--title {
    font-size: 3.2rem;
    margin-bottom: 30px;
}

.news--txt {
    font-size: 2rem;
}

/* news sp(599px以下） */
@media screen and (max-width: 599px) {
    .section--news {
        display: flex;
        background: url(../images/news_sp.jpg) no-repeat;
        background-size: cover;
        background-position: center;
        display: flex;
        padding: 40px 0px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        align-self: stretch;
    }

    /* タイトル */
    .title__wrap_news {
        width: 300px;
    }

    .section--title_news {
        color: var(--primary-white);
        text-align: center;
        font-family: "Bonheur Royale";
        font-size: 8rem;
    }

    .section--title_news::after {
        content: '';
        position: absolute;
        background: var(--primary-white);
        width: 140px;
        height: 1px;
        rotate: -45deg;
        display: inline-block;
        bottom: 50%;
        right: 28%;
    }

    /* サブタイトル */
    .section--title_news {
        position: relative;

        &::before {
            position: absolute;
            content: attr(data-sub);
            bottom: 12%;
            right: 18%;
            font-family: "Zen Old Mincho";
            font-size: 1.6rem;
        }
    }

    .news--title {
        text-align: center;
        text-shadow: 0px 4px 8px rgba(255, 253, 253, 0.25);
        font-size: 2.2rem;
        font-weight: 700;
    }

    .news--txt {
        text-align: center;
        font-size: 1.6rem;
        text-shadow: 0px 4px 8px rgba(255, 253, 253, 0.25);
        line-height: 1.4;
        margin-bottom: 20px;
    }
}/* sp 599px */

/*====================
contact
=====================*/
.section--contact {
    background: var(--primary-white);
    display: flex;
    padding: 200px 10.4%;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    text-align: center;
    font-family: "Zen Old Mincho";
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.background-img {
    width: 90%;
    position: absolute;
    top: -20%;
    left: -12%;
    transition: transform 0.3s ease-in-out; /* 必要に応じて */
}

.background-img.rotate {
    animation: 28s linear infinite rotation1;
}

@keyframes rotation1 {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ボタン */
.btn__area {
    display: flex;
    justify-content: center;
    gap: 150px;
    flex-wrap: wrap;
    width: fit-content;
}

.btn-style,
.btn-mail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    color: var(--primary-black);
    text-decoration: none;
    border-radius: 0;
    border: 1px solid var(--primary-black);
    cursor: pointer;
    font-size: 3.6rem;
    letter-spacing: 0.1em;
    outline: none;
    position: relative;
    box-sizing: border-box;
    width: 360px;
    text-align: center;
    white-space: nowrap;
    margin: 24px;
    margin-inline: auto;
    transition: all 0.3s;
}

.btn-mail {
    font-family: "Cormorant Garamond";
    letter-spacing: 0;
}

.btn-style::before,
.btn-mail::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 100%;
    height: 100%;
    background: var(--primary-blue);
    z-index: -2;
    transition: all 0.3s ease;
}

.btn-style:hover::before,
.btn-mail:hover::before {
    top: 0;
    left: 0;
    transition: all 0.3s;
}

.pc-icon {
    width: 42px;
    height: 34px;
    margin-right: 20px;
    margin-bottom: 10px;
}

.mail-icon {
    width: 55px;
    height: 55px;
    margin-right: 20px;
}

.btn--txt {
    font-size: 2rem;
    line-height: 1.5;
}

.comingsoon{
    color: #8CCFDF;
    font-family: "Bonheur Royale";
    font-size: 2.4rem;
}

/* contact sp(599px以下） */
@media screen and (max-width: 599px) {
    .section--contact {
        display: flex;
        background: var(--primary-white);
        display: flex;
        padding: 150px 4.2%;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        align-self: stretch;
    }

    .background-img {
        width: 100%;
        position: absolute;
        top: -3%;
        left: -20%;
        animation: 24s linear infinite rotation1;
    }

    .contact--title {
        text-align: center;
        text-shadow: 0px 4px 8px rgba(255, 253, 253, 0.25);
        font-size: 2.2rem;
        font-weight: 700;
    }

    .contact--txt {
        font-size: 1.6rem;
        text-align: center;
        text-shadow: 0px 4px 8px rgba(255, 253, 253, 0.25);
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .colon {
        display: none;
    }

    .btn-style,
    .btn-mail {
        font-size: 2.8rem;
        width: 280px;
        padding: 16px 20px;
    }

    .btn__area {
        gap: 20px;
    }

    .pc-icon,
    .mail-icon {
        width: 30px;
        height: auto;
        margin-right: 10px;
    }

    .btn--txt {
        font-size: 1.4rem;
    }
}/* sp 599px */

/*====================
follow
=====================*/
.follow--item {
    display: flex;
    width: 100%;
    padding: 20px 0px;
    align-items: flex-end;
    justify-content: space-around;
    border-bottom: 1px solid var(--primary-blue);
    color: #8CCFDF;
}

.follow {
    font-size: 3.2vw;
    font-family: "Cormorant Garamond";
    font-weight: 500;
}

.follow--list {
    width: 160px;
}

/* follow tb (600px～1023px) */
@media screen and (min-width: 600px) and (max-width: 1023px) {
    .follow--list {
        width: 120px;
    }
}/* tb */

/* follow sp(599px以下） */
@media screen and (max-width: 599px) {
    .follow--item {
        display: flex;
        padding: 0px 4.2%;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        gap: 80px;
        border-bottom: none;
        width: 100%;
    }

    .follow {
        font-size: 4rem;
        width: 100%;
        max-width: 327px;
        border-bottom: 1px solid var(--primary-blue);
    }
}/* sp 599px */

/*====================
footer
=====================*/
.footer {
    background: var(--primary-blue);
    display: flex;
    padding: 80px 10.4% 60px;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.logo-footer {
    width: 192px;
}

.footer--item {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
}

.footer--txt:first-child {
    border-right: 1px solid var(--primary-black);
}

.footer--txt--top {
    display: none;
}

.footer--txt {
    text-align: center;
    font-family: "Zen Kaku Gothic New";
    font-size: 1.4rem;
    font-weight: 400;
    padding: 0px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.copyright {
    text-align: center;
    font-family: "Zen Kaku Gothic New";
    font-size: 1.4rem;
}

/* footer sp(599px以下） */
@media screen and (max-width: 599px) {
    .footer {
        background: var(--primary-blue);
        display: flex;
        padding: 60px 2.6% 40px;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .logo-footer {
        width: 115px;
    }

    .footer--item {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .footer--txt--top {
        display: unset;
        text-align: center;
        font-family: "Cormorant Garamond";
        font-size: 1.4rem;
        font-weight: 700;
    }

    .footer--txt:first-child {
        border-right: none;
    }

    .copyright {
        text-align: center;
        font-family: "Zen Kaku Gothic New";
        font-size: 1rem;
    }
}/* sp 599px */