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

/*
全体枠
*/

#the_all{
    width: 100%;
	margin: 0 auto;
	overflow:hidden;
	position:relative;
	font-size:12px;
	line-height:110%;
	color:#000;
    /*background-color: #F8DD6C;*/
    background: rgb(249,226,110);
    background: -moz-linear-gradient(180deg, rgba(249,226,110,1) 0%, rgba(205,121,57,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(249,226,110,1) 0%, rgba(205,121,57,1) 100%);
    background: linear-gradient(180deg, rgba(249,226,110,1) 0%, rgba(205,121,57,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f9e26e",endColorstr="#cd7939",GradientType=1);
}

/*メイン画像*/
#catch{
    width: 95%;
    margin: 30px auto;
    position: relative;
}
#catch h3{
    font-size: 25px;
    color: #d11a1a;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 800;
    line-height: 140%;
    letter-spacing: 0.2em;
}
#catch .subtxt{
    margin: 10px 0 0 ;
    font-size: 18px;
    font-family: 'Noto Sans JP', sans-serif;
    color: #d11a1a;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 0.2em;
}

#catch .btns{
    width: 100%;
    margin: 25px auto 0;
}
#catch .btns ul{
    list-style-type: none;
    display: flex;
    justify-content: space-between;
}

#catch .btns ul li{
    width: calc( 100% / 3 - 5px );
    height: 50px;
}

#catch .btns ul li a{
    display: block;
    width: 92%;/*3-100*/
    height: 100%;
    background-color: #67380C;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: #fff;
    text-align: center;
}
#catch .btns ul li a:hover{
    opacity: 1.0;
}

#catch .info{
    padding-top: 15px;
    font-size: 18px;
    color: #EB6600;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 800;
    line-height: 140%;
    letter-spacing: 0.2em;
}
#catch .info span{
    display: block;
    margin: 15px auto 0;
    font-size: 13px;
    line-height: 110%;
    letter-spacing: 0em;
}

#catch .image{
    width: 110px;
    position: absolute;
    top: -48px;/*0*/
    right: 0;
}

/*見出し*/
.midashi{
    width: 95%;
    padding: 15px 0;
    position:relative;
    overflow:hidden;
    background-color: #67380C;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px; 
    margin: 15px auto 0px;
}
.midashi dl{
    height: 100%;
    font-family: 'Noto Sans JP', sans-serif;
    color: #fff;
    padding: 0 20px;
    
}
.midashi dl dt{
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5em;
}
.midashi dl dd{
    margin-top: 10px;
    font-size: 14px;
    font-weight: 400;
    text-align: right;
}

/*商品注意書き*/
.infotxt{
    width: 100%;
    margin: 0 auto 15px;
    text-align: right;
    color: #595959;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 800;
    line-height: 160%;
    letter-spacing: 0.2em;    
}

/*商品一覧*/
.itemslist{
    width: 95%;
    margin: 0 auto;
}
.itemslist ol{
    counter-reset: listnum;
	list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
ol li::before{
	counter-increment: listnum;
	content: counter(listnum);
}
.itemslist ol li{
    width: calc( 100% / 2 - 10px );
    position: relative;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}
.itemslist ol li::before{
	counter-increment: listnum;
	content: counter(listnum) "";
	color: #fff;
	vertical-align: middle;
	font-size: 24px;
	font-family: 'Playball', cursive;
	font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #67380C;
}
.itemslist ol li .number{
    position: absolute;
    top: 0;
    left: 0;
}

.itemslist ol li .delivery{
    position: absolute;
    top: 0;
    right: 0;
    background-color: #319F00;
    width: 105px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 11px;
    text-align: center;
}

.itemslist ol li .images{
    text-align: center;
    position: absolute;
    width: 100%;
    margin: 20px auto 0;
    z-index: 1;
    height: 210px;
    display: block;    
}
.itemslist ol li .images img{
    width: 100%;
    height: auto;
	padding-top: 16px;
}

.itemslist ol li .txts{
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    margin: 155px auto 0;/*130*/
    background-color: #FFD1A3;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 15px 15px 25px 10px;    
}
.itemslist ol li .txts dl:nth-child(1) dt{
    color: #67380C;
    font-size: 15px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    line-height: 120%;
}
.itemslist ol li .txts dl:nth-child(1) dd{
    color: #CC0000;
    font-size: 15px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    text-align: right;
}
.itemslist ol li .txts dl:nth-child(2) dt{
    margin-top: 15px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}
.itemslist ol li .txts dl:nth-child(2) dd{
    margin-top: 10px;
    color: #67380C;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    text-align: right;
    /*
    position: absolute;
    bottom: 10px;
    right: 15px;
    */
}

.itemslist ol li .subtxt{
    width: 95%;
    margin: 5px auto 0;
    font-family: 'Noto Sans JP', sans-serif;
    color: #CC0000;
}

.itemslist ol li .label{
    width: 150px;
    height: 25px;
    position: absolute;
    top: 190px;/*160*/
    right: 10px;
    background-color: rgba(255,182,0,1.00);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;    
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}
.itemslist ol li .label.red{
    background-color: rgba(241,48,48,1.00);
    color: #fff;
}

/*アイスクリームは連番を途中から始める*/
.itemslist.icecream ol{
    counter-reset: item 25;
}
.itemslist.icecream ol li:before{
    content: counter(item);
    counter-increment: item;
}

/*商品別微調整*/
.itemslist.icecream ol li:nth-child(2) .images{
    top: -20px;
}

.itemslist.icecream ol::after{
    content:"";
    display: block;
    width: calc( 100% / 3 - 10px );
}

/*お申込み*/
.listimage{
    width: 90%;
    margin: 15px auto 50px;
    text-align: center;
    background-color: #F5E7DC;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 10px;

}
.listimage img{
    width: 100%;
    height: auto;
}


/*オードブル*/
.horsdoeuvre ol li::before{
	counter-increment: listnum;
	content: counter(listnum, upper-alpha);
}

.horsdoeuvre ol li .txts {
margin: 162px 0 0;
}

.horsdoeuvre ol li .label {
	top: 214px;
}

