@charset "utf-8";

/* 共通スタイル */
a {
	display: block;
	/* width: 100%; */
	text-decoration: none;
	cursor: pointer;
}

a:hover {
	opacity: 0.7;
}

img {
	/* width: 100%; */
}

.inner__700 {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
}

.inner__900 {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

.inner__1000 {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

.hp_fc_red {
	color: #ef0000;
}

.hp_underLine_yl {
	background: linear-gradient(transparent 40%, #fdff66 0%);
}

.sp {
	display: none;
}
@media screen and (max-width: 540px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
}

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

.fv_wrap {
	width: 100%;
	aspect-ratio: 16 / 8;
	position: relative;
}

.fv_wrap img {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* tab */
.tab_itemBox {
	width: 60%;
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	position: absolute;
	bottom: 10%;
	left: 50%;
	transform: translateX(-50%);
}
.tab_item {
	width: calc((100% - 50px) / 6);
	border-left: dashed 2px #000;
	padding-left: 10px;
	box-sizing: border-box;
}

.tab_item.faq {
	border-right: dashed 2px #000;
	padding-right: 10px;
}

.tab_item img {
	width: 100%;
	margin-top: -30px;
}

/* panel */
.panel_box {
	display: none;
}

.panel_box.active {
	display: block;
}

/* レシピページ */
.recipes_wrap {
	background: url(../images/rp_bg.png);
	background-size: 80%;
	margin-top: -100px;
	padding-top: 140px;
}

.recipe_pageLink_box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	column-gap: 0;
	row-gap: 10px;
	width: 100%;
	max-width: 860px;
	margin: 0 auto 100px;
	box-sizing: border-box;
	padding: 0 20px;
}

.rp_linkBtn_ttl {
	width: 100%;
}

.rp_linkBtn_ttl img {
	display: block;
	width: 60%;
	max-width: 700px;
	margin: 0 auto 40px;
}

.pageLink_item {
	width: calc(100% / 5);
}

.sec_ttl.recipe {
	width: 100%;
	max-width: 650px;
	height: 270px;
	margin: 0 auto 60px;

}
.pro .sec_ttl.recipe {
	height: 180px;
	margin: 0 auto 40px;
}

.rpSec_wrap {
	margin-bottom: 150px;
}

.rp_itemBox {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	column-gap: 30px;
	row-gap: 60px;
}

.rp_item {
	width: calc((100% - 60px) / 3);
	position: relative;
}

.rp_item_desc {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 75%;
}

.rp_item_desc a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-top: 20px;
}

/* .rp_item.arrange .rp_item_desc {
	top: 40%;
	margin-top: 0;
} */

.rp_item.arrange .rp_item_desc a {
	gap: 10px;
	margin-top: 10px;
}

.rp_moreBtn {
	width: 80%;
}

.rp_item_kitImg {
	margin-top: -35px;
	margin-left: 20px;
	width: 85%;
}

.rp_others {
	margin-bottom: 200px;
}

.rp_otherVtRecipe_btn {
	width: 100%;
	max-width: 500px;
	margin: -100px auto 100px;
}

/* プロレシピ */
.pro_con {
	background: url(../images/rp_pro_bg.png)repeat-y;
	background-size: 100%;
	border-radius: 90px;
	position: relative;
	padding: 100px;
	overflow: hidden;
}

.pro_con::before {
	content: "";
	width: 100%;
	height: 120px;
	background: url(../images/rp_pro_objTop.png)no-repeat;
	background-size: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.pro_con::after {
	content: "";
	width: 100%;
	height: 138px;
	background: url(../images/rp_pro_objBottom.png)no-repeat bottom;
	background-size: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
}

.pro_item_ttl {
	width: 100%;
	max-width: 560px;
	padding-top: 40px;
	margin-bottom: 40px;
}

.pro_item_desc {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 40px;
	border-bottom: dashed 2px #f36667;
	padding-bottom: 40px;
	margin-bottom: 40px;
}

.pro_item_img {
	width: 435px;
}

.pro_item_img_btn {
	padding-top: 20px;
	width: 70%;
	margin: 0 auto;
}

.pro_item_movie {
	width: 50%;
    max-width: 315px;
    height: 60vw;
	max-height: 560px;
	background: #d2d2d2;
	position: relative;
}

.pro_item_movie::before {
	content: "▶︎";
    color: #fff;
    font-size: 20px;
    width: 60px;
    height: 60px;
    background: #ff0000;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 15px 22px;
}

.pro_teacher {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 30px;
}

.pro_teacher_img {
	width: 300px;
	height: 350px;
}

.pro_teacher_desc {
	flex: 1;
}

.pro_teacher_desc_txt {
	margin-bottom: 30px;
}

.pro_teacher_desc_sns {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

/* 商品ページ */
/* 商品ページ > VTキット */
.vt_kit {
	background: url(../images/pd_lvtk_bg.png)repeat-y;
	background-size: 100%;
	margin-top: -100px;
	padding-top: 160px;
	padding-bottom: 100px;
	position: relative;
}

.sec_ttl {
	width: 100%;
	max-width: 770px;
	height: 150px;
	margin: 0 auto 60px;
	position: relative;
}

.other .sec_ttl {
	height: 200px;
}

.sec_ttl img {
	width: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.sec_con {
	width: 100%;
	margin: 0 auto 100px;
	position: relative;
	transform: rotate(1.0deg);
	box-shadow: 0px 0px 25px rgba(0,15,46,0.3);
}

.sec_con.loveToxic {
	background: #a2daf6;
}

.sec_wrap {
	width: 100%;
	height: 100%;
	background: #fff;
	overflow: hidden;
	transform: rotate(-1.0deg);
	box-shadow: 0px 0px 25px rgba(0,15,46,0.3);
	box-sizing: border-box;
	padding: 60px;
}

.sec_con_ttl {
	width: 65%;
	margin: 0 auto 40px;
}

.loveToxic_item.item01 {
	border-bottom: dashed 2px #48a9ef;
	margin-bottom: 60px;
}

.loveToxic_item_Wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
	gap: 20px;
}

.loveToxic_package {
	width: 60%;
	
}

.loveToxic_movieBox {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	width: 100%;
	gap: 40px;
}

.loveToxic_short {
	width: 180px;
	height: 320px;
	background: #d2d2d2;margin: 0 auto;

}

.loveToxic_buble {
	width: 80%;
	margin-left: -130px;
}

.loveToxic_movie {
	width: 300px;
	height: 169px;
	position: relative;
}

.loveToxic_movie::before {
	content: "▶︎";
	color: #fff;
	font-size: 20px;
	width: 40px;
	height: 40px;
	background: #ff0000;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	box-sizing: border-box;
	padding: 4px 12px;
}

.loveToxic_img {
	width: 75%;
}

.pd-moreBtn {
	width: 70%;
	margin-bottom: 40px;
}

.loveToxic_copy {
	width: 50%;
	padding: 30px;
	margin: 0 auto;
}
/* 商品ページ > キット✖️作活　すみっコ暮らし */
.tsukukatsu_changeBg {
	background: url(../images/pd_bg_change01.png)no-repeat;
	background-size: 100%;
	width: 100%;
	height: 260px;
	margin-top: -165px;
	position: relative;
}

.tsukukatsu {
	background: url(../images/pd_kit_bg.png)repeat-y;
	background-size: 100%;
	/* clip-path: polygon(0 0, 100% 0%, 100% 97%, 0% 100%); */
	margin-top: -120px;
	padding-top: 100px;
	padding-bottom: 10px;
}

.sec_con.kit {
	background: #f27373;
}

.sec_wrap.kit {
	background: url(../images/pd_kit_wrap_bg.jpg)repeat-y;
	background-size: 100%;
}

.sec_wrap.kit::before {
	content: "";
	width: 101%;
	height: 120px;
	background: url(../images/pd_kit_bgTop.png)no-repeat;
	background-size: 100%;
	position: absolute;
	top: -1px;
	left: -5px;
}

.sec_wrap.kit::after {
	content: "";
	width: 101%;
	height: 120px;
	background: url(../images/pd_kit_bgTop.png)no-repeat;
	background-size: 100%;
	transform: rotate(180deg);
	position: absolute;
	bottom: -1px;
	left: -5px;
}

.kit_itemBox {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: center;
	column-gap: 60px;
	row-gap: 60px;
	padding: 100px 0;
}

.kit_itemBox.reco {
	border-bottom: dashed 2px #e66e70;
	margin-bottom: 80px;
	padding: 20px 0 60px;
}

.kit_itemBox.reco.animal {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 10px;
}

.kit_recoItem {
	width: calc((100% - 60px) / 2);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
}

.kit_recoMovie {
	width: 300px;
	height: auto;
	background: #d2d2d2;
	position: relative;
}

.kit_recoMovie::before {
	content: "▶︎";
	color: #fff;
	font-size: 20px;
	width: 40px;
	height: 40px;
	background: #ff0000;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	box-sizing: border-box;
	padding: 4px 12px;
}

.kit_itemBox.classic {
	padding: 0;
	margin-bottom: 40px;
}

.kit_classicItem {
	width: 100%;
}

.kit_classicItem_ttl {
	margin-bottom: 40px;
}

.kit_classic_con {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 60px;
}

.classic_movie {
	width: 340px;
	height: 192px;
	background: #d2d2d2;
	margin-bottom: 20px;
	position: relative;
}

.classic_movie::before {
	content: "▶︎";
	color: #fff;
	font-size: 20px;
	width: 40px;
	height: 40px;
	background: #ff0000;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	box-sizing: border-box;
	padding: 4px 12px;
}

.sumikko_itemBox {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	padding: 100px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 60px;
}

.sumikko_item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 40px;
	padding-top: 40px;
}

.sumikko_item.item01 {
	border-bottom: dashed 2px #e66e70;
}

.sumikko_btn {
	width: 60%;
	margin-bottom: 60px;
}

.sumikko_copy {
	width: 360px;
	margin-top: -80px;
}

/* 商品ページ > その他のバレンタインアイテム */
.pd_other_changeBg {
	background: url(../images/pd_bg_change02.png)no-repeat;
	background-size: 100%;
	width: 100%;
	height: 210px;
	margin-top: -110px;
}
.other {
	background: url(../images/pd_other_bg.png) bottom center;
	background-size: 100%;
	padding-top: 65px;
	padding-bottom: 120px;
}

.other_itemBox {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 60px;
}

.other_item {
	width: calc((100% - 60px) / 2);
	height: auto;
}
/* 商品ページ > コンテスト */
.contest {
	background: url(../images/contest_bg.png)no-repeat top center;
	background-size: cover;
	width: 100%;
	height: auto;
	padding: 260px 0 100px!important;
	box-sizing: border-box;
}

.contest_con {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 60px;
}

.contest_ttl {
	width: 80%;
}

.contest_camLink {
	width: 100%;
	height: auto;
	background: #d2d2d2;
}

/* チョコページ */
.choco_wrap {
	background: url(../images/choco_bg.png);
	margin-top: -100px;
	padding-top: 180px;
	padding-bottom: 140px;
}

.choco_pageLink_box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	max-width: 860px;
	margin-bottom: 60px;
}

.choco_pageLink_item {
	width: calc((100% - 40px) / 3);
}

.choco_about {
	padding: 0 10px;
	margin-bottom: 100px;
}

.choco_sec_ttl {
	width: 100%;
	max-width: 850px;
	margin: 0 auto 60px;
}

.choco_con {
	background: #fff;
	padding: 50px;
	font-size: 16px;
	font-weight: 600;
	color: #633f00;
	line-height: 1.5;
	position: relative;
	margin-bottom: 60px;
	box-sizing: border-box;
}

.choco_con::before {
	content: "";
	width: 170px;
	height: 140px;
	background: url(../images/choco_kind_objLeft.png)no-repeat;
	background-size: contain;
	position: absolute;
	top: 0;
	left: 0;
}

.choco_con::after {
	content: "";
	width: 170px;
	height: 140px;
	background: url(../images/choco_kind_objRight.png)no-repeat;
	background-size: contain;
	position: absolute;
	top: 0;
	right: 0;
}

.choco_con02 {
	background: #fff;
	padding: 50px;
	font-size: 16px;
	font-weight: 600;
	color: #633f00;
	line-height: 1.5;
	margin-bottom: 60px;
	box-sizing: border-box;
}

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

.table_wrap {
	border-collapse: collapse;
	margin-bottom: 55px;
}

.table_wrap th,.table_wrap td {
	padding: 10px 20px 40px;
	border: solid 2px #441d08;
	width: 200px;
}

.table_con {
	background: #fffbec;
	border: solid 2px #441d08;
}

.table_head {
	background: #633f00;
	color: #fffbec;
}

.table_head th {
	text-align: center;
	font-weight: 600;
	padding: 10px 20px;
}

th.table_ttl {
	width: 60px;
	font-weight: 600;
	text-align: center;
}

.table_wrap td.table_btn {
	padding: 20px 10px;
}

.table_noTempering {
	color: #5c5898;
	font-size: 15px;
	border: solid 2px #5c5898;
	padding: 3px 10px;
	border-radius: 3px;
	display: block;
	margin-top: 10px;
}

.table_tempering {
	color: #ff6666;
	font-size: 15px;
	border: solid 2px #ff6666;
	padding: 3px 10px;
	border-radius: 3px;
	display: block;
	margin-top: 10px;
}

.choco_subWrap h3 {
	width: 40%;
	margin: 0 auto 30px;
}

.choco_subWrap.capChoco h3 {
	width: 60%;
}

.choco_sub_txt {
	text-align: center;
	margin-bottom: 30px;
}

.choco_sub_itemBox {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 30px;
}

.choco_sub_item {
	width: calc((100% - 90px) / 4);
}

.choco_sub_item_ttl {
	text-align: center;
	font-size: 21px;
	background: #ec9600;
	padding: 5px 0;
	border-radius: 5px;
	color: #fff;
	margin-bottom: 20px;
}

.choco_sub_item_desc {
	line-height: 1.7;
	font-size: 15px;
}

.table_wrap.table03 {
	margin-bottom: 25px;
}

.table_wrap.table03 th {
	width: 270px;
}

.table_wrap.table03 th.table_ttl {
	width: 60px;
}

.table_wrap.table03 td.table_btn {
	padding: 20px 40px;
}

.choco_howToTempering_topTxt {
	text-align: center;
	font-size: 18px;
	margin-bottom: 20px;
}

.topTxt_icon {
	display: inline-block;
	background: #ff6666;
	color: #fff;
	font-weight: 600;
	padding: 5px 20px;
	border-radius: 30px;
	margin-bottom: 10px;
	letter-spacing: 1px;
	font-size: 18px;
}

.choco_about_tempering {
	text-align: center;
	border: solid 3px #ff6666;
	border-radius: 15px;
	padding: 20px 40px;
	width: 730px;
	margin: 0 auto 40px;
	box-sizing: border-box;
}

.choco_about_tempering_ttl {
	font-size: 26px;
	color: #ff6666;
	font-weight: 600;
	margin-bottom: 5px;
}

.choco_about_tempering_desc {
	line-height: 1.7;
	font-weight: 600;
	margin-bottom: 10px;
}

.choco_about_tempering_subTtl {
	font-size: 26px;
	margin-bottom: 5px;
	font-weight: 600;
	color: #c0a548;
}

.choco_caution {
	font-size: 26px;
	text-align: center;
	font-weight: 600;
	position: relative;
	margin-bottom: 20px;
}

.choco_caution::before {
	content: "";
	width: 30px;
	height: 30px;
	background: url(../images/choco_cautionIcon.png)no-repeat;
	background-size: contain;
	position: absolute;
	top: 5px;
	left: 40px;
}

.choco_tempering_itemBox {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	column-gap: 60px;
	row-gap: 10px;
	margin-bottom: 50px;
}

.choco_tempering_item {
	width: calc((100% - 60px) / 2);
	border: solid 2px #ff6666;
  border-radius: 5px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	box-sizing: border-box;
}

.choco_tempering_item h3 {
	background: #ff6666;
	color: #fff;
	font-weight: 600;
	font-size: 23px;
	text-align: center;
	padding: 20px;
	width: 100%;
}

.choco_tempering_item img {
	width: 90%;
	display: block;
	margin: 0 auto;
}

.choco_tempering_btn {
	width: 55%;
	margin-bottom: 30px;
}

.choco_tempering_item.item02 {
	border: solid 2px #39a8e7;
}

.choco_tempering_item.item02 h3 {
	background: #39a8e7;
	font-size: 21px;
	padding: 6px 0;
}

.choco_tempering_note {
	font-weight: 500;
}

.choco_howToTempering_movieTtl {
	font-size: 26px;
	font-weight: 600;
	color: #e66e70;
	margin-bottom: 30px;
	text-align: center;
}

.choco_tempering_movie_box {
	width: 515px;
	height: 360px;
	margin: 0 auto;
	border: solid 2px #ae896f;
	margin-bottom: 40px;
}

.choco_tempering_movie_box iframe {
	width: 100%;
	height: 360px;
}

.choco_howToTempering_confirm {
	display: block;
	width: 80%;
	margin: 0 auto;
}

.choco_tempering_item.item03 h3,.choco_tempering_item.item04 h3 {
	padding: 10px 0;
}

.choco_noTempering_decoLink {
	width: 60%;
	margin: 0 auto 40px;
}

.choco_noTempering_topTxt {
	text-align: center;
	font-size: 18px;
	padding-top: 20px;
	margin-bottom: 60px;
}

.choco_sub_itemBox.capChoco {
	gap: 60px;
}

.choco_sub_item.capChoco {
	width: calc((100% - 120px) / 3);
}

.choco_sub_item.capChoco.item03 .choco_sub_item_ttl {
	padding: 20px 0;
}

.choco_sub_item_btn {
	margin-top: 40px;
}

.choco_sub_item_desc.capChoco {
	height: 80px;
}

.choco_about_tempering.bloom {
	margin: 40px auto;
}

.choco_bloom_prev {
	width: 65%;
	margin: 0 auto;
}

.choco_bloomItem_con {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	padding: 0 20px 40px;
	box-sizing: border-box;
}

.topTxt_icon.bloom {
	border-radius: 5px;
	padding: 5px 30px;
	margin-bottom: 0;
}

.choco_bloomItem_list,.choco_bloom_preserveItem {
	margin-left: 45px;
	position: relative;
}

.choco_bloomItem_list::before,.choco_bloom_preserveItem::before {
	content: "";
	width: 18px;
	height: 18px;
	background: url(../images/choco_listIcon.png)no-repeat;
	background-size: contain;
	position: absolute;
	top: 5px;
	left: -30px;
}

.choco_tempering_item.bloom.item02 h3 {
	padding: 20px;
	font-size: 23px;
}

.choco_tempering_item.bloom.item02 img {
	height: 230px;
}

.choco_bloomItem_con.item02 {
	padding: 0 30px 70px;
}

.choco_con02.bloom {
	padding: 30px 50px 60px;
}

.choco_caution.bloom::before {
	left: 160px;
}

.choco_bloom_preserveList {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: left;
	row-gap: 20px;
}

.choco_bloom_preserveItem {
	width: calc((100% - 135px) / 3);
}

.kit_animal_ttl,.kit_time_ttl {
	padding-top: 40px;
    width: 60%;
    margin: 0 auto;
}

@media screen  and (max-width: 1000px){
	.inner__1000 {
	padding-left: 20px;
	padding-right: 20px;
    box-sizing: border-box;
	}

	.sec_ttl.recipe {
		width: 70%;
		height: 270px;
		margin: 0 auto 80px;
	}

	.pro_con {
		padding: 100px 40px;
	}

	.pro_con::before {
		height:  8%;
	}

	.pro_con::after {
		height: 9%;
	}

	.pro_item_ttl {
		padding-top: 0;
	}

	.pro .sec_ttl.recipe {
		height: 120px;
		margin: 0 auto 60px;
	}

	.pro_teacher_img {
		width: 37%;
		height: auto;
	}

	.pro_item_ttl {
		width: 60%;
	}

	.rp_item {
		width: calc((100% - 60px) / 2);
	}

	.recipe_pageLink_box {
		margin: 0 auto 60px;
	}

	.rpSec_wrap {
		margin-bottom: 100px;
	}

	.rp_others {
		margin-bottom: 140px;
	}

	.sec_wrap {
		width: 105%;
		margin-left: -3%;
	}

	.sec_con.loveToxic {
		width: 80%;
	}

	.sec_con.kit {
		width: 90%;
	}

	.sec_ttl {
		width: 80%;
		margin:  0 auto 60px;
	}

	.loveToxic_movieBox {
		flex-wrap: wrap;
	}

	.loveToxic_copy {
		width: 60%;
	}

	.loveToxic_movieBox_short {
		display: block;
		width: 100%;
		padding-top: 60px;
	}

	.loveToxic_short {
		position: relative;
	}

	.loveToxic_short::before {
		content: "";
		width: 160px;
		height: 100px;
		background: url(../images/pd_lvtk_buble_sp.png)no-repeat;
		background-size: contain;
		position: absolute;
		top: -50px;
		right: -100px;
	}

	.loveToxic_item_Wrap {
		gap: 40px;
	}

	.loveToxic_img {
		width: 100%;
	}


	.loveToxic_buble.pc {
		display: none;
	}

	.kit_classic_con {
		gap: 20px;
	}

	.kit_classic_con_img {
		width: 280px;
	}

	.kit_classic_con_desc {
		flex: 1;
	}

	.classic_movie {
		width: 100%;
		height: auto;
	}

	.sec_wrap.kit {
		padding: 20px 40px 80px;
	}

	.loveToxic_movie {
		width: 100%;
		height: auto;
	}

	.sumikko_item.item02 {
		text-align: center;
	}

	.sumikko_item.item02 img {
		width: 80%;
	}

	.choco_caution {
		font-size: 22px;
	}

	.choco_caution::before {
		left: 0;
	}

	.choco_tempering_item h3 {
		font-size: 20px;
	}

	.choco_sub_item_ttl {
		font-size: 16px;
	}

	.choco_sub_itemBox.capChoco {
		gap: 30px;
	}

	.choco_sub_item_btn {
		margin-top: 60px;
	}

	.choco_caution.bloom::before {
		left: 50px;
	}

	.choco_wrap {
		padding-bottom: 40px;
	}

}

@media screen and (max-width: 540px) {
	.fv_wrap {
		aspect-ratio: auto;
		height: 188vw;
	}
	.tab_itemBox {
		width: 90%;
		bottom: 8%;
		column-gap: 10px;
		row-gap: 50px;
	}
	.tab_item {
		width: calc((100% - 20px) / 3);
	}
	.tab_item.choco {
		border-right: dashed 2px #000;
		padding-right: 10px;
	}
	.sec_ttl.recipe {
		width: 90%;
		height: 140px;
		margin: 0 auto 60px;
	}

	.rp_itemBox {
		row-gap: 40px;
	}
	
	.rp_item {
		width: 100%;
	}

	.rpSec_wrap {
		margin-bottom: 60px;
	}

	.recipes_wrap {
		padding-top: 140px;
	}

	.rp_linkBtn_ttl {
		width: 100%;
	}

	.rp_linkBtn_ttl img {
		margin: 0 auto 20px;
	}

	.recipe_pageLink_box {
		row-gap: 5px;
		margin-bottom: 60px;
	}

	.pageLink_item {
		width: calc(100% / 2);
	}

	.pro .sec_ttl.recipe {
		height: 100px;
		margin-bottom: 20px;
	}

	.pro_con {
		border-radius: 40px;
		padding: 60px 20px 80px;
	}

	.pro_con::before {
		height: 5%;
	}

	.pro_con::after {
		height: 4%;
	}

	.pro_item_ttl {
		width: 95%;
		margin-bottom: 30px;
	}

	.pro_item_desc {
		flex-wrap: wrap;
		gap: 20px;
		margin-bottom: 20px;
	}

	.pro_item_movie {
		width: 195px;
		height: 347px;
	}

	.pro_item_img {
		width: 275px;
	}

	.pro_item_img_btn {
		width: 85%;
	}

	.pro_teacher {
		flex-wrap: wrap;
		gap: 30px;
	}

	.pro_teacher_img {
		width: 80%;
		height: auto;
	}

	.pro_teacher_desc {
		flex: 100%;
	}

	.pro_teacher_desc_sns {
		flex-wrap: wrap;
		width: 90%;
		margin: 0 auto;
	}

	.rp_item_kitImg {
		margin-top: -25px;
	}

	.rp_others {
		margin-bottom: 80px;
	}
	.rp_otherVtRecipe_btn {
		width: 300px;
		margin: -50px auto 0;
	}

	.contest {
		background: url(../images/contest_bg_sp.png)no-repeat top center;
		background-size: cover;
		padding: 110px 0 60px!important;
	}

	.contest_con {
		gap: 20px;
	}

	.vt_kit {
		background-size: 200%;
		margin-top: -100px;
		padding: 160px 15px 10px;
	}

	.vt_kit .sec_ttl {
		width: 95%;
		height: 80px;
		margin: 0 auto 30px;
	}

	.sec_ttl {
		width: 100%;
		height: 100px;
		margin: 0 auto 20px;
	} 
	.sec_con.loveToxic {
		width: 90%;
		transform: rotate(0.5deg);
		margin: 0 auto 30px;
	}

	.sec_wrap {
		width: 115%;
		transform: rotate(-0.5deg);
		padding: 30px;
		margin-top: -5px;
		margin-left: -7%;
	}

	.sec_con_ttl {
		width: 95%;
		margin: 0 auto 40px;
	}

	.loveToxic_package {
		width: 100%;
	}

	.loveToxic_movieBox {
		flex-wrap: wrap;
		width: 100%;
		gap: 20px;
	}

	.loveToxic_movie {
		width: 100%;
	}
	.loveToxic_img {
		width: 100%;
	}
	.pd-moreBtn {
		width: 100%;
	}
	.loveToxic_copy {
		margin-top: -30px auto;
		width: 85%;
		padding: 20px;
	}

	.loveToxic_movieBox_short {
		padding-top: 20px;
	}
	
	.loveToxic_short::before {
		width: 140px;
		top: -40px;
		right: -60px;
	}



	.tsukukatsu_changeBg {
		background-size: 200%;
		width: 100%;
		height: 150px;
		margin-top: -10px;
		background-position: 60.2% -10px;
	}

	.tsukukatsu {
		background-size: 200%;
		padding: 90px 20px 10px;
		background-position: 51.2%;
	}

	.sec_con {
		margin-bottom: 60px;
	}

	.sec_con.kit {
		transform: rotate(0.3deg);
	}

	.sec_wrap.kit {
		width: 115%;
		transform: rotate(-0.3deg);
		padding: 20px 20px 40px;
	}

	.sec_wrap.kit.sumikko {
		transform: rotate(0.7deg);
	}

	.sec_wrap.kit.sumikko {
		transform: rotate(-0.7deg);
	}

	.sec_wrap.kit::before {
		height: 50px;
		top: -1px;
		left: -1px;
	}

	.sec_wrap.kit::after {
		height: 50px;
		bottom: -1px;
		left: -1px;
	}

	.kit_itemBox {
		padding: 40px 0;
	}

	.kit_recoItem {
		gap: 30px;
		width: 100%;
	}

	.kit_recoMovie {
		width: 100%;
		height: auto;
	}

	.kit_classic_con {
		flex-wrap: wrap;
		gap: 30px;
	}

	.kit_itemBox.reco {
		margin-bottom: 50px;
	}

	.classic_movie {
		width: 100%;
		height: 129px;
		margin-bottom: 30px;
	}

	.classic_movie iframe {
		width: 100%;
		height: 190px;
	}

	.sumikko_itemBox {
		padding: 0;
		gap: 0;
	}

	.sumikko_item {
		padding-top: 40px;
		padding-bottom: 10px;
		gap: 30px;
	}

	.sumikko_btn {
		width: 100%;
		margin-bottom: 20px;
	}

	.sumikko_copy {
		width: 95%;
		margin-top: -10px;
	}

	.pd_other_changeBg {
		background-size: 200%;
		background-position: 54% 34px;
	}

	.other {
		background-size: 200%;
		padding: 0 15px 80px;
		margin-top: -40px;
	}

	.other .sec_ttl {
		height: 90px;
	}

	.other_itemBox {
		padding: 0;
		gap: 20px;
	}

	.other_item {
		width: 100%;
	}

	.choco_wrap {
		padding-top: 140px;
		padding-bottom: 40px;
		background-size: 20%;
	}

	.choco_pageLink_box {
		gap: 10px;
	}

	.choco_pageLink_item {
		width: 100%;
	}

	.choco_about {
		padding: 0 20px;
		box-sizing: border-box;
		margin-bottom: 60px;
	}

	.choco_kind {
		padding: 0 20px;
	}

	.choco_sec_ttl {
		margin: 0 auto 20px;
	}

	.choco_con::before {
		width: 70px;
		height: 70px;
	}
	.choco_con::after {
		width: 70px;
		height: 70px;
	}

	.choco_kind_topTxt {
		padding-top: 20px;
		font-size: 11px;
		line-height: 1.7;
		margin-bottom: 20px;
	}

	.choco_kind_table01,.choco_kind_table02,.choco_kind_table03 {
		overflow-x: auto;
		margin-bottom: 40px;
	}

	.table_wrap {
		table-layout: fixed;
		width: 800px;
		margin-bottom: 15px;
	}

	.table_wrap th.table_ttl {
		width: 60px;
		padding: 20px 0;
		text-align: center;
	}

	.table_head th {
		padding: 10px;
		text-align: center;
	}

	.table_wrap th, .table_wrap td {
		padding: 10px 10px 20px;
		width: 120px;
		white-space: wrap;
		font-size: 14px;
	}

	.choco_con {
		padding: 40px 20px;
	}

	.choco_con02.shape {
		padding: 40px 20px 10px;
	}

	.choco_subWrap h3,
	.choco_subWrap.capChoco h3
	{
		width: 100%;
	}

	.choco_sub_txt {
		font-size: 14px;
	}

	.choco_sub_itemBox {
		flex-wrap: wrap;
	}

	.choco_sub_item {
		width: 100%;
	}

	.choco_sub_item_ttl {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.choco_sub_item_desc {
		font-size: 14px;
	}

	.table_noTempering {
		font-size: 14px;
		width: fit-content;
	}

	.choco_subWrap {
		padding: 0;
	}

	.choco_howToTempring_wrap {
		padding: 0 20px;
	}

	.choco_about_tempering {
		width: 100%;
		padding: 20px;
		margin: 0 auto 30px;
	}

	.table_wrap.table03 th {
		width: 80px;
	}

	.table_wrap.table03 th.table_ttl {
		width: 30px;
	}

	.table_wrap.table03 td.table_btn {
		padding: 10px 30px;
	}

	.choco_howToTempering_topTxt {
		font-size: 14px;
		width: 92%;
		margin: 0 auto 20px;
	}

	.topTxt_icon {
		font-size: 12px;
		padding: 3px 15px;
	}

	.choco_about_tempering_ttl {
		font-size: 20px;
		margin-bottom: 5px;
	}

	.choco_about_tempering_desc {
		font-size: 14px;
		text-align: left;
	}

	.choco_about_tempering_subTtl {
		font-size: 20px;
		margin-bottom: 5px;
	}

	.choco_caution {
		font-size: 16px;
		text-align: left;
		padding-left: 30px;
		margin-bottom: 20px;
	}

	.choco_caution::before {
		left: -7px;
	}

	.choco_tempering_itemBox {
		row-gap: 20px;
		margin-bottom: 30px;
	}

	.choco_tempering_item h3 {
		font-size: 18px;
		padding: 10px;
	}

	.choco_tempering_item {
		width: 100%;
	}

	.choco_tempering_note {
		font-size: 12px;
		margin-top: -10px;
	}

	.choco_howToTempering_movieTtl {
		font-size: 20px;
	}

	.choco_tempering_movie_box {
		width: 100%;
		height: 255px;
	}

	.choco_tempering_movie_box iframe {
		width: 100%;
		height: 255px;
	}

	.choco_noTempring_wrap {
		padding: 0 20px;
	}

	.choco_noTempering_topTxt {
		width: 75%;
		margin: 0 auto 20px;
		padding-top: 30px;
	}

	.choco_sub_item.capChoco {
		width: 100%;
	}

	.choco_bloom {
		padding: 0 20px;
	}

	.choco_bloomItem_list, .choco_bloom_preserveItem {
		margin-left: 35px;
	}

	.choco_bloom_preserveItem {
		width: 100%;
	}

	.choco_caution.bloom::before {
		left: -10px;
		top: -2px;
	}

	.choco_sub_item_btn {
		width: 75%;
		margin: 0 auto;
	}

	.choco_noTempering_decoLink {
		width: 100%;
		margin: 0 auto 60px;
	}

	.choco_tempering_item.item02 h3 {
		font-size: 17px;
	}

	.choco_tempering_btn {
		width: 100%;
	}

	.choco_howToTempering_confirm {
		width: 100%;
	}

	.choco_con02.bloom {
		padding: 30px 20px 60px;
	}

	.choco_bloom_prev {
		width: 95%;
	}

	.kit_animal_ttl,.kit_time_ttl {
		padding-top: 20px;
		width: 80%;
	}
}

