@charset "utf-8";

@import url("base.css");

/***************************************************************************
 *
 * COMMON STYLE
 *
 ***************************************************************************/

.noto {
    font-family: 'Noto Sans JP', sans-serif;
}

.cabin {
    font-family: 'Cabin Condensed', sans-serif;
}

.domi {
    font-family: 'Domine', serif;
}

body {
    background-color: #FFFFFF;
    font-size: 14px;
    line-height: 1.5;
    color: #4D4D4D;
    font-weight: 400;
    font-family: 'Noto Sans JP', sans-serif;
}

body.fixed {
    overflow: hidden;
}

.inner {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 30px;
}

/*VALIDATE CONTACT*/
.error {
    display: block;
    font-size: 12px;
    color: red;
}

/* HEADER */
#header {
    width: 100%;
    height: 100px;
    padding: 21px 0 30px;
    border-top: 12px solid #F56E6E;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 99;
}
@media (max-width: 768px) {
    #header { height: 76px;}
}
@media (max-width: 414px) {
    #header { height: 59px;}
}
#header .inner {
    display: flex;
    justify-content: space-between;
    max-width: 1207px;
}

#header .headerBar {}

#header .headerBar .logo {
    max-width: 121px;
    margin-left: -2px;
}

#header .mainMenu {
    display: flex;
    align-items: flex-end;
    padding-bottom: 3px;
}

#header .mainMenu .menu {
    display: flex;
    transform: translateY(1px);
}

#header .mainMenu .menu li {
    margin-left: 14px;
}

#header .mainMenu .menu li a {
    font-size: 14px;
    letter-spacing: -0.3px;
    color: #333;
    transition: all .3s;
}

#header .mainMenu .feature {
    display: flex;
    margin-left: 6px;
}

#header .mainMenu .feature li {
    width: 23px;
    display: flex;
    align-items: center;
    margin-left: 13px;
}

#header .mainMenu .feature li:last-child {
    width: 32px;
}

#header .mainMenu .feature li a {
    position: relative;
    width: 100%;
}

#header .mainMenu .feature li a .featureHover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

#header .mainMenu .feature li a img {
    width: 100%;
}

#header .mainMenu .feature li a #header-order-quantity {
	position: absolute; right: 0; top: 0;
	transform: translate(75%, -40%);
	width: 1.6em; height: 1.6em;
	font-size: 80%;
	border-radius: 50%; background: #F56E6E;
	color: #fff;
	display: flex; justify-content: center; align-items: center;
}
@media (max-width: 768px) {
    #header .mainMenu .feature li a #header-order-quantity {
        font-size: 70%;
    }
}


/* CONTENT */
#content {
    width: 100%;
}

.pageTitle {
    margin: 59px 0 71px;
    text-align: center;
}

.pageTitle .titleEng {
    position: relative;
    display: inline-block;
    color: #f56e6e;
    font-size: 45px;
    font-weight: bold;
    letter-spacing: 4.4px;
    margin-bottom: 5px;
}

.pageTitle .titleEng:before {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 47%;
    height: 1px;
    background: #F56E6E
}

.pageTitle .titleJp {
    font-size: 28px;
    color: #4d4d4d;
    font-weight: 500;
    letter-spacing: 1.7px;
}

/* FOOTER */
#footer {
    width: 100%;
    background: #FAFAFA;
    padding: 53px 0 44px;
}

#footer .ftLogo {
    max-width: 140px;
    margin: 0 auto 56px;
}

#footer .listMenu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#footer .listMenu li {
    margin: 0 7px 14px;
}

#footer .listMenu li a {
    letter-spacing: 0.7px;
    color: #333333;
}

.areaBtn {
    width: 100%;
    text-align: center;
}

.areaBtn a {
    display: inline-block;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    border: 2px solid #F56E6E;
    min-width: 270px;
    padding: 6px 53px 8px;
    border-radius: 20px;
    background: #F56E6E url(../images/common/icon-btn-hover.svg) no-repeat right 12px center/13px;
}

#copyright {
    font-size: 12px;
    color: #fff;
    background: #F56E6E;
    text-align: center;
    padding: 7px 0 10px;
    letter-spacing: 0.5px;
}

.sp {
    display: none;
}

@media(max-width: 850px) and (min-width: 769px) {
    #footer .listMenu li {
        margin: 0 6px 14px;
    }

    #footer .listMenu li a {
        letter-spacing: 0;
    }
}

@media(min-width: 769px) {
    .hoverLink {
        position: relative;
    }

    .hoverLink:before {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 0;
        height: 1px;
        background: #F56E6E;
        transition: all .3s;
    }

    .hoverLink:hover {
        color: #F56E6E !important;
    }

    .hoverLink:hover:before {
        left: 0;
        width: 100%;
    }

    .areaBtn a:hover {
        background-image: url(../images/common/icon-btn.svg);
        color: #F56E6E;
        background-color: #fff;
    }

    #header .mainMenu .feature li a:hover .featureHover {
        opacity: 1;
    }
}

