@charset "UTF-8";

/* Font */
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);


/* ------------------------------------------------------------------------- */
/* clear
/* ------------------------------------------------------------------------- */


/*要素のフォントサイズやマージン・パディングをリセットしています*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, var,
b, i,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
margin:0;
padding:0;
border:0;
outline:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
}

/*行の高さをフォントサイズと同じにしています*/
body {
line-height:1;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
display:block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています*/
nav ul {
list-style:none;
}

/*引用符の表示が出ないようにしています*/
q {
quotes:none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
q:before, q:after {
content:'';
content:none;
}

/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
margin:0;
padding:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
background-color:#ff9;
color:#333;
text-decoration:none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています
また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
background-color:#ff9;
color:#333; 
font-style:italic;
font-weight:bold;
}

/*テキストに打ち消し線が付くようにしています*/
del {
text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています
また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title], dfn[title] {
border-bottom:1px dotted;
cursor:help;
}

/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定しています*/
table {
border-collapse:collapse;
border-spacing:0;
}

/*テーブルのcaptionを太字・右揃えにしています。*/
table caption{
	font-weight:bold;
	text-align: left;
	line-height: 1.75rem;
}


/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
display:block;
height:1px;
border:0; 
border-top:1px solid #cccccc;
margin:1em 0;
padding:0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input, select {
vertical-align:middle;
}

/* iOSでのデフォルトスタイルをリセット */

input[type="submit"],
input[type="button"]{
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration{
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus{
  outline-offset: -2px;
}

input[type="search"]{
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}

input[type="search"]::-webkit-search-decoration{
  display: none;
}

input[type="search"]::focus{
  outline-offset: -2px;
}

/*プルダウン*/
select {
	padding-right: 20px !important;
	appearance: none;
	background: #fff url(image/icon_arrow_select.png) right center no-repeat;
	color: #333;
}

select::-ms-expand {
	display: none;/*IEでセレクトボックスを非表示*/
}

*,
*:before,
*:after {
  box-sizing: border-box;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}


/* ------------------------------------------------------------------------- */
/* base
/* ------------------------------------------------------------------------- */

*{
	padding: 0px;
	margin: 0px;
}


body{
	text-align:center;
	font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	-webkit-text-size-adjust: 100%;
	color: #333;
}

a{
	color: #044e87;
}

a img{
	vertical-align: bottom;
}

body{
	width: 100%;
	min-width: 320px;
}

/* PCのみ */
@media all and (min-width: 769px) {
	a, a img{
		-webkit-transition: 0.3s;
		-moz-transition: 0.3s;
		-o-transition: 0.3s;
		-ms-transition: 0.3s;
		transition: 0.3s;
	}
	
	a:hover, a:hover img{
		opacity: 0.7;
		filter: alpha(opacity=70);
		-ms-filter: "alpha( opacity=70 )";
	}
}


/* SPのみ */
@media all and (max-width: 768px) {
	img,
	table{
		max-width: 100%;
	}
	
}

/* layout
/* ------------------------------------------------------------------------- */
main{
	display: block;
	width: 100%;
	margin:72px auto 0;
	text-align:left;
	font-size: 14px;
	line-height: 1.5em;
}


/** header **/

header{
	width: 100%;
	top: 0;
	background-color: #0b4e85;
	text-align: center;
	z-index: 999;
}

@media only screen{
	header{
	position: fixed;/** 印刷時に固定メニューを表示させない **/
	}
}

header section{
	position: relative;
	width: calc(100% - 60px);
	height: 70px;
	margin: auto;
}

header h1{
	display: inline-block;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
}

header h1 span{
	display: block;
	background-image: url(image/logo.png);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
	text-align: left;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	transition: 0s;
	width: 235px;
	height: 43px;
	margin-top: 15px;
}


/* SPのみ */
@media all and (max-width: 768px) {
	header section{
		width: calc(100% - 20px);
	}
}


/** footer **/

footer{
	clear: both;
}

footer .footer_bottom{
	float: left;
	width: 100%;
	padding-bottom: 25px;
	background-color: #353535;
}

footer .footer_bottom table{
	width: calc(100% - 40px);
	margin: auto;
	padding:10px 0;
	color: #fff;
	font-size: 12px;
	font-weight: 300;
}

footer .footer_bottom table img{
	margin: 0 0 10px 0;
}

footer .footer_bottom table td{
	vertical-align: top;
	padding: 45px 10px 10px 25px;
	line-height: 1.5;
}

footer .footer_bottom table td:nth-child(1){
	text-align: left;
}

footer .footer_bottom table td:nth-child(2){
	text-align: right;
}

footer .footer_bottom div{
	width: 100%;
/*	max-width: 1200px;*/
	color: #c1c1c1;
	margin: auto;
	padding: 0 0 20px 0;
	font-size: 11px;
}

footer .footer_bottom div span{
	display: block;
	line-height: 1.5;
}



/* PCのみ */
@media all and (min-width: 769px) {	
	footer .footer_bottom table td:nth-child(1){
		padding-top: 50px;
	}
	
	footer .footer_bottom div span{
		width: 480px;
		float: right;
		margin-top: -30px;
		margin-right: 20px;
	}
}


/* SPのみ */
@media all and (max-width: 768px) {
	footer .footer_bottom table{
		width: calc(100% - 10px);
	}
	
	footer .footer_bottom table td{
		padding: 20px 10px 10px 10px;
		vertical-align: bottom;
	}
	
	footer .footer_bottom div span{
		text-align: left;
		padding: 10px;
	}
}


/* ページトップ
/* ------------------------------------------------------------------------- */
/* pagetop */

#pagetop{
	display: none;
}

/* PCのみ */
@media all and (min-width: 769px) {	
	.pagetop{
		display: block;
		width: 86px;
		height: 86px;
		position: fixed;
		right: 0;
		bottom: 220px;
		background-image: url(image/btn_pagetop.png);
		text-align: left;
		text-indent: -9999px;
		outline: none;
	}
	
	.pagetop a{
		display: block;
		width: 86px;
		height: 86px;
		text-align: left;
		text-indent: -9999px;
		outline: none;
	}
	
		.pagetop:hover{
			opacity: 0.7;
			filter: alpha(opacity=70);
			-ms-filter: "alpha( opacity=70 )";
			transition: 0.3s;
		}
	
	.sp_pagetop{
		display: none !important;
	}
}


/* SPのみ */
@media all and (max-width: 768px) {
	.pagetop,
	.pagetop a{
		display: none;
	}
	
	.sp_pagetop{
		width: 100%;
		float: left;
		margin: 10px 0;
	}
	.sp_pagetop a{
		display: block;
		margin-right: 10px;
		width: 60px;
		height: 60px;
		float: right;
		background-image: url(image/btn_pagetop.png);
		background-size: contain;
		text-align: left;
		text-indent: -9999px;
		outline: none;		
	}

}


/* ------------------------------------------------------------------------- */
/* 共通
/* ------------------------------------------------------------------------- */

/* PCのみ */
@media all and (min-width: 769px) {
	.sp{
		display: none !important;
	}
	
	#container section{
		width: calc(100% - 20px);
		max-width: 1200px;
		margin: auto;
	}
	
	#contents #container section{
		width: calc(100% - 20px);
		padding: 0 0 150px;
		margin: auto;
	}
	
	#contents #container section .text_data{
		padding: 0 30px;
	}
}


