@charset "utf-8";

body {
    font-size: 15px;
    line-height: 1.6;
    height: auto;
    -webkit-text-size-adjust: 100%;
    color: #5a4c29;
}
@media only screen and (max-width: 639px) {
    #wrap {
        width: 90%;
        margin: 0 auto 100px auto;
    }
}
@media only screen and (min-width: 640px) {
    #wrap {
        width: 1000px;
        margin: 0 auto 200px auto;
    }
}

body.is-fixed{
    overflow:hidden;
    height:100vh;
}
/* ------------------------------
   #menuList
------------------------------ */
#menuList {
    width: 100%;
    position: relative;
    z-index: 10;
}

#menuList ul {
    margin: 30px 0 0 0;
    width: 600px;
    float: right;
}

#menuList ul li {
    font-size: 14px;
    font-weight: bold;
    margin-right: 30px;
    float: left;
}

#menuList ul li:last-child {

}

#menuList ul li a {
    color: white;
    transition: all 0.2s linear;
}

#menuList ul li:hover > a {
    color: #beb900;
}
#menuList #c_menu li a {
    color: #5a4c29;
}
#menuList #c_menu li:hover > a {
    color: #beb900;
}

#contents {
    margin: 0 auto;
    padding: 40px 0;
    width: 800px;
    text-align: left;
}

#contents p {
    padding-bottom: 2em;
    font-size: 1em;
    line-height: 2em;
}


/* ------------------------------
   MEDIAQUERIES LAYOUT
------------------------------ */
@media only screen and (max-width: 640px) {
    #menuList ul {
        width: 100%;
    }

    #menuList ul li {
        width: 20%;
    }
}



    #contents {
        width: 100%;
    }

    #contents p {
        padding: 0 20px 2em 20px;
    }
}

/* ------------------------------
   CLEARFIX ELEMENTS
------------------------------ */
#menuList > ul:before,
#menuList > ul:after {
    content: " ";
    display: table;
}
#menuList > ul:after {clear: both;}
#menuList > ul {*zoom: 1;}


/* =====================================
   NEW HEADER
===================================== */

.new-header {
    width: 100%;
    height: 80px;
    background: #fff;
    position: relative;
    z-index: 2000;
}

.new-header .header-inner {
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.new-header .header-logo {
    width: 120px;
    margin: 0;
    line-height: 1;
}

.new-header .header-logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* SPではPCナビとSHOPボタンは非表示 */
.new-header .header-nav,
.new-header .header-shop-btn {
    display: none;
}

/* ハンバーガー */
.header-menu-btn {
    width: 42px;
    height: 42px;
    border: none;
    background: #5a4c29;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.header-menu-btn span {
    position: absolute;
    left: 9px;
    width: 24px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

.header-menu-btn span:nth-child(1) {
    top: 11px;
}

.header-menu-btn span:nth-child(2) {
    top: 20px;
}

.header-menu-btn span:nth-child(3) {
    top: 29px;
}

.sp-drawer-menu{
    position: fixed;
    top: 80px;
    right: -260px;
    width: 260px;
    height: calc(100vh - 80px);
    background: #30261b;
    z-index: 1999;
    transition: .3s;
    padding: 24px 20px;
    box-sizing: border-box;
}

.sp-drawer-menu.is-open{
    right: 0;
}

.sp-drawer-menu ul{
    margin: 0;
    padding: 0;
}

.sp-drawer-menu li{
    list-style: none;
    border-bottom: 1px solid rgba(255,255,255,.25);
}

.sp-drawer-menu a{
    display: block;
    padding: 14px 0;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.sp-shop-btn{
    margin-top: 24px;
    text-align: center;
    background: #beb900;
    font-weight: bold;
}

@media screen and (min-width:768px){
    .sp-drawer-menu{
        display:none;
    }
}



/* =====================
   PC
===================== */

@media screen and (min-width: 768px) {

    .new-header {
        height: 120px;
        min-width: 1000px;
    }

    .new-header .header-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 30px;
        justify-content: flex-start;
        gap: 42px;
    }

    .new-header .header-logo {
        width: 150px;
        flex-shrink: 0;
    }

    .new-header .header-nav {
        display: block;
        flex: 1;
    }

    .new-header .header-nav ul {
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .new-header .header-nav li {
        list-style: none;
        font-size: 13px;
        font-weight: 700;
        line-height: 1;
        position: relative;
    }

    .new-header .header-nav li + li {
        margin-left: 16px;
        padding-left: 16px;
    }

    .new-header .header-nav li + li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 1px;
        height: 13px;
        background: #c7c0b0;
        transform: translateY(-50%);
    }

    .new-header .header-nav a {
        color: #4b3a22;
        text-decoration: none;
        transition: .2s;
    }

    .new-header .header-nav a:hover {
        color: #beb900;
    }

    .new-header .header-shop-btn {
        width: 190px;
        height: 58px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        background: #beb900;
        color: #fff;
        text-decoration: none;
        flex-shrink: 0;
        transition: .2s;
    }

    .new-header .header-shop-btn:hover {
        opacity: .85;
    }

    .new-header .header-shop-btn img {
        width: 25px;
        height: 25px;
        display: block;
        flex-shrink: 0;
    }

    .new-header .header-shop-btn .shop-text {
        display: flex;
        flex-direction: column;
        line-height: 1.15;
    }

    .new-header .header-shop-btn .en {
        font-size: 14px;
        font-weight: 700;
        letter-spacing: .04em;
    }

    .new-header .header-shop-btn .jp {
        margin-top: 2px;
        font-size: 9px;
        font-weight: 700;
    }

    .new-header .header-shop-btn .arrow {
        margin-left: 6px;
        font-size: 15px;
        font-weight: 700;
    }

    .new-header .header-menu-btn {
        display: none;
    }
}


@media only screen and (max-width: 639px) {
    #main_title {
        width: 100%;
        height: 60px;
        background-color: #beb900;
        margin: 60px 0 30px 0;
        padding-top: 5px;
    }

    /*  h2  */
    .title {
        font-size: 20px;
        font-weight: bold;
        color: #5a4c29;
        text-align: center;
        line-height: 2.5;
    }
}

@media only screen and (min-width: 640px) {
    #main_title {
        width: 100%;
        min-width: 1000px;
        height: 115px;
        background: url(../images/common/main_title_bg.jpg) repeat-x ;
        margin: 0 0 55px 0;
        padding-top: 40px;
    }

    /*  h2  */
    .title {
        font-size: 24px;
        font-weight: bold;
        color: #5a4c29;
        text-align: center;
        line-height: 1;
    }
}



