@charset "utf-8";

/* ******************************************************************

	--common.css--

	0. BoxModel change

	1. Common setting
		1-1. Reset styles
		1-2. BoxModel styles
		1-3. Text styles
		1-4. Heading styles
		1-5. Button styles
		1-6. List styles
		1-7. Table styles
		1-8. Other styles
		1-9. Form styles
		1-99. VisualFormattingModel styles

	99. SP

****************************************************************** */

/*==================================================================
	0. BoxModel change
===================================================================*/
*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/*==================================================================
	1. Common setting
===================================================================*/
/* ------------------------------------------------------------------
	1-1. Reset styles
-------------------------------------------------------------------*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {
	margin: 0;
	padding: 0;
}
fieldset {
	border: 0;
}
img {
	border-style: none;
	vertical-align: top;
	max-width: 100%;
	height: auto;
}
ol,ul {
	list-style: none;
}
caption {
	text-align: left;
}
h1,h2,h3,h4,h5,h6 {
	font-size: 100%;
}
q:before,q:after {
	content: '';
}
abbr,acronym {
	border: 0;
}
table {
	width: 100%;
}

/* ------------------------------------------------------------------
	1-2. BoxModel styles
-------------------------------------------------------------------*/
.pt_00 { padding-top: 0 !important;}
.pt_10 { padding-top: 10px !important;}
.pt_20 { padding-top: 20px !important;}
.pt_30 { padding-top: 30px !important;}
.pt_40 { padding-top: 40px !important;}
.pt_50 { padding-top: 50px !important;}
.pb_00 { padding-bottom: 0 !important;}
.pb_10 { padding-bottom: 10px !important;}
.pb_20 { padding-bottom: 20px !important;}
.pb_30 { padding-bottom: 30px !important;}
.pb_40 { padding-bottom: 40px !important;}
.pb_50 { padding-bottom: 50px !important;}
.mt_00 { margin-top: 0 !important;}
.mt_10 { margin-top: 10px !important;}
.mt_20 { margin-top: 20px !important;}
.mt_30 { margin-top: 30px !important;}
.mt_40 { margin-top: 40px !important;}
.mt_50 { margin-top: 50px !important;}
.mb_00 { margin-bottom: 0 !important;}
.mb_10 { margin-bottom: 10px !important;}
.mb_20 { margin-bottom: 20px !important;}
.mb_30 { margin-bottom: 30px !important;}
.mb_40 { margin-bottom: 40px !important;}
.mb_50 { margin-bottom: 50px !important;}

/* ------------------------------------------------------------------
	1-3. Text styles
-------------------------------------------------------------------*/
.f12 { font-size: 12px;}
.f14 { font-size: 14px;}
.f16 { font-size: 16px;}
.f18 { font-size: 18px;}
.f20 { font-size: 20px;}
.f24 { font-size: 24px; line-height: 1.4;}
.f30 { font-size: 30px; line-height: 1.4;}
.f40 { font-size: 40px; line-height: 1.4;}
.lh12 { line-height: 1.2;}
.lh14 { line-height: 1.4;}
.lh16 { line-height: 1.6;}
.lh18 { line-height: 1.8;}
.lh20 { line-height: 2;}