/* SPのみ */
@media all and (max-width: 768px) {
	#container section{
		margin: 12px;
	}
	
	#contents #container section{
		margin: 12px;
		padding: 0 0 50px;
	}
}


/* パン屑
/* ------------------------------------------------------------------------- */

#breadline{
	width: calc(100% - 40px);
	margin: auto;
	background-image: url(image/bg_dot.png);
	text-align: left;
}

#breadline ul{
	width: 100%;
	margin: 15px 0 0 !important;
	padding: 0 10px;
	background-color: #fff;
}

#breadline ul li{
	display: inline;
	margin-bottom: 5px;
	color: #044e87;
	font-size: 13px;
}

#breadline ul li:after{
	content: "＞";
	margin: 0 15px;
}

#breadline ul li:last-child{
	margin-right: 20px;
}

#breadline ul li:last-child:after{
	content: none;
}

#breadline ul li:first-child:before{
	content: url(image/icon_nav_home.png);
	margin-right: 5px;
	vertical-align: middle;
	
}

#breadline ul li a{
	font-weight: bold;
}

/* SPのみ */
@media all and (max-width: 768px) {
	#breadline{
		width: calc(100% - 10px);
	}
}


/* タイトル
/* ------------------------------------------------------------------------- */

#contents #container .paeg_title{
	background-color: #edf9f9;
	line-height: 1.4;
	padding: 46px 0;
	color: #044e87;
	font-size: 36px;
	font-weight: bold;
	text-align: center;
	clear: both;
}