/* STYLE MOBILE */
#fixH { height: 100px;}
@media (max-width: 768px) {
    #fixH{
        height: 76px !important;
    }
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .inner {
        width: 100%;
        padding: 0 3%;
    }

    /* MENU */
    .hamburger {
        position: absolute;
        top: 45%;
        right: 17px;
        transform: translateY(-50%);
        width: 7.6vw;
        height: 6.7vw;
        max-width: 32px;
        z-index: 9991;
        display: flex;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .hamburger span {
        display: block;
        height: 1px;
        width: 100%;
        background: #333333;
        border-radius: 50px;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }

    .hamburger span:nth-child(1) {
        margin-bottom: 1.7vw;
    }

    .hamburger span:nth-child(2) {
        opacity: 1
    }

    .hamburger span:nth-child(3) {
        margin-top: 1.7vw;
    }

    .hamburger.open span:nth-child(1) {
        margin-bottom: -2px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        margin-top: 0;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    /*HEADER*/
    #header {
        padding: 12px 0 18px;
        border-width: 7px;
    }

    #header .inner {
        padding: 0 3.8%;
        align-items: center;
    }

    #header .headerBar .logo {
        max-width: 122px;
        margin-left: 0;
    }

    #header .mainMenu {
        padding-bottom: 0;
    }

    #header .mainMenu .menu {
        overflow-y: auto;
        position: absolute;
        top: 67px;
        left: 0;
        background: #fff;
        display: none;
        transform: none;
        width: 100%;
        height: 100vh;
        z-index: 9;
        padding: 40px 0;
    }

    #header .mainMenu .menu li {
        text-align: center;
        margin: 0 0 50px;
    }

    #header .mainMenu .menu li a {
        font-size: 16px;
    }

    #header .mainMenu .feature {
        margin-left: 0;
        padding-right: 65px;
    }

    #header .mainMenu .feature li {
        width: 4.5vw;
        margin-left: 16px;
        max-width: 30px;
    }

    #header .mainMenu .feature li:last-child {
        width: 6vw;
        max-width: 40px;
    }

    /*END-HEADER*/

    /*FOOTER*/
    #footer {
        padding: 30px 0 20px;
    }

    #footer .ftLogo {
        margin: 0 auto 19px;
        width: 23.7%;
    }

    #footer .listMenu {
        margin: 0 10px 0;
    }

    #footer .listMenu li {
        margin: 0 16px 13px;
    }

    #footer .listMenu li a {
        letter-spacing: 0;
        font-size: 14px;
    }

    /*END-FOOTER*/

    #copyright {
        font-size: 12px;
        padding: 4px 0 5px;
        letter-spacing: -0.1px;
    }

    .pageTitle {
        margin-top: 33px;
        margin-bottom: 40px;
    }

    .pageTitle .titleEng:before {
        bottom: 3px;
    }

    .areaBtn a {
        background: #F56E6E url(../images/common/icon-btn-hover.svg) no-repeat right 12px center/13px;
        color: #fff;
    }
}

@media (max-width: 414px) {
    #fixH{
        height: 59px !important;
    }
    #header .mainMenu .menu {
        top: 52px;
    }

    #header .inner {
        align-items: unset;
    }

    #header .headerBar .logo {
        max-width: 72px;
    }

    .pageTitle .titleEng {
        font-size: 28px;
        margin-bottom: 3px;
        letter-spacing: 1.4px;
    }

    .pageTitle .titleJp {
        font-size: 16px;
        letter-spacing: 1.7px;
    }

    #footer .listMenu li {
        margin: 0 3px -1px;
    }

    #footer .listMenu li a {
        font-size: 9px;
    }

    #copyright {
        font-size: 8px;
    }

    .areaBtn a {
        background: #F56E6E url(../images/common/icon-btn-hover.svg) no-repeat right 6px center/7px;
        color: #fff;
        padding: 3px 30px 4px;
        min-width: 157px;
        border-radius: 10px;
        font-size: 14px;
    }
}

.cart_item_matomegai_info {
    position: relative;
    display: inline-block;
    padding: 7px 10px;
    margin-top: 1.3em;
    min-width: 165px;
    max-width: 100%;
    color: #555;
    font-size: 100%;
    background: #FFF;
    border: solid 3px #F56E6E;
    box-sizing: border-box;
    border-radius: 8px;
  }
  .cart_item_matomegai_info:before {
    content: "";
    position: absolute;
    top: -23px;
    left: 18%;
    margin-left: -15px;
    border: 12px solid transparent;
    border-bottom: 12px solid #FFF;
    z-index: 2;
  }
  .cart_item_matomegai_info:after {
    content: "";
    position: absolute;
    top: -29px;
    left: 18%;
    margin-left: -17px;
    border: 14px solid transparent;
    border-bottom: 14px solid #F56E6E;
    z-index: 1;
  }
  .cart_item_matomegai_info .price {
    text-align: center;
  }
  .cart_item_matomegai_info .price span {
    color: #36a200;
    font-size: 156%;
    font-weight: bold;
  }
  .cart_item_matomegai_info .otoku_price {
    color: #fff;
    background-color: #F56E6E;
    text-align: center;
    border-radius: 4px;
  }
  .p-cart-list__price-select{
    border: solid 1px;
    width: 10%;
    text-align: center;
    padding: 1% 0;
    appearance: auto;
  }
  @media (max-width: 768px) {
    .p-cart-list__price-select{
        width: 15%;
    }
  }
  .c-cart_item__img{
    pointer-events: none;
  }
  .c-cart_item__info__title{
    pointer-events: none;
  }