/* 変数 */
:root {
    --fz11: calc(10 / 16 * 1rem);
    --fz18: calc(13 / 16 * 1rem);/* 基本テキスト文字サイズ */
    --fz20: calc(18 / 16 * 1rem);
    --fz27: calc(24 / 16 * 1rem);
    --fz35: calc(27 / 16 * 1rem);

    --space-xxs: 1.25rem; /* 20px */
    --space-xs: 2.25rem;  /* 36px */
    --space-s: 3.5rem; /* 25.6px */
    --space-m: 2.8rem; /* 68px */
    --space-l: 2.5rem; /* 40px */
    --space-xl: 3.75rem; /* 60px */

    --inner_size: 90%;
    --inner_per: 76.5%;
    --text_space: -7.67px;/* line-height調節 */
    --en_font: "proxima-nova", sans-serif;
}

html {
    scroll-padding-top: 50px;
    scroll-behavior: smooth;
}
body {
    font-size: 14px;
    background: #86888c;
    color: #fff;
    font-size: var(--fz18);
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    letter-spacing: 0.13em;
}
img {
    width: 100%;
    height: auto;
}
a {
    color: #fff;
    text-decoration: none;
}

/* コンテンツ共通 */
img.scale50 {
    max-width: none;
    width: auto;
    zoom: 0.5;
}
p,dd {
    line-height: 2.36;
    margin: var(--text_space) 0;
}
p:has(> img:only-child) {
    line-height: normal;
    margin: 0;
}

.en_font {
    font-family: var(--en_font);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.2em !important;
}
.fz_27 {
    font-size: var(--fz27);
}
.fz_35 {
    font-size: var(--fz35);
}
section {
    margin: var(--space-xl) 0;
}

.blurTrigger, .fadeUpTrigger {
    opacity: 0;
    transition: transform 0.5s linear;
    animation-duration: 1.5s;
    animation-fill-mode: both;
}
.blur {
    animation-name: imageBlur;
    opacity: 1;
    transition: .8s;
}