#contents #container h2,
#contents #container h3{
	line-height: 1.4;
	padding: 100px 0 30px;
	color: #044e87;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	clear: both;
}

#contents #container h2{
	padding-top: 50px;
}

/* SPのみ */
@media all and (max-width: 768px) {
	#contents #container .paeg_title{
		font-size: 28px;
	}
	#contents #container h2,
	#contents #container h3{
/*		padding: 10px;*/
		padding-bottom: 0;
		font-size: 24px;
	}
}



/* テキスト・レイアウト
/* ------------------------------------------------------------------------- */

#contents #container ul:not([class]){
	margin: 10px 0;
	margin-left: 1.5em;
}
#contents #container ol{
	margin: 10px 0;
	margin-left: 1.8em;
}

#contents #container img{
	max-width: 100%;
}

#contents #container .center{
	text-align: center;
}

#contents #container .center *{
	margin: auto;
}

.kome{
	padding-left: 1em;
	text-indent: -1em;
}

.color_red {
	color: #e70f0f;
}

.txt_small{
	font-size: 0.8em;
	margin-left: 0.5em;
	line-height: 1.5;
}

.txt_italic{
	font-style: italic;
}

.forcus{
	background-color: #ebebeb;
	display: block;
	max-width: 860px;
	margin: 30px auto;
	padding: 20px 30px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

/* PCのみ */
@media all and (min-width: 769px) {
	#contents #container .center-pc{
		text-align: center;
	}
	
	#contents #container .left{
		text-align: left;
		float: left;
		margin-right: 15px;
	}
	
	#contents #container .right{
		text-align: right;
		float: right;
		margin-left: 15px;
	}
}

/* SPのみ */
@media all and (max-width: 768px) {
	
	#contents #container .left,
	#contents #container .right{
		text-align: center;
	}
	
	#contents #container .left *,
	#contents #container .right *{
		margin: auto;
	}
	
	#contents #container .sp_align_left{
		text-align: left;
	}
}


/* basic
/* ------------------------------------------------------------------------- */

/* ボタン
/* ------------------------------------------- */

#contents #container .basic_btn02,
#contents #container .basic_btn03{
	margin: 15px 10px 15px 0;
	min-width: 100px;
}

.basic_btn02{
	display: inline-block;
	position: relative;
	clear: both;
	padding: 8px 50px;
	border: 1px solid #044e87;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	background-color: #044e87;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	line-height: 1.5;
	text-align: center;
}

.basic_btn02:after{
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	width: 20px;
	height: 20px;
	margin: auto;
	background-image: url(image/icon_arrow_white.png);
	background-size: contain;
	background-position: center;
}

.basic_btn03{
	display: inline-block;
	position: relative;
	clear: both;
	padding: 8px 50px;
	border: 1px solid #0B4E85;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	color: #0B4E85;
	text-decoration: none;
	font-size: 16px;
	line-height: 1.5;
	text-align: center;
}

.gaibu:after{
	content: url(image/icon_gaibu_blue.png);
	vertical-align: middle;
	margin-left: 5px;
}

#contents #container .basic_btn02.gaibu:after{
	content: url(image/icon_gaibu_blue_b.png);
	vertical-align: middle;
	background-image: none;
	right: 20px;
}
#contents #container .basic_btn02.gaibu:after,
#contents #container .basic_btn03.gaibu:after{
	content: url(image/icon_gaibu.png);
}


