@charset "utf-8";
/* 
---------------------------------------
リセット
---------------------------------------
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, /*sup, */tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
	margin: 0;
	padding: 0;
}
html {
	height: 100%;
	width: 100%;
	overflow-y: scroll;
}
input, textarea {
	margin: 0;
	padding: 0;
}
img, button {
	border: none;
}
img {
	vertical-align: bottom;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th {
	text-align: left;
	font-weight: normal;
}
a:focus {
	outline: none;
}
iframe{
vertical-align:bottom;
}
/*iOSでフォーカス時に画面がズームするのを防ぐ*/
input,
textarea,
select {
  font-size: 16px;
}
/*padding や border に依存しない width, height 指定*/
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
/* 
---------------------------------------
clear
---------------------------------------
*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}
.clearfix {
	min-height: 1px;
}
* html .clearfix {
	height: 1px;/*\*//*/
	height: auto;
	overflow: hidden;
	/**/
}
.clear, .both {
	clear: both;
}
*:first-child+html .clearfix {
	zoom: 1;
} /* IE7 */
.clear_both {
	clear: both
}
/* 
---------------------------------------
link
---------------------------------------
*/
a {/**/
	color: #666;
	text-decoration: underline;
}
a:link {/*未訪問のリンク*/
}
a:visited {/*訪問済みのリンク*/
}
a:hover {
	transition-duration: 0.5s;
}
a:active {/*選択中のリンク*/
}

/*PCサイトで電話番号リンクさせない*/
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media screen and (max-width: 1024px) { /* タブレット 縦から */
a[href^="tel:"] {
	pointer-events: auto;
}
}
/* 
---------------------------------------
font-weight
---------------------------------------
*/
.bold {
	font-weight: bold;
}
/*  
---------------------------------------
text_align
---------------------------------------
*/
.alnL {
	text-align: left;
}
.alnC {
	text-align: center;
}
.alnR {
	text-align: right;
}
/* 
---------------------------------------
float
---------------------------------------
*/
.fL {
	float: left;
}
.fR {
	float: right;
}
/* 
---------------------------------------
h1-h6
---------------------------------------
*/
h1, h2, h3, h4, h5, h6 {
	line-height: 1;
	font-weight: normal;
}
/* 
---------------------------------------
br
---------------------------------------
*/
br.sp {
	display: none;
}
br.pc {
	display: inline-block;
}
@media screen and (max-width: 480px) {
br.sp {
	display: inline-block;
}
br.pc {
	display: none;
}
}
/*
---------------------------------------
リストマーカー
---------------------------------------
*/
/* ※ */
ul.asterisk {
	padding-left: 1em;
    text-indent: -1em;
}
ul.asterisk li:before {
	content: '※';
}
/* (1)(2)・・・*/
ul.parentheses {
	padding-left: 2em;
	text-indent: -2em;
}
ul.parentheses li {
	/* list-style-type: none;
	list-style-position: inside;*/
	counter-increment: cnt;
}
ul.parentheses li:before {
	display: marker;
	content: "(" counter(cnt) ") ";
}
/* ①②・・・*/
ul.maru-number {
	counter-reset: myCounter;
}
ul.maru-number li {
	padding-left: 25px;
	text-indent: 0;
	position: relative;
}
ul.maru-number li:before {
	content: counter(myCounter);
	counter-increment: myCounter;
	display: block;
	float: left;
	line-height: 17px;
	margin-left: -25px;
	margin-top: 3px;
	text-align: center;
	height: 18px;
	width: 18px;
	border-radius: 50%;
	border: 1px solid #666;
}
/* 数字*/
ul.decimal {
	list-style-type: decimal;
	list-style-position: inside;
	padding-left: 1.3em;
	text-indent: -1.3em;
}
/* ローマ字*/
ul.roman {
	list-style-type: upper-roman;
	list-style-position: inside;
	padding-left: 1em;
	text-indent: -1em;
}
/* 黒丸*/
ul.disc {
	list-style-type: disc;
	list-style-position: inside;
	padding-left: 1.5em;
	text-indent: -1.5em;
}
/* 
---------------------------------------
body
---------------------------------------
*/
body {
	min-height: 100%;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	-webkit-text-size-adjust: 100%;/* 文字サイズを自動調整する機能を無効化 */
}
@media screen and (max-width: 1024px) { /* タブレット 縦から */
body {
	min-width: 100%;
	font-size: 14px;
}
}
/* 
---------------------------------------
header
---------------------------------------
*/
header {
	background: #cddee7;
}
header .logo_area{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	height: 70px;
	padding: 10px 10px 0 10px;
}
header .logo_area .company-logo{
	display: block;
}
/* ↓↓ボタン↓↓ */
header .drawer {
	width: 40px;
	height: 40px;
	z-index: 1000;
	background:#036eb7;
	border-radius: 300px;
	position: fixed;
	top: 15px;
	left: 15px;
}
/* ボタン：トグル部分 */
.navbar_toggle {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.navbar_toggle_icon {
	position: relative;
	display: block;
	height: 2px;
	width: 20px;
	background: #fff;
	-webkit-transition: ease .5s;
	transition: ease .5s;
}
.navbar_toggle_icon:nth-child(1) {
	top: 0;
}
.navbar_toggle_icon:nth-child(2) {
	margin: 4px 0;
}
.navbar_toggle_icon:nth-child(3) {
	top: 0;
}
/*トグル部分：OPEN時の動き*/
.navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
	top: 6px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: 0;
}
.navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
	top: -6px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
 /* ▼ナビゲーション部分▼ */
