@charset "utf-8";

/*==========================
common
==========================*/
:root {
    --primary-white: #FDFDFD;
    --primary-whiteLow: #D9D9D9;
    --primary-black: #333A3A;
    --primary-blue: #17222E;
    --primary-orange: #FFA500;
    --contentWidth: 88.3%;
    --contentPadding: 5.8%;
    --contentWidthPc: 1000px;

}

html {
    font-size: 62.5%;
}

body {
    font-family:
        'Noto Sans JP',
        Arial,
        sans-serif;
    font-style: normal;
    color: var(--primary-white, #FDFDFD);
    background-color: var(--primary-blue, #17222E);
    line-height: 1;
}

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

.pc {
    display: none;
}

/* fadeIn */
.fadeIn {
    transform: translate(0, 50px);
    opacity: 0;
    transition: 1.5s;
}

.fadeIn.animated {
    transform: translate(0, 0);
    opacity: 1;
}

/* blur */
.blur {
    animation-name: blurAnime;
    animation-duration: 5ms;
    animation-fill-mode: forwards;
}

@keyframes blurAnime {
    from {
        filter: blur(10px);
        transform: scale(1.02);
    }

    to {
        filter: blur(0);
        transform: scale(1);
    }
}

/*========= ナビゲーションのためのCSS ===============*/

/*アクティブになったエリア*/
#g-nav.panelactive {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    height: 100dvh;

}

/*丸の拡大*/
.circle-bg {
    position: fixed;
    z-index: 3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #D9D9D9;
    /*丸のスタート位置と形状*/
    transform: scale(0);
    /*scaleをはじめは0に*/
    right: -50px;
    top: -50px;
    transition: all .6s;
    /*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive {
    transform: scale(50);
    /*クラスが付与されたらscaleを拡大*/
}


#g-nav.panelactive {
    display: block;
    /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav {
    /* opacity: 0; */
    display: none;
    /*はじめは透過0*/
}

/*背景が出現後にナビゲーションを表示*/
/* 背景が出現後にナビゲーション li を表示*/
#g-nav.panelactive {
    animation-name: gnaviAnime;
    animation-duration: 1s;
    animation-delay: .2s;
    /*0.2 秒遅らせて出現*/
    animation-fill-mode: forwards;
    opacity: 0;
    /* display: none; */
    background-color: #FDFDFD;
    color: var(--primary-black, #17222E);
    overflow: scroll;
}

@keyframes gnaviAnime {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*リストのレイアウト設定*/
.pcHeader_wrapper {
    display: none;
}


header h1,
header p {
    width: 12.4rem;
    height: 2.5rem;
}

header {
    position: fixed;
    z-index: 10;
    width: 100%;
    height: 6rem;
    background-color: #17222e32;
}

.drawer_close {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 35px 0;
}

.openbtn {
    position: relative;
    cursor: pointer;
    width: 30px;
    height: 30px;
    margin-bottom: 1em;
}

.openbtn span {
    display: block;
    position: absolute;
    background-color: var(--primary-white, #FDFDFD);
    height: 1px;
}

.openbtn span:nth-of-type(1) {
    top: 20px;
    width: 100%;
}

.openbtn span:nth-of-type(2) {
    top: 30px;
    width: 20px;
}

nav ._en {
    font-family: "Ubuntu", sans-serif;
    font-size: 2em;
    font-style: italic;
    line-height: 1;
}

nav ._ja {
    font-size: 1.4em;
}

.navList {
    padding: 0 25px;
}

.navList li a {
    display: flex;
    flex-flow: column;
    width: var(--contentWidth, 88.3%);
    margin: 10px auto;
}

.navList li {

    border-bottom: solid 1px #333A3A;
}

.drawer_open ul li:last-child {
    border-bottom: none;
}

.drawer_open {
    padding-top: 10px;
}

nav ._en i {
    color: #333A3A;
    font-size: 0.9em;
}

.drawer_logo {
    width: 20.8rem;
    margin: 0 auto;
    padding: 50px 0 50px;
}

.drawer_open h2 {
    text-align: center;
    margin: 11rem auto 0;
}

.sns_container {
    display: flex;
    justify-content: space-between;
    width: 22em;
    margin: 0 auto;
    padding-bottom: 50px;
}

.sns_container li {
    width: 4.2rem;
    margin: 0;
}

.lanthan_bk {
    width: 11em;
    margin-top: -35rem;
    margin-left: auto;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
    z-index: 9999;
    /*ボタンを最前面に*/
    cursor: pointer;
    width: 50px;
}

/*×に変化*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    height: 3px;
    border-radius: 2px;
    background-color: var(--primary-white, #FDFDFD);
    width: 45%;
}

.openbtn span:nth-of-type(1) {
    top: 20px;
    width: 100%;
}

.openbtn span:nth-of-type(2) {
    top: 30px;
    width: 20px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

.openbtn.active span {
    background-color: #333A3A;
}

/* page top */
#page-top {
    position: fixed;
    z-index: 5;
    right: -30px;
    bottom: 50px;
    height: 23px;
    transform: rotate(90deg);
    font-size: 1.6rem;
    line-height: 1.5rem;
    color: #888888;
    padding: 0 0 0 35px;
    border-bottom: solid 1px;
}

#page-top::before {
    content: "";
    position: absolute;
    top: 23px;
    left: 0px;
    width: 24px;
    border-top: solid 1px;
    transform: rotate(315deg);
    transform-origin: left top;
}

/* page top */
/* header_PC */
@media screen and (min-width:1069px) {

    .spHeader_wrapper {
        display: none;
    }

    header {
        height: 14rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .pcHeader_wrapper {
        min-width: var(--contentWidthPc, 1000px);
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin: 0 auto;

    }

    header p {
        width: 218px;
        height: 44px;
    }

    .pcMenu {
        display: flex;
        justify-content: flex-end;
        gap: 45px;
    }

    .pcMenu_insta {
        width: 1.2rem;
        vertical-align: middle;
    }

    .pcMenu li {
        font-size: 1.6em;
    }

    .fixed {
        position: fixed;
        top: 0;
        left: 0;
        height: 7rem;
    }
}

/* header_PC */
/* footer */
.footer-logo__icon {
    margin-left: calc((100% - 88.3%) / 2);
}

.footer-navMenu {
    margin-left: calc((100% - 88.3%) / 2);
}

.footer-logo {
    width: 18.8em;
}

.footer-navMenu ._en {
    font-family: "Ubuntu", sans-serif;
    font-size: 2em;
    font-style: italic;
    line-height: 1;
}

.footer-navMenu ._ja {
    font-size: 1.4em;
    padding-bottom: 1.4em;
}

.footer-navMenu ul li {
    display: flex;
    flex-flow: column;
    width: var(--contentWidth, 88.3%);
}

.footer-navMenu ._en i {
    color: #fefefe;
    font-size: 0.9em;
}

.footer-navMenu a {
    display: contents;
}

.footer-sns_container {
    display: flex;
    margin: 2.4em 0 4.3em;

}

.footer-sns_container .snsIcon {
    width: 5rem;
    margin-right: 1rem;
}

.footer-sns_container i {
    font-size: 5em;
    margin: 0.3em;
}

.footer-spMenu img {
    width: 22em;
    margin: 0 auto;
}

.footer-lanthan_bk {
    width: 11rem;
    margin-top: -35rem;
    margin-left: auto;
}

footer small {
    display: block;
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 3rem;
}

footer {
    overflow: hidden;
    padding-top: 5rem;
}

/* footer_pc */
@media screen and (min-width:1069px) {
    .footer-nav {
        max-width: 1000px;
        margin: 0 auto;
    }

    .footer-logo__icon {
        margin-left: calc((100% - 1000px) / 2);
    }

    .footer-navMenu {
        margin-left: calc((100% - 1000px) / 2);
    }


    .footer-logo__icon {
        display: flex;
        align-items: center;
        gap: 7.3rem;
        width: 61rem;
        justify-content: space-between;
        padding-bottom: 5.3rem;
    }

    .footer-sns_container {
        margin: 0;
    }

    .footer-navMenu {
        width: 61rem;
    }

    .footer-navMenu ._en {
        font-size: 3.2rem;
    }

    .footer-navMenu ._ja {
        font-size: 2.1rem;
        padding-bottom: 0;
    }

    .footer-navMenu ul li {
        width: 100%;
    }

    .footer-nav_wrapper {
        width: 100%;
    }

    .footer-navMenu ._en i {
        font-size: 2rem;
    }

    .footer-navMenu ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        row-gap: 5.3rem;
    }

    footer small {
        padding-top: 10rem;
    }

    footer {
        padding-top: 17rem;
    }
}

/* footerPc */
/* productLink */
.productLink {
    text-align: center;
    padding: 0 30px;
}

/*== ボタン共通設定 */
.btn {
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
    overflow: hidden;
    /*ボタンの形状*/
    text-decoration: none;
    display: inline-block;
    border: 1px solid #ffffff;
    /* ボーダーの色と太さ */
    width: 100%;
    font-size: 1.6rem;
    line-height: 5;
    letter-spacing: 0.16rem;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/
    transition: ease .2s;
    margin-bottom: 5.5rem;
}

/*ボタン内spanの形状*/
.btn span {
    position: relative;
    z-index: 7;
    /*z-indexの数値をあげて文字を背景よりも手前に表示*/
    color: #ffffff;
}

/*== 背景が流れる（中央から外） */

.bgcenterout:before {
    content: '';
    /*絶対配置で位置を指定*/
    position: absolute;
    top: 0;
    left: 0;
    z-index: 6;
    /*色や形状*/
    background: #333;
    width: 100%;
    height: 100%;
    /*アニメーション*/
    transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 0);
    transform-origin: center;
}

/*hoverした際の形状*/
.bgcenterout:hover:before {
    transform: scale(1, 1);
}

@media screen and (min-width:769px) {
    .btn {
        max-width: 43rem;
        margin: 100px 0;
    }

    /* productBtn_whbk */
    .message .btn {
        margin: 90px 0 200px;
    }
}

/* productBtn_whbk */
.message .btn,
.indoor .btn {
    margin-bottom: 8.5rem;
}

.message .btn:hover span {
    color: #ffffff;
}

.productLink {
    max-width: 43rem;
    margin: 0 auto;
}

/* productLink */

/* Loading背景画面設定 */
#splash {
    /*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #17222e;
    text-align: center;
    color: #333A3A;
    display: none;
}

/* Loading画像中央配置 */
#splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #ffffff;
    padding: 0;
    margin: 0;
}

/* Loading アイコンの大きさ設定　*/
#splash_logo {
    width: 100rem;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* loading */

/*フッターまでスクロールしたら消す*/
.is-hidden {
    visibility: hidden;
    opacity: 0;
}

/* header_hidden */