@charset "utf-8";

a:hover{
	text-decoration: none;
	opacity: .9
}


.entry{
	background-color: #fff5e0;
	padding: 60px 0 0;
}

.entry .inner{
	max-width: 1000px;
	margin: 0 auto;
	background-color: #fff;
	padding: 30px 40px;;
	box-sizing: border-box;
	border-radius: 10px;
	position: relative;
}



.entry .inner h2{
	font-size: 34px;
	text-align: left;
}

@media (max-width: 1100px) {
    .entry .inner {
        width: 90%;
        margin: 0px auto;
		padding: 15px;
    }
}

@media (max-width: 800px){
	.entry .inner{
		padding: 20px;
	}
	.entry .inner h2{
		font-size: 20px;
		text-align: left;
	}
}


/* h2にクラスgoldを付与された場合のcss
--------------------------------------------------------------------------- */

.entry .inner .gold{
	margin-left: 56px;
}

.entry .inner .gold::before{
	content: "";
    display: block;
    position: absolute;
	top: 0px;
    left: 40px;
    background: url("../../common/img/icon/icon_gold.svg") no-repeat center / contain;
    width: 51px;
    height: 82px;
}

@media (max-width: 1100px) {
     .entry .inner .gold{
		margin-left: 90px;
		margin-top: 15px;
	}
}

@media (max-width: 800px) {
    .entry .inner .gold{
		margin-left: 0px;
		margin-top: 30px;
	}
	.entry .inner .gold::before{
		left: 15px;
		width: 30px;
		height: 49px;
	}
}



/* h2にクラスsilverを付与された場合のcss
--------------------------------------------------------------------------- */


.entry .inner .silver{
	margin-left: 56px;
}

.entry .inner .silver::before{
	content: "";
    display: block;
    position: absolute;
	top: 0px;
    left: 40px;
    background: url("../../common/img/icon/icon_silver.svg") no-repeat center / contain;
    width: 51px;
    height: 82px;
}

@media (max-width: 1100px) {
     .entry .inner .silver{
		margin-left: 90px;
		margin-top: 15px;
	}
}

@media (max-width: 800px) {
    .entry .inner .silver{
		margin-left: 0px;
		margin-top: 30px;
	}
	.entry .inner .silver::before{
		left: 15px;
		width: 30px;
		height: 49px;
	}
}


/* h2にクラスbronzeを付与された場合のcss
--------------------------------------------------------------------------- */

.entry .inner .bronze{
	margin-left: 56px;
}

.entry .inner .bronze::before{
	content: "";
    display: block;
    position: absolute;
	top: 0px;
    left: 40px;
    background: url("../../common/img/icon/icon_bronze.svg") no-repeat center / contain;
    width: 51px;
    height: 82px;
}

@media (max-width: 1100px) {
     .entry .inner .bronze{
		margin-left: 90px;
		margin-top: 15px;
	}
}

@media (max-width: 800px) {
    .entry .inner .bronze{
		margin-left: 0px;
		margin-top: 30px;
	}
	.entry .inner .bronze::before{
		left: 15px;
		width: 30px;
		height: 49px;
	}
}


/* ------------------------------------------------------------------------ */
 
/*  名前　キャッチコピー　詳細分css
 
/* ------------------------------------------------------------------------ */


.entry .inner .name{
	margin-top: 35px;
	font-size: 16px;
	text-align: left;
}

.entry .inner .catchphrase{
	margin-top: 30px;
	font-size: 20px;
	font-weight: 700;
	color: #0059b2;
	text-align: left;
}

.entry .inner .catchphrase_text{
	margin-top: 11px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75;
	text-align: left;
}

/* ------------------------------------------------------------------------ */
 
/*  材料css
 
/* ------------------------------------------------------------------------ */

.entry .inner .material{
	margin-top: 50px;
	display: flex;
}

.entry .inner .material img{
	max-width: 320px;
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
	margin-right: 40px;
	object-fit: cover;
}


.entry .inner .material .material-text{
	border-top: 2px solid #00a0e8;
	/*width: calc(100% - 320px - 40px);*/
	width: 100%;
}

