@charset "UTF-8";

/*
ブレイクポイント
SP 〜519px
tab 520px ~ 959px (min-width:520px)
pc 960px~ (min-width:960px)
*/


/*======================
変数宣言
======================*/
:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --accent-color: #FF5307;
    --size-sm: 1.4rem;
    --size-md: 1.6rem;
    --size-lg: 1.8rem;
    --size-xl: 2.0rem;
    --size-xxl: 3.2rem;
    --font: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    --font-title: "Impact", "Arial Black", sans-serif;
    --gutter-base: 10px;
    --contents-side-gutter: 20px;
    --section-gutter: 30px;
    --section-width: 390px;
}


/*======================
基本設定
======================*/

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    color: var(--text-color);
    font-size: var(--size-md);
    line-height: 1.75;
    font-family: var(--font);
    box-sizing: border-box;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--text-color);
}

.pc {
    display: none;
}

.sp {
    display: block;
}

.en {
    font-family: var(--font-title);
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}

h1 {
    font-size: var(--size-xl);
    font-weight: 900;
}

h1 span {
    font-size: var(--size-xxl);
    font-weight: 900;
}

h2 {
    font-size: var(--size-lg);
    font-weight: 700;
    line-height: 1.6;
}

.section_title_black {
    --x-gradient: linear-gradient(90deg, #fff 0 15px, transparent 0 calc(100% - 15px), #fff calc(100% - 15px));
    --y-gradient: linear-gradient(#fff 0 15px, transparent 0 calc(100% - 15px), #fff calc(100% - 15px));
    position: relative;
    padding: 1rem;
    margin-bottom: 0.2rem;
    background-image:
        var(--x-gradient),
        var(--y-gradient),
        var(--x-gradient),
        var(--y-gradient);
    background-repeat: no-repeat;
    background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
    background-position: top, right, bottom, left;
    text-align: center;
    margin: 30px 0;
}

.section_title_inner_black {
    background-color: #333333;
    padding: 1em 0;
}

h2.section_title_text_black {
    color: #fff;
}


.section_title_white {
    --x-gradient: linear-gradient(90deg, var(--accent-color) 0 15px, transparent 0 calc(100% - 15px), var(--accent-color) calc(100% - 15px));
    --y-gradient: linear-gradient(var(--accent-color) 0 15px, transparent 0 calc(100% - 15px), var(--accent-color) calc(100% - 15px));
    position: relative;
    padding: 1rem;
    margin-bottom: 0.2rem;
    background-image:
        var(--x-gradient),
        var(--y-gradient),
        var(--x-gradient),
        var(--y-gradient);
    background-repeat: no-repeat;
    background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
    background-position: top, right, bottom, left;
    text-align: center;
    margin: 30px 0;
}

.section_title_inner_white {
    background-color: #EEEEEE;
    padding: 1em 0;
}

h2.section_title_text_white {
    color: var(--text-color);
}

h3 {
    font-size: var(--size-xl);
    font-weight: 300;
}

.title {
    text-align: center;
    margin: 60px 0;
}

.body {
    padding: 0 var(--contents-side-gutter);
}

.main-content {
    background-color: #fff;
}

/*======================
ボタン
======================*/
.btn {
    background: #ffffff;
    border-radius: 8px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 40px;
    max-width: 360px;
    padding: 20px;
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 900;
    border-bottom: solid 5px #000;
    transition: 0.3s ease-in-out;
    text-align: center;
    z-index: 100;
}

.btn:hover {
    background: #ff8935;
    color: #FFF;
    border-bottom: solid 5px #000;
    transform: translateY(4px);
}

.btn:hover:before {
    color: #fff;
}

/*======================
TOP
======================*/
#top {
    background-image: url(../image/fv_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

#top .logo {
    padding: 20px 0 0 20px;
}

#top .title {
    position: relative;
    margin-top: 0;
}

#top .title_text {
    width: 100%;
    background-color: var(--accent-color);
    transform: skewY(-12deg);
    padding-top: 20px;
    padding-bottom: 20px;
}

#top h1 {
    color: #ffffff;
    padding-left: 5px;
    text-align: left;
    line-height: 1.4;
}

#top .title_image {
    position: absolute;
    top: -60%;
    right: 0%;
    max-width: 278px;
    z-index: 100;
}

#top .icon {
    position: relative;
}

#top .icon ul {
    position: absolute;
    top: -65px;
    right: -8px;
}

#top .icon ul li:nth-child(even) {
    margin-left: 50px;
}

#top .icon ul li {
    background-color: var(--accent-color);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin-top: -20px;
}

#top .icon ul li p {
    font-size: 12px;
    color: #fff;
    text-align: center;
}

#top .fv_img {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 284px;
}

#top .fv_img_bg {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    width: 100%;
    height: 20px;
    z-index: -100;
}


/*======================
youtube
======================*/
.youtube {
    background-color: var(--accent-color);
    padding: var(--section-gutter) var(--contents-side-gutter) calc(var(--section-gutter)*2);
    margin: 0 auto;
    text-align: center;
}