/*  h3  */




/*  footer  */

@media only screen and (max-width: 639px) {
    footer {
        width: 100%;
    }
    #contact {
        width: 100%;
        padding: 55px 0;
        background-color: #5a4c29;
        overflow: hidden;
    }
    #contact .area {
        width: 80%;
        margin: auto;
        text-align: center;
    }
    #contact .area .left {
        width: 100%;
    }
    #contact .area .right {
        width: 100%;
        padding-top: 15px;
    }
    #contact .area .right a {
        width: 100%;
        height: 60px;
        font-size: 16px;
        font-weight: bold;
        color: white;
        text-align: center;
        display: block;
        margin-top: 20px;
        line-height: 3.6;
        background-color: #beb900;
        float: right;
    }
    #contact .area .right a:hover {
        color: #beb900;
        background-color: white;
    }

    #fooder {
        width: 100%;
        padding: 25px 0;
        overflow: hidden;
    }
    #fooder .left {
        width: 80%;
        margin: auto;
        text-align: center;
    }
    #fooder .right {
        width: 80%;
        margin: auto;
    }
    #fooder .right ul {
        margin-top: 20px;
        overflow: hidden;
        text-align: center;
    }
    #fooder .right ul li {
        font-size: 12px;
        display: inline;
        padding-right: 10px;
    }
    #fooder .right ul li a {
        color: #5a4c29;
    }
    #fooder .right ul li a:hover {
        text-decoration: underline;
    }
    #fooder .right .copy {
        font-size: 10px;
        text-align: center;
        margin-top: 30px;
    }
}
@media only screen and (min-width: 640px) {
    footer {
        width: 100%;
        min-width: 1000px;
    }
    #contact {
        width: 100%;
        padding: 55px 0;
        background-color: #5a4c29;
    }
    #contact .area {
        width: 1000px;
        margin: auto;
        overflow: hidden;
    }
    #contact .area .left {
        width: 255px;
        float: left;
    }
    #contact .area .right {
        width: 660px;
        float: right;
        overflow: hidden;
        padding-top: 15px;
    }
    #contact .area .right a {
        width: 300px;
        height: 60px;
        font-size: 16px;
        font-weight: bold;
        color: white;
        text-align: center;
        display: block;
        margin-left: 30px;
        line-height: 3.6;
        background-color: #beb900;
        float: right;
    }
    #contact .area .right a:hover {
        color: #beb900;
        background-color: white;
    }

    #fooder {
        width: 100%;
        height: 100px;
        padding: 25px 0;
        overflow: hidden;
    }
    #fooder .left {
        width: 212px;
        float: left;
    }
    #fooder .right {
        width: 750px;
        float: right;
        margin-right: 10px;
    }
    #fooder .right ul {
        margin-top: 40px;
        text-align: right;
    }
    #fooder .right ul li {
        font-size: 12px;
        display: inline;
    }
    #fooder .right ul li a {
        color: #5a4c29;
    }
    #fooder .right ul li a:hover {
        text-decoration: underline;
    }
    #fooder .right .copy {
        font-size: 10px;
        text-align: right;
        margin-top: 30px;
    }
}