header .menu {
	 -webkit-transform: translateX(-100%);
	 transform: translateX(-100%);
	 -webkit-transition:ease .5s;
	 transition:ease .5s;
	 z-index:1000;
}
/*OPEN時の動き*/
header .menu.open {
	 -webkit-transform:translateX(0);
	 transform:translateX(0);
	 overflow-y: auto;
	 -webkit-overflow-scrolling: touch;
}
/*メニュー*/
header #sp-menu {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	width: 326px;
	max-width: 90%;
	height: 100vh;
	padding: 90px 0 30px 0;
	background: #f4fbfe;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
header #sp-menu .tt {
	font-size: 1.5em;
	font-weight: bold;
	padding-left: 20px;
}
header #sp-menu .g-nav {
	border-top: solid 1px #e4e4e4;
}
header #sp-menu .g-nav li a {
	display: block;
	font-size: 1.5;
	color: #333;
	text-decoration: none;
	font-weight: bold;
	line-height: 1;
	padding: 15px 20px;
	position: relative;
	border-bottom: solid 1px #e4e4e4;
}
header #sp-menu .g-nav li a::before { 
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #4682b4;
}
header #sp-menu .g-nav li a::after { 
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 28px;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}
header #sp-menu .g-nav li a:hover {
	background: #daf1fc;
}
/*ページタイトル*/
header .contents-tt {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0 20px 20px 20px;
}
header .contents-tt .logo {
	max-width: 100%;
	height: auto;
}
header .contents-tt .page-name {
	background: #0068b6;
	line-height: 1;
	padding: 0.75em 0.5em 0.5em 0.5em;
	border-radius: 5px;
	font-size: 1.3em;
	font-weight: bold;
	color: #fff;
	margin-top: 15px;
}
header .contents-tt .detail{
	margin-top: 15px;
	font-weight: bold;
}
/*
---------------------------------------
footer
---------------------------------------
*/
footer {
	background: #363636;
	text-align: center;
	color: #FFF;
	font-weight: bold;
	padding: 15px;
}
/*
---------------------------------------
contents
---------------------------------------
*/
#contents {
	padding: 30px;
}
/* 
---------------------------------------
共通
---------------------------------------
*/
h3.common {
	font-size: 1.8em;
	font-weight: bold;
	color: #fff;
	text-align: center;
	line-height: 1.3;
	padding: 0.5em;
	background: #0068b6;
	margin-bottom: 1.5em;
}
/* 
---------------------------------------
youtube：共通
---------------------------------------
*/
.youtube-wp {
	aspect-ratio: 16 / 9;/*w:560 h:150の比率の場合*/
}
.youtube-wp iframe {
	width: 100%;
	height: 100%;
}
/*
---------------------------------------
動画一覧
---------------------------------------
*/
.mov-list {
	display: flex;
	flex-wrap: wrap;
}
.mov-list:not(:last-of-type) {
	margin-bottom: 110px;
}
.mov-list li {
	filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.4));
	background: #000;
	border-radius: 10px;
	border: solid #000 1px;
}
.mov-list li:hover {
	transition: 0.5s;
	/*cursor: pointer;*/
	filter: drop-shadow(1px 3px 5px rgba(0, 104, 182, 0.8));
}
.mov-list li { /* PC */
	width: calc((100% - 112px) / 5);
}
.mov-list li:not(:nth-child(5n)) {
	margin-right: 28px;
}
.mov-list li:nth-child(n+6) {
	margin-top: 28px;
}
@media screen and (max-width: 1024px) { /* タブレット 縦から */
.mov-list li {
	width: calc((100% - 20px) / 2);
}
.mov-list li:not(:nth-child(5n)) {/* reset */
	margin-right: 0;
}
.mov-list li:nth-child(odd) {
	margin-right: 20px;
}
.mov-list li:nth-child(n+3) {
	margin-top: 20px;
}
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
.mov-list li {
	width: 100%;
}
.mov-list li:nth-child(odd){/* reset */
	margin-right: 0;
}
.mov-list li:nth-child(n+2) {
	margin-top: 20px;
}
}
/*動画*/
.mov-list li .youtube-wp iframe {
	 border-radius: 10px 10px 0 0;
}
/*テキスト*/
.mov-list li .txt-box {
	padding: 15px;
	color: #fff;
}
.mov-list li .txt-box .tt{
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1.3;
}