.youtube .youtube_inner {
    width: 100%;
    margin: 0 auto;
    padding-bottom: var(--section-gutter);
}

.youtube h3 {
    font-size: var(--size-lg);
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.youtube .youtube_tv {
    margin: 10px 0;
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(3, 1fr);
}


/*======================
moshimo
======================*/
#moshimo {
    position: relative;
    overflow: hidden;
    padding: 60px var(--gutter-base) 0;
    margin-top: -150px;
    z-index: 0;
}

#moshimo::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-color);
    transform: skewY(-12deg) translateY(90px);
    z-index: -10;
}

#moshimo .moshimo_box {
    background-size: cover;
    background-repeat: no-repeat;
    text-align: right;
    overflow: hidden;
    padding: 20px 0;
}

#moshimo .moshimo_box_right {
    text-align: left;
}

#moshimo .moshimo_box_01 {
    background-image: url(../image/mohimo_bg_01.jpg);
}

#moshimo .moshimo_box_02 {
    background-image: url(../image/mohimo_bg_02.jpg);
}

#moshimo .moshimo_box_03 {
    background-image: url(../image/mohimo_bg_03.jpg);
}

#moshimo .moshimo_box_title {
    display: inline-block;
    background-color: var(--text-color);
    transform: skewX(150deg);
    padding: 0.6em 5em 0.6em 1em;
    margin-right: -3em;
    margin-bottom: 20px;
}

#moshimo .moshimo_box_right .moshimo_box_title {
    padding: 0.6em 1em 0.6em 5em;
    margin-left: -3em;
    margin-right: 0;
}

#moshimo .moshimo_box_title h3 {
    color: #fff;
    font-size: var(--size-lg);
    font-weight: bold;
    transform: skewX(-150deg);
}

#moshimo .moshimo_box ul li {
    background-color: rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
    position: relative;
    width: 90%;
}

#moshimo .moshimo_box ul li::before {
    position: absolute;
    content: '';
    top: 10px;
    left: 0px;
    width: 103%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

#moshimo .moshimo_box ul li p {
    position: relative;
    color: #fff;
    padding: 1.5em 1em 1em 1em;
    font-size: var(--size-sm);
    text-align: left;
}

#moshimo .moshimo_box_right ul li {
    margin: 10px 0 20px auto;
}

#moshimo .moshimo_box_right ul li::before {
    width: 97%;
    right: 0;
    top: -10px;
    left: auto;
}

#moshimo .moshimo_box_right ul li p {
    padding: 1em 1em 1.5em 2em;
}

/*======================
step
======================*/
#step .step_img {
    max-width: 300px;
    margin: 0 auto;
}

#step .step_box {
    background-color: var(--accent-color);
    padding-top: 60px;
    margin-top: -60px;
    color: #fff;
}

#step .step_title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 10px auto 30px;
}

#step .step_title h3.en {
    font-size: 60px;
}

#step .step_title p {
    font-size: var(--size-lg);
    line-height: 1.4;
}

#step .step_box_inner {
    padding-bottom: 30px;
}

#step .step_box_inner:not(:last-child) {
    border-bottom: 1px solid #fff;
    margin-bottom: 30px;
}

#step .step_list {
    margin: 30px 0;
}

#step .step_list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: var(--gutter-base);
}

#step .step_list li::before {
    position: absolute;
    content: '';
    width: 30px;
    height: 26px;
    top: 0;
    left: 0;
    background-image: url(../image/step_icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

#step .step_note {
    font-size: var(--size-sm);
}

#step .step_cook {
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;

}

#step .step_cook dl {
    border: 1px solid #fff;
    text-align: center;
    font-size: var(--size-sm);
}

#step .step_cook dl dt {
    background-color: #fff;
    color: var(--accent-color);
}

#step .step_cook dl dd {
    padding: 0.3em;
}

#step .step_img_left {
    margin-top: 30px;
    margin-left: -20px;
    margin-right: 40px;
    width: 90%;
}

#step .step_img_right {
    margin-right: -20px;
    margin-left: 40px;
    margin-top: -10px;
}

/*======================
voice
======================*/
#voice .voice_title {
    background-image: url(../image/voice_title_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 1px 0;
}

#voice .section_title_inner_black {
    background-color: rgba(0, 0, 0, 0.7);
}

#voice .voice_box {
    background-image: url(../image/voice_bg.jpg);
    background-repeat: repeat;
    padding: 30px 0;
}

#voice .voice_list dl {
    color: #fff;
}

#voice .voice_list dd {
    font-size: var(--size-sm);
}

#voice .voice_comment {
    background-color: rgba(255, 255, 255, 0.6);
    position: relative;
    margin: 10px 0 30px;
    padding: 1em;
    font-size: var(--size-sm);
}

#voice .voice_comment::before {
    background-color: rgba(255, 255, 255, 0.6);
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 10px;
    left: 10px;
}

#voice .voice_comment p {
    position: relative;
}

