@charset "utf-8";
/* CSS Document */

:root {	
	--main-color: #00c65d;
}

p {
    font-size: 1.6rem;
    line-height: 2.2;
}

mark {
    background: linear-gradient(transparent 40%, #fff3b5 40%, #fff3b5 100%, transparent 100% );
}

@media screen and (max-width: 480px) {
    p {
        line-height: 2;
    }
}


/*----------------------------------------------------------------
  メイン画像
------*/
.h-main {
    font-size: 1.9rem;
    padding: 10px 2.5rem;
    border-left: 5px solid var(--main-color);
    letter-spacing: .1em;
    font-weight: bold;
}

.main-img {
    margin-bottom: 3rem;
}

@media screen and (max-width: 480px) {
    .main-img {
        margin-bottom: 0;
    }
}



/*----------------------------------------------------------------
  ボリュームディスカウント価格
------*/
.price-cont {
    width: 1250px;
    margin: 0 auto 8rem;
    background: #f8f8f8;
    padding: 9rem 18rem 7rem;
    box-sizing: border-box;
    border-radius: 4rem;
}

.price-cont .h-price {
    text-align: center;
    font-weight: bold;
    font-size: 3rem;
    color: #505050;
    letter-spacing: .1em;
    line-height: 1;
    margin: 0 auto 4rem;
    position: relative;
    width: fit-content;
    box-sizing: border-box;
    z-index: 1;
}
.price-cont .h-price:before,
.price-cont .h-price:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
    background-size: contain !important;
}
.price-cont .h-price:before {
    background: url("../../../_images/about/large/price-left.png") no-repeat;
    width: 220px;
    height: 185px;
    left: -250px;
    z-index: 3;
}
.price-cont .h-price:after {
    background: url("../../../_images/about/large/price-right.png") no-repeat;
    width: 310px;
    height: 240px;
    right: -320px;
    z-index: 2;
}



.price-cont .h-price span {
    color: #FFF;
    font-size: 2.3rem;
    background: #fe1212;
    padding: 5px 4.5rem;
    display: block;
    width: fit-content;
    margin: 0 auto 2rem;
}

.price-cont .h-price em {
    display: block;
    color: #fe1212;
    font-size: 4.4rem;
    font-weight: bold;
    padding: 2rem 0 5rem;
    text-shadow: 
	#FFF 2px 0px,  #FFF -2px 0px,
	#FFF 0px -2px, #FFF 0px 2px,
	#FFF 2px 2px , #FFF -2px 2px,
	#FFF 2px -2px, #FFF -2px -2px,
	#FFF 1px 2px,  #FFF -1px 2px,
	#FFF 1px -2px, #FFF -1px -2px,
	#FFF 2px 1px,  #FFF -2px 1px,
	#FFF 2px -1px, #FFF -2px -1px;
    position: relative;
    z-index: -1;
}
.price-cont .h-price em:after {
    content: "";
    background: url("../../../_images/about/large/price-line.png") no-repeat bottom center;
    width: 700px;
    height: 73px;
    position: absolute;
    left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
    bottom: -1rem;
    z-index: -1;
}