/* PCのみ */
@media all and (min-width: 769px) {
	
	.basic_btn03:hover{
		opacity: 1.0;
		filter: alpha(opacity=100);
		-ms-filter: "alpha( opacity=100 )";
		background-color: #0B4E85;
		color: #fff;
	}
	
	.basic_btn03:hover:after{
		background-image: url(image/icon_arrow_white.png);
	}

	#contents #container .basic_btn03.gaibu:hover:after{
		content: url(image/icon_gaibu.png);
	}
}


/* SPのみ */
@media all and (max-width: 768px) {
	.basic_btn03{
		background-color: #0B4E85;
		color: #fff;
	}
	
	#contents #container .basic_btn02,
	#contents #container .basic_btn03{
		display: block;
		padding: 8px 45px 8px 15px;
		width:  calc(100% - 60px);
		margin: 20px auto;
	}
	
}


/* テーブル
/* ------------------------------------------- */

/* PCのみ */
@media all and (min-width: 769px) {
	#contents #container table{
		max-width: 1020px;
	}
}


/* SPのみ */
@media all and (max-width: 768px) {
	#contents #container table{
		max-width: 100%;
	}
}



/* ------------------------------------------------------------------------- */
/* お問い合わせフォーム
/* ------------------------------------------------------------------------- */

/* お問い合わせフォーム共通
/* ------------------------------------------------------------------------- */

/* お問合せステップ*/
#contents #container ul.form_flow{
	margin: 0;
	text-align: center;
}

#contents #container ul.form_flow li{
	position: relative;
	display: inline-block;
	line-height: 3.5em;
	background-color: #9d9d9d;
	text-align: left;
	color: #fff;
	font-weight: 400;
	font-size: 16px;
}

#contents #container ul.form_flow li span{
		background-color: #fff;
		padding: 3px 4px 1px;
		margin: 0 20px;
		color: #9d9d9d;
		border-radius: 2px;
}

#contents #container ul.form_flow li:after{
	height: 0;
	content: "";
	position: absolute;
	margin: auto;
	border: 8px solid transparent;
}

#contents #container ul.form_flow li:last-child:after{
	content: none;
}

#contents #container ul.form_flow li.current{
	background-color: #42a5af;
}

#contents #container ul.form_flow li.current span{
	color: #42a5af;
}



/* PCのみ */
@media all and (min-width: 769px) {
	#contents #container ul.form_flow li{
		width: 215px;
		margin: 50px 1%;
	}
	
	#contents #container ul.form_flow li:after{
		right: -16px;
		top: 0;
		bottom: 0;
		border-left-color: #9d9d9d;
	}
	
	#contents #container ul.form_flow li.current:after{
		border-left-color: #42a5af;
	}
}

/* SPのみ */
@media all and (max-width: 768px) {
	#contents #container ul.form_flow{
		margin: 20px 0 40px;
	}	
	
	#contents #container ul.form_flow li{
		width: 100%;
		margin-bottom: 20px;
		font-size: 20px;
	}
	
	#contents #container ul.form_flow li:after{
		border-top-color: #9d9d9d;
		bottom: -16px;
		left: 45%;
	}
	
	#contents #container ul.form_flow li.current:after{
		border-top-color: #42a5af;
	}
}


/* フォーム*/
.form{
	width: 100%;
	max-width: 1020px;
	margin: 0 auto;
/*	text-align: center;*/
}

.form table{
	width: 100%;
	border-top: 1px solid #aaa;
	margin-bottom: 20px;
	table-layout: fixed;
}

.form table .bikou{
	display: block;
	font-size: 13px;
	font-weight: 300;
}

