body {
	/* フォントは基本ヒラギノ角ゴシックのゴシック系だけど、スタイル指定で色々選べる */
	font-family: "Arial", "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "YuGothic", "メイリオ", "Meiryo", sans-serif; 
	-webkit-text-size-adjust: 100%; /* iphone横向き 文字拡大防止 */
	color: #000000;
	position: relative;
}
.rich_font, .p-vertical {
	font-family: "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
	font-weight:600; 
}
.rich_font_type1 {
	font-family: Arial, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
	font-weight:600; 
}
.rich_font_type2 {
	font-family: Arial, "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "YuGothic", "メイリオ", "Meiryo", sans-serif;
	font-weight:600; 
}
.rich_font_type3 {
	font-family: "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
	font-weight:600; 
}

img {
	display: block;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	max-width: 100%;/* 画像は最大でも実寸サイズで表示 */
}
a {
	display: inline-block;
	text-decoration: none;
	color: #1956AA;
	transition: all .3s;
}
a img {
	transition: all .3s;
}
a:hover {
	color: #0078DB;
}
a:hover img {
	opacity: 0.8;
}
p {
	line-height: 1.8;
}
span {
	display: inline-block;
}
/* デフォルトの装飾を削除 */
input, textarea {
	-webkit-appearance: none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}
:focus {
    outline: -webkit-focus-ring-color none;
}

/* select を div で囲む */
.select {
	width: 100%;
	position: relative;
}
.select::before {
	content: "";
	display: block;
    width: 0;
    height: 0;
    border-right: 3px solid transparent;
    border-left: 3px solid transparent;
    border-bottom: 5px solid transparent;
    border-top: 5px solid #3E3E3E;
	position: absolute;
	top: 50%;
	right: 16px;
	margin-top: -3px;
}
select {
	-webkit-appearance: none;
	width: 100%;
	height: 36px;
	background: transparent;
	padding: 0 10px;
	font-size: 16px;
	cursor: pointer;
}
select::-ms-expand {
    display: none;
}


/* メインスライド */
.main_slide {
	width: 100%;
	position: relative;
}
.main_slide .main_logo {
	width: 100％x;
	max-width: 600px;
	position: absolute;
	top: 50%;
 	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
}

/* メインスライド＿フル */
#full {
	position: relative;
	left: 0;
	top: 0;
	z-index: 1;
}



/* メイン動画 */
.visual {
	position: relative;
	width: 100%;
	height: 100vh;
}

