/*   
Theme Name: hachimanju202510
*/
@charset "UTF-8";

/* Repeatable Patterns
----------------------------------------------------*/

*{
    box-sizing: border-box;
}

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

body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    z-index: 0;
    color: #333333;
    background-color: #fff;
    letter-spacing: 0.015rem;
    line-height: 1;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* print setting */
@media print {
    html {
        font-size: 38%;
    }

    body {
        -webkit-print-color-adjust: exact;
    }
}

html.is-scroll-prevent {
    height: 100%;
    overflow: hidden;
}

.all_container {
    position: relative;
    overflow: hidden;
}

a {
    color: #333333;
    text-decoration: none;
    transition: 0.3s ease-out;
}

a:hover{
}

::-moz-selection {
    background: #FBD26B;
    text-shadow: none;
}

::selection {
    background: #FBD26B;
    text-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6{
    font-family: "Zen Kaku Gothic New", sans-serif;
    margin: 0;
}

p{
    margin: 0;
}

img {
    width: 100%;
    height: auto;
    max-width: none !important;
}

figure {
    margin: 0;
}

svg {
    overflow: visible !important;
    fill: currentcolor;
}

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

input,
textarea,
button {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: none;
    border-radius: 0;
    transition: 0.3s ease-out;
    cursor: pointer;
    color: #333;
    letter-spacing: 0.01rem;
    border: none;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

input:focus,
textarea:focus{
    border-color: #FBD26B !important;
}

.display_none{
    display: none;
}

.wrapper {
    width: calc(1266 / 1366 * 100%);
    max-width: 1266px;
    min-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 3%;
    padding-right: 3%;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.display_none {
    display: none;
}

/*text*/
.en {
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    letter-spacing: 0.12rem;
}

.section_header{
    text-align: center;
    line-height: 1.3;
    margin-bottom: 6.4rem;
}

.section_heading_en{
    font-size: 4rem;
    letter-spacing: .18rem;
    padding-bottom: .6rem;
}

.section_heading_jp{
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.08rem;
}

.text_01 {
    font-size: clamp(1.6rem, 0.372rem + 1.2vw, 1.8rem);
    line-height: 1.95;
    text-align: justify;
}

.text_02 {
    font-size: clamp(1.4rem, 0.372rem + 1.2vw, 1.5rem);
    line-height: 1.8;
    text-align: justify;
}

.text_01 a,
.text_02 a {
    text-decoration: underline;
}

/*link*/
.link_box {
    background: #FBD26B;
    color: #fff;
    border-radius: 50vmax;
    justify-content: center;
    align-items: center;
    width: 26rem;
    height: 6.6rem;
    font-size: 2.2rem;
    font-weight: 700;
    margin: auto;
}

.link_box:hover {
    background: #CB9E1B;
    color: #fff;
}

.link_box img{
    width: 2.7rem;
    filter: invert(100%) sepia(10%) saturate(7462%) hue-rotate(193deg) brightness(107%) contrast(108%);
    margin-right: 1.2rem;
}

.link_arrow{
    justify-content: flex-end;
    align-items: center;
    font-size: 1.8rem;
}

.link_arrow img{
    width: 2.7rem;
    filter: invert(18%) sepia(17%) saturate(21%) hue-rotate(357deg) brightness(103%) contrast(98%);
    margin-right: .8rem;
}

/*アニメーション*/
.fadein {
    opacity: 0;
    transition: 1s ease-out;
}

.fadein.scrollin {
    opacity: 1;
}

.blur{
    opacity: 0;
    transition: 1s ease-out;
    filter: blur(10px);
}

.blur.scrollin{
    filter: blur(0);
    opacity: 1;
}

@media print {
    .fadein,
    .blur{
        opacity: 1;
        filter: blur(0);
    }
}

.zoom{
    overflow: hidden;
    width: 100%;
    display: block;
}

.zoom img{
    transition: transform .4s ease-in;
}

a:hover .zoom img{
    transform: scale(1.06);
}

/* Header
----------------------------------------------------*/

.header_logo{
    display: none;
    width: 8rem;
    position: fixed;
    top: 2rem;
    left: 3%;
    z-index: 999;
}

/*ドロワーメニュー*/

.drawer-hamburger {
    display: block;
    position: fixed;
    width: 5rem;
    top: 5%;
    right: 4%;
    z-index: 1002;
    padding: 0;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
    transition: all .3s cubic-bezier(.19, 1, .22, 1);
}

.drawer-hamburger-icon {
    position: relative;
    display: block;
    width: 100% !important;
    height: 2px;
    margin-top: 0 !important;
    background-color: transparent;
}

.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
    position: absolute;
    content: " ";
    height: 2px;
    width: 100% !important;
    background-color: #888;
    left: 0;
    right: 0;
    margin: auto;
}

.drawer-hamburger-icon:before {
    top: -.55rem !important;
}

.drawer-hamburger-icon:after {
    top: .55rem !important;
}

.is-opened .drawer-hamburger-icon:before {
    transform: rotate(25deg);
    top: 0 !important;
}

.is-opened .drawer-hamburger-icon:after {
    transform: rotate(-25deg);
    top: 0 !important;
}

.drawer-hamburger-text {
    font-size: 1.2rem;
    color: #888;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    display: block;
    position: relative;
    margin: 1.6rem auto 0;
}

.drawer-hamburger-text::after {
    position: relative;
    content: "menu";
    display: block;
}

.is-opened .drawer-hamburger-text::after {
    content: "close";
}

.drawer-nav {
    display: block;
    align-items: center;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 1001;
    overflow-y: scroll;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    max-height: 100%;
    transition: right .3s ease-in-out;
    -webkit-overflow-scrolling: touch;
    background-image: url(img/chaho/fv_pc.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
}

.is-opened .drawer-nav {
    right: 0;
    transition: right .3s ease-in-out;
}

.drawer_inner {
    position: relative;
    width: 72%;
    margin: auto;
    min-height: 100vh;
    min-height: 100dvh;
    align-items: center;
    padding: 6rem 0 6rem;
}

.drawer_nav_item{
    font-size: 2.5rem;
}

.drawer_nav_item + .drawer_nav_item{
    margin-top: 3.6rem;
}

.drawer_ig_link{
    margin-top: 7.2rem;
    font-size: 2.4rem;
    align-items: center;
}

.drawer_ig_link svg{
    width: 3rem;
    height: 3rem;
    margin-right: .9rem;
    fill: #FBD26B;
}


/* Footer
----------------------------------------------------*/

.chaho_footer {
    margin-top: 18rem;
    padding-bottom: 6rem;
    position: relative;
}

.footer_bg{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.footer_inner{
    justify-content: space-between;
    align-items: center;
}

.footer_logo{
    width: calc(174 / 1160 * 100%);
}

.footer_nav{
    width: calc(920 / 1160 * 100%);
}

.footer_nav_list{
    width: 100%;
    align-items: center;
}

.footer_nav_item + .footer_nav_item {
    margin-left: 4%;
}

.footer_nav_item{
    font-size: 1.7rem;
}

.footer_ig_link{
    align-items: center;
}

.footer_ig_link svg{
    width: 2.2rem;
    height: 2.2rem;
    margin-right: .7rem;
    fill: #FBD26B;
}

.copyright{
    width: 100%;
    font-size: 1.4rem;
    text-align: right;
    padding-top: 6rem;
}

/* トップページ
----------------------------------------------------*/

.bg_illust{
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: -1;
    background-image: url(img/chaho/fv_pc.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/*ファーストビジュアル*/

.chaho_fv_section{
    width: 100%;
    height: 100vh;
    height: 100svh;
    margin-bottom: 100vh;
    margin-bottom: 100svh;
    position: relative;
}

.fv_logo{
    position: fixed;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 12%;
    max-width: 16rem;
    margin-top: -4%;
}

.fv_tagline{
    opacity: 0;
    position: fixed;
    justify-content: center;
    align-items: center;
    text-align: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto 3%;
    width: calc(380 / 1166 * 100%);
    max-width: 40rem;
}

/*コンセプト*/
.main_container{
    position: relative;
    z-index: 1;
}

.chaho_concept_section{
    padding-top: 10rem;
    padding-bottom: 18rem;
}

.concept_heading_inner{
    justify-content: center;
    align-items: center;
    height: 100vh;
    height: 100svh;
}

.concept_main_container{
    position: relative;
}

.concept_bg{
    position: absolute;
    width: 100%;
    height: 50vh;
    top: -50vh;
    left: 0;
    right: 0;
    background: linear-gradient(180deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 1) 100%);
}

.concept_main_inner{
    position: relative;
    background: #fff;
}

.concept_main-1{
    align-items: center;
}

.concept_main-1_img{
    width: calc(381 / 1166 * 100%);
    margin-left: calc(50% - 50vw);
    margin-right: calc(240 / 1166 * 100%);
}

.concept_main-1_text{
    width: calc(424 / 1166 * 100%);
    margin-top: -8%;
    z-index: 1;
}

.concept_main-2{
    position: relative;
    margin-top: -5%;
}

.concept_main-2_img{
    width: calc(868 / 1366 * 100%);
    margin-left: auto;
}

.concept_main-2_ill{
    width: calc(570 / 1366 * 100%);
    z-index: 1;
    position: absolute;
    bottom: -16%;
    left: 4.5%;
}

.concept_main-3{
    padding-top: 15%;
    justify-content: space-between;
}

.concept_main-3_text{
    margin-left: calc(105 / 1166 * 100%);
    width: calc(360 / 1166 * 100%);
    z-index: 1;
}

.concept_main-3_img-1{
    margin-right: calc(182 / 1166 * 100%);
    margin-top: 2%;
    width: calc(255 / 1166 * 100%);
}

.concept_main-3_img{
    margin-top: -2%;
    align-items: flex-end;
}

.concept_main-3_img-2{
    width: calc(627 / 1166 * 100%);
}

.concept_main-3_ill{
    transform: scale(-1, 1);
    width: calc(475 / 1166 * 100%);
    margin-left: auto;
    margin-right: calc(50% - 50vw);
    margin-bottom: -14%;
    z-index: 1;
}

.concept_main-4{
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 8%;
}

.concept_main-4_ill{
    width: calc(498 / 1366 * 100%);
    margin-left: calc(175 / 1366 * -1 * 100%);
    margin-bottom: -12%;
}

.concept_main-4_img{
    width: calc(1025 / 1366 * 100%);
}

.concept_main-5{
    margin-top: 13%;
    margin-bottom: 13%;
}

.concept_main-5_text{
    width: calc(407 / 1166 * 100%);
    margin-left: 21%;
}

.concept_main-6{
    position: relative;
    justify-content: space-between;
    align-items: center;
}

.concept_main-6_img{
    width: calc(600 / 1166 * 100%);
}

.concept_main-6_text{
    width: calc(407 / 1166 * 100%);
    z-index: 1;
    margin-right: 3%;
}

.concept_main-6_ill{
    position: absolute;
    width: calc(568 / 1166 * 100%);
    top: -38%;
    right: -20%;
}

/*私たちについて・環境への取り組み*/

.chaho_about_main_img{
    margin-bottom: 12rem;
}

.about_action_container{
    padding-bottom: 15rem;
    position: relative;
    z-index: 1;
    background: #EFEDEA
}

.chaho_about_inner{
    width: 64rem;
    margin: auto;
}

.about_logo{
    margin-top: 8rem;
}

.about_logo_img{
    width: 11.8rem;
    margin: 0 auto 4rem;
    display: block;
}

.about_logo_heading{
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 4rem;
}


/*環境への取り組み*/

.chaho_action_section{
    padding-top: 15rem;
}

.chaho_action_inner{
    background: #fff;
    border-radius: 6rem;
    padding: 9.2% 8.8%;
}

.chaho_action_header{
    text-align: center;
    line-height: 1.3;
}

.chaho_action_heading_en{
    font-size: 1.6rem;
    color: #FBD26B;
    padding-bottom: 1rem;
}

.chaho_action_heading_jp{
    font-size: 3rem;
    margin-bottom: 3.6rem;
}

.chaho_action_heading_text{
    text-align: center;
}

.chaho_action_list{
    margin-top: 6.8rem;
}

.chaho_action_item{
    justify-content: space-between;
    align-items: center;
}

.chaho_action_item + .chaho_action_item{
    margin-top: 6.8rem;
}

.chaho_action_item:nth-child(even){
    flex-direction: row-reverse;
}

.chaho_action_img{
    width: 48%;
}

.chaho_action_img img{
    border-radius: 3rem;
}

.chaho_action_body{
    width: 45%;
}

.chaho_action_heading{
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.6rem;
}

.chaho_action_text + .chaho_action_text{
    margin-top: 1.2rem;
}

/*商品*/
.chaho_products_section{
    background: #fff;
    padding-bottom: 12rem;
}

.chaho_products_main_img{
    margin-bottom: 12rem;
}

.chaho_products_list{
    justify-content: center;
    margin: 0 -2.5%;
}

.chaho_products_item{
    width: calc(100% / 3);
    padding: 0 2.5% 5.6rem;
}

.chaho_products_img{
    margin-bottom: 3.2rem;
}

.chaho_products_body{
    line-height: 1.3;
}

.chaho_products_en{
    font-size: clamp(1.3rem, 0.372rem + 1.2vw, 1.5rem);
    color: #FBD26B;
    font-size: 1.6rem;
    padding-bottom: .8rem;
}

.chaho_products_name{
    font-size: clamp(2.2rem, 0.372rem + 1.2vw, 2.4rem);
    margin-bottom: 2rem;
}

.chaho_products_text{
    font-size: clamp(1.3rem, 0.372rem + 1.2vw, 1.5rem);
    line-height: 1.7;
}

/*ブログ*/

.blog_instagram_container{
    background: #F6F5F4;
    padding-top: 12rem;
    padding-bottom: 16rem;
}

.blog_instagram_header{
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5rem;
}

.blog_instagram_header .section_header{
    align-items: center;
    margin-bottom: 0;
}

.blog_instagram_header .section_heading_en{
    margin-right: 1.5rem;
}

.blog_slider_item{
    width: 34rem;
    margin-right: 3.2rem;
}

.blog_slider_img{
    margin-bottom: 3.2rem;
}

.blog_slider_img img{
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.blog_slider_title{
    font-size: clamp(1.6rem, 0.372rem + 1.2vw, 1.85rem);
    line-height: 1.3;
}

.blog_slider_sub{
    margin-top: 2.6rem;
}

.blog_slider_date{
    font-weight: 400;
    color: #777;
    font-size: 1.4rem;
    margin-right: 1.2rem;
}

.blog_slider_cat{
    font-size: 1.4rem;
}

/*Instagram*/

.chaho_instagram_section{
    margin-top: 10rem;
}

#sb_instagram #sbi_images{
    padding: 0 !important;
}

/*お取引のご案内*/
.chaho_contact_section{
    padding-top: 15rem;
}

/*お問い合わせ*/

.chaho_contact_section{
    background: #fff;
}

.chaho_contact_inner{
    width: 64rem;
    margin: auto;
}

.form_list{
    margin-top: 8rem;
}

.form_item + .form_item {
    padding-top: 4rem;
}

.form_title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    width: 100%;
    padding-bottom: 1.6rem;
}

.form_title span{
    color: #FBD26B;
    font-size: 1.4rem;
    font-weight: 500;
    padding-left: .8rem;
}

.form_box{
    width: 100%;
}

.form_box input,
.form_box textarea {
    font-size: 1.8rem;
    line-height: 1.8;
    width: 100%;
    background: #fff;
    border: 2px solid #E9E5E2;
    border-radius: 4px;
}

input::placeholder,
textarea::placeholder{
    opacity: .4;
}

.form_box input{
    padding: .8rem 2.2rem;
}

.form_box textarea{
    padding: 1.6rem 2.2rem;
}

.wpcf7-list-item.first {
    margin: 0;
}

.wpcf7-list-item-label {
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 1.8rem;
}

.form_item:first-child .form_title{
    padding-bottom: 3rem;
}

.form_item:first-child .form_box{
    width: 100%;
}

.wpcf7-list-item {
    margin-left: 0 !important;
    margin-right: 3.6rem !important;
    margin-bottom: 2.4rem !important;
}

input[type="radio"] {
    opacity: 0; 
    position: absolute;
}

.wpcf7-list-item-label::before {
    background: #fff;
    border-radius: 100%; 
    content: "";
    width: 2.8rem;
    height: 2.8rem;
    margin-bottom: auto;
    margin-right: 1.2rem;
    margin-top: auto;
    transition: background-color .5s;
    border: 1px solid #FBD26B;
}

input[type="radio"]:checked + .wpcf7-list-item-label::before {
    background-color: #FBD26B;
    box-shadow: inset 0 0 0 .6rem #fff;
}


.wpcf7-submit {
    display: flex;
    flex-wrap: nowrap;
    position: relative;
    width: 26rem;
    height: 6.6rem;
    font-size: 2.2rem;
    border-radius: 50vmax;
    justify-content: center;
    align-items: center;
    letter-spacing: .15rem;
    color: #fff;
    font-weight: 700;
    background: #FBD26B;
    margin: 5rem auto 0;
}

.wpcf7-submit:hover {
    background: #CB9E1B;
}

.wpcf7-not-valid-tip {
    font-size: 1.5rem !important;
    padding-top: .8rem;
}

.wpcf7-acceptance {
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.5;
    margin: 0 auto 4.8rem;
    display: block;
}

.wpcf7-response-output {
    margin: 2.4em 0 0 !important;
    padding: 1.2rem 1rem !important;
    color: #333;
    font-size: 1.8rem;
    line-height: 1.5;
    text-align: center;
}

.cf7-cf-turnstile{
    margin-top: 5rem !important;
    text-align: center;
}


/*----------------------------------------------------

PCのみ

----------------------------------------------------*/

@media screen and (min-width: 768px) {
    .display_sp {
        display: none !important;
    }
}

@media screen and (min-width: 1300px) {
    html {
        font-size: 66%;
    }
}


/*----------------------------------------------------

スマートフォンのみ

----------------------------------------------------*/


@media screen and (max-width: 767px) {

    .wrapper {
        width: 100%;
        min-width: 0;
        margin-left: auto;
        margin-right: auto;
        padding-left: 7%;
        padding-right: 7%;
    }

    .display_pc {
        display: none !important;
    }

    /*text*/
    .section_header{
        margin-bottom: 5rem;
    }

    .section_heading_en{
        font-size: 3.1rem;
        padding-bottom: .4rem;
    }

    .section_heading_jp{
        font-size: 1.3rem;
    }

    .text_01 {
        font-size: 1.5rem;
        line-height: 1.8;
    }

    .text_02 {
        font-size: 1.4rem;
        line-height: 1.75;
    }

    /*link*/
    .link_box {
        width: 23rem;
        height: 5.8rem;
        font-size: 1.9rem;
    }

    .link_box img{
        width: 2.5rem;
        margin-right: 1rem;
    }

    .link_arrow{
        font-size: 1.5rem;
    }

    .link_arrow img{
        width: 2.4rem;
        margin-right: .6rem;
    }

    /* Header
    ----------------------------------------------------*/

    /*ドロワーメニュー*/

    .drawer-hamburger {
        width: 3.6rem;
        top: 5%;
        right: 7%;
    }

    .drawer-hamburger-icon:before {
        top: -.4rem !important;
    }

    .drawer-hamburger-icon:after {
        top: .4rem !important;
    }

    .drawer-hamburger-text {
        font-size: 1.1rem;
        margin: 1.2rem auto 0;
    }

    .drawer-nav {
        background-image: url(img/chaho/fv_sp.svg);
        background-position: top;
    }

    .drawer_inner {
        width: 68%;
        padding: 6rem 0;
    }

    .drawer_nav_item{
        font-size: 2.2rem;
    }

    .drawer_nav_item + .drawer_nav_item{
        margin-top: 3.2rem;
    }

    .drawer_ig_link{
        margin-top: 4.4rem;
        font-size: 2.2rem;
    }

    .drawer_ig_link svg{
        width: 2.6rem;
        height: 2.6rem;
        margin-right: .7rem;
    }


    /* Footer
    ----------------------------------------------------*/

    .chaho_footer {
        margin-top: 12rem;
        padding-bottom: 8rem;
    }

    .footer_logo{
        width: 16rem;
        margin: 0 auto 3.6rem;
    }
    
    .footer_nav{
        justify-content: center;
        width: 100%;
    }

    .footer_ig_link_sp svg{
        width: 3rem;
        height: 3rem;
        fill: #FBD26B;
    }

    .copyright{
        font-size: 1.4rem;
        text-align: center;
        padding-top: 4.4rem;
    }

    /* トップページ
    ----------------------------------------------------*/

    .bg_illust{
        background-image: url(img/chaho/fv_sp.svg);
        background-position: top;
    }

    /*ファーストビジュアル*/

    .fv_logo{
        width: 31%;
        max-width: 16rem;
        margin-top: -4%;
    }

    .fv_tagline{
        width: 78%;
        top: -1%;
    }

    /*コンセプト*/

    .chaho_concept_section{
        padding-top: 50vh;
        padding-bottom: 14rem;
    }
    
    .concept_bg{
        height: 70vh;
        top: -70vh;
    }

    .concept_main-1{
        flex-direction: column;
        align-items: flex-start;
    }

    .concept_main-1_img{
        width: calc(283 / 390 * 100%);
        margin-left: calc(50% - 50vw);
        margin-right: auto;
    }

    .concept_main-1_text{
        width: calc(360 / 370 * 100%);
        margin-top: 10rem;
        margin-bottom: 10rem;
    }

    .concept_main-2{
        margin-top: 0;
    }

    .concept_main-2_img{
        width: calc(320 / 390 * 100%);
    }

    .concept_main-2_ill{
        width: calc(300 / 390 * 100%);
        position: absolute;
        bottom: -42%;
        left: -20%;
    }

    .concept_main-3{
        padding-top: 15rem;
        padding-bottom: 6rem;
    }

    .concept_main-3_text{
        width: calc(300 / 370 * 100%);
        margin-left: 0;
    }

    .concept_main-3_img{
        margin-top: 0;
        padding-right: 0;
        justify-content: space-between;
    }

    .concept_main-3_img-1{
        width: calc(116 / 390 * 100%);
        margin-right: 0;
        margin-bottom: 16%;
    }

    .concept_main-3_img-2{
        width: calc(254 / 390 * 100%);
    }

    .concept_main-3_ill{
        width: calc(345 / 390 * 100%);
        margin-left: auto;
        margin-right: -18%;
        margin-top: -8%;
        margin-bottom: -7rem;
    }

    .concept_main-4{
        margin-top: 8%;
    }

    .concept_main-4_img{
        margin-left: auto;
        width: calc(305 / 390 * 100%);
    }

    .concept_main-5{
        margin-top: 9rem;
        margin-bottom: 9rem;
    }

    .concept_main-5_text{
        width: calc(356 / 370 * 100%);
        margin-left: 0;
    }

    .concept_main-6_img{
        width: calc(320 / 390 * 100%);
        margin-left: calc(50% - 50vw);
    }

    .concept_main-6_text{
        width: calc(350 / 370 * 100%);
        margin-top: 14.6rem;
        margin-right: auto;
    }

    .concept_main-6_ill{
        width: calc(380 / 390 * 100%);
        top: unset;
        bottom: 1rem;
        right: -36%;
    }

    /*私たちについて・環境への取り組み*/
    .about_action_container{
        padding-bottom: 9rem;
    }
    
    .chaho_about_main_img{
        margin-bottom: 6rem;
    }

    .chaho_about_inner{
        width: 100%;
    }

    .about_logo{
        margin-top: 6rem;
    }

    .about_logo_img{
        width: 9rem;
        margin: 0 auto 3.2rem;
    }

    .about_logo_heading{
        font-size: 2.1rem;
        margin-bottom: 3.2rem;
    }


    /*環境への取り組み*/

    .chaho_action_section{
        padding-top: 7.2rem;
    }

    .chaho_action_inner{
        border-radius: 4rem;
        padding: 5rem 7.2%;
    }

    .chaho_action_heading_en{
        font-size: 1.3rem;
        padding-bottom: .8rem;
    }

    .chaho_action_heading_jp{
        font-size: 2.3rem;
        margin-bottom: 3.2rem;
    }

    .chaho_action_heading_text{
        text-align: justify;
        font-size: 1.4rem;
    }

    .chaho_action_list{
        margin-top: 4.4rem;
    }

    .chaho_action_item {
        justify-content: center;
    }

    .chaho_action_item + .chaho_action_item{
        margin-top: 4.4rem;
    }

    .chaho_action_item:nth-child(even){
        flex-direction: column;
    }

    .chaho_action_img{
        width: 88%;
    }

    .chaho_action_img img{
        border-radius: 2rem;
    }

    .chaho_action_body{
        width: 100%;
        margin-top: 2.4rem;
    }

    .chaho_action_heading{
        font-size: 1.9rem;
        text-align: center;
        margin-bottom: 1.6rem;
    }

    .chaho_action_text + .chaho_action_text{
        margin-top: 1rem;
    }

    /*商品*/
    .chaho_products_section{
        padding-bottom: 10rem;
    }

    .chaho_products_main_img{
        margin-bottom: 6rem;
    }

    .chaho_products_list{
        margin: 0 -2.5%;
    }

    .chaho_products_item{
        width: 100%;
        padding: 0 2.5% 3.6rem;
        margin-bottom: 0;
    }

    .chaho_products_img{
        margin-bottom: 2.6rem;
    }

    .chaho_products_en{
        font-size: 1.3rem;
        padding-bottom: .6rem;
    }

    .chaho_products_name{
        font-size: 2rem;
        margin-bottom: 1.6rem;
    }

    .chaho_products_text{
        font-size: 1.4rem;
    }
    
    .chaho_products_link{
        margin-top: 2rem;
    }

    /*ブログ*/

    .blog_instagram_container{
        padding-top: 8rem;
        padding-bottom: 10rem;
    }

    .blog_instagram_header{
        margin-bottom: 2.4rem;
    }

    .blog_instagram_header .section_heading_en{
        margin-right: 1.2rem;
    }

    .blog_slider_item{
        width: 22rem;
        margin-right: 2rem;
    }

    .blog_slider_img{
        margin-bottom: 3rem;
    }

    .blog_slider_title{
        font-size: 1.6rem;
    }

    .blog_slider_sub{
        margin-top: 2rem;
    }

    .blog_slider_date{
        font-size: 1.2rem;
        margin-right: 1rem;
    }

    .blog_slider_cat{
        font-size: 1.3rem;
    }

    /*Instagram*/

    .chaho_instagram_section{
        margin-top: 8rem;
    }

    /*お取引のご案内*/
    .chaho_contact_section{
        padding-top: 8rem;
    }

    /*お問い合わせ*/

    .chaho_contact_inner{
        width: 100%;
    }

    .form_list{
        margin-top: 6rem;
    }

    .form_item + .form_item {
        padding-top: 2.8rem;
    }

    .form_title {
        font-size: 1.6rem;
        padding-bottom: 1.4rem;
    }

    .form_title span{
        font-size: 1.2rem;
        padding-left: .6rem;
    }

    .form_box input,
    .form_box textarea {
        font-size: 1.6rem;
    }

    .form_box input{
        padding: .8rem 1.4rem;
    }

    .form_box textarea{
        padding: 1rem 1.4rem;
    }

    .wpcf7-list-item-label {
        font-size: 1.6rem;
    }

    .form_item:first-child .form_title{
        padding-bottom: 2rem;
    }

    .wpcf7-submit {
        width: 23rem;
        height: 5.8rem;
        font-size: 2rem;
        margin: 4rem auto 0;
    }

    .wpcf7-not-valid-tip {
        font-size: 1.4rem !important;
        padding-top: .8rem;
    }

    .wpcf7-acceptance {
        font-size: 1.6rem;
        margin: 0 auto 4.8rem;
    }

    .wpcf7-response-output {
        margin: 2.4em 0 0 !important;
        padding: 1.2rem 1rem !important;
        font-size: 1.8rem;
    }

    .cf7-cf-turnstile{
        margin-top: 3rem !important;
    }


}

@media print,
    screen and (max-width: 320px) {
        html {
            font-size: 56%;
        }
}