.form table th,
.form table td{
	padding: 20px;
	border-bottom: 1px solid #aaa;
	vertical-align: middle;
	box-sizing: border-box;
	text-align: left;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.form table th{
	width: 35%;
	background-color: #f5f4f3;
	text-align: center;
	background-image: url(image/bg_form_th.png), url(image/bg_form_th.png);
	background-repeat: repeat-x;
	background-position: top, bottom;
}

.form table th span{
	margin-left: 2em;
}

.form table th span.hissu{
	margin-left: 1em;
	color: #e70f0f;
}

.form input[type="text"],
.form input[type="tel"],
.form input[type="email"],
.form input[type="password"],
.form textarea{
	width: 100%;
	padding: 9.5px;
	line-height: 2;
	border: 1px solid #aaa;
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 14px;
	font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: 300;
	color: #333;
}


.form input[type="password"]{
	max-width: 400px;
}

/*IE10以降*/
/* http://msdn.microsoft.com/en-us/library/ie/hh772745(v=vs.85).aspx */
.form input[type="text"]:-ms-input-placeholder,
.form textarea:-ms-input-placeholder{
	color: #aaa;
}


.form input[type="radio"],
.form input[type="checkbox"]{
	margin-right: 5px !important;
	}

.form table .num{
	width: 80px !important;
}

.form .err {
	background-color: #FFE2E6;
	background-image: url(image/bg_form_th.png), url(image/bg_form_th.png);
	background-repeat: repeat-x;
	background-position: top, bottom;
}

.err_text{
	display: block;
	color: #e70f0f;
	font-size: 12px;
}

input[type="submit"] {
	-webkit-appearance: none;
}

.form_btn .basic_btn02#check[disabled]{
	background: #939393;
	border-color: #939393;
}
.form_btn input#check[disabled]:hover{
	opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha( opacity=100 )";
	cursor:default; /* 禁止カーソル */ 
}

.form_btn form{
	width: calc(50% - 10px);
	margin: 0 5px;
	float: left;
	text-align: center;
}

.form_btn form .basic_btn02.btn_return{
	background: #606060;
	border-color: #606060;
}


.form table select {
	width: 200px;
	margin: 0;
	padding: 9.5px;
	line-height: 2;
	border: 1px solid #aaa;
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 14px;
}

.form table select.auto{
	width: auto;
}

.form_btn .basic_btn02{
	border-radius: 30px;
}


/* PCのみ */
@media all and (min-width: 769px) {
	
	.form_btn .basic_btn02{
		width: 100%;
		max-width: 330px;
		cursor: pointer
	}

	.form_btn .basic_btn02:hover{
		opacity: 0.7;
		filter: alpha(opacity=70);
		transition: 0.3s;
	}
	
	.form_btn::after{
		content:" ";
		display:block;
		clear:both;
	}
}

/* SPのみ */
@media all and (max-width: 768px) {
	.form table th,
	.form table td{
		display: block;
		width: 100%;
		padding: 15px 10px;
		min-height: 50px;
	}

	.form input[type="text"],
	.form input[type="tel"],
	.form input[type="email"],
	.form input[type="password"],
	.form textarea{
		font-size: 16px;
	}
	.form table select {
		font-size: 16px;
	}
	
	.form table td label{
		display: inline-block;
		padding-left: 1.2em;
		text-indent: -1.2em;
	}
	
	#contents #container .form_btn .basic_btn02{
		width: 100%;
		max-width: 300px;
		text-align: center;
		margin: 40px auto;
		padding: 8px 15px 8px 15px;
	}
}


/* ログインフォーム
/* ------------------------------------------------------------------------- */
.login_pw{
	max-width: 500px;
	margin: 10px auto 0;
	padding: 40px 0;
	text-align: center;
}
.login_pw .err{
	padding-top: 5px;
}

.login_focus{
	margin: 100px auto 0;
	padding: 60px 40px;
}

	/* SPのみ */
@media all and (max-width: 768px) {
	.login_pw{
		padding: 15px 10px;
	}
	.login_focus{
		padding: 30px 20px;
	}
}

/* ------------------------------------------------------------------------- */
/* 動画視聴ページ
/* ------------------------------------------------------------------------- */


/* 共通
/* ------------------------------------------------------------------------- */

/* 動画詳細
/* ------------------------------------------- */
.movie dl.detail{
	margin: 1em 0;
}
.movie dl.detail dt{
	float: left;
}
.movie dl.detail dt:after{
	content: "：";
}
.movie dl.detail dd{
	padding-left: 3em;
	margin-bottom: 0.1em;
}

.movie dl.detail.detail_dt_3em dt{
	min-width: 3.8em;
}
.movie dl.detail.detail_dt_3em dd{
	padding-left: 3.8em;
}