@keyframes imageBlur {
    from {
        opacity: 0;
        filter: blur(15px);
    }

    to {
        opacity: 1;
        filter: blur(0px);
    }
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    0% {
            opacity: 0;
            transform: translateY(2rem);
        }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* spのみcss */
.sp_flex {
    display: flex;
}
.sp_inner {
    width: 81%;
    margin-left: auto;
    margin-right: auto;
}
.sp_center {
    text-align: center;
}

.plants dl {
    background: url(../img/sp_num01.png) right bottom 3.1rem no-repeat;
    background-size: 83.4px auto;
}

.accesories dl {
    background: url(../img/sp_num02.png) right bottom 3.1rem no-repeat;
    background-size: 99.5px auto;
}

/* ヘッダー */
header {
    position: relative;
    z-index: 1;
    margin: 0;
}
header h1,
header p {
    margin: 1rem 0 0 1rem;
    width: 36px;
    height: auto;
}
.mv {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    margin: 0;
}
.mv_area {
    width: 100%;
    height: 100%;
}
.mv_area .vegas-content-scrollable {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.scrolldown {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 1rem;
    box-sizing: border-box;
}
.scrolldown div {
margin-bottom: 1rem;
}
.scrolldown .arrow {
animation: cirlemovehide 2s ease-out infinite;
}

@keyframes cirlemovehide {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    80% {
        opacity: .9;
    }
    100% {
        opacity: 0;
    }
}

/* footer */
footer {
    text-align: center;
}

footer dl {
    margin: var(--space-s) 0;
}

footer dl dt {
    margin-bottom: 1rem;
}

.address {
    font-size: var(--fz11);
}

/* convey */
.convey {
    padding-top: calc(100vh - 85.73px);
}
.convey h2 {
    margin-bottom: var(--space-xxs);
}

.convey_images {
    display: flex;
    flex-wrap: wrap;
    margin: var(--space-xl) 0;
    position: relative;
}

.img1 {
    width: 46%;
    margin: 0 16.2% 0 0;
}

.img2 {
    width: 28.4%;
    margin: 7% 0 0 0;
}

.img3 {
    width: 26.2%;
    margin: 11% 18% 0 11%;
}

.img4 {
    width: 36.8%;
    margin: 0;
}

.img5 {
    width: 29.3%;
    margin: 12% 23.7% 0 0;
}

.img6 {
    width: 47%;
    margin: 10% 0 0 0;
}
/* product */
.product h2 {
    margin-bottom: var(--space-s);
}
.product dl {
    padding: var(--space-l) 0 var(--space-xl) 0;
}
.product dl dt {
    margin-bottom: var(--space-xs);
}

.online {
    padding: var(--space-l) 0;
    border: 1px solid #efefef;
    width: var(--inner_per);
    max-width: var(--inner_size);
    margin: 0 auto;
    font-size: 17px;
}

/* about */
.about h2 {
    margin: var(--space-xs) 0;
}

/* news */
.news {
    position: relative;
}
.news h2 {
    margin-bottom: var(--space-xxs);
}
.news article {
    align-items: center;
    border-top: 1px solid #a4a4a5;
    padding: var(--space-xxs) 0;
}
.news article p {
    color: #c3c4c4;
    padding: 0 var(--space-xxs);
}
.news article:nth-last-child(2) {
    border-bottom: 1px solid #a4a4a5;
}
.news .view_more {
    text-align: right;
}

/* insta */
.insta h2 {
    margin-bottom: var(--space-xs);
}

/***** 固定ページ *****/
/* news */
.page_ttl {
    font-family: var(--en_font);
    font-size: var(--fz35);
    margin-bottom: var(--space-m);
}
.news_page h2 {
    font-family: var(--en_font);
    font-size: var(--fz27);
    margin: var(--space-xxs) 0 var(--space-s);
}
.news_page .time {
    color: #c3c4c4;
}
.news_page article {
    padding-bottom: var(--space-l);
    margin-bottom: var(--space-l);
    border-bottom: 1px solid #fff;
}
.pagination {
    text-align: center;
}
.pagination a {
    color: #c3c4c4;
}
.pagination a {
    transition: all .3s linear;
}
.pagination a:hover {
    color: #fff;
}
/* contact */
.snow-monkey-form {
    max-width: 800px;
    margin: 0 auto;
}
.smf-item__description {
    color: #fff;
}
.smf-button-control__control {
    width: 50%;
}

@media screen and (min-width: 769px) {
    /* spのみcss解除 */
    .sp_inner {
        width: auto;
    }
    .sp_center {
        text-align: start;
    }
    .sp_br {
        display: none;
    }
    .plants dl,
    .accesories dl {
        background: none;
    }

    /* 変数 */
    :root {
        --fz11: calc(11 / 16 * 1rem);
        --fz18: calc(18 / 16 * 1rem);
        --fz20: calc(20 / 16 * 1rem);
        --fz27: calc(27 / 16 * 1rem);
        --fz35: calc(35 / 16 * 1rem);

        --space-xxs: 2rem;
        /* 32px */
        --space-s: 3.75rem;
        /* 60px */
        --space-m: 4.25rem;
        /* 68px */
        --space-l: 4.75rem;
        /* 76px */
        --space-xl: 6.25rem;
        /* 100px section margin */

        --inner_size: 1080px;
        --inner_per: 76.5%;
        --text_space: -12.24px;/* line-height調節 */
    }

    p,
    dd {
        line-height: 2.18;
    }
    .flex_wrap {
        display: flex;
    }

    .inner {
        margin-left: auto;
        margin-right: auto;
        width: var(--inner_per);
        max-width: var(--inner_size);
    }

    .center {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    h2.center {
        margin-bottom: var(--space-s);
    }
    /* ヘッダー */
    header h1, header p {
        margin: 2.5rem 0 0 2.8rem;
        width: 52px;
    }

    .mv {
        width: 100%;
        height: 100vh;
        /* background: url(../img/mv.webp) no-repeat center; */
        background-size: cover;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* convey */
    .convey {
        padding-top: calc(100vh - 140.55px);
    }
    .img1 {
        width: 31%;
        margin: 0 11.2% 0 0;
    }

    .img2 {
        width: 19%;
        margin: 6% 12.6% 0 0;
    }

    .img3 {
        width: 19.7%;
        margin: 0;
    }

    .img4 {
        width: 17.6%;
        margin: 8% 11% 0 8.1%;
    }

    .img5 {
        width: 24.7%;
        margin: 0 7.1% 0 0;
    }

    .img6 {
        width: 31.5%;
        margin: -3% 0 0 0;
    }

    /* product */
    .product dl dt {
        min-height: 4.18rem;
        display: flex;
        align-items: center;
    }
    .product .flex_wrap {
        align-items: center;
        gap: var(--space-m);
        margin: var(--space-xl) 0;
    }

    .product .flex_wrap figure {
        width: 47%;
    }

    .product .flex_wrap dl {
        width: 40%;
    }

    .dir_row {
        flex-direction: row-reverse;
    }

    .plants dl dt {
        background: url(../img/product_num01.png) right center no-repeat;
        background-size: auto 100%;
    }

    .accesories dl dt {
        background: url(../img/product_num02.png) right center no-repeat;
        background-size: auto 100%;
    }

    .online {
        font-size: var(--fz27);
    }
    /* about */
    .about h2 {
        margin: 0;
    }
    .about .flex_wrap {
        justify-content: space-between;
        margin-top: var(--space-s);
    }
    .about p {
        width: 63%;
    }

    /* news */
    .news .view_more {
        position: absolute;
        top: 1.8rem;
        right: 0;
    }
}