.entry .inner .material .material-text .material-person{
	margin-top: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.entry .inner .material .material-text .material-person h3{
	font-size: 20px;
}

.entry .inner .material .material-text .material-person .person{
	font-size: 16px;
	text-align: left;
}

.entry .inner .material .material-text .ingredient-group {
	margin-top: 31px;
	text-align: left;
}

.entry .inner .material .material-text .ingredient-group h4{
	font-size: 16px;
}
.entry .inner .material .material-text .ingredient-group ul{
	margin-top: 10px;
}

.entry .inner .material .material-text .ingredient-group ul li{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 5px;
	padding-bottom: 7px;
	border-bottom: 1px dashed #b3b3b3;
	font-size: 16px;
}

.entry .inner .material .material-text .ingredient-group ul li .name{
	margin: 0;
	width: 30%
}

.entry .inner .material .material-text .ingredient-group ul li  .amount {
	width: 59%
}

/* blockエディター　css
--------------------------------------------------------------------------- */
.entry .inner .material .material-text p strong{
	font-weight:600;
	font-size: 16px;
	text-align: left;
	display: block;
	margin-top: 31px;
}
.entry .inner .material .material-text .wp-block-table{
	font-size: 1.6rem;
	text-align: left;
}
.entry .inner .material .material-text .wp-block-table table{
	width: 100%;
	margin-top: 10px;
}
.entry .inner .material .material-text .wp-block-table tr{
	display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
    padding-bottom: 7px;
    border-bottom: 1px dashed #b3b3b3;
}

.entry .inner .material .material-text .wp-block-table tr td{
	width: 59%;
}
.entry .inner .material .material-text .wp-block-table tr td:first-child{
	margin: 0;
    width: 35%;
}
@media(max-width:800px){
	.entry .inner .material {
		display: block;
		margin-top: 30px;
	}
	.entry .inner .material img {
		max-width: 320px;
		width: 100%;
		height: 100%;
		aspect-ratio: 1 / 1;
		margin-right: 0px;
		margin-bottom: 20px;
	}
	.entry .inner .name{
		margin-top: 10px;
	}

	.entry .inner .catchphrase{
		margin-top: 20px;
		font-size: 18px;
	}

	.entry .inner .catchphrase_text{
		margin-top: 10px;
	}
}

/* ------------------------------------------------------------------------ */
 
/*  作り方css
 
/* ------------------------------------------------------------------------ */

.entry .inner .make{
	margin-top: 58px;
	border-top: 2px solid #00a0e8;
	width: 100%;
}

.entry .inner .make h3{
	margin-top: 15px;
	font-size: 20px;
	text-align: left;
}

.entry .inner .make h3{
	margin-top: 15px;
	font-size: 20px;
	text-align: left;
}

.entry .inner .make ul li{
	margin-top: 15px;
	display: flex;
}
.entry .inner .make ul li img{
	max-width: 280px;
	width: 100%;
	height: 100%;
	aspect-ratio: 28 / 17;
	margin-right: 20px;
	object-fit: cover;
}

.entry .inner .make ul li dl{
	display: flex;
	align-items: flex-start;
}

.entry .inner .make ul li dl dt{
	font-size: 16px;
	font-weight: 700;
/*	width: 70px;
	height: 26px;*/
	padding: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	color: #fff;
	background-color: #663b31;
	margin-right: 12px;
/*	padding-bottom: 2px;*/
	letter-spacing: .07em;
	
}
.entry .inner .make ul li dl dt.loop_head{
	background-color: #fff;
	color: #1a1a1a;
	font-weight: 700;
	padding: 0;
	margin: 10px 0 -5px;
}

.entry .inner .make ul li dl dd{
	font-size: 16px;
	text-align: left;
	line-height: 26px;
	letter-spacing: .005em;
}

@media(max-width:800px){
	.entry .inner .make ul li {
		margin-top: 20px;
		display: flex;
		flex-direction: column-reverse;;
		border-bottom: 2px dotted #585858;
        padding-bottom: 20px;
	}
	
	.entry .inner .make ul li:last-child{
		border-bottom: none;
	}
	.entry .inner .make ul li img {
		max-width: 100%;
		width: 100%;
		height: 100%;
		aspect-ratio: 28 / 17;
		margin-right: 0px;
		margin-top: 10px;
	}
	.entry .inner .make ul li dl {
		display: block;
	}
	
	.entry .inner .make ul li dl dt {
		display: block;
		font-size: 16px;
		height: 26px;
		color: #fff;
		background-color: #663b31;
		padding: 0 10px;
		margin-right: auto;
		margin-left: 0;
		white-space: nowrap;
		text-align: left;
		width: fit-content;
		margin-bottom: 5px;
	}
}

/* ------------------------------------------------------------------------ */
 
/*  一言コメント
 
/* ------------------------------------------------------------------------ */

.comment{
	margin-top: 58px;
    border-top: 2px solid #00a0e8;
    width: 100%;
}

.comment h3{
	margin-top: 15px;
    font-size: 20px;
    text-align: left;
}

.comment-text{
	font-size: 16px;
	text-align: left;
	margin-top: 10px;
}




/* ------------------------------------------------------------------------ */
 
/*  関連キーワード
 
/* ------------------------------------------------------------------------ */

.keyword-list{
	margin-top: 58px;
    border-top: 2px solid #00a0e8;
    width: 100%;
}

.keyword-list h3{
	margin-top: 16px;
    font-size: 20px;
    text-align: left;
}

.keyword-list  ul{
	margin-top: 10px;
	margin-bottom: 20px;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: center;
}

.keyword-list  ul li {
	margin-right: 16px;
	margin-bottom: 3px;
}


.keyword-list  ul li a{
	font-size: 16px;
	color: #0059b2;
}

@media(max-width:800px){
	.keyword-list{
		margin-top: 30px;
	}
}