@media only screen and (max-width: 639px) {
    .sp_none {
        display: none;
    }
}
@media only screen and (min-width: 640px) {
    .pc_none {
        display: none;
    }
}

.red{
    color: red;
}
.mb10 {
	margin-bottom: 10px;
}
.mb15 {
	margin-bottom: 15px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb40 {
	margin-bottom: 40px;
}
.mb50 {
	margin-bottom: 50px;
}
.mb60 {
	margin-bottom: 60px;
}
.mb70 {
	margin-bottom: 70px;
}
.mb80 {
	margin-bottom: 80px;
}
.mb90 {
	margin-bottom: 90px;
}
.mb100 {
	margin-bottom: 100px;
}
.mt10 {
	margin-top: 10px;
}
.mt15 {
	margin-top: 15px;
}
.mt20 {
	margin-top: 20px;
}
.mt30 {
	margin-top: 30px;
}
.mt30 {
	margin-top: 30px;
}
.mt40 {
	margin-top: 40px;
}
.mt50 {
	margin-top: 50px;
}
.mt60 {
	margin-top: 60px;
}
.mt70 {
	margin-top: 70px;
}
.mt80 {
	margin-top: 80px;
}
.mt90 {
	margin-top: 90px;
}
.mt100 {
	margin-top: 100px;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

/* =====================================
   NEW FOOTER
===================================== */

#fooder.new-footer{
    width:100%;
    height:auto !important;
    min-height:0;
    padding:50px 0 0;
    background:#30261b;
    overflow:visible !important;
}

/* --------------------
   上段（SP）
-------------------- */

#fooder.new-footer .footer-inner{
    padding:0 20px 40px;
}

#fooder.new-footer .footer-logo-box{
    text-align:center;
    margin-bottom:40px;
}

#fooder.new-footer .footer-logo-box img{
    width:170px;
    height:auto;
}

#fooder.new-footer .footer-logo-box p{
    margin-top:24px;
    color:#fff;
    font-size:14px;
    line-height:2;
    font-weight:500;
}

#fooder.new-footer .footer-col{
    margin-bottom:35px;
}

#fooder.new-footer h3{
    display:flex;
    align-items:center;
    gap:8px;
    color:#beb900;
    font-size:16px;
    font-weight:700;
    margin-bottom:20px;
}

#fooder.new-footer h3 img{
    width:24px;
    height:auto;
}

#fooder.new-footer p,
#fooder.new-footer li,
#fooder.new-footer a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    line-height:2;
}

#fooder.new-footer ul{
    margin:0;
    padding:0;
}

#fooder.new-footer li{
    list-style:none;
}

/* information */

.footer-info-list li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:16px;
}

.footer-info-list li img{
    width:18px;
    margin-top:4px;
    flex-shrink:0;
}

/* menu */

.footer-menu li a{
    display:flex;
    justify-content:space-between;
}

.footer-menu li a::after{
    content:">";
}

/* shop */

.footer-shop-btn{
    width:100%;
    min-height:65px;
    border:1px solid #8f8800;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:20px;
    gap:8px;
}

.shop-text{
    display:flex;
    flex-direction:column;
    line-height:1.2;
    margin-left:10px;
}

.shop-text .en{
    font-size:14px;
    font-weight:700;
}

.shop-text .jp{
    font-size:9px;
}

.arrow{
    font-size:18px;
    font-weight:700;
    margin-left:15px;
}

.footer-shop-btn img{
    width:24px !important;
    height:24px !important;
    object-fit:contain;
    flex-shrink:0;
    margin-left:-8px;
}

.footer-sns{
    display:flex;
    gap:14px;
    margin-top:20px;
}

.footer-sns a{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.footer-sns img{
    width:30px;
    height:30px;
    display:block;
}

/* --------------------
   下段（SP）
-------------------- */

.footer-bottom{
    background:#271d12;
    padding:25px 20px;
}

.footer-bottom-inner{
    text-align:center;
}

.footer-copy{
    display:flex;
    justify-content:center;
    align-items:center;
}

.footer-copy span{
    width:40px;
    height:1px;
    background:#8f8800;
}

.footer-copy p{
    margin:0 12px;
    font-size:10px;
}

.footer-bottom-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
    margin-top:16px;
}