.movie {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.movie video {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	transform: translate(-50%,-50%);
}

/* FIXメイン動画 */
.dummy_box{
padding-top:600px;
}


.visual_fix {
	position: fixed;
	width: 100%;
	height: 100vh;
	z-index: -9999;
}

.movie {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

}

.movie video {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	transform: translate(-50%,-50%);
}

/* BOXレイアウト */
.box_text{
	height: auto;
	width:auto;
	z-index: 1;
}
.box_right {
	position: relative;
}
.box_left {
	position: relative;
}

.box_right img{
	position: absolute;
	height: 300px;
	object-fit: cover;
	object-position: right; top;/* 画像が左の時バージョン */
}
.box_right p{
	padding:10px;
	height: 300px;
}

.box_left img{
	position: absolute;
	height: 300px;
	width: auto;
	object-fit: cover;
	object-position: left; top;/* 画像が右の時バージョン */
}

.box_left p{
	padding:10px;
	height: 300px;
	text-align: right;
}


/*==================================================================================
ヘッダー
==================================================================================*/
header {
	width: 100%;
	z-index: 9999;
}

header .head_nav ul {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	padding: 20px 0;
	border-bottom: 1px #3E3E3E solid;
}
header .head_nav ul li {
	margin: 0 20px;
}
header .head_nav ul li a {
	display: block;
	color: #3E3E3E;
	font-size: 16px;
	font-weight: bold;
}
header .head_nav ul li a:hover {
	color: #1956AA;
}
/* 下層ページ ヘッダー ---------------------*/
header.second {
	padding-top: 10px!important;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #FFFFFF;
	padding-bottom: 10px;
}
header.second .logo {
	width: 380px;/*ページトップロゴサイズ実寸*/
}
header.second .head_nav {
	width: calc(100% - 190px);
}
header.second .head_nav ul {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-end;
	width: 100%;
	padding: 0;
	border-bottom: none;
}
header.second .head_nav ul li {
	margin: 0 0 0 30px;
}
header.second .head_nav ul li:first-child {
	margin: 0;
}


/* スマホ版 メニュー -----------------------*/
nav.globalMenuSp {
    z-index: 8888;
    width: 100%;
	height: calc(100% - 240px);
	padding: 120px 0;
	background: rgba(0,0,0,0.95);
	list-style-type: none;
    position: fixed;
    top: 0;
    left: 0;
}
nav.globalMenuSp ul {
    width: calc(100% - 80px);
	max-width: 540px;
	margin: auto;
}
nav.globalMenuSp ul li {
    width: 100%;
    border-bottom: 1px dotted #ccc;
}
/* 最後はラインを描かない */
nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
nav.globalMenuSp ul li a {
    display: block;
	padding: 20px 0;
	color: #fff;
}

.navToggle {
    z-index: 9999;
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    cursor: pointer;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    right: 20px;    /*バーガーメニュー右端からの位置 */
    top: 45px;    /* バーガーメニュー上からの位置 */
}
.navToggle span {
    display: block;
    width: 100%;
    border-bottom: solid 4px #0081CC;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    position: absolute;    /* .navToggleに対して */
    left: 0;
}
.navToggle span:nth-child(1) {
    top: 3px;
}
.navToggle span:nth-child(2) {
    top: 13px;
}
.navToggle span:nth-child(3) {
    top: 23px;
}
.navToggle.active span {
    border-bottom: solid 4px #fff;
}
/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
    top: 10px;
    left: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
    top: 10px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*==================================================================================
共通
==================================================================================*/
/* レイアウト */
main {
	padding-bottom: 60px;
}
section {
	padding: 60px 0!important;
}
.container {
	width: calc(100% - 40px);
	max-width: 1200px;
	padding: 0 20px;
	margin: auto;
}
.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.row.just_end {
	justify-content: flex-end;
}
.row.align_center {
	align-items: center;
}
.col3 {
	width: calc(100% / 3 - 20px);
}
.col10_3 {
	width: 30%;
}
.col10_7 {
	width: calc(70% - 30px);
}
.col2 {
	width: calc(100% / 2 - 30px);
}
.tb_wrap {
	display: none;
} 
.sp_wrap {
	display: none;
} 

/* スペース */
.mt_5 {
	margin-top: 5px;
}
.mt_10 {
	margin-top: 10px;
}
.mt_20 {
	margin-top: 20px;
}

.mb_5 {
	margin-bottom: 5px;
}
.mb_10 {
	margin-bottom: 10px;
}
.mb_20 {
	margin-bottom: 20px;
}
.mb_30 {
	margin-bottom: 30px;
}
.mb_60 {
	margin-bottom: 60px;
}
.mb_120 {
	margin-bottom: 120px;
}
.mr_10 {
	margin-right: 10px;
}

/* フォント */
h1 {
	font-size: 46px;
	padding-bottom: 10px!important;
	border-bottom: 1px #000000 solid!important;
	color: #000000;
}
h1.white {
	border-bottom: 1px #fff solid!important;
	color: #fff;
}
h2 {
	font-size: 28px;
	color: #000000;
}
h2 span {
	display: block;
	margin-bottom: 10px;
	font-size: 18px;
}

.font_12 {
	font-size: 12px;
}
.font_14 {
	font-size: 14px;
}
.font_16 {
	font-size: 16px;
}
.font_20 {
	font-size: 20px;
}
.font_26 {
	font-size: 26px;
	line-height: 1.4;
}
.font_34 {
	font-size: 34px;
	line-height: 1.4;
}
.font_44 {
	font-size: 44px;
	line-height: 1.4;
}
.font_56 {
	font-size: 56px;
	line-height: 1.4;
}
.font_70 {
	font-size: 70px;
	line-height: 1.4;
}
.txt_center {
	text-align: center;
}
.txt_right {
	text-align: right;
}
.bold {
	font-weight: bold;
}
.link {
	text-decoration: underline;
}
.white {
	color: #fff;
}

/* 水平線 */
.hr {
	border-top: 1px solid #3e3e3e;
}
.hr_gray {
	border-top: 1px solid #969696;
}
.hr_lightgray {
	border-top: 1px solid #dddddd;
}	
.hr3 {
	border-top: 3px solid #3e3e3e;
}
.hr3_gray {
	border-top: 3px solid #969696;
}
.hr3_lightgray {
	border-top: 3px solid #dddddd;
}	
.hr5 {
	border-top: 5px solid #3e3e3e;
}
.hr5_gray {
	border-top: 5px solid #969696;
}
.hr5_lightgray {
	border-top: 5px solid #dddddd;
}	

/* ボタン */
.btn {
	width: 100%;
	max-width: 360px;
	padding: 15px 0;
	border: 2px #1956AA solid;
	/* border-radius: 30px;*//* ボタン角丸 */
	background: #1956AA;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}
.btn.short {
	width: auto;
	min-width: 200px;
	padding: 12px;
}
.btn.frame {
	border: 2px #fff solid;
	background: none;
	color: #fff;
}
.btn:hover {
	background: #fff;
	color: #1956AA;
}

/* 背景画像 */
.bg_box {
	padding: 120px 0;
	position: relative;
	/* background-color: #0078DB; */
}
.bg_box0 {
	padding: 0px 0;/* 背景上詰め */
	position: relative;
	/* background-color: #0078DB; */
}
.bg_box_white {
	padding: 0px 0;/* 背景上詰め */
	position: relative;
	background-color: #ffffff;
}
.bg_img {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.bg_img img {
	height: 100%;
	object-fit: cover;
}
.bg_img2 img {
	width: 100%;
	height: 100%;
	z-index: -1;
}

/*==================================================================================
INDEX
==================================================================================*/
/* お知らせリスト ------------------*/
ul.news_list {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
}
ul.news_list li {
	width: 100%;
	margin-bottom: 15px;
}
/* カテゴリボタン */
.category {
	display: inline-block;
	padding: 5px 15px;
	background: #1956AA;
	color: #fff;
	font-size: 14px;
}
.category:hover {
	background: #0078DB;
	color: #fff;
}



/*==================================================================================
下層ページ
==================================================================================*/
#second_top {
	padding: 100px 0 100px!important;
	overflow: hidden;
	position: relative;
}
#second_top .bg_img {
	position: fixed;
}
#second_top h1 {
	border-bottom: 1px #000000 solid!important;
	color: #000000;
}
main.second {
	background: #fff;
}