.price-cont mark {
    background: linear-gradient(transparent 40%, #ffdfea 40%, #ffdfea 100%, transparent 100% );
}


@media screen and (max-width: 786px) {
    .price-cont {
        width: 100%;
        padding: 7rem 40px 5rem;
        overflow: hidden;
        margin-bottom: 5rem;
        border-radius: 0;
    }
    
    .price-cont .h-price {
        font-size: 2.2rem;
        padding: 0 100px;
        margin-bottom: 3rem;
    }
    
    .price-cont .h-price:before {
        width: 180px;
        height: 150px;
        left: -100px;
    }
    .price-cont .h-price:after {
        width: 205px;
        height: 167px;
        right: -100px;
    }
    
    .price-cont .h-price span {
        font-size: 1.8rem;
        padding: 5px 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .price-cont .h-price em {
        font-size: 3.4rem;
        padding: 1rem 0 2rem;
    }
}

@media screen and (max-width: 480px) {
    .price-cont {
        padding: 7rem 25px 5rem;
        margin-bottom: 0;
    }
    
    .price-cont .h-price {
        font-size: 2rem;
        padding: 0 0 110px;
        margin-bottom: 3rem;
    }
    
    .price-cont .h-price:before,
    .price-cont .h-price:after {
        top: auto;
        transform: none;
        bottom: 0;
    }
    .price-cont .h-price:before {
        width: 110px;
        height: 92px;
        left: calc(50% - 110px);
    }
    .price-cont .h-price:after {
        width: 135px;
        height: 104px;
        right: calc(50% - 124px);
        bottom: -10px;
    }
    
    .price-cont .h-price span {
        font-size: 1.6rem;
        padding: 5px 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .price-cont .h-price em {
        font-size: 2.8rem;
        padding: 1rem 0 2rem;
    }
    
    .price-cont .h-price em:after {
        bottom: -30px;
    }
}



/*----------------------------------------------------------------
  consumable-cont
------*/
.consumable-cont {
    position: relative;
    z-index: 1;
}

.consumable-cont .width {
    display: flex;
    justify-content: flex-end;
}
.consumable-cont .text {
    width: 600px;
    margin: 8rem 0;
    background:rgba(255,255,255,0.9);
    padding: 8rem 6rem;
    box-sizing: border-box;
    box-shadow: 0px 8px 19.55px 3.45px rgba(0, 0, 0, 0.05);
}

.consumable-cont .text .h-consumable {
    letter-spacing: .15em;
    margin-bottom: 3rem;
}

.consumable-cont .text .h-consumable span {
    padding: 2px 1.5rem;
    background: var(--main-color);
    color: #FFF;
    font-size: 2.6rem;
    font-weight: bold;
    text-align: center;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    line-height: 2.3;
}

.consumable-cont .text .h-consumable em {
    font-weight: bold;
    color: #282828;
    font-size: 3.3rem;
    display: block;
    line-height: 1.4;
}


.consumable-cont .consumable-img {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 55%;
    min-width: 550px;
    overflow: hidden;
    height: 100%;
}

.consumable-cont .consumable-img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}


@media screen and (max-width: 786px) {
    .consumable-cont .text {
        width: 60%;
        margin: 3rem 20px 0 3rem;
    }
}

@media screen and (max-width: 600px) {
    .consumable-cont {
        display: flex;
        flex-direction:column-reverse
    }
    .consumable-cont .width,
    .consumable-cont .text {
        width: 100%;
    }
    
    .consumable-cont .consumable-img {
        width: 100%;
        position: static;
        min-width: auto;
    }
    
    .consumable-cont .text {
        margin: -5rem 15px 0;
        padding: 5rem 35px;
    }
    
    .consumable-cont .text .h-consumable {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .consumable-cont .text .h-consumable span {
        padding: 0 1rem;
        font-size: 1.6rem;
        margin: 0 auto 1rem;
    }

    .consumable-cont .text .h-consumable em {
        font-size: 2.4rem;
    }
    
}


/*----------------------------------------------------------------
  omakase-cont
------*/
.omakase-cont {
    background: #f8f8f8;
    padding: 13rem 0 9rem;
    margin-bottom: 11rem;
}

.omakase-cont .h-omakase {
    text-align: center;
    font-weight: bold;
    margin-bottom: 6rem;
    letter-spacing: .1em;
}
.omakase-cont .h-omakase span {
    color: var(--main-color);
    font-size: 2.9rem;
    display: block;
    margin-bottom: 2.5rem;
}
.omakase-cont .h-omakase em {
    color: #282828;
    font-size: 4.2rem;
    font-weight: bold;
}


@media screen and (max-width: 786px) {
    .omakase-cont {
        padding: 13rem 25px 9rem;
    }
}

@media screen and (max-width: 480px) {
    .omakase-cont {
        margin: -6rem 0 8rem;
        padding-bottom: 6rem;
    }
    
    .omakase-cont .h-omakase {
        margin-bottom: 3rem;
    }
    .omakase-cont .h-omakase span {
        font-size: 2rem;
        margin-bottom: .7rem;
    }
    .omakase-cont .h-omakase em {
        font-size: 2.6rem;
    }
}    


/*----omakase-point----*/
.omakase-cont .omakase-point {
    display:flex;
	flex-flow: row wrap;
	justify-content: space-between;
    margin-bottom: 3.5rem;
}

.omakase-cont .omakase-point > div {
    width: 350px;
}

.omakase-cont .omakase-point dt {
    background: var(--main-color);
    color: #FFF;
    text-align: center;
    font-weight: bold;
    padding: 2.5rem 2rem;
    border-radius: 20px 20px 0 0;
    font-size: 2.4rem;
    letter-spacing: .14em;
}

.omakase-cont .omakase-point dd p {
    font-size: 2rem;
    font-weight: bold;
    margin-top: -7rem;
    padding-left: 2rem;
    letter-spacing: .1em;
    line-height: 2;
}

.omakase-cont .omakase-point dd p span {
    background: #FFF;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding: 2px 5px;
}


.omakase-cont .omakase-text {
    width: 930px;
    margin: 0 auto;
}

@media screen and (max-width: 786px) {
    .omakase-cont .omakase-point > div {
        width: 31%;
    }
    
    .omakase-cont .omakase-point dd p {
        padding: 0 2rem;
        font-size: 1.7rem;
    }
    
    .omakase-cont .omakase-point dd p span br {
        display: none;
    }
    
    .omakase-cont .omakase-text {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .omakase-cont .omakase-point {
        gap: 25px 0;
        margin-bottom: 2.5rem;
    }
    
    .omakase-cont .omakase-point > div {
        width: 100%;
    }
    
    .omakase-cont .omakase-point dt {
        font-size: 2rem;
        padding: 1.8rem 2rem;
    }
    
    .omakase-cont .omakase-point dd div img {
        height: 250px;
        width: 100%;
        object-fit: cover;
        object-position: center bottom;
    }
    
    .omakase-cont .omakase-point dd p {
        margin-top: -20px;
    }
}


/*----sample-cont----*/
.omakase-cont .sample-cont {
    width: 930px;
    margin: 5rem auto 0;
}

.omakase-cont .sample-cont .h-sample {
    font-weight: bold;
    text-align: center;
    font-size: 2.7rem;
    letter-spacing: .08em;
}

.omakase-cont .sample-cont .h-sample span {
    padding-bottom: 1.5rem;
    border-bottom: .6rem solid var(--main-color);
    margin-bottom: 3rem;
    display: inline-block
}

.omakase-cont .sample-cont .h-sample em {
    font-weight: bold;
    color: var(--main-color);
}

.omakase-cont .sample-cont .img {
    margin-bottom: 4rem;
}

.omakase-cont .sample-cont small {
    line-height: 1.8;
    display: block;
    margin-top: 1rem;
}

@media screen and (max-width: 786px) {
    .omakase-cont .sample-cont {
        width: 100%;
    }
    

}

@media screen and (max-width: 480px) {
    .omakase-cont .sample-cont .h-sample {
        font-size: 2rem;
    }
    
    .omakase-cont .sample-cont .h-sample em {
        display: block;
    }
    
    .omakase-cont .sample-cont .h-sample span {
        padding-bottom: 1rem;
    }
    
    .omakase-cont .sample-cont .img {
        margin-bottom: 2rem;
    } 
}


/*----------------------------------------------------------------
  scene-cont
------*/
.scene-cont {
    margin-bottom: 10rem;
}
.scene-cont .h-scene {
    margin-bottom: 5rem;
    letter-spacing: .1em;
    text-align: center;
}

.scene-cont .h-scene span {
    font-weight: bold;
    font-size: 3.2rem;
    color: var(--main-color);
}

.scene-cont .h-scene em {
    font-weight: bold;
    font-size: 4.2rem;
    margin: 0 1rem;
}

@media screen and (max-width: 786px) {
    .scene-cont {
        padding: 0 25px;
    }
}

@media screen and (max-width: 480px) {
    .scene-cont .h-scene {
        margin-bottom: 4rem;
    }
    
    .scene-cont .h-scene span {
        font-size: 2.4rem;
    }

    .scene-cont .h-scene em {
        font-size: 3rem;
        display: block;
    }
}


/*----scene-box----*/
.scene-cont .scene-box:not(:last-child) {
    margin-bottom: 5rem;
}

.scene-cont .scene-box.flex {
    align-items: center;
}

.scene-cont .scene-box .img {
    width: 590px;
}

.scene-cont .scene-box .text {
    width: 450px;
}

.scene-cont .scene-box .text .h-inner {
    color: #FFF;
    font-weight: bold;
    font-size: 2.7rem;
    letter-spacing: .12em;
    margin-bottom: 2.3rem;
}
.scene-cont .scene-box .text .h-inner span {
    background: var(--main-color);
    padding: .4rem 1.2rem;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    line-height: 2;
}

.scene-cont .scene-box .text ul {
    display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
    gap: 1rem 1.4rem;
    margin-bottom: 2rem;
}

.scene-cont .scene-box .text ul li {
    background: #e8f9f0;
    color: var(--main-color);
    font-size: 1.4rem;
    border-left: 5px solid var(--main-color);
    font-weight: bold;
    padding: .5rem 2rem;
}

.scene-cont .scene-box .text p {
    font-size: 1.5rem;
    line-height: 2;
}


@media screen and (max-width: 786px) {
    .scene-cont .scene-box .img {
        width: 45%;
    }

    .scene-cont .scene-box .text {
        width: 50%;
    }
}

@media screen and (max-width: 600px) {  
    .scene-cont .scene-box .img {
        width: 100%;
    }

    .scene-cont .scene-box .text {
        width: 100%;
        margin-top: -15px;
    }
    
    .scene-cont .scene-box .text .h-inner {
        font-size: 1.7rem;
        margin-bottom: 2rem;
    }
    
    .scene-cont .scene-box .text .h-inner span {
        padding: .3rem 1rem;
    }
    
    .scene-cont .scene-box .text ul li {
        padding: .1rem 2rem;
    }
}




/*----------------------------------------------------------------
  ★
------*/


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

}

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

}


/*----------------------------------------------------------------
  ★
------*/


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

}

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

}


/*----------------------------------------------------------------
  ★
------*/


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

}

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

}


/*----------------------------------------------------------------
  ★
------*/


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

}

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

}