@charset 'UTF-8';


/* =========================================
    ▼全体共通設定
============================================ */

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 0.732vw;
}

@media screen and (max-width: 768px) {
    html {
        font-size: 2.666vw;
    }
}

body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    color: #1E1818;
    font-size: 1.4rem;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 2;
    background: #FFFEFB;
}

@media screen and (max-width: 768px) {
    body {
        font-size: 1.3rem;
    }
}

main {
    overflow: hidden;
}

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

a {
    text-decoration: none;
}

input,
button,
textarea,
select {
    -webkit-appearance: none;
    appearance: none;
}

/* レスポンシブ */
.is-sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .is-pc {
        display: none;
    }

    .is-sp {
        display: block;
    }
}

.bdr05 {
    border-radius: 5px;
}

.link-icon {
    position: relative;
    padding-right: 5px;
    display: flex;
    align-items: center;
}

.link-icon::before {
    content: "";
    background: url(../images/common/arrow_bk.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 0.8em;
    height: 0.8em;
    order: 2;
    margin-left: 5px;

}

.link-icon.-wh::before {
    background: url(../images/common/arrow_wh.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

/* カテゴリータイトル */
.t-category-title {
    color: #fff;
    font-family: 'Marcellus', serif;
    letter-spacing: 0.02em;
    position: relative;
    margin-left: 3.4rem;
}

.t-category-title::after {
    content: "";
    width: 2rem;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: -1.5rem;
    transform: translate(-100%, -50%);
}

@media screen and (max-width: 768px) {
    .t-category-title {
        font-size: 1.1rem;
        margin-left: 1.9rem;
    }

    .t-category-title::after {
        width: 1.3rem;
        left: -1.9%;
    }
}

/* =========================================
    ▼header
============================================ */

.header {
    height: 97px;
}

/*スクロールしたあとのヘッダー背景色 */
.header__inner.change-color {
    background-color: transparent;
}

.header__inner {
    height: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5.5rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    background-color: #FFFEFB;
    transition: background-color .4s ease-in-out;
}

.headerLogo__link {
    display: flex;
}

.headerLogo__link img {
    width: clamp(175px, 27.11rem, 300px);
}

.headerNav__list {
    display: flex;
    justify-content: flex-end;
    list-style: none;
}

.headerNav__menu a {
    color: #1E1818;
    font-size: clamp(11px, 1.3rem, 16.4px);
    font-family: 'Marcellus', serif;
    line-height: 1.25;
    text-decoration: none;
    position: relative;
    display: flex;
    width: fit-content;
}

.headerNav__menu a::after {
    content: '';
    width: 100%;
    height: 1px;
    background: #1E1818;
    position: absolute;
    left: 0;
    /*アンダーラインがaタグの下端から現れる*/
    bottom: -1px;
    /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
    transform: scale(0, 1);
    /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
    transform-origin: left top;
    /*変形の時間*/
    transition: transform 0.6s;
}

.headerNav__menu a:hover::after {
    transform: scale(1, 1);
    /*ホバー後、x軸方向に1（相対値）伸長*/
}

.headerNav__menu~.headerNav__menu {
    margin-left: 3.2rem;
}


/* --------------------------------------------
-------------------------------- ▼レスポンシブ */
@media screen and (max-width: 768px) {

    .header {
        height: 4.3rem;
    }

    .header__inner {
        width: 100%;
        padding: 0 20px;
    }

    .headerLogo {
        z-index: 999;
    }

    .headerLogo__link {
        display: flex;
        align-items: center;
    }

    .headerLogo__link img {
        width: 14rem;
    }

    /* ▼メニュー部分 */
    .headerNav {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        /* 右側に寄せる（出現）*/
        transition: opacity ease 0.4s, visibility ease 0.4s;
        overflow: auto;
        padding: 8.4rem 0 0 2rem;
    }

    /* アクティブ後のcss */
    .headerNav.active {
        opacity: 1;
        visibility: visible;
    }

    /* ▼スライドインメニュー部分 */
    .headerNav__list {
        display: block;
        width: 100%;
    }


    .headerNav__list .headerNav__menu {
        display: block;
        margin: 0;
        width: 100%;
    }

    .headerNav__list .headerNav__menu~.headerNav__menu {
        padding-top: 1.9rem;
    }

    /* ▼各メニューの設定 */
    .headerNav__list.sp-menu01 .headerNav__menu a {
        font-size: 1.6rem;
    }

    .headerNav__list.sp-menu02 {
        margin-top: 8.2rem;
        position: relative;
    }

    .headerNav__list.sp-menu02::before {
        content: "";
        position: absolute;
        top: -3rem;
        left: 0;
        background: #DCDCDC;
        width: 5.91rem;
        height: 1px;
    }

    .headerNav__list.sp-menu02 .headerNav__menu:first-of-type {
        margin-bottom: 2.3rem;
    }

    .headerNav__list.sp-menu02 .headerNav__menu a {
        font-size: 1.3rem;
    }

    .headerNav__list.sp-menu02 .headerNav__menu .fs22 {
        font-size: 2.2rem;
    }


    /* ▼ハンバーガーボタン */
    .header__hamburger {
        display: block;
        padding: 10px 0;
    }

    .hamburger {
        z-index: 9999;
        margin-left: auto;
    }

    .hamburger span {
        height: 1px;
        background: #1E1818;
        position: relative;
        transition: transform .4s ease;
        /*ハンバーガーボタンクリック時の三本線の動きを遅延*/
        display: block;
    }

    .hamburger span:nth-child(1) {
        top: 0;
        width: 25px;
    }

    .hamburger span:nth-child(2) {
        margin: 3px 0 3px auto;
        width: 17px;
    }

    .hamburger span:nth-child(3) {
        top: 0;
        margin-left: auto;
        width: 10px;
    }

    /* ハンバーガーメニュークリック（active）後のスタイル */
    .hamburger.active span:nth-child(1) {
        top: 4px;
        transform: rotate(15deg);
    }

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

    .hamburger.active span:nth-child(3) {
        top: -4px;
        transform: rotate(-15deg);
        width: 25px;
    }

}

/* =========================================
    ▼footer
============================================ */

.footer {
    background: url(../images/top/onlinestore-bg.jpg);
    background-repeat: repeat;
    text-align: center;
    padding: 5rem 0;
}

.footerNav {
    margin-bottom: 9.6rem;
}

.footerNav__list {
    display: flex;
    justify-content: center;
}

.footerNav__menu {
    list-style: none;
}

.footerNav__menu a {
    color: #fff;
    font-size: 1.3rem;
    font-family: 'Shippori Mincho', serif;
    text-decoration: none;
    margin: 0 2rem;
    position: relative;
}

.footerNav__menu a::after {
    content: '';
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    /*アンダーラインがaタグの下端から現れる*/
    bottom: -1px;
    /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
    transform: scale(0, 1);
    /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
    transform-origin: left top;
    /*変形の時間*/
    transition: transform ease-out 0.6s;
}

.footerNav__menu a:hover::after {
    transform: scale(1, 1);
    /*ホバー後、x軸方向に1（相対値）伸長*/
}

.copyright {
    color: #fff;
    font-size: 1.1rem;
    font-family: 'Marcellus', serif;
    margin-top: 3rem;
}


/* --------------------------------------------
-------------------------------- ▼レスポンシブ */
@media screen and (max-width: 768px) {

    .footer {
        padding: 2.4rem 0;
    }

    .footerNav {
        margin-bottom: 5.3rem;
    }

    .footerNav__list {
        flex-direction: column;
    }

    .footerNav__menu {
        margin-bottom: .6rem;
    }

    .footerNav__menu a {
        font-size: 1.2rem;
    }
}

/* =========================================
    ▼TOP：MV
============================================ */

.t-mv {
    width: 100%;
}

.t-mv__slider {
    padding: 0;
}

.t-mv__scroll p {
    font-size: 1.1rem;
    font-family: 'Marcellus', serif;
    text-align: center;
    margin: 25px 0 10rem;
    position: relative;
}

.t-mv__scroll ::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    height: 8.4rem;
    width: 1px;
    background: #1E1818;
}

/* ------------------------------ ▼slick */

.slick-slider {
    height: calc(100vh - (97px * 2));
    overflow: hidden;
}

.slick-slide {
    width: 94.5vh !important;
}

@media screen and (max-width: 768px) {
    .slick-slider {
        height: calc(100vh - 4.3rem);
    }

    .slick-slide {
        width: auto !important;
    }


}

/* ------------------------------ ▼swiper */

.swiper {
    height: calc(100svh - (97px * 2));
    overflow: hidden;
}


.swiper-wrapper {
    transition-timing-function: linear;
}

.swiper-slide img {
    height: calc(100svh - (97px * 2));
    width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}


@media screen and (max-width: 768px) {
    .swiper {
        height: calc(100svh - 4.3rem);
    }

    .swiper-slide img {
        height: calc(100svh - 4.3rem);
    }
}



/* --------------------------------------------
-------------------------------- ▼レスポンシブ */
@media screen and (max-width: 768px) {

    .t-mv {
        position: relative;
        margin-bottom: 10rem;
    }

    .t-mv__scroll {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 50%);
        z-index: 2;
    }

    .t-mv__scroll p {
        margin: 0 0 7rem;
    }

    .t-mv__scroll ::after {
        height: 6.21rem;
    }

    .swiper-wrapper {
        transition-timing-function: cubic-bezier(0.42, 0, 0.42, 1);
    }
}

/* =========================================
    ▼TOP：about
============================================ */

.t-about {
    padding-top: 2rem;
}

.t-about__brand--txt {
    font-size: 5rem;
    font-weight: 600px;
    font-family: 'Shippori Mincho', serif;
}

.t-about__brand {
    display: flex;
}

.t-about__brand--txt {
    width: 50%;
    text-align: center;
    line-height: 1.9;
    letter-spacing: -0.05em;
    padding-left: 60px;
}

.t-about__brand--logo {
    width: 50%;
    display: flex;
    align-items: center;
    padding-left: 48px;
    padding-top: 20px;
}

.t-about__brand--logo img {
    width: 44.41rem;
}

.t-about__message {
    width: 50%;
    margin-left: auto;
    padding: 11.8rem 12rem 5rem 48px;
}

.t-about__message--txt {
    font-size: 1.5rem;
    line-height: 2.866;
    font-family: 'Shippori Mincho', serif;
}


/* --------------------------------------------
-------------------------------- ▼レスポンシブ */
@media screen and (max-width: 768px) {

    .t-about {
        padding: 5rem 3.41rem 0;
    }

    .t-about__brand {
        flex-direction: column-reverse;
    }

    .t-about__brand--txt,
    .t-about__brand--logo,
    .t-about__message {
        width: 100%;
        padding: 0;
    }

    .t-about__brand--logo img {
        width: 26.51rem;
    }

    .t-about__brand--txt {
        font-size: 3.7rem;
        text-align: left;
        margin-top: 4.5rem;
        line-height: 1.783;
    }

    .t-about__message {
        margin-top: 8.1rem;
    }

    .t-about__message--txt {
        font-size: 1.3rem;
        line-height: 2.769;
    }
}

/* =========================================
    ▼TOP：aboutの下の画像
============================================ */

.t-image {
    position: relative;
    margin: 8.5rem 0 20rem;
}

.t-image__img {
    filter: drop-shadow(9px 11px 15px rgba(0, 0, 0, 0.24));
    /* ハードウェアアクセラレーションに仕事させるためだけの記述 */
    transform: translateZ(0px);
}

.t-image__img.img01,
.t-image__img.img03 {
    position: absolute;
}

.t-image__img.img01 {
    top: 43.5%;
    left: 0;
    width: 31.91rem;
}

.t-image__img.img01 img {
    border-radius: 0 5px 5px 0;
}

.t-image__img.img03 {
    top: 69.4%;
    right: 3.2%;
    width: 34.91rem;
}

.t-image__img.img02 {
    width: 67.71rem;
    margin-left: 27%;
}


/* --------------------------------------------
-------------------------------- ▼レスポンシブ */
@media screen and (max-width: 768px) {

    .t-image {
        margin: 8.1rem 0 47.5rem;
    }

    .t-image__img.img01 {
        width: 20.6rem;
        top: 117%;
        filter: drop-shadow(9px 11px 40px rgba(0, 0, 0, 0.24));
    }

    .t-image__img.img02 {
        width: 28rem;
        margin-left: 13%;
    }

    .t-image__img.img03 {
        width: 20.7rem;
        top: 169.5%;
        right: 5.2%;
    }
}

/* =========================================
    ▼TOP：サスティナビリティ
============================================ */

.t-initiative {
    padding: 8.2rem 0 6rem;
}

.t-initiative__ttl {
    position: relative;
    margin-bottom: 8.4rem;
}

.t-initiative__ttl h2 {
    font-size: 7.5rem;
    font-weight: 500;
    font-family: 'Marcellus', serif;
    letter-spacing: 0.02em;
    line-height: 1;
}

.t-initiative__ttl .ttl {
    display: block;
}

.t-initiative__ttl .ttl:nth-of-type(1) {
    margin-left: 23.4rem;
    margin-bottom: 2.7rem;

}

.t-initiative__ttl .ttl:nth-of-type(2) {
    margin-left: 56.6rem;
}

.t-initiative__ttl .subttl {
    font-size: 1.6rem;
    position: absolute;
    bottom: 3rem;
    left: 32.6rem;
    letter-spacing: 0;
}

.t-initiative__ttl .subttl span {
    font-family: 'Shippori Mincho', serif;
    font-weight: 600;
}

.t-initiative__ttl .circle {
    position: absolute;
    bottom: -2.6rem;
    right: 20.7rem;
    width: 12.91rem;
    animation: rotate-anime 8s linear infinite;
}

@keyframes rotate-anime {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.t-initiative__list {
    border-top: 1px solid #DCDCDC;
    border-bottom: 1px solid #DCDCDC;
    margin: 0 8rem;
}

.t-initiative__list__block {
    position: relative;
    display: flex;
    align-items: center;
    padding: 3rem 10rem;
    min-height: 32.6rem;
}

.t-initiative__list__block img {
    opacity: 0;
    transition: opacity ease 1s;
}

.t-initiative__list__block:hover img {
    opacity: 1;
}

.t-initiative__list__block~.t-initiative__list__block {
    border-top: 1px solid #DCDCDC;
}

.t-initiative__list__block img {
    position: absolute;
    top: 58%;
    transform: translateY(-56.5%);
    z-index: -1;
    width: 42.5rem;
    opacity: 0;
}

.t-initiative__list__block:nth-of-type(1) img {
    left: 52.6%;
}

.t-initiative__list__block:nth-of-type(2) img {
    left: 41.8%;
}

.t-initiative__list__block:nth-of-type(3) img {
    left: 30.8%;
}

.t-initiative__list__block:nth-of-type(4) img {
    left: 19.8%;
}

.t-initiative__list__block--ttl {
    font-size: 2rem;
    font-family: 'Shippori Mincho', serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    width: 50%;
}

.t-initiative__list__block--ttl span {
    font-size: 4.6rem;
    margin-right: 2.8rem;
}

.t-initiative__list__block--txt {
    width: 50%;
    line-height: 2.07;
}


/* --------------------------------------------
-------------------------------- ▼レスポンシブ */
@media screen and (max-width: 768px) {

    .t-initiative {
        padding: 5.2rem 0 6rem;
    }

    .t-initiative__ttl {
        padding: 0 2rem;
        margin-bottom: 4.5rem;
    }

    .t-initiative__ttl h2 {
        font-size: 4.4rem;
        font-weight: 500;
        line-height: 1.2;
    }

    .t-initiative__ttl .ttl:nth-of-type(1),
    .t-initiative__ttl .ttl:nth-of-type(2) {
        margin: 0;
    }

    .t-initiative__ttl .ttl:nth-of-type(1) {
        margin-bottom: 4px;
    }


    .t-initiative__ttl .subttl,
    .t-initiative__ttl .circle {
        position: initial;
    }

    .t-initiative__ttl .subttl {
        font-size: 1.4rem;
        display: block;
        text-align: left;
        margin-top: 2.3rem;
    }

    .t-initiative__ttl .circle {
        display: block;
        margin-left: auto;
        text-align: right;
        width: 11.2rem;
        margin-right: 0.8rem;
    }

    .t-initiative__list {
        margin: 0 2rem;
    }

    .t-initiative__list__block {
        flex-direction: column;
        padding: 2.2rem 1.3rem 4.2rem;
    }

    .t-initiative__list__block--ttl {
        width: 100%;
        order: 1;
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }

    .t-initiative__list__block--ttl span {
        font-size: 3.5rem;
        margin-right: 1.6rem;
    }

    .t-initiative__list__block--img {
        order: 2;
    }

    .t-initiative__list__block--txt {
        font-size: 1.3rem;
        order: 3;
        width: 100%;
        margin-top: 2rem;
    }

    .t-initiative__list__block img {
        opacity: 1;
        position: initial;
        transform: translate(0);
    }

    .t-initiative__list__block:hover img {
        animation: none;
    }
}

/* =========================================
    ▼TOP：商品紹介
    (ORGANIC CHOCOLATE、ORGANIC VEGETABLE COOKIE)
============================================ */

.t-product__mv {
    position: relative;
}

.t-product__mv--ttl {
    position: absolute;
    top: -20.8%;
    left: 50%;
    transform: translateX(-50%);
}

.t-product__mv--ttl h2 {
    font-size: 7.5rem;
    font-weight: 500;
    font-family: 'Marcellus', serif;
    letter-spacing: 0.02em;
    line-height: 1.25;
    text-align: center;
    position: relative;
}

.t-product__mv--ttl h2::before {
    content: "01";
    font-size: 1.5rem;
    font-family: 'Shippori Mincho', serif;
    letter-spacing: 0.02em;
    position: absolute;
    top: 1.5rem;
    left: 2.5rem;
}

/* onlineshop リンク */
.t-product__mv--storelink a {
    color: #1E1818;
    font-size: 1.5rem;
    font-family: 'Marcellus', serif;
    letter-spacing: 0.06em;
    line-height: 1.5;
    text-align: center;
    border: 1px solid #1E1818;
    border-radius: 50%;
    position: absolute;
    right: 7.8%;
    top: 5.7%;
    padding: 5rem 4.4rem;
    text-decoration: none;
    transition: border-color .6s ease, background-color .6s ease;
}

.t-product__mv--storelink a:hover {
    background: #fff;
    border-color: #fff;
}

.t-product__conts {
    padding: 12.2rem 8rem 15.3rem;
}

/* パッケージ */
.t-product__package__wrap {
    display: flex;
    justify-content: space-between;
    margin: 3.5rem 4.7rem 12.5rem;
}

.t-product__package__block {
    width: 33.3%;
    padding: 0 3rem;
    text-align: center;
}

.package--img {
    filter: drop-shadow(8px 8px 15px rgba(0, 0, 0, 0.24));
    will-change: filter;
    transform: translateZ(0);
    -moz-transform: translateZ(0);
    padding: 1.2rem;
}

.package--name {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.8rem;
    line-height: 1.3;
    margin: 1.6rem 0 0.8rem;
}

.package--price {
    font-size: 1.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.package--price .fs {
    font-size: 11px;
}

.package--price svg {
    margin: 0 2px;
    width: 0.8em;
    height: 0.8em;
}

.package--storebtn {
    margin-top: 2.4rem;
    display: inline-block;
}

.package--storebtn a {
    color: #FFF;
    font-size: 1.5rem;
    font-family: 'Marcellus', serif;
    letter-spacing: 0.06em;
    justify-content: center;
    border: 1px solid #FFF;
    border-radius: 2em;
    padding: .7rem 2.6rem;
    transition: color .6s ease, background-color .6s ease;
}

.package--storebtn a:hover {
    background: #fff;
    color: #1E1818;
}

.package--storebtn a::before {
    transition: all .6s ease;
}

.package--storebtn a:hover::before {
    background: url(../images/common/arrow_bk.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.t-product__about {
    display: flex;
    margin: 12.5rem 0 14rem;
}

.t-product__about__txtblock--left {
    width: 13.8rem;
}

.t-product__about__category {
    margin-top: 4rem;
}

.t-product__about__txtblock--right h3 {
    color: #fff;
    font-size: 8.5rem;
    font-weight: 500;
    font-family: 'Marcellus', serif;
    letter-spacing: 0.02em;
    line-height: 1.27;
    margin-bottom: 4.2rem;
}

.t-product__about__txtblock--right h3 span,
.t-product__about__txtblock--right h3 span picture {
    display: flex;
    align-items: center;
}

.t-product__about__txtblock--right h3 span img {
    width: 12.32rem;
    margin: 0 2.4rem;
}

.t-product__about__txtblock--right h3 span img.ml-non {
    margin-left: 0;
}

.t-product__about--ttl {
    font-size: 2rem;
    font-family: 'Shippori Mincho', serif;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.t-product__about--txt {
    line-height: 2;
    width: 69rem;
}

.t-product__material,
.t-product__switch {
    display: flex;
}

.t-product__material--img img,
.t-product__switch--img img {
    width: 56.6rem;
}

.t-product__material__txtblock,
.t-product__switch__wrap {
    width: 63.8rem;
    padding-left: 5.5rem;
}

.t-product__material__txtblock--ttl,
.t-product__switch--ttl {
    color: #fff;
    font-size: 6.5rem;
    font-family: 'Marcellus', serif;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.t-product__material__txtblock--ttl span,
.t-product__material__txtblock--ttl span picture,
.t-product__switch--ttl span,
.t-product__switch--ttl span picture {
    display: flex;
    align-items: center;
}

.t-product__material__txtblock--ttl span img,
.t-product__switch--ttl span img {
    width: 8.61rem;
    margin: 0 1.6rem;
}

.t-product__material__txtblock--txt,
.t-product__switch--intro {
    line-height: 2.076;
}



/* ------------------------------- ▼material */

.t-product__material~.t-product__material {
    margin-top: 8.5rem;
}

.t-product__material__txtblock--txt span {
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Shippori Mincho', serif;
    display: block;
    margin-bottom: 1.1rem;
}

.t-product__material__txtblock--ttl .fs {
    font-size: 4.2rem;
    letter-spacing: 0.02em;
}

.t-product__material__txtblock--txt {
    margin-top: 2.6rem;
}

/* ------------------------------- ▼switch */

.t-product__switch {
    position: relative;
    margin-bottom: 9rem;
}

.t-product__switch--intro,
.t-product__switch--img {
    display: none;
}


/* テキスト */
.t-product__switch__wrap {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    height: 53rem;
}

/* 画像 */
.t-product__switch--img {
    position: absolute;
    top: 0;
    left: 0;
    order: 1;
}

/* タイトル */
.t-product__switch--ttl {
    order: 2;
    margin-bottom: 1.2rem;
}

/* 説明 */
.t-product__switch--intro {
    margin-top: 4.5rem;
    order: 4;
}

/* 下のテキスト */
.t-product__switch__txt {
    line-height: 1.66;
    order: 5;
    margin-top: auto;
}

/* +,- ボタン */
.t-product__switch--btn {
    color: #fff;
    font-size: 2.7rem;
    font-family: 'Marcellus', serif;
    line-height: 1.28;
    letter-spacing: 0.02em;
    width: fit-content;
    text-align: left;
    order: 3;
    margin-bottom: 0.5rem;
    opacity: .3;
    transition: opacity .6s;
    position: relative;
}

.t-product__switch--btn:hover {
    opacity: 1;
}

.t-product__switch--btn::after {
    content: '';
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.6s;
}

.t-product__switch--btn:hover::after {
    transform: scale(1, 1);
}

.t-product__switch--btn .toggle-btn {
    position: relative;
    margin-left: 5px;
}

.t-product__switch--btn .toggle-btn::before,
.t-product__switch--btn .toggle-btn::after {
    content: "";
    display: block;
    position: absolute;
    top: 47%;
    left: 0;
    width: 2rem;
    height: 1px;
    background: #fff;
    transition: transform .6s ease, opacity .6s ease;
}

.t-product__switch--btn .toggle-btn::after {
    transform: rotate(90deg);
}

/* active */
.t-product__switch--btn.active {
    opacity: 1;
}

.t-product__switch--btn.active .toggle-btn::after {
    transform: rotate(180deg);
    opacity: 0;
}

/* -------------------------------------------
---------------------- ▼ORGANIC CHOCOLATEのみ */

.t-oc {
    padding-top: 18rem;
}

.t-oc .t-product__conts {
    background: url(../images/top/product-bg01.jpg);
    background-repeat: repeat;
    padding-bottom: 16.3rem;
}

/* -------------------------------------------
--------------- ▼ORGANIC VEGETABLE COOKIEのみ */

.t-product__mv__wrap {
    background: url(../images/top/product-bg01.jpg);
    background-repeat: repeat-x;
    padding-top: 16.7rem;
}

.t-ovc .t-product__conts {
    background: url(../images/top/product-bg02.jpg);
    background-repeat: repeat;
}

.t-ovc .t-product__mv--ttl {
    color: #fff;
}

.t-ovc .t-product__mv--ttl h2::before {
    content: "02";
    top: 1.6rem;
    left: 15.2rem;
}

.t-ovc .t-product__mv--storelink a {
    right: 7.6%;
    top: 10.2%;
}

.t-ovc .t-product__about__txtblock--right h3 {
    letter-spacing: 0;
}


/* --------------------------------------------
-------------------------------- ▼レスポンシブ */
@media screen and (max-width: 768px) {

    .t-product__mv--ttl {
        top: -17.3%;
    }

    .t-product__mv--ttl h2 {
        font-size: 4.4rem;
    }

    .t-product__mv--ttl h2::before {
        font-size: 1.1rem;
        top: 0.7rem;
        left: 1.5rem;
    }

    .t-product__mv--storelink a {
        font-size: 1.2rem;
        right: 5.5%;
        top: 8.7%;
        padding: 3rem 2.4rem;
    }

    .t-product__conts {
        padding: 7.2rem 2rem 9rem;
    }

    /* パッケージ */
    .t-product__package__wrap {
        flex-direction: column;
        margin: 1.5rem 3.4rem .8rem;
    }

    .t-product__package__block {
        width: 100%;
        padding: 0;
        margin-bottom: 6.5rem;
    }

    .package--name {
        font-size: 1.6rem;
        margin: 1.5rem 0 0.9rem;
    }

    .package--storebtn {
        margin-top: 1.8rem;
    }

    .package--storebtn a {
        font-size: 1.4rem;
        padding: 0.4rem 2.4rem;
    }

    .t-product__about {
        flex-direction: column;
        margin: 3rem 0 7.5rem;
    }

    .t-product__about__txtblock--left {
        width: auto;
    }

    .product__about__category {
        margin-top: 4.2rem;
    }

    .t-product__about__txtblock--right {
        margin-top: 0.4rem;
    }

    .t-product__about__txtblock--right h3 {
        font-size: 4.4rem;
        margin-bottom: 3rem;
    }

    .t-product__about__txtblock--right h3 span img {
        width: 4.91rem;
        margin: 0 0.7rem;
        border-radius: 3px;
    }

    .t-product__about__txtblock--right h3 .sp-txtdrop {
        flex-direction: column;
        align-items: flex-start;
    }

    .t-product__about__txtblock--right h3 span .sp-ml-non {
        margin-left: 0;
    }

    .t-product__about--ttl {
        font-size: 1.6rem;
        line-height: 1.5;
        margin-bottom: 1.8rem;
    }

    .t-product__about--txt {
        width: auto;
        line-height: 2.07;
    }

    .t-product__material,
    .t-product__switch {
        flex-direction: column;
    }

    .t-product__material__txtblock,
    .t-product__switch__wrap {
        padding: 0;
        margin-top: 2.2rem;
    }

    .t-product__material__txtblock--ttl,
    .t-product__switch--ttl {
        font-size: 3.9rem;
        line-height: 1.3;
    }

    .t-product__material__txtblock--ttl span img,
    .t-product__switch--ttl span img {
        width: 4.91rem;
        margin: 0 0.8rem;
    }

    .t-product__material__txtblock,
    .t-product__switch__wrap {
        width: 100%;
    }

    /* ------------------------------- ▼material */

    .t-product__material~.t-product__material {
        margin-top: 5.5rem;
    }

    .t-product__material__txtblock--txt {
        margin-top: 3rem;
    }

    .t-product__material__txtblock--txt span {
        font-size: 1.6rem;
        line-height: 1.53;
        margin-bottom: 1.7rem;
    }

    .t-product__material__txtblock--ttl .fs {
        font-size: 2.6rem;
    }

    /* ------------------------------- ▼switch */

    .t-product__switch__wrap {
        height: auto;
        margin-top: 35.6rem;
    }

    .t-product__switch {
        margin-bottom: 5.8rem;
    }

    .t-product__switch--btn {
        font-size: 2.2rem;
    }

    .t-product__switch .toggle-btn::before,
    .t-product__switch .toggle-btn::after {
        width: 1.6rem;
    }

    .t-product__switch--intro {
        margin-top: 3.2rem;
    }

    .t-product__switch__txt {
        font-size: 1.1rem;
        line-height: 1.81;
        margin-top: 3rem;
    }

    /* -------------------------------------------
    ---------------------- ▼ORGANIC CHOCOLATEのみ */

    .t-oc {
        padding-top: 12.6rem;
    }

    .t-oc .t-product__conts {
        background: url(../images/top/product-bg01-sp.jpg);
        padding-bottom: 5rem;
    }

    /* -------------------------------------------
    --------------- ▼ORGANIC VEGETABLE COOKIEのみ */

    .t-product__mv__wrap {
        background: url(../images/top/product-bg01-sp.jpg);
        padding-top: 13.3rem;
    }

    .t-ovc .t-product__conts {
        background: url(../images/top/product-bg02-sp.jpg);
        padding-bottom: 10rem;
    }

    .t-ovc .t-product__mv--ttl h2::before {
        top: .7rem;
        left: 0.6rem;
    }

    .t-ovc .t-product__mv--storelink a {
        top: 18.5%;
        right: 5.5%;
    }

}


/* =========================================
    ▼TOP：オンラインストア
============================================ */

.t-onlinestore {
    background: url(../images/top/onlinestore-bg.jpg);
    background-repeat: repeat;
    padding: 17rem 0 0;
}

.t-onlinestore__conts {
    text-align: center;
    width: 85.1rem;
    margin: 0 auto;
}

.t-onlinestore__conts a {
    display: block;
    text-decoration: none;
    color: #fff;
    padding: 9.5rem 0;
    position: relative;
}

.t-onlinestore__conts a::before,
.t-onlinestore__conts a::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity ease-out .8s;
}

.t-onlinestore__conts a::before {
    background: url(../images/top/onlinestore-img02.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}


.t-onlinestore__conts a::after {
    background: url(../images/top/onlinestore-img02-on.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0;
}

.t-onlinestore__conts a:hover::after {
    opacity: 1;
}

.t-onlinestore__conts a:hover::before {
    opacity: 0;
}


.t-onlinestore__conts .logo {
    width: 6.31rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.t-onlinestore__conts--txt {
    line-height: 1.28;
    text-align: center;
    width: 85.1rem;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding: 4.2rem 0 6.5rem;
    position: relative;
    z-index: 3;
}

.t-onlinestore__ttl {
    color: #fff;
    font-size: 9.5rem;
    font-weight: 500;
    font-family: 'Marcellus', serif;
    letter-spacing: 0.02em;
    margin-bottom: 6.1rem;
    position: relative;
}

.t-onlinestore__ttl::after {
    content: "・";
    color: #fff;
    font-size: 3.6rem;
    position: absolute;
    top: 94%;
    left: 50%;
    transform: translateX(-50%);
}


.t-onlinestore__link {
    color: #fff;
    font-size: 1.7rem;
    font-family: 'Marcellus', serif;
    transition: color .25s ease;
    display: inline-block;
    border-bottom: 1px solid #fff;
    line-height: 1;
}


/* --------------------------------------------
-------------------------------- ▼レスポンシブ */
@media screen and (max-width: 768px) {
    .t-onlinestore {
        padding: 10.2rem 0 0;
    }

    .t-onlinestore__conts {
        width: 31.31rem;
    }

    .t-onlinestore__conts a::before {
        background: url(../images/top/onlinestore-img02-sp.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .t-onlinestore__conts a:after {
        background: url(../images/top/onlinestore-img02-on-sp.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .t-onlinestore__conts a {
        padding: 4.8rem 0;
    }

    .t-onlinestore__conts .logo {
        width: 3.74rem;
    }

    .t-onlinestore__conts--txt {
        width: 31.31rem;
        padding: 2.6em 0 4.8rem;
    }

    .t-onlinestore__ttl {
        font-size: 4.4rem;
        margin-bottom: 3.8rem;
    }

    .t-onlinestore__ttl::after {
        font-size: 3rem;
        top: 92%;
    }

    .t-onlinestore__link {
        font-size: 1.4rem;
    }
}