.f_color_base { color: #73C4BD;}/* MAIN_COLOR */
.f_color_red { color: #FF0000;}

.align_left { text-align: left;}
.align_right { text-align: right;}
.align_center { text-align: center;}

.highlight_box_01 {
	background: #F2F2F2;
	padding: 20px;
}

/* ------------------------------------------------------------------
	1-4. Heading styles
-------------------------------------------------------------------*/
.heading { }
.heading_parts {
	margin-left: auto;
}

/* もっと見るパーツ */
.heading_parts .more {
	font-weight: bold;
}
.heading_parts .more:after {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f054";
	margin-left: 5px;
	color: #1648AA;
}

/* ------------------------------------
	Heading（type1）
------------------------------------*/
.heading_type_01 {
	margin-bottom: 30px;
}
.heading_type_01 .heading_title {
	text-align: center;
	font-size: 30px;
	color: #1648AA;
}
.heading_type_01 .heading_title i {
	margin-right: 20px;
}

/* ------------------------------------
	Heading（type2）
------------------------------------*/
.heading_type_02 {
	border-top: 2px solid #1648AA;
	border-bottom: 2px solid #1648AA;
	padding: 5px 0;
	margin-bottom: 20px;
}
.heading_type_02 .heading_title {
	text-align: center;
	font-size: 24px;
	color: #1648AA;
}

/* ------------------------------------
	Heading（type3）
------------------------------------*/
.heading_type_03 {
	/*border-bottom: 1px solid #1648AA;*/
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	/*margin-bottom: 20px;*/
}
.heading_type_03 .heading_title {
	font-size: 20px;
	color: #1648AA;
}

/* ------------------------------------------------------------------
	1-5. Button styles
-------------------------------------------------------------------*/
.contents_btn {
	text-align: center;
	padding: 20px 0;
}
.contents_btn_link { }
.contents_btn_link a {
	background: #1648AA;
	border-radius: 50px;
	display: block;
	padding: 8px 50px;
	text-align: center;
	color: #FFF;
	text-decoration: none;
	position: relative;
}
.contents_btn_link a:after {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f101";
	position: absolute;
	top: 50%;
	right: 20px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	color: #FFF;
}
.contents_btn_link a:hover {
	background: #FFBB00;
	color: #FFF;
}
.contents_btn_link a:hover:after {
	color: #FFF;
}

/* ------------------------------------
	幅可変タイプ
------------------------------------*/
.contents_btn-flex { }
.contents_btn-flex .contents_btn_link a {
	display: inline-block;
	width: auto;
}

/* ------------------------------------
	幅固定タイプ
------------------------------------*/
/*
.contents_btn-fix { }
.contents_btn-fix .contents_btn_link a {
	width: 320px;
	margin: 0 auto;
}
*/

/* ------------------------------------
	ボタン（グレー）
------------------------------------*/
/*
.contents_btn_link_type_02 { }
.contents_btn_link_type_02 a {
	background: #B6BFC2;
	border: 1px solid #B6BFC2;
}
.contents_btn_link_type_02 a:hover {
	background: #DEE4E6;
	border: 1px solid #DEE4E6;
	color: #333;
}
*/

/* ------------------------------------------------------------------
	1-6. List styles
-------------------------------------------------------------------*/

/* ------------------------------------------------------------------
	1-7. Table styles
-------------------------------------------------------------------*/
/*
.th_col2 {
	width: 50%;
}
.th_col3 {
	width: 33.3%;
}
.th_col4 {
	width: 25%;
}
.th_col5 {
	width: 20%;
}
.th_col6 {
	width: 16.7%;
}
.th_col7 {
	width: 14.3%;
}
.th_col8 {
	width: 12.5%;
}
.th_col9 {
	width: 11.1%;
}
.th_col10 {
	width: 10%;
}
*/

/* ------------------------------------------------------------------
	1-8. Other styles
-------------------------------------------------------------------*/
/*-------------------------------*/
/*	PAGETOP
/*-------------------------------*/
.page_top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 10;
}
.page_top a {
	background: #1648AA;
	padding: 20px 0;
	text-align: center;
	display: block;
	width: 80px;
	font-size: 12px;
	color: #FFF;
	text-decoration: none;
}
.page_top a:hover {
	background: #FFBB00;
	color: #333;
}
.page_top i {
	font-size: 20px;
	vertical-align: middle;
}

/*-------------------------------*/
/*	ページネーション
/*-------------------------------*/
.wp-pagenavi {
	text-align: center;
	margin: 40px 0;
	font-size: 0;
}
.wp-pagenavi a,
.wp-pagenavi span {
	display: inline-block;
	background: #F2F2F2;
	color: #333;
	border-radius: 5px;
	/*border: none;*/
	text-decoration: none;
	padding: 15px;
	margin: 4px;
	font-size: 16px;
	font-weight: bold;
	line-height: 1;
}
.wp-pagenavi a:hover {
	background: #1648AA;
	color: #FFF;
}
.wp-pagenavi .current {
	background: #9A9A9A;
	color: #FFF;
}
.wp-pagenavi .extend {
	background: none;
}

/*-------------------------------*/
/*	記事ナビゲーション
/*-------------------------------*/
.post_nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 50px 0 30px 0;
}
.post_nav a {
	display: block;
	font-weight: bold;
	line-height: 1;
	text-decoration: none;
}
.post_nav a.back {
	background: #F2F2F2;
	border-radius: 5px;
	padding: 15px 30px;
	margin: 0 60px;
	color: inherit;
}
.post_nav a.back:hover{
	background: #1648AA;
	color: #FFF;
}

