@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP');
#content_wrapper {
	max-width: 62em;
	width: 100%;
	margin: auto;
}

.cl {
	clear: both;
}

.cl_margin {
	clear: both;
	margin-bottom: 1em;
}

.main_title_img {
	width: 64em;
	width: 100%;
	height: auto;
	margin-top: 2em;
	margin-bottom: 2em;
}

.image_width_full {
	width: 64em;
	width: 100%;
	height: auto;
	margin-top: 1em;
	margin-bottom: 1em;
}

.image_width_half {
	width: 64em;
	width: 50%;
	height: auto;
	margin-top: 1em;
	margin-bottom: 1em;
	margin-left: auto;
	margin-right: auto;
}

.image_margin {
	margin: 1em;
}

p {
	font-family: 'Noto Sans JP', sans-serif!important;
	line-height: 180%;
}

/* プルダウンサイドメニュー */

.pulldown_lead {
	color: black;
	text-align: center;
	margin: 1em 0em 0em 0em;
	font-size: 1em;
}

.side_menu_block {
	background-color: rgb(247, 224, 131);
	/* コンテンツのカラーリングによって変更 */
	width: 100%;
	padding: 0.1em;
	margin-bottom: 1em;
}

.cp_ipselect {
	overflow: hidden;
	max-width: 40em;
	width: 90%;
	margin: 1em auto 2em;
	text-align: center;
}

.cp_ipselect select {
	width: 100%;
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
	background: rgb(226, 148, 2);
	/* コンテンツのカラーリングによって変更 */
}

.cp_ipselect select::-ms-expand {
	display: none;
}

.cp_ipselect.cp_sl05 {
	position: relative;
	border-radius: 2px;
	border-radius: 50px;
	padding: 0.3em;
	background: rgb(226, 148, 2);
	/* コンテンツのカラーリングによって変更 */
}

.cp_ipselect.cp_sl05::before {
	position: absolute;
	top: 1em;
	right: 0.8em;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #ffffff;
	pointer-events: none;
}

.cp_ipselect.cp_sl05 select {
	padding: 8px 38px 8px 8px;
	color: #ffffff;
}

/* 2カラム */

*, *:before, *:after {
	box-sizing: border-box;
}

.col_2 {
	width: 100%;
	display: flex;
	display: -ms-flexbox;
	/* IE */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	/* IE */
	background-color: #FFF;
	/* 背景の色 */
	color: #000;
	/* 文字の色 */
	text-align: left;
	/* 内容は左配置を基本とする */
	margin-bottom: 1em;
}

.col_2>div {
	width: 50%;
	padding: 10px;
	border: 1px solid rgba(232, 232, 232, 1.00);
	/* ボーダー色設定など */
	background-color: rgba(255, 253, 244, 1.00);
	/* 背景色 */
}

@media screen and (max-width: 640px) {
	.col_2>div {
		width: 100%;
	}
}

/* 3カラム */

*, *:before, *:after {
	box-sizing: border-box;
}

.col_3 {
	width: 100%;
	display: flex;
	display: -ms-flexbox;
	/* IE */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	/* IE */
	background-color: #FFF;
	/* 背景の色 */
	color: #000;
	/* 文字の色 */
	text-align: left;
	/* 内容は左配置を基本とする */
	margin-bottom: 1em;
}

.col_3>div {
	width: 33.33333%;
	padding: 10px;
	border: 1px solid rgba(232, 232, 232, 1.00);
	/* ボーダー色設定など */
	background-color: rgba(255, 253, 244, 1.00);
	/* 背景色 */
}

@media screen and (max-width: 1090px) {
	.col_3>div {
		width: 50%;
	}
}

@media screen and (max-width: 640px) {
	.col_3>div {
		width: 100%;
	}
}

/* 1カラム */

*, *:before, *:after {
	box-sizing: border-box;
}

