@charset "UTF-8";

/*--------------------------------------------------------------*/
/* CSS and Graphics are released under Creative Commons Licence */
/* https://www.webplus.jp/                                      */
/* Copyright (C) Kiyonobu Horita @ WEBPLUS Inc.                 */
/* 　　　　　　　　　　　　　                                     */
/* Browsers: last 4 version                                     */
/* 　　　　　　　　　　　　　                                     */
/* ***** single styles *****                                    */
/* 　　　　　　　　　　　　　                                     */
/*--------------------------------------------------------------*/


/* ========================================================

　common

=========================================================== */

@media only screen and (min-width: 992px) {

    body.scrolled.active {
        width: calc(100% - 1.0rem);
    }

}

/* Safari ハック */
_:lang(x) + _:-webkit-full-screen-document,
body.active {}

/*　PC時のスクロールバーのカスタマイズ
----------------------------------------------------------- */
body::-webkit-scrollbar {
    display: none;
}

body.scrolled::-webkit-scrollbar,
#navigation .nav-scl::-webkit-scrollbar {
    display: block;
    width: 1.0rem;
}

body::-webkit-scrollbar-track,
#navigation .nav-scl::-webkit-scrollbar-track {
    background-color: rgba(250, 240, 225, 1.00);
}

body::-webkit-scrollbar-thumb,
#navigation .nav-scl::-webkit-scrollbar-thumb {
    border-radius: 0.5rem;
    background-color: rgba(215, 195, 180, 1.00);
}


/* ========================================================

　Loading screen

=========================================================== */

#loader {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    height: 100svh;
    background-color: rgba(250, 240, 225, 1.00);
    z-index: 999;
}

#loader > div {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation: fadein 0.5s ease-in-out 0.3s normal backwards;
    animation: fadein 0.5s ease-in-out 0.3s normal backwards;
}

#loader > div img {
    width: 100%;
    max-width: 24.0rem;
    height: auto;
}

/*　コンテンツ部分はローディング画面の後に表示するのでデフォルトは非表示
----------------------------------------------------------- */
#contents {
    display: none;
}


/* ========================================================

　header

=========================================================== */

header {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh;
}

/* ブランドマーク（上部） */
header h1 {
    position: fixed;
    top: 0.65rem;
    left: 0.5rem;
    z-index: 130;
}

header h1 a:hover {
    opacity: 0.7;
}

header h1 img {
    width: calc(100% - 7.5rem);
    height: auto;
}

/* ブランドタイプ（ファーストビュー下部） */
#brandtype {
    position: fixed;
    bottom: 0.65rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    z-index: 20;
    -webkit-animation: fadein 1.0s ease-in-out 0s normal backwards;
    animation: fadein 1.0s ease-in-out 0s normal backwards;
}

#brandtype img {
    width: 100%;
    height: auto;
}

#brandtype h2 {
    color: rgba(57, 16, 0, 1.00);
    font-family: 'Zen Old Mincho', serif;
    font-size: min(3.27vw, 3.4rem);
}

/* スクロールしたら非表示に */
#brandtype.scrolled {
    -webkit-animation: fadeout 0.5s ease-in-out 0s normal forwards;
    animation: fadeout 0.5s ease-in-out 0s normal forwards;
}

@media only screen and (min-width: 375px) {

    /* ブランドマーク（上部） */
    header h1 {
        top: 0.55rem;
    }

}

@media only screen and (min-width: 576px) {

    /* ブランドマーク（上部） */
    header h1 {
        top: 0.95rem;
    }

    header h1 img {
        width: auto;
        max-height: 6.0rem;
    }

    /* ブランドタイプ（ファーストビュー下部） */
    #brandtype {
        bottom: 0.95rem;
    }

    #brandtype h2 {
        font-size: min(3.3vw, 3.4rem);
    }

}