/* お問い合わせ・資料請求
/* ------------------------------------------- */
.contact_dl{
	margin: 0 auto 0;
	padding-bottom: 10px;
	background-color: #044e87;
	border-radius: 3px;
}

.contact_dl dt{
	text-align: center;
	color: #fff;
	font-size: 22px;
	font-weight: bold;
	line-height: 2em;
	padding: 12px 0;
}

.contact_dl dd{
	background-color: #fff;
	margin: 0 10px;
	padding: 15px;
	color: #333;
}

.contact_dl dd table{
	margin: 20px;
	font-weight: bold;
	line-height: 2.0;
}

.contact_dl dd table img{
	vertical-align: middle;
	margin-right: 5px;
}

.contact_dl dd table .section{
	padding-left: 1em;
	background-image: url("image/icon_list.png");
	background-repeat: no-repeat;
	background-position: left 0.8em;
	font-size: 16px;
	color: #044e87;
}

.contact_dl dd table strong{
	display: block;
	font-size: 25px;
	line-height: 1.4;
	color: #044e87;
}

.contact_dl dd table strong span{
	display: inline-block;
}

.contact_dl dd table span{
	display: block;
}

.contact_dl dd table td span.btn a{
	display: block;
	max-width: 250px;
	padding: 5px 0;
	margin-top: 10px;
	font-size: 15px;
	background-color: #044e87;
	border-radius: 3px;
	color: #fff;
	text-decoration: none;
	text-align: center;
}

/* PCのみ */
@media all and (min-width: 861px) {
	.contact_dl{
		width: 100%;
		max-width: 1080px;
	}
	
	.contact_dl dd table td{
		padding: 0 20px;
		width: 50%;
		vertical-align: middle;
	}
	
	.contact_dl dd table td:nth-child(1){
		border-right: 2px solid #044e87;
		padding-right: 60px;
	}
	.contact_dl dd table td:nth-child(2){
		padding-left: 60px;
	}
}


/* SPのみ */
@media all and (max-width: 860px) {
	.contact_dl{
		margin: 20px auto;
		padding-bottom: 5px;
	}

	.contact_dl dt{
		font-size: 20px;
	}
	.contact_dl dd{
		margin: 0 5px;
	}
	.contact_dl dd p{
		text-align: left;
	}
	.contact_dl dd table{
		margin: 5px;
	}
	.contact_dl dd table td{
		display: block;
		padding: 20px 5px;
	}
	
	.contact_dl dd table td:nth-child(1){
		padding-top: 0;
		border-bottom: 1px solid #044e87;
	}
	
	.contact_dl dd table td strong{
		font-size: 20px;
	}
}



/* 動画一覧
/* ------------------------------------------------------------------------- */

.movie_list{
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
	padding: 30px 0;
	list-style: none;
}

.movie_list li{
	padding: 40px 0;
	border-bottom: solid 1px #bababa;
}
.movie_list li:first-child{
	border-top: solid 1px #bababa;
}

.movie_list li h3,
.movie_list li h4{
	margin-bottom: 1.5em;
	font-size: 17px;
	line-height: 1.5;
}

/* PCのみ */
@media all and (min-width: 769px) {
	.movie_list li{
		display: flex;
		align-content: space-between;
	}
	.movie_list li > div{
		width: 50%;
	}
	.movie_list li > div.block_detail{
		padding-top: 15px;
		padding-left: 0;
	}
	.movie_list li > div.block_img{
		padding-right: 20px;
	}
}

/* SPのみ */
@media all and (max-width: 768px) {
	.movie_list li > div{
		max-width: 480px;
		margin: 0 auto;
	}
	.movie_list li > div.block_img{
		margin-bottom: 2em;
		text-align: center;
	}
}


/* 動画詳細
/* ------------------------------------------------------------------------- */

.movie_detail{
	width: 100%;
	border-top: solid 1px #bababa;
	margin-top: 30px;
}

.movie_detail > div{
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
}

.movie_detail .block_movie{
	padding: 50px 0;
	text-align: center;
}
.movie_detail .block_movie iframe{
	width: 100%;
	max-width: 960px;
	height: 52vw;
	max-height: 540px;
}

.movie_detail .block_detail{
	font-weight: bold;
}