/* 背景グレー */
.bg_gray {
	padding: 60px;
	background: #E7E7E7;
}


/* ページトップへ戻るボタン */
.btn_pagetop {
	display: block;
	width: 50px;
	position: fixed;
	right: 60px;
	bottom: 60px;
	z-index: 999;
}

/*==================================================================================
フッター
==================================================================================*/
footer {
/*background-image: url(../img/service_bg.jpg);*/
padding: 0px 0!important;
background-attachment: fixed;
background-color: #0081cc;
}
footer a {
	color: #FFFFFF;
}
footer a.link {
	color: #1956AA;
}
footer .info {
	width: 390px;
}
footer .foot_nav {
	width: calc(100% - 390px - 30px);
}
footer .foot_nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	width: 100%;
}
footer .foot_nav ul li {
	margin: 0 0 15px 30px;
}
footer .foot_nav ul li a {
	padding-bottom: 5px;
	border-bottom: 2px #3E3E3E solid;
	color: #FFFFFF;/*==ボタン色==*/
	font-size: 14px;
	font-weight: bold;
}
footer .foot_nav ul li a:hover {
	color: #0078DB;
	border-bottom: 2px #0078DB solid;
}


.tb {display: none;}
.pc {display: inline;}
.sp {display: none;}


@media screen and (max-width : 840px) {
	/*==================================================================================
	ヘッダー
	==================================================================================*/
	/* 下層ページ ヘッダー ---------------------*/
	header.second {
		padding-top: 10px!important;
	}
	header.second .logo {
		width: 342px;/* 元画像90%縮小*/
	}
	header.second .head_nav {
		width: calc(100% - 140px);
	}
	header.second .head_nav ul li {
		margin: 0 0 0 30px;
	}
	header.second .head_nav ul li a {
		font-size: 14px;
	}
}
.navToggle {
    top: 40px;    /* バーガーメニュー上からの位置 */

}