@media only screen and (min-width: 768px) {

    /* ブランドマーク（上部） */
    header h1 {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    header h1 img {
        max-height: 10.0rem;
    }

    /* ブランドタイプ（ファーストビュー下部） */
    #brandtype > div {
        width: 64.0rem;
        -webkit-transform: translateX(1.7rem);
        -ms-transform: translateX(1.7rem);
        transform: translateX(1.7rem);
    }

    #brandtype h2 {
        font-size: 2.15rem;
        letter-spacing: -0.02rem;
    }

}

@media only screen and (min-width: 960px) {

    /* ブランドマーク（上部） */
    header h1 {
        top: 1.0rem;
        -webkit-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }

    /* サイズ変更 */
    header h1 img {
        max-width: 54.0rem;
        max-height: inherit;
        -webkit-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }

    /* スクロールしたらサイズ変更して左上へ移動 */
    #contents.scrolled header h1 {
        top: 1.0rem;
        left: 1.0rem;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    #contents.scrolled header h1 img {
        max-width: inherit;
        max-height: 8.0rem;
        -webkit-animation: bounce 1.0s ease-in-out 0s normal forwards;
        animation: bounce 1.0s ease-in-out 0s normal forwards;
    }

    body.active header h1 img {
        position: relative;
        left: -0.5rem;
    }

    /* ブランドタイプ（ファーストビュー下部） */
    #brandtype {
        bottom: 3.0rem;
    }

    #brandtype > div {
        width: 90.0rem;
        -webkit-transform: translateX(2.4rem);
        -ms-transform: translateX(2.4rem);
        transform: translateX(2.4rem);
    }

    #brandtype h2 {
        font-size: 3.2rem;
        letter-spacing: -0.075rem;
    }

    body.scrolled #brandtype img,
    body.scrolled #brandtype h2 {
        position: relative;
        left: 0.5rem;
    }

    body.scrolled.active #brandtype img,
    body.scrolled.active #brandtype h2 {
        left: 0;
    }

}

@media only screen and (min-width: 1200px) {

    /* ブランドタイプ（ファーストビュー下部） */
    #brandtype > div {
        width: 96.0rem;
        -webkit-transform: translateX(2.5rem);
        -ms-transform: translateX(2.5rem);
        transform: translateX(2.5rem);
    }

    #brandtype h2 {
        font-size: 3.4rem;
        letter-spacing: -0.075rem;
    }

}

/*　Carousel
----------------------------------------------------------- */
.carousel-item {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh;
}

/* 背景画像 */
.carousel-item::before {
    display: inline-block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
    -webkit-animation: zoomin 7.0s ease-out 0s normal forwards;
    animation: zoomin 7.0s ease-out 0s normal forwards;
}

/* カルーセル１ */
.carousel-item:nth-of-type(1)::before {
    background-image: url("../img/carousel01_sp.jpg");
    -webkit-animation: zoomin 8.0s ease-out 0s normal forwards;
    animation: zoomin 8.0s ease-out 0s normal forwards;
}

.carousel-item:nth-of-type(1) p {
    position: absolute;
    right: 1.0rem;
    bottom: 20.0vh;
    color: rgba(57, 16, 0, 1.00);
    font-family: 'Rubik Dirt', cursive;
    font-size: min(5.0vw, 3.6rem);
    line-height: 100%;
    opacity: 0;
    -webkit-animation: fadein 1.0s ease-in-out 0.5s 1 normal forwards;
    animation: fadein 1.0s ease-in-out 0.5s 1 normal forwards;
}

.carousel-item:nth-of-type(1) p.delay {
    -webkit-animation: fadein 1.0s ease-in-out 2.5s 1 normal forwards;
    animation: fadein 1.0s ease-in-out 2.5s 1 normal forwards;
}

.carousel-item:nth-of-type(1) p span {
    display: block;
    font-size: 66.66666%;
}