/* ------------------------------------------------------------------
	1-9. Form styles
-------------------------------------------------------------------*/
input[type="text"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	font-family: inherit;
	/*font-size: 16px;*/
	/*line-height: 1.4;*/
	vertical-align: middle;
}
/*-------------------------------*/
/*	オートフィル時の背景色を無効に
/*-------------------------------*/
input:-webkit-autofill {
	/* 色はinput要素の背景色（ここでは#fff）にそろえる */
	box-shadow: 0 0 0px 999px #FFF inset;
}

/*-------------------------------*/
/*	placeholder
/*-------------------------------*/
input::-webkit-input-placeholder {
	color: #B6BFC2;
}
input::-moz-placeholder {
	color: #B6BFC2;
	opacity: 1;
}
input:-ms-input-placeholder {
	color: #B6BFC2;
}

/* ------------------------------------------------------------------
	1-99. VisualFormattingModel styles
-------------------------------------------------------------------*/
.pc_block {
	display: block !important;
}
.pc_inline {
	display: inline-block !important;
}
.sp_block {
	display: none !important;
}
.sp_inline {
	display: none !important;
}

/* ------------------------------------
	CLEARFIX
------------------------------------*/
.movie_item:after,
.article_body:after,
.article_movie_body:after,
.cf:after {
	content: "";
	display: block;
	clear: both;
}















/*==================================================================
	99 SP
===================================================================*/