@media screen and (max-width : 768px) {
	.pc {display: none;}
	.tb {display: inline;}
	
	p {
		font-size: 14px;
		line-height: 1.6;
	}
	
	/* メインスライド */
	.main_slide .main_logo {
		width: 100％;
		max-width: 300px;
	}
	
	/*==================================================================================
	ヘッダー
	==================================================================================*/
	header .head_nav ul {
		display: none;
	}
	/* 下層ページ ヘッダー ---------------------*/
	header.second .logo {
		width: 266px;/* 元画像70%縮小*/
	}
	header.second .head_nav {
		display: none;
	}

.navToggle {
    top: 30px;    /* バーガーメニュー上からの位置 */
}


	/*==================================================================================
	共通
	==================================================================================*/
	/* レイアウト */
	main {
		padding-bottom: 40px;
	}
	section {
		padding: 40px 0!important;
	}
	.container {
		max-width: 460px;
	}
	.col3,
	.col10_3,
	.col10_7,
	.col2 {
		width: 100%;
		margin-bottom: 30px;
	}
	.dummy {
		margin-bottom: 0;
	}
	.order2 {
		order: 2;
	}
	.tb_wrap {
		display: block;
		width: 100%;
	}

	/* スペース */
	.mb_10 {
		margin-bottom: 8px;
	}
	.mb_20 {
		margin-bottom: 15px;
	}
	.mb_30 {
		margin-bottom: 20px;
	}
	.mb_60 {
		margin-bottom: 40px;
	}
	.mb_120 {
		margin-bottom: 80px;
	}
	.mr_10 {
		margin-right: 8px;
	}

	/* フォント */
	h1 {
		font-size: 28px;
	}
	h2 {
		font-size: 20px;
	}
	h2 span {
		margin-bottom: 8px;
		font-size: 12px;
	}
	.font_12 {
		font-size: 10px;
	}
	.font_14 {
		font-size: 12px;
	}
	.font_16 {
		font-size: 14px;
	}
	.font_20 {
		font-size: 18px;
	}
	.font_26 {
		font-size: 21px;
	}
	.font_34 {
		font-size: 24px;
	}
	.font_44 {
		font-size: 27px;
	}
	.font_56 {
		font-size: 30px;
	}
	.font_70 {
		font-size: 33px;
	}

	/* ボタン */
	.btn {
		width: 100%;
		max-width: 360px;
		padding: 15px 0;
		/* border-radius: 30px;/* ボタン角丸 */
		background: #1956AA;
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		text-align: center;
	}
	.btn.short {
		min-width: 120px;
		padding: 10px;
		font-size: 14px;
	}

	/* 背景画像 -----------------------*/
	.bg_box {
		padding: 80px 0;
	}

	/*==================================================================================
	INDEX
	==================================================================================*/
	/* カテゴリボタン */
	.category {
		padding: 5px 10px;
		font-size: 10px;
	}

	/*==================================================================================
	下層ページ
	==================================================================================*/
	#second_top {
		padding: 160px 0 80px!important;
	}
	/* 背景グレー */
	.bg_gray {
		padding: 20px;
	}

	/* ページトップへ戻るボタン */
	.btn_pagetop {
		width: 40px;
		right: 20px;
		bottom: 20px;
		z-index: 999;
	}

	/*================================================
	フッター
	==================================================================================*/
	footer {
		padding: 0px 0!important;
	}
	footer .container {
		max-width: 100%;
	}
	footer .info {
		width: 100%;
		margin-bottom: 40px;
	}
	footer .foot_nav {
		width: 100%;
	}
	footer .foot_nav ul {
		justify-content: flex-start;
	}
	footer .foot_nav ul li {
		margin: 0 20px 15px 0;
	}
	footer .foot_nav ul li a {
		font-size: 14px;
	}
}


@media screen and (max-width : 460px) {
	.tb {display: none;}
	.sp {display: inline;}
	
	/*==================================================================================
	共通
	==================================================================================*/
	.sp_wrap {
		display: block;
		width: 100%;
	} 
}