/* カルーセル２ */
.carousel-item:nth-of-type(2)::before {
    background-image: url("../img/carousel02_sp.jpg");
}

.carousel-item:nth-of-type(2) > div {
    display: none;
}

/* カルーセル３ */
.carousel-item:nth-of-type(3)::before {
    background-image: url("../img/carousel03_sp.jpg");
}

/* カルーセル４ */
.carousel-item:nth-of-type(4)::before {
    background-image: url("../img/carousel04_sp.jpg");
}

/* カルーセル５ */
.carousel-item:nth-of-type(5)::before {
    background-image: url("../img/carousel05_sp.jpg");
}

/* カルーセル６ */
.carousel-item:nth-of-type(6)::before {
    background-image: url("../img/carousel06_sp.jpg");
}

/* カルーセルインジケーター（01 02 03 04） */
.carousel-indicators {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    bottom: 18.0vw;
    width: 100%;
    margin: 0;
    padding: 0 1.0rem 0.5rem 0;
    opacity: 0;
    z-index: 30;
    -webkit-transition: bottom 0.5s ease-in-out;
    -o-transition: bottom 0.5s ease-in-out;
    transition: bottom 0.5s ease-in-out;
    -webkit-animation: fadein 1.0s ease-in-out 0s 1 normal forwards;
    animation: fadein 1.0s ease-in-out 1.0s 1 normal forwards;
}

/* スクロールしたら下に寄せる */
.carousel-indicators.scrolled {
    bottom: 0.5rem;
}

