@charset "utf-8";

.pc {
    display: block;
}

.sp {
    display: none;
}

@media only screen and (max-width: 599px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

/* ----------------------------------------------------------
Common Setting
---------------------------------------------------------- */

html {
    font-size: 62.5%;
}

/*body*/

body {
    color: #728367;
    font-family: 'Shippori Mincho', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-size: 1.5rem;
    font-weight: 100;
    line-height: 2;
    letter-spacing: 0.15rem;
}

body:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    background-image: url(../images/section_bg01.webp);
    background-size: cover;
    background-position: center center;
}

.container {
    overflow: hidden;
}

.inner {
    width: 1000px;
    margin: 0 auto;
}

/*img*/

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}

/*link*/

a:link,
a:visited,
a:active {
    color: #000;
    text-decoration: none;
    transition: 0.5s;
}

a:hover {
    text-decoration: none;
    outline: 0;
    opacity: 0.8;
}

input:hover,
a:hover img {
    outline: 0;
    opacity: 0.8;
}

/* iOSでのデフォルトスタイルをリセット */

input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}

.fade_in,
.fade_in_up,
.fade_in_left,
.fade_in_right,
.zoom_in {
    opacity: 0;
    visibility: hidden;
}

.fade_in_left.active {
    visibility: visible;
    -webkit-animation: fade_in_left linear 0.5s;
    animation: fade_in_left linear 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.fade_in_right.active {
    visibility: visible;
    -webkit-animation: fade_in_right linear 0.5s;
    animation: fade_in_right linear 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.fade_in.active {
    visibility: visible;
    -webkit-animation: fade_in linear 0.5s;
    animation: fade_in linear 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.fade_in_up.active {
    visibility: visible;
    -webkit-animation: fade_in_up linear 0.5s;
    animation: fade_in_up linear 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.zoom_in.active {
    visibility: visible;
    -webkit-animation: zoom_in linear 0.5s;
    animation: zoom_in linear 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}



@-webkit-keyframes fade_in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}



@keyframes fade_in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fade_in_up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade_in_up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes fade_in_left {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade_in_left {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-webkit-keyframes fade_in_right {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade_in_right {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-webkit-keyframes zoom_in {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoom_in {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.opening_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #DB7952;
    z-index: 100;
}

.opening_bg .logo {
    text-align: center;
    line-height: 100vh;
}

.opening_bg .logo.fade_in.active {
    visibility: visible;
    -webkit-animation: fade_in linear 1.5s;
    animation: fade_in linear 1.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

/* ----------------------------------------------------------
header
---------------------------------------------------------- */

.header {
    width: 100%;
    padding: 35px 45px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 70;
}

.header .logo {
    width: 328px;
    height: 26px;
    line-height: 1;
}

.header .logo .st1 {
    transition: all .4s;
}

.header.change .logo .st1 {
    fill: #728467;
}

.header .nav_btn {
    color: #fff;
    font-size: 3rem;
    text-align: center;
    line-height: 1;
    position: relative;
    cursor: pointer;
    transition: all .4s;
}

.header.change .nav_btn {
    color: #728467;
}

.header .nav_btn.active span {
    opacity: 0;
}

.header .nav_btn.active:before {
    content: '';
    width: 30px;
    height: 1px;
    background-color: #728467;
    position: absolute;
    top: 8px;
    left: 0;
    transform: translateY(6px) rotate(-135deg);
}

.header .nav_btn.active:after {
    content: '';
    width: 30px;
    height: 1px;
    background-color: #728467;
    position: absolute;
    top: 20px;
    left: 0;
    transform: translateY(-6px) rotate(495deg);
}

/* ----------------------------------------------------------
    nav
    ---------------------------------------------------------- */

.nav {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    height: 100vh;
    z-index: 60;
    opacity: 0;
    visibility: hidden;
}

.nav.active {
    visibility: visible;
    -webkit-animation: fade_in linear 0.2s;
    animation: fade_in linear 0.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.nav .inner {
    width: 1000px;
}

.nav .menu_list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 25vh;
}

.nav .menu_list li {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 70px;
}

.nav .menu_list li .text {
    color: #728467;
    font-size: 2.6rem;
    font-weight: 100;
    font-stretch: condensed;
    line-height: 1.2;
}

.nav .menu_list li:nth-of-type(3n),
.nav .menu_list li:last-of-type {
    margin-right: 0;
}

.nav .menu_list li:hover img {
    -webkit-animation: pulsation .7s alternate infinite;
    animation: pulsation .7s alternate infinite;
}

.nav .menu_list li a {
    display: block;
    padding-bottom: 5px;
    width: calc(80% - 3px);
    border-bottom: 1px solid #728467;
    transition: 0.5s;
    position: relative;
}

.nav .menu_list li a:before {
    content: '';
    background-color: #728467;
    width: 3px;
    height: 1px;
    position: absolute;
    right: 1px;
    bottom: -1px;
    transform: rotate(45deg);
    transform-origin: right bottom;
}

.nav .menu_list li a:after {
    content: '';
    border: 1px solid #728467;
    width: 10px;
    height: 10px;
    position: absolute;
    right: -3px;
    bottom: -5.5px;
    border-radius: 50%;
    box-sizing: border-box;
}

.nav .menu_list li a:hover {
    opacity: 1;
}

.nav .nav_footer {
    text-align: center;
    width: 100%;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10vh;
}

.nav .nav_footer .logo {
    margin-bottom: 50px;
}

.nav .nav_footer .copyright {
    font-size: 1rem;
    letter-spacing: 0.1rem;
}

/* ----------------------------------------------------------
mv
---------------------------------------------------------- */

.mv {
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    background-image: url(../images/mv_bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: #f3de9b;
    position: relative;
}

.mv .insta {
    text-align: center;
    position: absolute;
    left: 40px;
    bottom: 50px;
}

.mv .insta .line {
    width: 1px;
    height: 45px;
    background-color: #728367;
    margin: 80px auto 5px;
}

.mv .insta .insta_text {
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
    transform: rotate(90deg);
    transform-origin: left top;
    position: absolute;
    left: 25px;
}

.mv .scroll {
    text-align: center;
    position: absolute;
    right: 40px;
    bottom: 50px;
}

.mv .scroll .scroll_text {
    color: #fff;
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
    transform: rotate(90deg);
    transform-origin: left top;
    position: absolute;
    left: 18px;
}

.mv .scroll .scroll_dot {
    margin-top: 70px;
}

.mv .scroll .scroll_dot li {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-bottom: 6px;
    background-color: #fff;
    animation: arrow 2s infinite;
    -webkit-animation: arrow 2s infinite;
}

@keyframes arrow {
    0% {
        opacity: 0
    }

    40% {
        opacity: 1
    }

    80% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

@-webkit-keyframes arrow

/*Safari and Chrome*/
    {
    0% {
        opacity: 0
    }

    40% {
        opacity: 1
    }

    80% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

.mv .scroll .scroll_dot li:first-of-type {
    animation-delay: -1s;
    -webkit-animation-delay: -1s;
}

.mv .scroll .scroll_dot li:nth-of-type(2) {
    animation-delay: -0.5s;
    -webkit-animation-delay: -0.5s;
}

.mv .scroll .scroll_dot li:last-of-type {
    animation-delay: 0s;
    -webkit-animation-delay: 0s;
}

.mv .logo {
    line-height: 100vh;
    width: 66px;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 0;
    z-index: 50;
}

.mv .text {
    font-size: 3rem;
    letter-spacing: 0.5rem;
    padding-top: 25vh;
}

/* ----------------------------------------------------------
concept
---------------------------------------------------------- */

.concept {
    background-color: #f3de9b;
    position: relative;
}

.concept .inner {
    padding: 350px 0 120px;
    position: relative;
}

.concept .inner .bg01 {
    position: absolute;
    right: -20px;
    top: 140px;
}

.concept .bg02 {
    position: absolute;
    left: -100px;
    bottom: -50px;
}

.concept .en_title {
    color: #fff;
    font-size: 6rem;
    font-stretch: condensed;
    position: absolute;
    right: 70px;
    bottom: 130px;
    transform: rotate(90deg);
    transform-origin: right bottom;
}

.concept .jp_title {
    font-size: 3.5rem;
    letter-spacing: 0.5rem;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    position: absolute;
    left: 90px;
    top: 50px;
}

.concept .text {
    padding-left: 300px;
    line-height: 2.5;
}

.concept .text.text02 {
    font-size: 2.5rem;
}

.section_slide_show {
    background-color: #fff;
}

/*
右から左へ
----------------------------*/
@-webkit-keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/*
  左から右へ
  ----------------------------*/
@-webkit-keyframes infinity-scroll-right {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0%);
    }
}

@keyframes infinity-scroll-right {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0%);
    }
}

.slide_show {
    display: flex;
    overflow: hidden;
}

.slide_show_list {
    display: flex;
    list-style: none;
}

.slide_show_list_left {
    -webkit-animation: infinity-scroll-left 60s infinite linear 0.5s both;
    animation: infinity-scroll-left 60s infinite linear 0.5s both;
}

.slide_show_list_right {
    -webkit-animation: infinity-scroll-right 60s infinite linear 0.5s both;
    animation: infinity-scroll-right 60s infinite linear 0.5s both;
}

.slide_show_item {
    width: calc(100vw / 4);
}

.slide_show_item>img {
    width: 100%;
}

/*
  マウスオーバーで一時停止させたい場合は以下
  ----------------------------*/

.slide_show:hover .slide_show_list_left,
.slide_show:hover .slide_show_list_right {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

/* ----------------------------------------------------------
product_contents
---------------------------------------------------------- */

.product_contents {
    background-color: #fff;
    padding: 120px 0;
}

.product_contents .inner {
    position: relative;
}

.product_contents .inner .en_title {
    color: #ECD896;
    font-size: 6rem;
    font-stretch: condensed;
    position: absolute;
    left: 90px;
    top: -198px;
    transform: rotate(90deg);
    transform-origin: left top;
}

.product_contents .inner .box {
    padding: 0 150px 0 100px;
}

.product_contents .inner .jp_title {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.product_contents .inner .text {
    line-height: 2.5;
}


/* ----------------------------------------------------------
product
---------------------------------------------------------- */

.product {
    background-color: #DDBC77;
    position: relative;
}

.product .img {
    position: absolute;
    top: 60px;
    left: calc(50% - 700px);
    z-index: 10;
}

.product .img img {
    border-radius: 0 5px 5px 0;
}

.product .img:after {
    content: '';
    background-color: #f9f7f8;
    width: 50vw;
    height: 100%;
    position: absolute;
    left: -50vw;
    top: 0;
    z-index: 0;
}

.product.product01 .bg {
    position: absolute;
    top: 300px;
    right: -250px;
    z-index: 0;
}

.product.product02 .bg {
    position: absolute;
    top: 400px;
    right: -130px;
    z-index: 0;
}

.product .inner {
    width: 1100px;
    position: relative;
    padding: 140px 0;
    z-index: 20;
}

.product .en_title {
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    color: #DB7952;
    position: absolute;
    left: -90px;
    top: 30px;
    transform: rotate(90deg);
    transform-origin: left top;
}

.product .en_title {
    font-size: 1.6rem;
    color: #DB7952;
    position: absolute;
    left: -90px;
    top: 30px;
    transform: rotate(90deg);
    transform-origin: left top;
}

.product .box {
    padding-left: 600px;
    padding-bottom: 70px;
}

.product .box .jp_title {
    font-size: 2.4rem;
    line-height: 1.5;
}

.product .box .amount {
    color: #231815;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #728467;
}

.product .box .catch {
    font-size: 2.5rem;
}

.product .box .text {
    color: #231815;
    line-height: 2.5;
    padding-bottom: 25px;
    margin-top: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid #728467;
}

.product .box .btn.buy_btn {
    margin-bottom: 20px;
    box-sizing: border-box;
}

.product .box .btn.buy_btn a {
    display: block;
    padding-bottom: 5px;
    width: calc(50% - 3px);
    border-bottom: 1px solid #728467;
    transition: 0.5s;
    position: relative;
}

.product .box .btn.buy_btn a:hover {
    color: #7d655e;
}

.product .box .btn.buy_btn a:before {
    content: '';
    background-color: #728467;
    width: 3px;
    height: 1px;
    position: absolute;
    right: 1px;
    bottom: -1px;
    transform: rotate(45deg);
    transform-origin: right bottom;
}

.product .box .btn.buy_btn a:after {
    content: '';
    border: 1px solid #728467;
    width: 10px;
    height: 10px;
    position: absolute;
    right: -3px;
    bottom: -5.5px;
    border-radius: 50%;
    box-sizing: border-box;
}

.product .box .btn.ingredient_btn {
    color: #231815;
    padding-bottom: 5px;
    width: 50%;
    border-bottom: 1px solid #728467;
    transition: 0.5s;
    position: relative;
}

.product .box .btn.ingredient_btn:hover {
    color: #7d655e;
    cursor: pointer;
}

.product .box .btn.ingredient_btn.active:before {
    content: '';
    background-color: #728467;
    width: 1px;
    height: 10px;
    position: absolute;
    right: 4.5px;
    bottom: -5.5px;
    display: block;
}

.product .box .btn.ingredient_btn:before {
    display: none;
}

.product .box .btn.ingredient_btn:after {
    content: '';
    border: 1px solid #728467;
    width: 10px;
    height: 10px;
    position: absolute;
    right: 0;
    bottom: -5.5px;
    border-radius: 50%;
    box-sizing: border-box;
}

.product .hide_box {
    display: none;
}

.product .layout {
    display: flex;
}

.product .layout .left {
    width: 600px;
}

.product .layout .left .recommend_text {
    color: #231815;
    margin-bottom: 30px;
}

.product .layout .left .recommend_list {
    display: flex;
}

.product .layout .left .recommend_list li {
    color: #231815;
    text-align: center;
    line-height: 130px;
    width: 130px;
    height: 130px;
    border: 1px solid #fff;
    border-radius: 50%;
    box-sizing: border-box;
    margin-right: 15px;
    position: relative;
}

.product .layout .left .recommend_list li span {
    letter-spacing: 0;
}

.product .layout .left .recommend_list li:last-of-type {
    margin-right: 0;
}

.product .layout .left .recommend_list li:before {
    content: '';
    border: 1px solid #fff;
    width: calc(100% - 14px);
    height: calc(100% - 14px);
    position: absolute;
    left: 0;
    right: 0;
    top: 6px;
    margin: 0 auto;
    border-radius: 50%;
    box-sizing: border-box;
}

.product .layout .right {
    width: 500px;
}

.product .layout .right .text,
.product .layout .right .ingredient_text {
    color: #231815;
    line-height: 2.5;
}

.product .layout .right .ingredient_title {
    color: #fff;
    line-height: 2.5;
}

.product .layout .right .ingredient_text span {
    font-size: 2.1rem;
}

.product.product02 {
    background-color: #fff;
}

.product.product02 .img:after {
    background-color: #f2f4f3;
}

.product.product03 .img:after {
    background-color: #f2f0f1;
}

.product.product02 .layout .left .recommend_list li,
.product.product02 .layout .left .recommend_list li:before {
    border: 1px solid #DB7952;
}

/* ----------------------------------------------------------
section_img01
---------------------------------------------------------- */

.section_img01 {
    height: 750px;
    /* background-image: url(../images/bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    background-attachment: fixed; */
    background: none;
}

.section_img02 {
    height: 750px;
    background-image: url(../images/section_bg02.webp);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

/* ----------------------------------------------------------
message
---------------------------------------------------------- */
.message {
    background-color: #ECD896;
    padding: 120px 0 150px;
}

.message .layout {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.message .layout:last-of-type {
    align-items: flex-end;
}

.message .layout .title {
    font-size: 2.5rem;
    margin-top: -25px;
    width: 450px;
}

.message .layout .line {
    width: 550px;
    height: 1px;
    background-color: #728367;
    opacity: 0.3;
}

.message .layout .text {
    text-align: right;
    line-height: 2.5;
}

.message .layout .text.text02 {
    font-size: 2.5rem;
}

/* ----------------------------------------------------------
section_insta
---------------------------------------------------------- */

.section_insta {
    background-color: #fff;
    padding: 120px 0;
}

.section_insta .title {
    font-size: 6rem;
    font-stretch: condensed;
    text-align: center;
    margin-bottom: 70px;
}

.section_insta .btn {
    text-align: center;
    width: 250px;
    margin: 50px auto 0;
    box-sizing: border-box;
}

.section_insta .btn a {
    color: #728467;
    font-size: 1.2rem;
    line-height: 2.5;
    display: block;
    padding-bottom: 5px;
    width: calc(100% - 3px);
    border-bottom: 1px solid #728467;
    transition: 0.5s;
    position: relative;
}

.section_insta .btn a:hover {
    color: #7d655e;
}

.section_insta .btn a:before {
    content: '';
    background-color: #728467;
    width: 3px;
    height: 1px;
    position: absolute;
    right: 1px;
    bottom: -1px;
    transform: rotate(45deg);
    transform-origin: right bottom;
}

.section_insta .btn a:after {
    content: '';
    border: 1px solid #728467;
    width: 10px;
    height: 10px;
    position: absolute;
    right: -3px;
    bottom: -5.5px;
    border-radius: 50%;
    box-sizing: border-box;
}

.section_insta .btn a img {
    width: 12px;
    height: 12px;
    margin-right: 10px;
}

.section_insta .insta {
    position: relative;
}

.section_insta .insta:after {
    content: '';
    width: 100%;
    height: calc(100% - 80px);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
}

/* ----------------------------------------------------------
footer
---------------------------------------------------------- */

.footer {
    background-color: #fff;
    padding: 80px 0 100px;
}

.footer .layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer .layout .footer_menu {
    display: flex;
    margin-top: 60px;
}

.footer .layout .footer_menu li {
    margin-right: 30px;
}

.footer .layout .footer_menu a {
    color: #728367;
    font-size: 1.2rem;
}

.footer .layout .footer_menu a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer .copyright {
    font-size: 1rem;
    letter-spacing: 0.1rem;
}

@media only screen and (max-width: 1024px) {

    /* ----------------------------------------------------------
    Common Setting
    ---------------------------------------------------------- */

    .inner {
        width: 90%;
        margin: 0 auto;
    }

    /* ----------------------------------------------------------
header
---------------------------------------------------------- */


    /* ----------------------------------------------------------
    nav
    ---------------------------------------------------------- */

    .nav {
        position: fixed;
        background-color: #f3f2e9;
        width: 100%;
        height: 100vh;
        opacity: 0;
        visibility: hidden;
    }

    .nav.active {
        visibility: visible;
        -webkit-animation: fade_in linear 0.2s;
        animation: fade_in linear 0.2s;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }

    .nav .inner {
        width: 95%;
    }

    .nav .menu_list {
        display: flex;
        flex-wrap: wrap;
        margin-top: 25vh;
    }

    .nav .menu_list li {
        width: 30%;
        margin-right: 5%;
    }

    .nav .menu_list li .text {
        font-size: 2.1rem;
    }

    .nav .nav_footer .logo img {
        width: 250px;
    }

    /* ----------------------------------------------------------
mv
---------------------------------------------------------- */

    .mv .insta {
        left: 20px;
    }

    .mv .scroll {
        right: 20px;
    }

    .mv .text {
        font-size: 3rem;
        padding-left: 5vw;
        padding-top: 12vh;
    }

    /* ----------------------------------------------------------
concept
---------------------------------------------------------- */

    .concept .text {
        padding-left: 0;
    }

    .slide_show_item {
        width: calc(100vw / 3);
    }

    /* ----------------------------------------------------------
product_contents
---------------------------------------------------------- */

    .product_contents .inner .box {
        padding: 0 0 0 70px;
    }


    /* ----------------------------------------------------------
product
---------------------------------------------------------- */

    .product {
        background-color: #DDBC77;
        position: relative;
    }

    .product .img {
        position: relative;
        top: auto;
        left: auto;
        padding: 10% 10% 0 0;
    }

    .product .img img {
        width: 100%;
        border-radius: 0;
    }

    .product .img:after {
        display: none;
    }

    .product.product01 .bg {
        top: 70vw;
        right: -250px;
    }

    .product.product02 .bg {
        top: 80vw;
        right: -130px;
    }

    .product .inner {
        width: 90%;
    }

    .product .box {
        padding-left: 0;
    }

    .product .layout {
        display: block;
    }

    .product .en_title {
        left: 30px;
        top: -68vw;
    }

    .product .layout .left {
        width: 100%;
        margin-bottom: 50px;
    }

    .product .layout .left .recommend_text {
        text-align: center;
    }

    .product .layout .left .recommend_list {
        justify-content: center;
    }

    .product .layout .right {
        width: 100%;
    }

    /* ----------------------------------------------------------
section_img01
---------------------------------------------------------- */

    .section_img01 {
        height: 50vh;
    }

    .section_img02 {
        height: 50vh;
    }

    /* ----------------------------------------------------------
message
---------------------------------------------------------- */

    .message .layout .title {
        margin-right: 20px;
        white-space: nowrap
    }

    .message .layout02,
    .message .layout03 {
        display: block;
    }

    .message .layout .img img {
        width: 100%;
    }

    .message .layout .img02,
    .message .layout .img03 {
        display: none;
    }
}

@media only screen and (max-width: 599px) {

    /* ----------------------------------------------------------
    Common Setting
    ---------------------------------------------------------- */

    /*body*/

    body {
        font-size: 1.3rem;
        letter-spacing: 0.1rem;
    }

    .inner {
        width: 80%;
        margin: 0 auto;
    }

    .opening_bg .logo {
        text-align: center;
        line-height: 90vh;
    }

    .opening_bg .logo img {
        width: 10vw;
        height: auto;
    }


    /* ----------------------------------------------------------
header
---------------------------------------------------------- */

    .header {
        padding: 5% 5% 5% 10%;
    }

    .header .logo {
        width: 65vw;
        height: auto;
    }

    .header .nav_btn {
        font-size: 2rem;
    }

    .header .nav_btn.active:before {
        width: 20px;
        top: 4px;
    }

    .header .nav_btn.active:after {
        width: 20px;
        top: 16px;
    }

    /* ----------------------------------------------------------
    mv
    ---------------------------------------------------------- */

    .mv {
        background-size: 150%;
    }

    .mv .insta {
        left: 10px;
        bottom: 20px;
    }

    .mv .insta .insta_text {
        font-size: 1.2rem;
        left: 20px;
    }

    .mv .insta img {
        width: 15px;
        padding-left: 1px;
    }

    .mv .insta .line {
        margin: 70px auto 5px;
    }

    .mv .scroll {
        right: 15px;
        bottom: 20px;
    }

    .mv .scroll .scroll_text {
        font-size: 1.2rem;
        left: 16px;
    }

    .mv .scroll .scroll_dot {
        margin-top: 65px;
    }

    .mv .logo {
        line-height: 90vh;
        width: 10vw;
    }

    .mv .text {
        font-size: 3.8vw;
        padding-left: 0;
        padding-top: 11vh;
    }

    /* ----------------------------------------------------------
    nav
    ---------------------------------------------------------- */

    .nav .inner {
        width: 80%;
    }

    .nav .menu_list {
        display: block;
        margin-top: 100px;
    }

    .nav .menu_list li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
        box-sizing: border-box;
    }

    .nav .menu_list li a {
        width: calc(50% - 3px);
    }

    .nav .menu_list li .text {
        font-size: 1.8rem;
        letter-spacing: 0.1rem;
    }

    .nav .nav_footer {
        bottom: 7vh;
    }

    .nav .nav_footer .logo img {
        width: 50%;
        height: auto;
    }

    .nav .nav_footer .logo img {
        width: 50%;
        height: auto;
    }

    /* ----------------------------------------------------------
    concept
    ---------------------------------------------------------- */

    .concept .inner {
        padding: 100px 0 12%;
        position: relative;
    }

    .concept .en_title {
        color: #fff;
        font-size: 3rem;
        letter-spacing: 0.2rem;
        position: absolute;
        right: 40px;
        bottom: auto;
        top: 110px;
        transform: rotate(90deg);
        transform-origin: right bottom;
    }

    .concept .jp_title {
        font-size: 1.8rem;
        line-height: 1.8;
        letter-spacing: 0.1rem;
        -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
        writing-mode: inherit;
        position: relative;
        left: 0;
        top: 0;
        margin-bottom: 15px;
    }

    .concept .text {
        line-height: 2;
    }

    .concept .text.text02 {
        font-size: 1.7rem;
        margin-top: 15px;
    }

    .concept .inner .bg01 {
        right: -50px;
        top: 130px;
    }

    .concept .inner .bg01 img {
        width: 100px;
    }

    .concept .bg02 {
        left: -60px;
        bottom: -70px;
    }

    .concept .bg02 img {
        width: 150px;
    }

    .slide_show_item {
        width: calc(100vw / 2);
    }

    /* ----------------------------------------------------------
    product_contents
    ---------------------------------------------------------- */

    .product_contents .inner .box {
        padding: 0;
    }

    .product_contents .inner .en_title {
        font-size: 3rem;
        letter-spacing: 0.2rem;
        left: 40px;
        top: -35px;
    }

    .product_contents .inner .jp_title {
        font-size: 1.8rem;
        line-height: 1.8;
        margin-bottom: 20px;
        padding-left: 40px;
    }

    .product_contents .inner .text {
        line-height: 2;
    }

    .product_contents {
        padding: 12% 0;
    }

    .product .layout .left {
        margin-bottom: 30px;
    }

    .product .en_title {
        font-size: 1.4rem;
        left: 20px;
        top: -70vw;
    }

    .product .layout .left .recommend_text {
        margin-bottom: 20px;
    }

    .product .layout .left .recommend_list {
        justify-content: space-between;
    }

    .product .layout .left .recommend_list li {
        font-size: 1.1rem;
        line-height: 19vw;
        width: 19vw;
        height: 19vw;
        margin-right: 0;
    }

    .product .layout .left .recommend_list li:before {
        width: calc(100% - 5px);
        height: calc(100% - 5px);
        top: 2.5px;
    }

    .product.product01 .bg {
        top: 710px;
        right: -120px;
    }

    .product.product01 .bg img {
        width: 350px;
    }

    .product.product02 .bg {
        top: 800px;
        right: -70px;
    }

    .product.product02 .bg img {
        width: 250px;
    }

    /* ----------------------------------------------------------
    product
    ---------------------------------------------------------- */

    .product .inner {
        padding: 10% 0;
        width: 80%;
    }

    .product .box .jp_title,
    .product .box .catch {
        font-size: 1.8rem;
        line-height: 1.8;
    }

    .product .box .amount {
        font-size: 1.2rem;
        margin-top: 15px;
    }

    .product .box .text {
        line-height: 2;
    }

    .product .img {
        padding: 10% 10% 0 0;
    }

    .product .layout .right .ingredient_text {
        line-height: 2;
    }

    .product .layout .right .ingredient_text span {
        font-size: 1.5rem;
    }

    /* ----------------------------------------------------------
    message
    ---------------------------------------------------------- */

    .message {
        padding: 12% 0 15%;
    }

    .message .inner {
        width: 100%;
    }

    .message .layout {
        display: block;
    }

    .message .layout .title {
        font-size: 1.6rem;
        line-height: 2;
        margin: 0;
        padding: 0 10%;
        width: 100%;
        position: relative;
        white-space: normal;
        box-sizing: border-box;
    }

    .message .layout .title::after {
        content: ' ';
        width: 15vw;
        height: 1px;
        background-color: #728467;
        position: absolute;
        right: 0;
        top: 10px;
        opacity: 0.3;
    }

    .message .layout .line {
        display: none;
    }

    .message .layout .box {
        margin-top: 30px;
    }

    .message .layout .text {
        padding: 0 10%;
        line-height: 2;
    }

    .message .layout .text.text02 {
        font-size: 1.8rem;
        line-height: 2;
    }

    /* ----------------------------------------------------------
    insta
    ---------------------------------------------------------- */

    .section_insta {
        padding: 12% 0;
    }

    .section_insta .title {
        font-size: 3rem;
        letter-spacing: 0.2rem;
        margin-bottom: 30px;
    }

    .section_insta .btn {
        width: 230px;
        margin: 20px auto 0;
    }

    .section_insta .btn a {
        font-size: 1.1rem;
        line-height: 2;
    }

    .section_insta .btn a img {
        margin-right: 5px;
    }


    /* ----------------------------------------------------------
    footer
    ---------------------------------------------------------- */

    .footer {
        padding: 10% 0 8%;
    }

    .footer .logo {
        text-align: center;
    }

    .footer .logo img {
        width: 60%;
    }

    .footer .layout {
        display: block;
    }

    .footer .layout .footer_menu {
        justify-content: center;
        margin-top: 8%;
    }

    .footer .layout .footer_menu li:last-of-type {
        margin-right: 0;
    }

    .footer .copyright {
        text-align: center;
        margin-top: 20px;
    }
}

/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
*/
}