@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Rubik:wght@400;500&display=swap');

.sp_block{
	display: block;
}
.sp_none{
	display: none;
}
@media (min-width: 769px) {
	.sp_block{
		display: none;
	}
	.sp_none{
		display: block;
	}
}

/*---------------------------------------------------------
	base
---------------------------------------------------------*/
html{
	background: #fff;
}

body{
}

.main{
	font-family: 'Noto Sans JP', sans-serif;
	color: #333;
	padding-top: 60px;
}

.container{
	max-width: 1200px;
	margin: 0 auto;
}

.page_ttl{
	font-size: 1.2em;
	margin: 0 0 20px;
}
.page_ttl::before{
	content: '';
	width: 1em;
	height: 1em;
	background: #FE012D;
	display: inline-block;
	margin-right: 0.5em;
	border-radius: 2em;
	vertical-align: -0.12em;
}
.page_ttl.under_line{
	border-bottom: 1px solid #E7E7EA;
	padding-bottom: 1.1em;
}

.page_ttl span{
	color: #043785;
	font-weight: normal;
	font-size: 17px;
	display: block;
	margin: 11px 0 0;
}

.en{
	font-family: 'Rubik', sans-serif;
	font-weight: 400;
}

.contents_wrap{
	display: flex;
	justify-content: space-between;
	padding: 3em 0 5em;
	flex-wrap: wrap;
}
.main_contents{
	flex: 0 0 100%;
	max-width: 100%;
	margin-bottom: 4em;
}
.sidebar{
	flex: 0 0 100%;
	max-width: 100%;
}
footer{
	border-top: 1px solid #707070;
	font-size: 10px !important;
}
.main a{
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.main .btn{
	text-align: center;
	margin: 5em 0 0;
}
.main .btn a{
	position: relative;
	min-width: 15em;
	color: #FE012D;
	font-size: 1.05em;
	padding: 1.4em 2em;
	border: 2px solid #FE012D;
	border-radius: 5em;
	display: inline-block;
	text-decoration: none;
}
.main .btn a::after{
	content: '';
	position: absolute;
	right: 1.3em;
	top: 50%;
	width: 0.3em;
	height: 0.3em;
	margin-top: -0.15em;
	display: block;
	border-right: 2px solid #FE012D;
	border-bottom: 2px solid #FE012D;
	transform: rotate(-45deg);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

@media (min-width: 769px) {
	.main_contents{
		flex: 0 0 76%;
		max-width: 76%;
		margin-bottom: 0;
	}
	footer{
		font-size: 12px !important;
	}
	.sidebar{
		flex: 0 0 20%;
		max-width: 20%;
	}
	.main a:hover{
		opacity: 0.7;
	}
	.btn a:hover{
		opacity: 1;
		background: #FE012D;
		color: #fff;
	}
	.btn a:hover::after{
		border-color: #fff;
	}
}

/*---------------------------------------------------------
	mainv
---------------------------------------------------------*/
.mainv{
	background: #FB4E71;
}
.mainv_ttl{
	color: #fff;
	font-size: 2.2em;
	font-family: 'Rubik', sans-serif;
	font-weight: 500;
	padding: 1.5em 0;
	text-align: center;
	vertical-align: -0.15em;
}

/*---------------------------------------------------------
	breadthumbs
---------------------------------------------------------*/
.breadthumbs{
	background: #F8F8F8;
}
.breadthumbs ul{
	display: flex;
	justify-content: flex-start;
	flex-wrap: nowrap;
}
.breadthumbs ul li{
	flex: 0 0 auto;
	padding: 1em 0;
	color: #767676;
	font-size: 0.8em;
	line-height: 1.4;
}
.breadthumbs ul li::after{
	content: '';
	width: 0.5em;
	height: 0.5em;
	display: inline-block;
	margin: 0 0.7em 0 0.6em;
	border-right: 1px solid #AFAFAF;
	border-bottom: 1px solid #AFAFAF;
	transform: rotate(-45deg);
	vertical-align: middle;
}
.breadthumbs ul li:last-child::after{
	display: none;
}
.breadthumbs ul li:last-child{
	width: 90%;
}
.breadthumbs a{
	color: #FE012D;
	display: inline-block;
	text-decoration: none;
}


/*---------------------------------------------------------
	news
---------------------------------------------------------*/
.news_date{
	border: 1px solid #E7E7EA;
	border-radius: 5px;
	overflow: hidden;
	margin-bottom: 3em;
}
.news_date:last-child{
	margin-bottom: 0;
}
.news_date_ttl{
	background: #F8F8F8 url('../img/icon_date.svg') no-repeat center left 3em / 1em;
	padding: 1em 4.8em;
}
.news_date_ttl .en{
	letter-spacing: 0.05em;
	font-size: 1.1em
}
.news_list{
	padding: 0  3em;
}
.news_item{
	display: flex;
	justify-content: space-between;
	border-bottom: 1px dotted #E7E7EA;
	padding: 2em 0;
	color: #333;
	text-decoration: none;
}
.news_item:last-child{
	border: none;
}
.news_img{
	flex: 0 0 35%;
	max-width: 35%;
}
.news_detail{
	flex: 0 0 62%;
	max-width: 62%;
}
.news_ttl{
	font-size: 1.4em;
	line-height: 1.6;
	margin-bottom: 0.5em;
	font-weight: 400;
}
.news_txt{
	font-size: 0.95em;
	color: #767676;
	line-height: 1.8;
}

/*---------------------------------------------------------
	news_entry
---------------------------------------------------------*/
.news_entry{

}
.news_entry_img_main video{
	width: 100%;
	margin-bottom: 2em;
}
.news_entry_ttl{
	padding: 0 0 2em;
	border-bottom: 1px solid #E7E7EA;
	margin-bottom: 2em;
	padding-left: 2em;
}
.news_entry_ttl .page_ttl{
	position: relative;
	font-size: 2.2em;
	line-height: 1.4;
	font-weight: bold;
	margin-bottom: 0.4em;
	font-weight: 400;
}
.news_entry_ttl .page_ttl::before{
	position: absolute;
	left: -1em;
	top: 0.45em;
	width: 0.5em;
	height: 0.5em;
}
.news_entry_date{
	font-size: 0.85em;
	color: #767676;
}
.news_entry_date .en{
	font-size: 1.1em;
	letter-spacing: 0.05em;
}
.news_entry_date svg{
	display: inline-block;
	height: 1em;
	vertical-align: -0.2em;
}

.news_entry .news_entry_img{
	margin: 2.5em 0 2em;
}

.news_entry .entry{
	line-height: 2;
}
.news_entry .entry p{
	margin-bottom: 1.4em;
}

/*---------------------------------------------------------
	sidebar
---------------------------------------------------------*/
.sidebar{

}

.sidebar .widget{
	margin-bottom: 3em;
}
.sidebar .widget:last-child{
	margin-bottom: 0;
}
.widget_news ul{
	margin-top: 1.5em;
}
.widget_news li{
	position: relative;
	margin-bottom: 1em;
}
.widget_news li:last-child{
	margin-bottom: 0;
}
.widget_news li a{
	padding: 0 0 0 1em;
	display: block;
	text-decoration: none;
	color: #333;
	font-size: 0.95em;
	line-height: 1.6;
}
.widget_news li a::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0.6em;
	display: block;
	width: 0.5em;
	height: 2px;
	background: #FE012D;
}
.widget_news li a::after{
	content: '';
	display: inline-block;
	width: 0.8rem;
	height: 1em;
	background: url('../img/icon_targetblank.svg') no-repeat center center / 0.7rem auto;
	margin-left: 0.4em;
	vertical-align: 0;
}

.sidebar .widget_img{
	margin-bottom: 4em;
}
.widget_img_item,
.widget_ad_item{
	margin-bottom: 0.5em;
}
.widget_img_item:last-child,
.widget_ad_item:last-child{
	margin-bottom: 0;
}



/*---------------------------------------------------------
	banner
---------------------------------------------------------*/
.banner_sp{
	display: none;
}
.banner_pc{
	display: block;
	margin: 0 auto 5em;
}
.ad_sp{
	display: none;
}


/*---------------------------------------------------------
	広告バナー
---------------------------------------------------------*/
.bannerPC_728x90,
.bannerPC_300x250,
.bannerSP_320x50,
.bannerSP_300x250{
	background: #eee;
	margin: 0 auto;
}
.bannerPC_728x90{
	width: 728px;
	height: 90px;
	margin-bottom: 5em;
}
.bannerPC_300x250{
	width: 300px;
	height: 250px;
	margin-bottom: 0.5em;
}
.bannerSP_320x50{
	width: 320px;
	height: 50px;
	margin-bottom: 1.5em;
}
.bannerSP_300x250{
	width: 300px;
	height: 250px;
	margin-bottom: 1.5em;
}

.bannerSP_wrap .bannerSP_320x50{
	margin-bottom: 1em;
}

.bannerSP_300x250_wrap{
	flex: 0 0 100%;
	max-width: 100%;
}
.bannerSP_300x250_wrap .bannerSP_300x250{
	margin-bottom: 3em;
}

.main_contents .bannerPC_728x90{
	margin-bottom: 3em;
}
.main_contents .bannerSP_300x250{
	margin: 2em auto;
}
.main_contents .sp_block:last-child .bannerSP_300x250{
	margin: 2em auto -1em;
}

.news_entry .bannerPC_728x90{
	margin-top: 3em;
}
.news_entry .bannerSP_300x250{
	margin-top: 2em;
}

.sidebar .bannerSP_wrap .bannerSP_320x50{
	margin: -1em auto 0;
}

.koukoku_pc{
	margin: 30px auto;
}

.koukoku_sp{
	display: none;
}

@media (max-width: 1000px) {
	.container{
		max-width: 100%;
		padding-left: 2em !important;
		padding-right: 2em !important;
		box-sizing: border-box;
	}
	.banner_sp{
		width: calc(100% + 4em);
		margin: 0 -2em;
	}
	.banner_sp img{
		width: 100%;
	}
}

/*---------------------------------------------------------
	スマホ
---------------------------------------------------------*/
@media (max-width: 769px) {


	/*---------------------------------------------------------*/
	.contents_wrap{
		padding: 1.5em 0 5em;
	}
	.page_ttl{
		font-size: 25px;
	}
	.page_ttl span{
		font-size: 14px;
		margin: 5px 0 0;
	}
	.main .btn{
		margin: 3em 0 0;
	}

/*---------------------------------------------------------
	mainv
---------------------------------------------------------*/
	.mainv{
	}
	.mainv_ttl{
		padding: 1.2em 0;
	}

/*---------------------------------------------------------
	breadthumbs
---------------------------------------------------------*/

	.breadthumbs ul li{
		padding: 1em 0;
		font-size: 11px;
	}
	.breadthumbs ul li:last-child{
		width: 66%;
	}


/*---------------------------------------------------------
	news_entry
---------------------------------------------------------*/
	.news_entry_ttl .page_ttl{
		font-size: 1.8em;
	}

/*---------------------------------------------------------
	sidebar
---------------------------------------------------------*/
	.sidebar{
		margin-top: 5em;
	}

	.widget_img,
	.widget_ad{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.widget_ad{
		justify-content: center;
	}
	.widget_img_item,
	.widget_ad_item{
		flex: 0 0 48%;
		max-width: 48%;
		text-align: center;
	}
	.widget_img_item img,
	.widget_ad_item img{
		display: inline-block;
	}
	.widget_img_item.sp_full{
		flex: 0 0 100%;
		max-width: 100%;
		margin-top: 2em;
	}
	.widget_ad_item{
		flex: 0 0 70%;
		max-width: 70%;
	}
/*---------------------------------------------------------
	banner
---------------------------------------------------------*/
	.banner_sp{
		display: block;
	}
	.banner_pc{
		display: none;
	}
	.ad_sp{
		display: block;
		width: 70%;
		margin: 4em auto 0;
		text-align: center;
	}
	.ad_sp a{
		display: inline-block;
	}

	.koukoku_pc{
		display: none;
	}
	.koukoku_sp{
		display: block;
		margin: 20px auto;
		text-align: center;
	}

}


/*---------------------------------------------------------
	osusume
---------------------------------------------------------*/
.osusume{
	margin-bottom: 5em;
}
._popIn_recommend_footer{
	border: none;
}

@media (max-width: 480px) {
	.container{
		padding-left: 1em !important;
		padding-right: 1em !important;
	}

	.page_ttl{
		font-size: 1.2em;
	}
	.page_ttl span{
		font-size: 14px;
		margin: 5px 0 0;
	}

/*---------------------------------------------------------
	news
---------------------------------------------------------*/
	.news_date{
		margin-bottom: 1.5em;
	}
	.news_date_ttl{
		background-position: center left 1em;
		padding: 1em 2.7em;
		font-size: 15px;
	}
	.news_date_ttl .en{
		font-size: 16px;
	}
	.news_list{
		padding: 0 1em;
	}
	.news_item{
		padding: 1em 0;
		display: table;
	}
	.news_img{
		display: table-cell;
		max-width: 46%;
		width: 46%;
		vertical-align: middle;
	}
	.news_detail{
		display: table-cell;
		max-width: 54%;
		width: 54%;
		padding-left: 4%;
		vertical-align: middle;
	}
	.news_ttl{
		display: inline-block;
		font-size: 15px;
		margin-bottom: 0;
	}
	.news_txt{
		display: none;
	}

/*---------------------------------------------------------
	news_entry
---------------------------------------------------------*/
	.news_entry_img_main video{
		margin-bottom: 1em;
	}
	.news_entry_ttl{
		padding: 0 0 1em 1.5em;
		margin-bottom: 1.5em;
	}
	.news_entry_ttl .page_ttl{
		font-size: 20px;
	}
	.news_entry_ttl .page_ttl::before{
    width: 0.6em;
    height: 0.6em;
	}
	.news_entry .news_entry_img{
		margin: 1.5em 0 1em;
	}
	.news_entry .entry{
		font-size: 15px;
	}

/*---------------------------------------------------------
	sidebar
---------------------------------------------------------*/
	.sidebar{
		margin-top: 4em;
	}
/*---------------------------------------------------------
	banner
---------------------------------------------------------*/
	.banner_sp{
		width: calc(100% + 2em);
		margin: 0 -1em;
	}

}