.carousel-indicators [data-bs-target] {
    width: 1.6rem;
    height: 2.2rem;
    text-indent: inherit;
    background-color: transparent;
    border-bottom: 0.2rem solid rgba(255, 255, 255, 0.00);
    color: rgba(255, 255, 255, 1.00);
    font-family: 'Montserrat', sans-serif;
    font-size: 2.0rem;
    font-weight: 900;
    font-style: italic;
    text-align: center;
    opacity: 1.0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.carousel-indicators [data-bs-target]:nth-of-type(n+2) {
    margin-left: 1.0rem;
}

.carousel-indicators [data-bs-target]:hover {
    border-bottom: 0.2rem solid rgba(57, 16, 0, 0.50);
    color: rgba(57, 16, 0, 0.50);
}

.carousel-indicators [data-bs-target].active {
    border-bottom: 0.2rem solid rgba(57, 16, 0, 1.00);
    color: rgba(57, 16, 0, 1.00);
}

@media only screen and (min-width: 576px) {

    /* カルーセルインジケーター（01 02 03 04） */
    .carousel-indicators [data-bs-target] {
        height: 2.4rem;
        font-size: 2.4rem;
    }

}

@media only screen and (min-width: 768px) {

    /* カルーセル１ */
    .carousel-item:nth-of-type(1) p {
        bottom: 20.0rem;
    }

    .carousel-item:nth-of-type(1) p span {
        display: inline;
    }

    /* カルーセルインジケーター（01 02 03 04） */
    .carousel-indicators {
        bottom: 14.0rem;
    }

    .carousel-indicators [data-bs-target] {
        width: 2.6rem;
        height: 2.6rem;
        font-size: 3.0rem;
    }

    .carousel-indicators [data-bs-target]:nth-of-type(n+2) {
        margin-left: 1.5rem;
    }

}

@media only screen and (min-width: 992px) {

    /*　Carousel
    ----------------------------------------------------------- */
    .carousel-item div {
        display: block;
        position: absolute;
        width: 24.0vw;
        max-width: 37.6rem;
        height: auto;
        opacity: 0;
        -webkit-animation: expansion 1.0s ease-in-out 0.5s 1 normal forwards;
        animation: expansion 1.0s ease-in-out 0.5s 1 normal forwards;
    }

    .carousel-item div img {
        width: 100%;
        height: auto;
    }

    /* カルーセル１ */
    .carousel-item:nth-of-type(1)::before {
        background-image: url("../img/carousel01.jpg");
    }

    .carousel-item:nth-of-type(1) p {
        right: 10.0%;
        bottom: 30.0rem;
    }

    /* カルーセル２ */
    .carousel-item:nth-of-type(2)::before {
        background-image: url("../img/carousel02.jpg");
    }

    .carousel-item:nth-of-type(2) div {
        display: block;
        top: 24.0rem;
        left: 3.0rem;
    }

    .carousel-item:nth-of-type(3)::before {
        background-image: url("../img/carousel03.jpg");
    }

    /* カルーセル３ */
    .carousel-item:nth-of-type(3) div {
        top: 24.0rem;
        right: 3.0rem;
    }

    /* カルーセル４ */
    .carousel-item:nth-of-type(4)::before {
        background-image: url("../img/carousel04.jpg");
    }

    .carousel-item:nth-of-type(4) div {
        top: 22.0rem;
    }

    .carousel-item:nth-of-type(4) div:nth-of-type(1) {
        left: 3.0rem;
    }

    .carousel-item:nth-of-type(4) div:nth-of-type(2) {
        left: 42%;
        -webkit-animation: expansion 1.0s ease-in-out 1.0s 1 normal forwards;
        animation: expansion 1.0s ease-in-out 1.0s 1 normal forwards;
    }

    /* カルーセル５ */
    .carousel-item:nth-of-type(5)::before {
        background-image: url("../img/carousel05.jpg");
    }

    .carousel-item:nth-of-type(5) div:nth-of-type(1) {
        top: 24.0rem;
        left: 3%;
    }

    .carousel-item:nth-of-type(5) div:nth-of-type(2) {
        top: 40.0rem;
        right: 5%;
        -webkit-animation: expansion 1.0s ease-in-out 1.0s 1 normal forwards;
        animation: expansion 1.0s ease-in-out 1.0s 1 normal forwards;
    }

    /* カルーセル６ */
    .carousel-item:nth-of-type(6)::before {
        background-image: url("../img/carousel06.jpg");
    }

    /* カルーセルインジケーター（01 02 03 04） */
    .carousel-indicators {
        bottom: 18.0rem;
        padding: 0 3.0rem 3.0rem 0;
    }

    .carousel-indicators.scroll {
        bottom: 0;
    }

    .carousel-indicators [data-bs-target] {
        width: 3.0rem;
        height: 3.0rem;
        font-size: 3.6rem;
    }

}

@media only screen and (min-width: 1400px) {

    /* カルーセル２ */
    .carousel-item:nth-of-type(2) div {
        top: 18.0rem;
    }

    /* カルーセル３ */
    .carousel-item:nth-of-type(3) div {
        top: 18.0rem;
    }

}

@media only screen and (min-width: 1600px) {

    /* カルーセル１ */
    .carousel-item:nth-of-type(1) p {
        right: 20.0%;
        bottom: 24.0rem;
    }

    /* カルーセルインジケーター（01 02 03 04） */

    .carousel-indicators,
    .carousel-indicators.scrolled {
        bottom: 0;
    }

}

@media only screen and (min-width: 1920px) {

    /*　Carousel
    ----------------------------------------------------------- */
    .carousel-item div {
        width: 20.0vw;
    }

    /* カルーセル１ */
    .carousel-item:nth-of-type(1) p {
        right: 24.0%;
    }

    /* カルーセル２ */
    .carousel-item:nth-of-type(2) div {
        top: 10.0rem;
        left: 10.0rem;
    }

    /* カルーセル３ */
    .carousel-item:nth-of-type(3) div {
        top: 20.0rem;
        right: 10.0rem;
    }

    /* カルーセル４ */
    .carousel-item:nth-of-type(4) div {
        top: 14.0rem;
    }

    .carousel-item:nth-of-type(4) div:nth-of-type(1) {
        left: 28.0rem;
    }

    .carousel-item:nth-of-type(4) div:nth-of-type(2) {
        left: inherit;
        right: 28.0rem;
    }

}

@media only screen and (min-width: 2560px) {

    /*　Carousel
    ----------------------------------------------------------- */
    .carousel-item div {
        max-width: 50.0rem;
    }

}


/* ========================================================

　#concept

=========================================================== */

#concept {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100vh;
    height: 100lvh;
    background-color: rgba(255, 255, 255, 0.75);
    background-blend-mode: lighten;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: rgba(0, 0, 42, 1.00);
}