@media only screen and (max-width: 640px) {
/*==================================================================
	1. Common setting
===================================================================*/
/* ------------------------------------------------------------------
	1-2. BoxModel styles
-------------------------------------------------------------------*/
.pt_00 { padding-top: 0 !important;}
.pt_10 { padding-top: 2% !important;}
.pt_20 { padding-top: 4% !important;}
.pt_30 { padding-top: 6% !important;}
.pt_40 { padding-top: 8% !important;}
.pt_50 { padding-top: 10% !important;}
.pb_00 { padding-bottom: 0 !important;}
.pb_10 { padding-bottom: 2% !important;}
.pb_20 { padding-bottom: 4% !important;}
.pb_30 { padding-bottom: 6% !important;}
.pb_40 { padding-bottom: 8% !important;}
.pb_50 { padding-bottom: 10% !important;}
.mt_00 { margin-top: 0 !important;}
.mt_10 { margin-top: 2% !important;}
.mt_20 { margin-top: 4% !important;}
.mt_30 { margin-top: 6% !important;}
.mt_40 { margin-top: 8% !important;}
.mt_50 { margin-top: 10% !important;}
.mb_00 { margin-bottom: 0 !important;}
.mb_10 { margin-bottom: 2% !important;}
.mb_20 { margin-bottom: 4% !important;}
.mb_30 { margin-bottom: 6% !important;}
.mb_40 { margin-bottom: 8% !important;}
.mb_50 { margin-bottom: 10% !important;}

/* ------------------------------------------------------------------
	1-3. Text styles
-------------------------------------------------------------------*/
.f12 { font-size: 1.875vw;}
.f14 { font-size: 2.1875vw;}
.f16 { font-size: 2.5vw;}
.f18 { font-size: 2.8125vw;}
.f20 { font-size: 3.125vw;}
.f24 { font-size: 3.75vw;}
.f30 { font-size: 4.6875vw;/* line-height: 1.4;*/}
.f40 { font-size: 6.25vw;/* line-height: 1.4;*/}
	
.highlight_box_01 {
	padding: 3%;
}
	
/* ------------------------------------------------------------------
	1-4. Heading styles
-------------------------------------------------------------------*/
.heading_parts .more {
	font-size: 3.13vw;
}

/* ------------------------------------
	Heading（type1）
------------------------------------*/
.heading_type_01 {
	margin-bottom: 3%;
}
.heading_type_01 .heading_title {
	font-size: 4.69vw;
}

/* ------------------------------------
	Heading（type2）
------------------------------------*/
.heading_type_02 {
	padding: 2% 0;
	margin-bottom: 3%;
}
.heading_type_02 .heading_title {
	font-size: 4.69vw;
}

/* ------------------------------------
	Heading（type3）
------------------------------------*/
.heading_type_03 {
	padding-bottom: 2%;
	/*margin-bottom: 3%;*/
}
.heading_type_03 .heading_title {
	font-size: 4.07vw;
}

/* ------------------------------------------------------------------
	1-5. Button styles
-------------------------------------------------------------------*/
.contents_btn {
padding: 3% 0;
}
.contents_btn_link a {
padding: 2% 8%;
font-size: 3.75vw;
}
.contents_btn_link a:after {
right: 5%;
}

/* ------------------------------------
	幅可変タイプ
------------------------------------*/
.contents_btn-flex .contents_btn_link a {
display: block;
}

/* ------------------------------------
	幅固定タイプ
------------------------------------*/
/*
.contents_btn-fix .contents_btn_link a {
	width: 100%;
}
*/

/* ------------------------------------------------------------------
	1-6. List styles
-------------------------------------------------------------------*/

/* ------------------------------------------------------------------
	1-7. Table styles
-------------------------------------------------------------------*/

/* ------------------------------------------------------------------
	1-8. Other styles
-------------------------------------------------------------------*/
/*-------------------------------*/
/*	PAGETOP
/*-------------------------------*/
.page_top {
	bottom: 3%;
	right: 3%;
}
.page_top a {
	width: 40px;
	padding: 10px 0;
	font-size: 1.875vw;
}
.page_top span {
	display: none;
}
.page_top i {
	font-size: 3.75vw;
}
	
/*-------------------------------*/
/*	ページネーション
/*-------------------------------*/
.wp-pagenavi {
margin: 6% 0;
}
.wp-pagenavi a,
.wp-pagenavi span {
padding: 3%;
margin: 1%;
font-size: 2.82vw;
}

/*-------------------------------*/
/*	記事ナビゲーション
/*-------------------------------*/
.post_nav {
padding: 6% 0;
}
.post_nav a {
font-size: 2.82vw;
}
.post_nav a.back {
background: #1648AA;
padding: 4% 8%;
margin: 0 8%;
color: #FFF;
}
	
/* ------------------------------------------------------------------
	1-9. Form styles
-------------------------------------------------------------------*/
/*-------------------------------*/
/*	placeholder
/*-------------------------------*/
input::-webkit-input-placeholder {
	font-size: 14px;
}
	
/*-------------------------------*/
/*	text
/*-------------------------------*/
.form_text_01 {
width: 100%;
}

/*-------------------------------*/
/*	select
/*-------------------------------*/
.form_select_wrap::before {
	right: 10px;
}
.form_select {
	padding: 10px 30px 10px 10px;
}

/*-------------------------------*/
/*	checkbox
/*-------------------------------*/
.form_checkbox_parts {
	padding-left: 2em;
	margin-right: 2em;
	font-size: 2.5vw;
}
.form_checkbox_parts::before {
	width: 1.5em;
	height: 1.5em;
}
.form_checkbox:checked + .form_checkbox_parts::after {
	top: 0;
	left: 0.5em;
	width: 0.6em;
	height: 1.2em;
}
	
/*-------------------------------*/
/*	button
/*-------------------------------*/
.form_btn_wrap {
	margin: 5% 0;
}
.form_btn {
	padding: 3% 0;
	width: 100%;
	font-size: 2.5vw;
}

/* サイズ固定 */
.form_btn_fix {
	width: 100%;
}

	
/*-------------------------------*/
/*	同意
/*-------------------------------*/
.form_consent {
	margin: 5% 0;
}

/*-------------------------------*/
/*	assist
/*-------------------------------*/
.form_assist {
	margin-top: 1%;
	font-size: 2.5vw;
}
	
/*-------------------------------*/
/*	フォーム内各種文言
/*-------------------------------*/
.form_info {
	padding: 5%;
	font-size: 2.5vw;
}
.form_info_title {
	margin-bottom: 3%;
	font-size: 3.125vw;
}

/* ------------------------------------------------------------------
	1-99. VisualFormattingModel styles
-------------------------------------------------------------------*/
.pc_block {
	display: none !important;
}
.pc_inline {
	display: none !important;
}
.sp_block {
	display: block !important;
}
.sp_inline {
	display: inline-block !important;
}






}