/*======================
product
======================*/
#product .product_title {
    background-image: url(../image/product_title_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 1px 0;
}

#product .section_title_inner_black {
    background-color: rgba(0, 0, 0, 0.7);
}

#product .product_inner {
    background-color: var(--accent-color);
    padding: 20px;
}

#product .product_list li {
    background-color: #fff;
    margin-bottom: 20px;
}

#product .product_list .product_list_title {
    background-color: #8B0303;
}

#product dl.product_list_title {
    color: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#product datalist.product_list_title dt {
    width: 40%;
}

#product dl.product_list_title dd {
    width: 60%;
    border-left: 1px solid #fff;
    padding-left: 10px;
    font-size: var(--size-sm);
}

#product .product_list_title p {
    text-align: center;
    color: #fff;
    padding: 10px;
}

#product .product_list_inner {
    display: flex;
    align-items: center;
}

#product .product_list_img {
    padding-left: 10px;
    font-size: var(--size-sm);
}

#product .product_list_img p {
    padding-bottom: 10px;
}

#product .product_list_img p span {
    color: #777;
}

#product .product_list_text {
    padding: 10px;
    font-size: var(--size-sm);
}

#product .product_list_text_box {
    width: 140px;
    border: 1px solid #D5D5D5;
    text-align: center;
    margin-bottom: 10px;
}

#product .product_list_text_box dt {
    background-color: #D5D5D5;
}

#product .product_list_text p {
    width: 140px;
    font-size: var(--size-sm);
    color: #777;
}

/*======================
set
======================*/

#set .set_list li.set_list_inner {
    border: 1px solid var(--accent-color);
    margin-bottom: 50px;
}

#set .set_title {
    background: var(--accent-color);
    color: #fff;
    position: relative;
    padding: 10px;
    text-align: center;
    font-size: var(--size-lg);
}

#set .set_title .set_speech {
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
}

#set .set_list dd {
    padding: 10px;
}

#set .set_product {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: end;
    gap: 10px;
}

#set .set_product p {
    font-size: 12px;
    text-align: center;
}

#set .complete {
    grid-template-columns: 1.1fr 1fr 0.8fr;
    grid-template-rows: 1fr 1fr;
}

#set .complete li:nth-child(5) {
    grid-row: 2;
    grid-column: 2 / 4;
}

#set .complete li:nth-child(5) img {
    margin: auto;
    max-height: 120px;
}

#set .pair {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    padding: 0 20px;

}

#set .pair li:nth-child(2) img {
    margin: auto;
    max-height: 150px;
}

#set .set_price {
    position: relative;
}

#set .set_price::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 28px;
    background-color: #eee;
}

#set .set_price p {
    position: relative;
    font-size: var(--size-xl);
    font-weight: bold;
    text-align: right;
    padding-right: 10px;
}

#set .set_price p span {
    font-size: var(--size-xxl);
}

/*======================
faq
======================*/
#faq {
    background-color: #8B0303;
    padding: 10px 0;
}

#faq .faq_list li {
    margin-bottom: 20px;
}

#faq .faq_q {
    background-color: var(--accent-color);
    color: #fff;
    padding: 10px;
    min-height: 80px;
}

#faq .faq_q p {
    position: relative;
    padding-left: 50px;
}

#faq .faq_q p::before {
    position: absolute;
    content: 'Q';
    font-family: var(--font-title);
    font-size: 60px;
    line-height: 0.8;
    top: 0;
    left: 0;
}

#faq .faq_a {
    background-color: #fff;
    padding: 10px;
    min-height: 80px;
}

#faq .faq_a p {
    position: relative;
    padding-left: 50px;
}

#faq .faq_a p::before {
    position: absolute;
    content: 'A';
    color: var(--accent-color);
    font-family: var(--font-title);
    font-size: 60px;
    line-height: 0.8;
    top: 0;
    left: 0;
}

/* ===============ここからmin-width:520px=============== */
@media screen and (min-width:520px) {
    .main-content {
        max-width: var(--section-width);
        margin: 0 10% 0 auto;
    }

    #container {
        background-image: url(../image/pc_bg.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: fixed;
        position: relative;
    }

}

/* ===============ここまでmin-width:520px=============== */

/* ===============ここからmin-width:960px=============== */
@media screen and (min-width:960px) {

    .pc {
        display: block;
    }

    .sp {
        display: none;
    }

    .pc_menu {
        position: fixed;
        padding: 20px 0 0 0;
        width: 360px;
        margin-left: 10%;
    }

    .pc_nav {
        margin: 30px 0;
    }

    .pc_nav ul li {
        border-bottom: 1px solid #fff;
    }

    .pc_nav ul li a {
        font-family: var(--font-title);
        font-size: 30px;
        color: #fff;
        text-decoration: none;
        transition: 0.5s;
        text-transform: uppercase;
    }

    .pc_nav ul li a:hover {
        color: var(--accent-color);
    }
}

/* ===============ここまでmin-width:960px=============== */