/* ブロックタイトル */
#concept h2 {
    margin-top: 5.0rem;
    margin-bottom: 5.0vw;
    font-family: 'Fredericka the Great', cursive;
    font-size: min(12.0vw, 10.0rem);
    text-transform: uppercase;
}

/* キャッチ（英文） */
#concept h3 {
    margin-bottom: 2.0vw;
    font-family: 'Zen Old Mincho', serif;
    font-size: min(9.0vw, 7.2rem);
    font-weight: 900;
}

#concept h3 span {
    font-size: 70.0%;
}

/* キャッチ（和文） */
#concept p {
    margin-top: 8.0vw;
    margin-bottom: 8.0vw;
    font-family: 'Zen Old Mincho', serif;
    font-size: min(4.6vw, 3.6rem);
    font-weight: 700;
    line-height: 160%;
}

span[data-ruby] {
    position: relative;
}

span[data-ruby]::before {
    position: absolute;
    top: -3.4vw;
    left: 0.1rem;
    right: 0;
    margin: auto;
    font-size: 3.0vw;
    letter-spacing: 1.2vw;
    content: attr(data-ruby);
}

/* 商標登録 */
#concept h4 {
    font-size: min(3.8vw, 3.6rem);
}

@media only screen and (min-width: 375px) {

    #concept {
        padding: 0 0.75rem;
    }

    /* ブロックタイトル */
    #concept h2 {
        margin-bottom: 10.0vw;
    }

    /* キャッチ（和文） */
    #concept p {
        margin-top: 12.0vw;
        margin-bottom: 12.0vw;
    }

    span[data-ruby]::before {
        font-size: 2.7vw;
        letter-spacing: 1.5vw;
    }

}

@media only screen and (min-width: 576px) {

    /* ブロックタイトル */
    #concept h2 {
        margin-top: 0;
        margin-bottom: 5.0rem;
        font-size: 4.8rem;
    }

    /* キャッチ（英文） */
    #concept h3 {
        font-size: 3.6rem;
    }

    /* キャッチ（和文） */
    #concept p {
        margin-top: 5.0rem;
        margin-bottom: 5.0rem;
        font-size: 2.0rem;
    }

    span[data-ruby]::before {
        top: -1.4rem;
        font-size: 1.0rem;
        letter-spacing: 0.85rem;
    }

    /* 商標登録 */
    #concept h4 {
        font-size: 1.6rem;
    }

}

@media only screen and (min-width: 768px) {

    #concept {
        text-align: center;
    }

    /* ブロックタイトル */
    #concept h2 {
        font-size: 6.0rem;
    }

    /* キャッチ（英文） */
    #concept h3 {
        margin-bottom: 0.5rem;
        font-size: 4.0rem;
    }

    /* キャッチ（和文） */
    #concept p {
        display: inline-block;
        font-size: 2.4rem;
        text-align: left;
    }

    span[data-ruby]::before {
        top: -1.6rem;
        left: 0.2rem;
        font-size: 1.2rem;
        letter-spacing: 1.03rem;
    }

    /* 商標登録 */
    #concept h4 {
        font-size: 1.8rem;
    }

}