.col_1 {
	width: 100%;
	display: flex;
	display: -ms-flexbox;
	/* IE */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	/* IE */
	background-color: #FFF;
	/* 背景の色 */
	color: #000;
	/* 文字の色 */
	text-align: left;
	/* 内容は左配置を基本とする */
	margin-bottom: 1em;
}

.col_1>div {
	width: 100%;
	padding: 10px;
	border: 1px solid rgba(232, 232, 232, 1.00);
	/* ボーダー色設定など */
	background-color: rgba(255, 253, 244, 1.00);
	/* 背景色 */
}

@media screen and (max-width: 1090px) {
	.col_1>div {
		width: 100%;
	}
}

@media screen and (max-width: 640px) {
	.col_1>div {
		width: 100%;
	}
}

/* 画像回り込み */

p.img_text {
	margin-bottom: 1em;
	line-height: 1.2em;
	text-align: left;
	margin-top: 20px;
}

figure {
	float: left;
	margin: 10px 10px 10px 0;
	width: 40%;
}

figure img {
	max-width: 100%;
}

@media screen and (max-width: 640px) {
	p.img_text {
		margin-bottom: 1em;
		line-height: 1.2em;
		text-align: left;
		margin-top: 30px;
	}
	figure {
		float: left;
		margin: 10px 10px 10px 0;
		width: 20%;
	}
	figure img {
		max-width: 100%;
	}
}

/* 基本テキストCSS */

.title_big {
	font-size: 1.5em!important;
	font-weight: 800;
	margin: 0.2em;
}

.title_middle {
	font-size: 1.2em!important;
	font-weight: 800;
	margin: 0.2em;
}

.title_normal {
	font-size: 1em!important;
	font-weight: 800;
	margin: 0.2em;
}

.lead_st {
	font-weight: 800;
	line-height: 180%;
	margin: 1em;
}

.lead01 {
	line-height: 180%;
	margin: 1em;
}

.lead02 {
	line-height: 180%;
	margin: 1em;
}

.font_red {
	color: red;
}

/* spanのみで使用 */

.font_blue {
	color: blue;
}

/* spanのみで使用 */

.font_green {
	color: green;
}

/* spanのみで使用 */

/*======================================================================================*/

/* 以下page unique */


/* プルダウンサイドメニュー　マガジンスクエア用 */

.pulldown_lead_ms {
	color: black;
	text-align: center;
	margin: 1em 0em 0em 0em;
	font-size: 1em;
}

.side_menu_block_ms {
	background-color: rgb(255, 249, 224);
	/* コンテンツのカラーリングによって変更 */
	width: 100%;
	padding: 0.1em;
	margin-top: 3em;
	margin-bottom: 1em;
}

.cp_ipselect_ms {
	overflow: hidden;
	max-width: 40em;
	width: 90%;
	margin: 0.5em auto 2em;
	text-align: center;
}

.cp_ipselect_ms select {
	width: 100%;
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
	background: rgb(122, 8, 8);
	/* コンテンツのカラーリングによって変更 */
}

.cp_ipselect_ms select::-ms-expand {
	display: none;
}

.cp_ipselect_ms.cp_sl05_ms {
	position: relative;
	border-radius: 2px;
	border-radius: 50px;
	padding: 0.3em;
	background: rgb(122, 8, 8);
	/* コンテンツのカラーリングによって変更 */
}

.cp_ipselect_ms.cp_sl05_ms::before {
	position: absolute;
	top: 1em;
	right: 0.8em;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #ffffff;
	pointer-events: none;
}

.cp_ipselect_ms.cp_sl05_ms select {
	padding: 8px 38px 8px 8px;
	color: #ffffff;
}




/* 追加テキストCSS */

.choice_title {
	font-size: 0.8em;
	font-weight: bold;
	color: red;
	margin-bottom: 0.5em;
	text-align: center;
	border: 1px solid #cccccc;
	border-radius: 15px;
	background-color: #cccccc;
}

.choice_text {
	font-size: 0.8em;
	margin-bottom: 0.5em;
	margin-left: 2em;
}

.font_st {
	font-weight: 800;
}