.footer-bottom-links li+li::before{
    content:"｜";
    margin-right:12px;
}

/* =====================
   PC
===================== */

@media screen and (min-width:768px){

    #fooder.new-footer .footer-inner{
        max-width:1100px;
        margin:0 auto;
        padding:0 40px 50px;
        display:flex;
        gap:35px;
    }

    #fooder.new-footer .footer-logo-box{
        width:230px;
        flex-shrink:0;
        text-align:left;
        margin-bottom:0;
    }

    #fooder.new-footer .footer-col{
        width:210px;
        padding-left:32px;
        position:relative;
        margin-bottom:0;
    }

    #fooder.new-footer .footer-col::before{
        content:"";
        position:absolute;
        left:0;
        top:0;
        width:1px;
        height:280px;
        border-left:1px dashed rgba(255,255,255,.35);
    }

    #fooder.new-footer .footer-shop{
        width:230px;
    }

    .footer-shop-btn{
        width:220px;
    height:54px;
    border:1px solid #8f8800;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    margin-top:20px;
    }
    
    .footer-shop-btn img{
    width:20px;
    height:20px;
    display:block;
    flex-shrink:0;
}

    .footer-bottom-inner{
        max-width:1200px;
        margin:0 auto;
        display:flex;
        justify-content:space-between;
        align-items:center;
    }

    .footer-copy span{
        width:70px;
    }

    .footer-bottom-links{
        margin-top:0;
    }
}

/* =====================================
   commitment section
===================================== */

.commitment-section {
    padding: 70px 20px 80px;
    background: #fff;
    color: #5a4c29;
}

.commitment-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.commitment-heading {
    text-align: center;
    margin-bottom: 60px;
}

.commitment-icon {
    width: 50px;
    height: auto;
    margin-bottom: 14px;
}

.commitment-heading h2 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.heading-line,
.small-line {
    display: block;
    width: 42px;
    height: 1px;
    background: #5a4c29;
}

.heading-line {
    margin: 18px auto;
    position: relative;
}

.heading-line::after {
    content: "";
    width: 6px;
    height: 6px;
    background: #5a4c29;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: -2px;
    transform: translateX(-50%);
}

.commitment-heading p {
    font-size: 13px;
    line-height: 2;
    font-weight: 700;
}

.commitment-list {
    position: relative;
}

.commitment-item {
    margin-bottom: 54px;
}

.commitment-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.commitment-text {
    margin-top: 22px;
}

.commitment-text .num {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.commitment-text h3 {
    margin-top: 12px;
    font-size: 17px;
    font-weight: 700;
}

.commitment-text .small-line {
    margin: 14px 0;
}

.commitment-text p {
    font-size: 13px;
    line-height: 2;
    font-weight: 700;
}

/* =====================
   commitment PC
===================== */

@media screen and (min-width: 768px) {

    .commitment-section {
        padding: 78px 20px 90px;
    }

    .commitment-heading {
        margin-bottom: 70px;
    }

    .commitment-list {
        max-width: 950px;
        margin: 0 auto;
        position: relative;
    }

    /* 中央ライン */
    .commitment-list::before {
        content: "";
        position: absolute;
        top: 60px;
        left: 50%;
        width: 1px;
        height: calc(100% - 100px);
        border-left: 1px dotted #6b5430;
        transform: translateX(-50%);
        z-index: 1;
    }

    .commitment-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 90px;
        margin-bottom: 60px;
        position: relative;
    }

    .commitment-item:last-child {
        margin-bottom: 0;
    }

    /* 豆アイコン */
    .commitment-item::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 22px;
        height: 18px;
        background: #ffffff url("../images/index/icon_bean_brown.svg") no-repeat center center;
        background-size: contain;
        transform: translate(-50%, -50%);
        z-index: 2;
        padding: 6px 0;
    }

    .commitment-img,
    .commitment-text {
        width: calc((100% - 90px) / 2);
    }

    .commitment-img img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 12px;
    }

    .commitment-text {
        margin-top: 0;
    }

    .item02 {
        flex-direction: row-reverse;
    }

    .commitment-text .num {
        font-size: 26px;
        font-weight: 700;
        line-height: 1;
        margin-bottom: 12px;
    }

    .commitment-text h3 {
        font-size: 17px;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .commitment-text .small-line {
        margin: 0 0 18px;
    }

    .commitment-text p {
        font-size: 13px;
        line-height: 2;
    }
}