@media only screen and (min-width: 1400px) {

    /* ブロックタイトル */
    #concept h2 {
        font-size: 10.0rem;
    }

    /* キャッチ（英文） */
    #concept h3 {
        margin-bottom: 1.0rem;
        font-size: 7.2rem;
    }

    /* キャッチ（和文） */
    #concept p {
        font-size: 3.6rem;
    }

    span[data-ruby]::before {
        top: -2.6rem;
        left: 0.4rem;
        font-size: 2.0rem;
        letter-spacing: 1.3rem;
    }

    /* 商標登録 */
    #concept h4 {
        font-size: 2.4rem;
    }

}


/* ========================================================

　#products

=========================================================== */

#products img {
    width: 100%;
    height: auto;
}

/* 商品カテゴリ区切り線 */
#products [class^="container"] > div:nth-of-type(n+2) {
    border-top: 1.0rem solid rgba(57, 16, 0, 1.00);
}

/*　商品カテゴリ見出し部分
----------------------------------------------------------- */
#products .head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* 前面フィルター */
#products .head::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: 2;
}

#products .head img {
    position: relative;
    z-index: 1;
}

/* 商品カテゴリ見出し */
#products .head h2 {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    font-family: 'Fredericka the Great', cursive;
    font-size: min(10.0vw, 12.0rem);
    text-align: center;
    text-transform: uppercase;
    z-index: 2;
}

/*　各商品
----------------------------------------------------------- */
#products .about {
    position: relative;
    width: 100%;
    padding: 6.0vw 4.0vw;
    color: rgba(57, 16, 0, 1.00);
}

#products div[class*="product0"] img {
    position: relative;
    z-index: 2;
}

/* 商品見出し */
#products div[class*="product0"] h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: min(9.0vw, 4.0rem);
    margin-bottom: 5.0vw;
    font-family: 'Montserrat', sans-serif;
    font-size: min(8.0vw, 6.0rem);
    font-weight: 400;
    text-transform: capitalize;
}

/* 商品簡易説明 */
#products div[class*="product0"] p {
    margin-bottom: 0;
    font-family: 'Zen Old Mincho', serif;
    font-size: min(4.6vw, 2.4rem);
    line-height: 140%;
}

/* for detail */
#products .more {
    position: absolute;
    top: 0;
    right: 0;
}

#products .more a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: min(30.0vw, 18.0rem);
    height: min(9.0vw, 4.0rem);
    border: 0.1rem solid rgba(190, 165, 160, 1.00);
    border-radius: min(4.5vw, 2.0rem);
    background-color: rgba(250, 240, 225, 1.00);
    color: rgba(57, 16, 0, 1.00);
    font-size: min(5.0vw, 2.4rem);
    text-decoration: none;
}

#products .more a:hover {
    background-color: rgba(215, 195, 180, 1.00);
}

#products .more i {
    margin-left: 0.5rem;
    -webkit-transform: translateY(0.1rem);
    -ms-transform: translateY(0.1rem);
    transform: translateY(0.1rem);
    font-size: min(6.0vw, 2.4rem);
}

/* フードテーブル＆フードボウル */
#products .table-ware .head::before {
    background-color: rgba(0, 0, 0, 0.25);
}

#products .table-ware .head h2 {
    color: rgba(250, 240, 225, 1.00);
}

/* シャツ */
#products .clothes .head::before {
    background-color: rgba(255, 255, 255, 0.25);
}

#products .clothes .head h2 {
    color: rgba(0, 0, 42, 1.00);
}

/* デジタルアート */
#products .digital-arts .head::before {
    background-color: rgba(0, 0, 0, 0.25);
}

#products .digital-arts .head h2 {
    color: rgba(255, 255, 255, 1.00);
}

@media only screen and (min-width: 768px) {

    /* 商品カテゴリ区切り線 */
    #products [class^="container"] > div:nth-of-type(n+2) {
        border-top-width: 1.5rem;
    }

    #products .row > div {
        background-color: rgba(250, 205, 130, 0.15);
    }

    /*　各商品
    ----------------------------------------------------------- */
    #products div[class*="product0"] {
        display: -ms-grid;
        display: grid; /* orderを有効にするため必須 */
    }

    #products div[class*="product0"]:nth-of-type(odd) .about {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    /* 商品見出し */
    #products div[class*="product0"] h3 {
        height: min(4.5vw, 4.0rem);
        margin-bottom: 3.0rem;
        font-size: min(4.0vw, 6.0rem);
        font-weight: 300;
    }

    /* 商品簡易説明 */
    #products div[class*="product0"] p {
        font-size: min(2.5vw, 2.4rem);
    }

    /* for detail */
    #products .more a {
        width: min(15.0vw, 18.0rem);
        height: min(4.5vw, 4.0rem);
        font-size: min(2.5vw, 2.4rem);
    }

    #products .more i {
        font-size: min(3.0vw, 2.4rem);
    }

}

@media only screen and (min-width: 992px) {

    /* 各商品部分を上に移動 */
    #products .row {
        margin-top: -20.0rem;
    }

    /*　商品カテゴリ見出し部分
    ----------------------------------------------------------- */
    #products .head h2 {
        margin-top: -10.0rem;
    }

    /*　各商品
    ----------------------------------------------------------- */
    #products .about {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 20.0rem;
        padding: 0 3.0rem;
    }

    #products .about > div {
        width: 100%;
    }

    /* 商品見出し */
    #products div[class*="product0"] h3 {
        height: min(3.375vw, 4.0rem);
        font-size: min(3.4vw, 6.0rem);
    }

    /* 商品簡易説明 */
    #products div[class*="product0"] p {
        font-size: min(1.8vw, 2.4rem);
    }

    /* for detail */
    #products .more a {
        width: min(11.25vw, 18.0rem);
        height: min(3.375vw, 4.0rem);
        font-size: min(1.875vw, 2.4rem);
    }

    #products .more i {
        font-size: min(2.25vw, 2.4rem);
    }

    /* フードテーブル＆フードボウル */
    #products .row > .product02 {
        background-color: rgba(0, 0, 0, 0.25);
        z-index: 2;
    }

    #products .row > .product02 .about {
        color: rgba(250, 240, 225, 1.00);
    }

    /* シャツ */
    #products .row > .product04 {
        background-color: rgba(255, 255, 255, 0.50);
        z-index: 2;
    }

    #products .row > .product04 .about {
        color: rgba(0, 0, 42, 1.00);
    }

    /* デジタルアート */
    #products .row > .product06 {
        background-color: rgba(0, 0, 0, 0.50);
        z-index: 2;
    }

    #products .row > .product06 .about {
        color: rgba(255, 255, 255, 1.00);
    }

}

@media only screen and (min-width: 1200px) {

    /* 商品カテゴリ区切り線 */
    #products [class^="container"] > div:nth-of-type(n+2) {
        border-top-width: 2.0rem;
    }

    /* 各商品部分を上に移動 */
    #products .row {
        margin-top: -24.0rem;
    }

    /*　商品カテゴリ見出し部分
    ----------------------------------------------------------- */
    #products .head h2 {
        margin-top: -12.0rem;
    }

    /*　各商品
    ----------------------------------------------------------- */
    #products .about {
        height: 24.0rem;
    }

    #products div[class*="product0"] p {
        height: 8.8rem;
    }

}

@media only screen and (min-width: 1400px) {

    /*　各商品
    ----------------------------------------------------------- */
    #products div[class*="product0"] p {
        height: 9.8rem;
    }

}

@media only screen and (min-width: 1920px) {

    /*　商品カテゴリ見出し部分
    ----------------------------------------------------------- */
    #products .head {
        height: 80.0vh;
    }

    /*　各商品
    ----------------------------------------------------------- */
    #products div[class*="product0"] p {
        height: 6.4rem;
    }

}


/* ---- End of file --------------------------------------- */