/*
Theme Name: RUNDEX
*/
@charset "UTF-8";

* {
	font-size:			100%;
	font-weight:		normal;
	margin:	 			0;
	padding:			0;
}
a:link{
	text-decoration: none;
	
}

li{
	list-style-type: none;
}

/*/////////////////////////////////////////////
フォント
/////////////////////////////////////////////*/

@font-face{
	font-family:"ADAM.CG PRO";
	src:url(fonts/ADAM.otf)format("opentype");
}
@font-face{
	font-family:"hiraginokaku3";
	src:url(fonts/hiraginokaku3.otf)format("opentype");
}
@font-face{
	font-family:"hiraginokaku4";
	src:url(fonts/hiraginokaku4.otf)format("opentype");
}
@font-face{
	font-family:"hiraginokaku5";
	src:url(fonts/hiraginokaku5.otf)format("opentype");
}
@font-face{
	font-family:"hiraginokaku6";
	src:url(fonts/hiraginokaku6.otf)format("opentype");
}
@font-face{
	font-family:"hiraginokaku7";
	src:url(fonts/hiraginokaku7.otf)format("opentype");
}


/*/////////////////////////////////////////////
ページフェード
/////////////////////////////////////////////*/

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:#fff;  /* 背景カラー */
  z-index: 9999;  /* 一番手前に */
  pointer-events: none;  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0;  /* 初期値 : 透過状態 */
  -webkit-transition: opacity .8s ease;  /* アニメーション時間は 0.8秒 */
  transition: opacity .8s ease;
}

body.fadeout::after {
  opacity: 1;
}

body.fadeout article{
  -webkit-transform:scale(1.2);
  transform:scale(1.2);
}

/*/////////////////////////////////////////////
ページトップボタン
/////////////////////////////////////////////*/

.pagetop {
	position: fixed;
	bottom: 30px;
	right: 150px;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transform: scale(1.5);
	-moz-transform: scale(1.5);
	-ms-transform: scale(1.5);
	-o-transform: scale(1.5);
	transform: scale(1.5);
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}


.pagetop a {
	display: block;
	width: 50px;
	height: 50px;
	background-color: #0052a1;
	text-align: center;
	color: #fff;
	font-size: 24px;
	text-decoration: none;
	line-height: 50px;
}
.pagetop.show {
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

/*/////////////////////////////////////////////
ボタンエフェクト
/////////////////////////////////////////////*/

.more {
    transition: all 0.8s linear 0s;
    cursor: pointer;
}
.more:hover {
    transform: rotateX(360deg);
}


/*/////////////////////////////////////////////
slide
/////////////////////////////////////////////*/

.slickbox {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}
.slickbox li {
	float: left;
}
.slickbox li img {
	max-width: 100%;
	height: auto;
}


/*/////////////////////////////////////////////
textanimation
/////////////////////////////////////////////*/
/*スクロール後textカラー紺*/
.wipein {
	position: relative;
	color: transparent;
}
.wipein:after {
	display: block;
	content: "";
	height: 100%;
	position: absolute;
	top: 0;
	background-color: #0052a1;
}
.wipein.show {
  animation: wipecolor .7s ease-in-out both;
}
.wipein.show:after {
  animation: wipebar .7s ease-in-out both;
}
/*スクロール後textカラー黒*/
.wipein1 {
	position: relative;
	color: transparent;
}
.wipein1:after {
	display: block;
	content: "";
	height: 100%;
	position: absolute;
	top: 0;
	background-color: #333333;
}
.wipein1.show {
  animation: wipecolor1 .7s ease-in-out both;
}
.wipein1.show:after {
  animation: wipebar .7s ease-in-out both;
}
/*ファーストビュー内textカラー紺*/
.wipein2 {
	position: relative;
	color: transparent;
}
.wipein2:after {
	display: block;
	content: "";
	height: 100%;
	position: absolute;
	top: 0;
	background-color: #0052a1;
}
.wipein2.show {
  animation: wipecolor 1.0s ease-in-out both;
}
.wipein2.show:after {
  animation: wipebar 1.0s ease-in-out both;
}
/*ファーストビュー内textカラー黒*/
.wipein3 {
	position: relative;
	color: transparent;
}
.wipein3:after {
	display: block;
	content: "";
	height: 100%;
	position: absolute;
	top: 0;
	background-color: #333333;
}
.wipein3.show {
  animation: wipecolor3 1.0s ease-in-out both;
}
.wipein3.show:after {
  animation: wipebar 1.0s ease-in-out both;
}
/*スクロール後textカラー白*/
.wipein4 {
	position: relative;
	color: transparent;
}
.wipein4:after {
	display: block;
	content: "";
	height: 100%;
	position: absolute;
	top: 0;
	background-color: #FFFFFF;
}
.wipein4.show {
  animation: wipecolor1 .7s ease-in-out both;
}
.wipein4.show:after {
  animation: wipebar .7s ease-in-out both;
}
@keyframes wipebar {
  0% {
    left: 0;
    right: 100%;
  }
  50% {
    left: 0;
    right: 0;
  }
  100% {
    left: 100%;
    right: 0;
  }
}
@keyframes wipecolor {
  0% {
    color: transparent;
  }
  50% {
    color: transparent;
  }
  51% {
    color: #0052a1;
  }
  100% {
    color: #0052a1;
  }
}
@keyframes wipecolor1 {
  0% {
    color: transparent;
  }
  50% {
    color: transparent;
  }
  51% {
    color: #333333;
  }
  100% {
    color: #333333;
  }
}
@keyframes wipecolor3 {
  0% {
    color: transparent;
  }
  50% {
    color: transparent;
  }
  51% {
    color: #333333;
  }
  100% {
    color: #333333;
  }
}
@keyframes wipecolor4 {
  0% {
    color: transparent;
  }
  50% {
    color: transparent;
  }
  51% {
    color: #FFFFFF;
  }
  100% {
    color: #FFFFFF;
  }
}

/*/////////////////////////////////////////////
ヘッドナビ
/////////////////////////////////////////////*/

/* header */

.mobile_nav{
	display: none;
}
.globalMenuSp{
	display: none;
}
.pc_header{
	height: 100px;
	width: 100%;
	display: flex;
	padding-top: 40px;
}
.pc_logo{
	padding-left: 70px;
	width: 30%;
	height: 60px;
}
.pc_nav{
	display: flex;
	width: 70%;
	height: 60px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding-right: 30px;
}
.pc_nav li{
	padding-right: 20px;
	padding-left: 20px;
	letter-spacing: 0.1em;
	font-family: 'Montserrat'、sans-serif;
	font-size: 15px;
}
.pc_nav li a{
	color: #22334D;
}
.pc_nav li a:hover{
	transition: all 0.6s ease 0s;
	color: #999999;
}
.pc_contact{
	display: flex;
}
.pc_contact li{
	padding-right: 25px;	
}
.pc_contact li a:hover{
	opacity:0.8;
	transition:.6s;	
}

/*/////////////////////////////////////////////
pc
/////////////////////////////////////////////*/

body {
	}
.main{
	background-image: url(img/main.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	height: 980px;
	width: 100%;
}
.maintaitle{
	height: 500px;
	width: 100%;
}
.maintaitle h1{
	font-family: "Times New Roman", Times, serif;
	font-size: 39px;
	color: #FFFFFF;
	padding-top: 230px;
	padding-left: 110px;
	padding-bottom: 50px;
	font-weight: bolder;
	line-height: 1.5em;
	letter-spacing: 0.05em;
}
.maintaitle h1 span{
	font-size: 34px;
}
.about{
	width: 100%;
	background-color: #FFF;
	text-align: center;
	padding-top: 50px;
	padding-bottom: 50px;
}
.about h2{
	font-family: "ADAM.CG PRO";
	font-size: 42px;
	color: #0052a1;
	letter-spacing: 0.2em;
}
.about p{
	font-family: 'Montserrat'、sans-serif;
	line-height: 2em;
	padding-top: 30px;
	font-size: 15px;
	color: #1f1f1f;
	letter-spacing: 0.1em;
}

.service{
	width: 100%;
	margin-bottom: 120px;
	padding-top: 120px;
}
.service h3{
	font-family: "ADAM.CG PRO";
	font-size: 42px;
	color: #0052a1;
	letter-spacing: 0.2em;
	text-align: center;
	width: 100%;
	padding-bottom: 90px;
}
.service_box{
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	display: flex;
	justify-content: center;
}
.service_item1{
	width: 420px;
	margin-right: 15px;
	margin-left: 15px;
	background-image: url(img/service1.jpg);
	background-repeat: no-repeat;
	background-size:contain;
}
.service_item2{
	width: 420px;
	margin-right: 15px;
	margin-left: 15px;
	background-image: url(img/service2.jpg);
	background-repeat: no-repeat;
	background-size:contain;
}
.service_item3{
	width: 420px;
	margin-right: 15px;
	margin-left: 15px;
	background-image: url(img/service3.jpg);
	background-repeat: no-repeat;
	background-size:contain;
}
.service_box h4{
	font-family: 'Montserrat'、sans-serif;
	font-size: 18px;
	padding-top: 280px;
	padding-left: 10px;
	color: #0052a1;
	font-weight: 600;
}
.service_box p{
	font-family: 'Montserrat'、sans-serif;
	font-size: 15px;
	line-height: 2em;
	width: 93%;
	padding-top: 15px;
	padding-left: 10px;
	color: #1f1f1f;
}
.pv{
	width: 100%;
	margin-bottom: 0px;
	padding-top: 80px;
	background-image: linear-gradient(0deg, #0c2f8b, #0081ca 50%, #0c2f8b);
	background-repeat: repeat;
}
.pv_box{
	width: 70%;
	margin-right: auto;
	margin-left: auto;
	padding-bottom:100px;
}
.pv_box video{
	width: 100%;
	background-attachment: fixed; // 中央揃えになるように、fixed。
  background-position: center center; // positionも中央に。
  background-size: cover; // 画面サイズに応じてサイズを可変するように設定。
  left: 0;
}
.pv h3{
	font-family: "ADAM.CG PRO";
	font-size: 42px;
	color: #FFFFFF;
	letter-spacing: 0.2em;
	text-align: center;
	width: 100%;
	padding-bottom: 70px;
}
.news{
	width: 100%;
	padding-bottom: 120px;
}
.news h5{
	font-family: "ADAM.CG PRO";
	font-size: 42px;
	color: #0052a1;
	letter-spacing: 0.2em;
	padding-top: 120px;
	text-align: center;
	width: 100%;
	padding-bottom: 90px;
}
.news_box{
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	display: flex;
	justify-content: center;
}
.news_item{
	width: 360px;
	margin-right: 15px;
	margin-left: 15px;
}
.news_item a:hover{
	opacity:0.6;
	transition:.6s;	
}
.news_item img{
	width:100%;
	height:228px;
	object-fit: cover;
}
.news_cont h6{
	font-family: 'Montserrat'、sans-serif;
	font-size: 14px;
	padding-top: 15px;
	padding-left: 10px;
	color: #888787;
}
.news_cont span{
	color: #FFFFFF;
	background-color: #0052a1;
	padding-top: 5px;
	padding-right: 20px;
	padding-bottom: 5px;
	padding-left: 20px;
	border-radius: 3px;
}
.news_cont span a:link{
	color: #FFFFFF;
}
.news_cont span a:visited{
	color: #FFFFFF;
}
.news_cont p{
	font-family: 'Montserrat'、sans-serif;
	font-size: 15px;
	line-height: 2em;
	width: 93%;
	padding-top: 15px;
	padding-left: 10px;
	color: #1f1f1f;
}
.news_cont p a:link{
	color: #1f1f1f;
}
.news_cont p a:visited{
	color: #1f1f1f;
}
.news_cont p a:hover{
	opacity:0.5;
	transition:.6s;
}
footer{
	background-color: #333;
	width: 100%;
	text-align: center;
	padding-top: 90px;
	letter-spacing: 0.1em;
	padding-bottom: 15px;
}
.foot_logo{
	height: 129px;
	width: 149px;
	margin-right: auto;
	margin-left: auto;
	padding-bottom: 50px;
}
footer p{
	font-family: 'Montserrat'、sans-serif;
	font-size: 12px;
	color: #FFF;
	letter-spacing: 0.1em;
	line-height: 1.8em;
}

.copy{
	font-family: 'Montserrat'、sans-serif;
	font-size: 12px;
	color: #FFF;
	padding-top: 15px;
	padding-bottom: 15px;
	margin-top: 50px;
}


/*/////////////////////////////////////////////
pc-階層共通
/////////////////////////////////////////////*/
.about2{
	width: 100%;
	background-color: #FFF;
	text-align: center;
	padding-bottom: 100px;
}
.about2 h2{
	font-family: "ADAM.CG PRO";
	font-size: 42px;
	color: #0052a1;
	letter-spacing: 0.2em;
	padding-top: 90px;
}
.about2 p{
	font-family: 'Montserrat'、sans-serif;
	line-height: 2em;
	padding-top: 30px;
	font-size: 16px;
	color: #1f1f1f;
	letter-spacing: 0.1em;
}
.about3{
	width: 100%;
	padding-bottom: 40px;
	background-image: url(img/greetings.png);
	background-repeat: no-repeat;
	background-position: center bottom;
}
.about3 h2{
	font-family: "ADAM.CG PRO";
	font-size: 42px;
	color: #0052a1;
	letter-spacing: 0.2em;
	padding-top: 90px;
	text-align: center;
}
.about3 p{
	font-family: 'Montserrat'、sans-serif;
	line-height: 1.9em;
	padding-top: 50px;
	font-size: 16px;
	color: #1f1f1f;
	letter-spacing: 0.1em;
	padding-left: 22%;
}

/*/////////////////////////////////////////////
pc-階層media
/////////////////////////////////////////////*/
.media{
	width: 100%;
	background-image: url(img/interviewhead.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	margin-top: -100px;
	height: 194px;
}
.media1{
	width: 100%;
	background-image: url(img/interview1.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	height: 750px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 80px;
}
.media2{
	width: 100%;
	background-image: url(img/interviewhead2.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	height: 106px;
	margin-top: 80px;
}
.media3{
	width: 100%;
	background-image: url(img/interview2.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	height: 479px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 80px;
}
.media4{
	width: 100%;
	background-image: url(img/interviewhead3.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	height: 110px;
	margin-top: 80px;
}
.media5{
	width: 100%;
	background-image: url(img/interview3.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	height: 364px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 80px;
	margin-bottom: 80px;
}
/*/////////////////////////////////////////////
pc-階層charter
/////////////////////////////////////////////*/
.charter_main{
	background-image: url(img/charter_main.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	height: 407px;
	width: 100%;
}
.submaintaitle{
	width: 100%;
	text-align: center;
}
.submaintaitle h1{
	font-family: 'Noto Serif JP'、serif;
	font-size: 36px;
	color: #FFFFFF;
	text-shadow: 0px 0px 5px rgba(0,0,0,0.3);
	padding-top: 180px;
	letter-spacing: 0.1em;
	font-weight: 600;
}
.submaintaitle h1 a:link{
	color: #FFFFFF;
}
.submaintaitle h1 a:visited{
	color: #FFFFFF;
}
.submaintaitle h1 a:hover{
	color: #FFFFFF;
}
.charter_flex{
	display: flex;
	width: 100%;
	height: 384px;
	background-color: #CCC;
	display: flex;
}
.charter_itembox1{
	width: 25%;
	background-color: #183c69;
	background-image: url(img/charter1.jpg);
	background-position: top;
	background-repeat: no-repeat;
}
.charter_itembox2{
	width: 25%;
	background-color: #f3f2f2;
	background-image: url(img/charter2.jpg);
	background-repeat: no-repeat;
	background-position: top;
}
.charter_itembox3{
	width: 25%;
	background-color: #183c69;
	background-image: url(img/charter3.jpg);
	background-position: top;
	background-repeat: no-repeat;
}
.charter_itembox4{
	width: 25%;
	background-color: #f3f2f2;
	background-image: url(img/charter4.jpg);
	background-repeat: no-repeat;
	background-position: top;
}

.charter_flex h3{
	font-family: 'Montserrat'、sans-serif;
	font-size: 26px;
	text-align: center;
	letter-spacing: 0.1em;
}
.charter_flex h4{
	font-family: 'Noto Serif JP'、serif;
	font-size: 18px;
	text-align: center;
	letter-spacing: 0.1em;
	font-weight: 600;
}
.charter_flex p{
	font-family: 'Montserrat'、sans-serif;
	font-size: 14px;
	padding-top: 30px;
	text-align: center;
	line-height: 2em;
	letter-spacing: 0.1em;
}
.charter_item1{
	color: #FFF;
	padding-top: 325px;
}
.charter_item2{
	color: #183c69;
	padding-top: 60px;
}

.charter_last{
	background-color: #f5f5f5;
	width: 100%;
	padding-bottom: 80px;
	letter-spacing: 0.1em;
	padding-top: 80px;
}
.charter_last h4{
	font-family: 'Montserrat'、sans-serif;
	font-size: 34px;
	color: #22334d;
	text-align: center;
	padding-top: 110px;
	letter-spacing: 0.05em;
	font-weight: bold;
}
.charter_last p{
	font-family: 'Montserrat'、sans-serif;
	font-size: 16px;
	text-align: center;
	line-height: 2em;
	letter-spacing: 0.1em;
}

/*/////////////////////////////////////////////
pc-階層aircharter
/////////////////////////////////////////////*/
.aircharter_main{
	background-image: url(img/charter_main.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	height: 407px;
	width: 100%;
}
.air_itembox1{
	width: 25%;
	background-color: #0052a1;
	background-image: url(img/air1.jpg);
	background-position: top;
	background-repeat: no-repeat;
}
.air_itembox2{
	width: 25%;
	background-color: #333;
	background-image: url(img/air2.jpg);
	background-position: top;
	background-repeat: no-repeat;
}
.air_itembox3{
	width: 25%;
	background-color: #0052a1;
	background-image: url(img/air3.jpg);
	background-position: top;
	background-repeat: no-repeat;
}
.air_itembox4{
	width: 25%;
	background-color: #333;
	background-image: url(img/air4.jpg);
	background-position: top;
	background-repeat: no-repeat;
}
.aircharter_map{
	width: 100%;
	text-align: center;
	padding-bottom: 130px;
}
.aircharter_map h5{
	font-family: "ADAM.CG PRO";
	font-size: 42px;
	color: #0052a1;
	letter-spacing: 0.2em;
	padding-top: 110px;
	}
.aircharter_map p{
	font-family: 'Montserrat'、sans-serif;
	line-height: 2em;
	padding-top: 50px;
	font-size: 16px;
	color: #1f1f1f;
	letter-spacing: 0.05em;
}


/*/////////////////////////////////////////////
pc-階層contact
/////////////////////////////////////////////*/
.contactcont {
	width: 90%;
	clear: both;
	padding-top: 70px;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	padding-bottom: 80px;
}
.contactcont h2 {
	width: 100%;
	font-family: 'Montserrat'、sans-serif;
	font-size: 30px;
	color: #06C;
	text-align: center;
}
.contactcont p {
	width: 60%;
	font-family: 'Montserrat'、sans-serif;
	font-size: 14px;
	color: #333;
	text-align: center;
	line-height: 2em;
	margin-right: auto;
	margin-left: auto;
}
.contact_box{
	width: 80%;
	max-width: 980px;
	margin-right: auto;
	margin-left: auto;
	box-sizing: border-box;
	margin-top: 60px;
	margin-bottom: 80px;
}
.contact_box dl{
	display: table;
	width: 100%;
	font-family: 'Montserrat'、sans-serif;
	font-size: 16px;
}
.contact_box dt {
	display: table-cell;
	width: 22%;
	vertical-align: middle;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #0066CC;
	box-sizing: border-box;
	letter-spacing: 0.1em;
	text-align: left;
	padding-left: 30px;
	padding-top: 28px;
	padding-bottom: 28px;
}
.contact_box dd {
	display: table-cell;
	vertical-align: middle;
	box-sizing: border-box;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E1E1E1;
	letter-spacing: 0.1em;
	border-left-width: 50px;
	border-left-style: solid;
	border-left-color: #FFF;
	padding-top: 28px;
	padding-bottom: 28px;
}

/*/////////////////////////////////////////////
pc-階層contact共通
/////////////////////////////////////////////*/
.estimate_main{
	background-image: url(img/contact_main.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	height: 237px;
	width: 100%;
	margin-bottom: 15px;
}
.thanksmaintaitle{
	width: 100%;
	text-align: center;
}
.thanksmaintaitle h1{
	font-family: 'Noto Serif JP'、serif;
	font-size: 28px;
	color: #FFFFFF;
	text-shadow: 0px 0px 5px rgba(0,0,0,0.3);
	padding-top: 180px;
	letter-spacing: 0.1em;
	font-weight: 500;
}
.contact_submit {
	width: 30%;
	margin-right: auto;
	margin-bottom: 110px;
	margin-left: auto;
	text-align: center;
}
.submit {
	font-family: "hiraginokaku5";
	font-size: 21px;
	letter-spacing: 0.1em;
	margin-right: auto;
	margin-left: auto;
	padding-right: 15px;
	padding-left: 15px;
	color: #FFFFFF;
	background-color: #06C;
	height: 80px;
	width: 100%;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.submit:hover {
	background-color: rgba(34,85,143,1.0);
	transition: all 1.0s;
}
input,textarea{
	width: 100%;
}
.date{
	width: 38%;
}
input,textarea,select{
	padding: 10px;
	font-family: "hiraginokaku3";
	font-size: 16px;
	letter-spacing: 0.1em;
}
/*/////////////////////////////////////////////
pc-階層reserve
/////////////////////////////////////////////*/
.form_midasi{
}
.form_midasi h3 {
	text-align: center;
	padding-top: 60px;
	letter-spacing: 6px;
	color: #22334d;
	margin-top: 0;
	margin-right: auto;
	margin-left: auto;
	font: 300 60px 'Oswald', sans-serif;
	padding-bottom: 60px;
}
.form_midasi h3 span {
	color: #9C8E49;
}
.reserve_box{
	width: 80%;
	max-width: 980px;
	margin-right: auto;
	margin-left: auto;
	box-sizing: border-box;
	margin-top: 60px;
}
.reserve_box dl{
	display: table;
	width: 100%;
	font-family: 'Montserrat'、sans-serif;
	font-size: 16px;
}
.reserve_box dt {
	display: table-cell;
	width: 22%;
	vertical-align: middle;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #0066CC;
	box-sizing: border-box;
	letter-spacing: 0.1em;
	text-align: left;
	padding-left: 30px;
	padding-top: 28px;
	padding-bottom: 28px;
}
.reserve_box dd {
	display: table-cell;
	vertical-align: middle;
	box-sizing: border-box;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E1E1E1;
	letter-spacing: 0.1em;
	border-left-width: 50px;
	border-left-style: solid;
	border-left-color: #FFF;
	padding-top: 28px;
	padding-bottom: 28px;
}
.reserve_box2{
	width: 80%;
	max-width: 980px;
	margin-right: auto;
	margin-left: auto;
	box-sizing: border-box;
	margin-top: 60px;
	margin-bottom: 100px;
}
.reserve_box2 dl{
	display: table;
	width: 100%;
	font-family: 'Montserrat'、sans-serif;
	font-size: 16px;
}
.reserve_box2 dt {
	display: table-cell;
	width: 22%;
	vertical-align: middle;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #0066CC;
	box-sizing: border-box;
	letter-spacing: 0.1em;
	text-align: left;
	padding-left: 30px;
	padding-top: 28px;
	padding-bottom: 28px;
}
.reserve_box2 dd {
	display: table-cell;
	vertical-align: middle;
	box-sizing: border-box;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E1E1E1;
	letter-spacing: 0.1em;
	border-left-width: 50px;
	border-left-style: solid;
	border-left-color: #FFF;
	padding-top: 28px;
	padding-bottom: 28px;
}
/*/////////////////////////////////////////////
pc-階層　社内有資格一覧
/////////////////////////////////////////////*/
.license_box{
	width: 80%;
	max-width: 980px;
	margin-right: auto;
	margin-left: auto;
	box-sizing: border-box;
	margin-top: 60px;
}
.license_box dl{
	display: table;
	width: 100%;
	font-family: 'Montserrat'、sans-serif;
	font-size: 16px;
}
.license_box dt {
	display: table-cell;
	width: 50%;
	vertical-align: middle;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #0066CC;
	box-sizing: border-box;
	letter-spacing: 0.1em;
	text-align: left;
	padding-left: 30px;
	padding-top: 28px;
	padding-bottom: 28px;
}
.license_box dd {
	display: table-cell;
	vertical-align: middle;
	box-sizing: border-box;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #E1E1E1;
	letter-spacing: 0.1em;
	border-left-width: 50px;
	border-left-style: solid;
	border-left-color: #FFF;
	padding-top: 28px;
	padding-bottom: 28px;
}
.license_box2{
	width: 80%;
	max-width: 980px;
	margin-right: auto;
	margin-left: auto;
	box-sizing: border-box;
	margin-top: 60px;
	margin-bottom: 100px;
}
.license_box2 dl{
	display: table;
	width: 100%;
	font-family: 'Montserrat'、sans-serif;
	font-size: 16px;
}
.license_box2 dt {
	display: table-cell;
	width: 50%;
	vertical-align: middle;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #0066CC;
	box-sizing: border-box;
	letter-spacing: 0.1em;
	text-align: left;
	padding-left: 30px;
	padding-top: 28px;
	padding-bottom: 28px;
}
.license_box2 dd {
	display: table-cell;
	vertical-align: middle;
	box-sizing: border-box;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #E1E1E1;
	letter-spacing: 0.1em;
	border-left-width: 50px;
	border-left-style: solid;
	border-left-color: #FFF;
	padding-top: 28px;
	padding-bottom: 28px;
}

/*/////////////////////////////////////////////
pc-階層contact_a
/////////////////////////////////////////////*/
.contactthanks_main{
	background-image: url(img/contact2_main.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	height: 237px;
	width: 100%;
	margin-bottom: 15px;
}
.thanksmaintaitle{
	width: 100%;
	text-align: center;
}
.thanksmaintaitle h1{
	font-family: 'Noto Serif JP'、serif;
	font-size: 36px;
	color: #FFFFFF;
	text-shadow: 0px 0px 5px rgba(0,0,0,0.3);
	padding-top: 100px;
	letter-spacing: 0.1em;
	font-weight: 600;
}
.contactthanks {
	width: 90%;
	clear: both;
	padding-top: 70px;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #1B1B1B;
	padding-bottom: 70px;
	letter-spacing: 0.1em;
}
.contactthanks h2 {
	width: 100%;
	font-family: 'Montserrat'、sans-serif;
	font-size: 30px;
	color: #333;
	text-align: center;
}
.contactthanks p {
	width: 60%;
	font-family: 'Montserrat'、sans-serif;
	font-size: 16px;
	color: #333;
	text-align: center;
	line-height: 2em;
	margin-right: auto;
	margin-left: auto;
	margin-top: 20px;
	margin-bottom: 20px;
}
/*/////////////////////////////////////////////
pc-階層single
/////////////////////////////////////////////*/
.single_main{
	background-image: url(img/teiki_main.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	height: 407px;
	width: 100%;
}
.news_area{
	width: 70%;
	margin-right: auto;
	margin-left: auto;
	padding-bottom: 70px;
	padding-top: 4%;
	font-family: 'Montserrat'、sans-serif;
}
.news_single1{
	width: 70%;
	margin-right: auto;
	margin-left: auto;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #CCC;
	padding-bottom: 4%;
}
.news_single1 p{
	color: #039;
}
.news_single1 time{
	margin-left: 30px;
}
.news_single1 h2{
	font-size: 24px;
	padding-top: 30px;
	letter-spacing: 0.1em;
	color: #333;
}
.news_single2{
	width: 70%;
	margin-right: auto;
	margin-left: auto;
	
	padding-top: 3%;
	line-height: 2em;
	letter-spacing: 0.1em;
	font-size: 16px;
	color: #333;
}
.news_single2 img{
	width: 100%;
	padding-top: 5%;
	
}
.news_backbt{
	width: 200px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 20px;
	padding-right: 50px;
	padding-bottom: 20px;
	padding-left: 50px;
	border: 1px solid #333;
	text-align: center;
	margin-bottom: 120px;
	letter-spacing: 0.1em;
	font-family: 'Montserrat'、sans-serif;
	font-size: 14px;
	color: #333;
}
.news_backbt a{
	color: #333;
}
.news_backbt a:hover{
	color: #999;
	transition:.8s;
}
/*/////////////////////////////////////////////
pc-階層news-index
/////////////////////////////////////////////*/
.news_areabox{
	margin-top: 100px;
	margin-bottom: 100px;
}
.news_indexarea{
	width: 60%;
	margin-right: auto;
	margin-left: auto;
	font-family: 'Montserrat'、sans-serif;
	padding-top: 50px;
	padding-bottom: 40px;
	display: flex;
	justify-content: center;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #CCC;
}
.news_index{
	width: 70%;
	padding-top: 20px;
	margin-left: 80px;
}
.news_thumb{
	width: 20%;
	height:168px;
}
.news_thumb img{
	width: auto;
	height: 168px;
}
.news_index p{
	color: #039;
	font-style: italic;
	letter-spacing: 0.05em;
}
.news_index p a:link{
	color: #039;
}
.news_index p a:visited{
	color: #039;
}
.news_index p a:hover{
	color: #039;
	opacity:0.6;
	transition:.6s;
}
.news_index time{
	margin-left: 30px;
	letter-spacing: 0.1em;
}
.news_index h2{
	font-size: 20px;
	padding-top: 30px;
	letter-spacing: 0.1em;
	color: #333;
}
.news_index span{
	float: right;
	color: #039;
}
.news_index h2 a{
	color: #333;
}
.news_index h2 a:hover{
	opacity:0.6;
	transition:.8s;
}
.news_excerpt{
	word-spacing: 0.1em;
}
.news_excerpt a{
	color: #333;
}
.news_excerpt a:hover{
	opacity:0.6;
	transition:.8s;
}
/*/////////////////////////////////////////////
pagination
/////////////////////////////////////////////*/
.page_num{
	text-align: center;
	padding-top: 30px;
	width: 50%;
	margin-right: auto;
	margin-left: auto;
}
.pagination{
   margin:40px 0 0;
}
.nav-links{
   display:flex;
   justify-content: center;
}
.pagination .page-numbers{
   display:inline-block;
   margin-right:20px;
   padding:15px 20px;
   color:#333;
   border-radius:3px;
   box-shadow:0 3px 3px #999;
   background:#fff;
}
.pagination .current{
   padding:15px 20px;
   background:#22334d;
   color:#fff;
}
.pagination .prev,
.pagination .next{
   background:transparent;
   box-shadow:none;
   color:#22334d;
}
.pagination .dots{
   background:transparent;
   box-shadow:none;
}

/*/////////////////////////////////////////////
pc-final
/////////////////////////////////////////////*/


@media screen and (min-width: 1180px) and (max-width: 1480px) {
/*/////////////////////////////////////////////
ヘッドナビ
/////////////////////////////////////////////*/

/* header */

.mobile_nav{
	display: none;
}
.globalMenuSp{
	display: none;
}
.pc_header{
	height: 100px;
	width: 100%;
	display: flex;
	padding-top: 40px;
}
.pc_logo{
	padding-left: 50px;
	width: 30%;
	height: 60px;
}
.pc_nav{
	display: flex;
	width: 70%;
	height: 60px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding-right: 30px;
}
.pc_nav li{
	padding-right: 15px;
	padding-left: 15px;
	letter-spacing: 0.1em;
	font-family: 'Montserrat'、sans-serif;
	font-size: 15px;
}
.pc_nav li a{
	color: #22334D;
}
.pc_nav li a:hover{
	transition: all 0.6s ease 0s;
	color: #999999;
}
.pc_contact{
	display: flex;
}
.pc_contact li{
	padding-right: 20px;	
}
/*/////////////////////////////////////////////
pc-note
/////////////////////////////////////////////*/
.main{
	background-image: url(img/main.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	height: 780px;
	width: 100%;
	background-size:contain;
}
.maintaitle{
	height: 567px;
	width: 100%;
}
.maintaitle h1{
	font-family: "Times New Roman", Times, serif;
	font-size: 36px;
	color: #FFFFFF;
	padding-top: 260px;
	padding-left: 60px;
	padding-bottom: 30px;
	font-weight: bolder;
	line-height: 1.5em;
	letter-spacing: 0.05em;
}
.maintaitle h1 span{
	font-size: 31px;
}
.about{
	width: 100%;
	background-color: #FFF;
	text-align: center;
	padding-top: 50px;
	padding-bottom: 0px;
}
.about h2{
	font-family: "ADAM.CG PRO";
	font-size: 42px;
	color: #0052a1;
	letter-spacing: 0.2em;
}
.about p{
	line-height: 2em;
	padding-top: 30px;
	font-size: 16px;
	color: #1f1f1f;
	letter-spacing: 0.05em;
}
.service{
	width: 100%;
	margin-bottom: 120px;
	padding-top: 90px;
}
.service h3{
	font-family: "ADAM.CG PRO";
	font-size: 42px;
	color: #0052a1;
	letter-spacing: 0.2em;
	text-align: center;
	width: 100%;
	padding-bottom: 50px;
	margin-top: 30px;
}
.service_box{
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	display: flex;
	justify-content: center;
}
.service_item1{
	width: 420px;
	margin-right: 15px;
	margin-left: 15px;
	background-image: url(img/service1.jpg);
	background-repeat: no-repeat;
	background-size:contain;
}
.service_item2{
	width: 420px;
	margin-right: 15px;
	margin-left: 15px;
	background-image: url(img/service2.jpg);
	background-repeat: no-repeat;
	background-size:contain;
}
.service_item3{
	width: 420px;
	margin-right: 15px;
	margin-left: 15px;
	background-image: url(img/service3.jpg);
	background-repeat: no-repeat;
	background-size:contain;
}
.service_box h4{
	font-family: 'Montserrat'、sans-serif;
	font-size: 18px;
	padding-top: 280px;
	padding-left: 10px;
	color: #0052a1;
	font-weight: 600;
}
.service_box p{
	font-family: 'Montserrat'、sans-serif;
	font-size: 13px;
	line-height: 2em;
	width: 93%;
	padding-top: 15px;
	padding-left: 10px;
	color: #1f1f1f;
}
.news{
	width: 100%;
	padding-bottom: 120px;
}
.news h5{
	font-family: "ADAM.CG PRO";
	font-size: 42px;
	color: #0052a1;
	letter-spacing: 0.2em;
	padding-top: 100px;
	text-align: center;
	width: 100%;
	padding-bottom: 50px;
}
.news_box{
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	display: flex;
	justify-content: center;
}
.news_item{
	width: 360px;
	margin-right: 15px;
	margin-left: 15px;
}
.news_item img{
	width: 100%;
}
.news_cont h6{
	font-family: 'Montserrat'、sans-serif;
	font-size: 14px;
	padding-top: 20px;
	padding-left: 0px;
	color: #888787;
}
.news_cont span{
	color: #FFFFFF;
	margin-left: 10px;
	background-color: #0052a1;
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 15px;
	border-radius:3px;
}
.news_cont p{
	font-family: 'Montserrat'、sans-serif;
	font-size: 14px;
	line-height: 2em;
	width: 93%;
	padding-top: 15px;
	padding-left: 10px;
	color: #1f1f1f;
}
footer{
	background-color: #333;
	width: 100%;
	text-align: center;
	padding-top: 130px;
	letter-spacing: 0.1em;
}
.foot_logo{
	margin-right: auto;
	margin-left: auto;
}
footer p{
	font-family: 'Montserrat'、sans-serif;
	font-size: 12px;
	color: #FFF;
}
footer span{
	font-family: 'Montserrat'、sans-serif;
	font-size: 22px;
	color: #FFF;
	padding-top: 20px;
}
.copy{
	font-family: 'Montserrat'、sans-serif;
	font-size: 12px;
	color: #FFF;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-top: 80px;
}

/*/////////////////////////////////////////////
note-階層共通
/////////////////////////////////////////////*/
.about2{
	width: 100%;
	background-color: #FFF;
	text-align: center;
	padding-bottom: 80px;
}
.about2 h2{
	font-family: "ADAM.CG PRO";
	font-size: 42px;
	color: #22334d;
	letter-spacing: 0.2em;
	padding-top: 80px;
}
.about2 p{
	line-height: 2em;
	padding-top: 30px;
	font-size: 16px;
	color: #1f1f1f;
	letter-spacing: 0.05em;
}

/*/////////////////////////////////////////////
note-階層charter
/////////////////////////////////////////////*/

.charter_itembox1{
	background-size:contain;
}
.charter_itembox2{
	background-size:contain;
}
.charter_itembox3{
	background-size:contain;
}
.charter_itembox4{
	background-size:contain;
}
.charter_flex p{
	font-size: 13px;
	padding-top: 30px;
	text-align: center;
	line-height: 2em;
	letter-spacing: 0.1em;
}

.charter_item2{
	color: #183c69;
	padding-top: 100px;
}



/*/////////////////////////////////////////////
note-階層　業務内容
/////////////////////////////////////////////*/
.aircharter_main{
	background-image: url(img/charter_main.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	height: 407px;
	width: 100%;
}
.charter_flex{
	display: flex;
	width: 100%;
	height: 284px;
	background-color: #CCC;
	display: flex;
}
.air_itembox1{
	background-size:contain;
}
.air_itembox2{
	background-size:contain;
}
.air_itembox3{
	background-size:contain;
}
.air_itembox4{
	background-size:contain;
}
.aircharter_map{
	padding-bottom: 100px;
}
.charter_item1{
	color: #FFF;
	padding-top: 235px;
}
.aircharter_map{
	padding-bottom: 70px;
}
.aircharter_map h5{
	padding-top: 70px;
	}
.aircharter_map p{
	padding-top: 50px;
	font-size: 14px;
	width: 80%;
	margin-right: auto;
	margin-left: auto;
}
.aircharter_map p img{
	width:70%;
	height:auto;
}
/*/////////////////////////////////////////////
note-階層contactform
/////////////////////////////////////////////*/
.contactcont {
	padding-top: 70px;
	padding-bottom: 80px;
}
.contactcont h2 {
}
.contactcont p {
}
.reserve_box{
	width: 80%;
}
.reserve_box2{
	width: 80%;
}

/*/////////////////////////////////////////////
note-階層 FUJIDENについて
/////////////////////////////////////////////*/
.about3{
	width: 100%;
	padding-bottom: 40px;
	background-image: url(img/greetings.png);
	background-repeat: no-repeat;
	background-position: center bottom;
}
.about3 h2{
	font-family: "ADAM.CG PRO";
	font-size: 42px;
	color: #0052a1;
	letter-spacing: 0.2em;
	padding-top: 90px;
	text-align: center;
}
.about3 p{
	font-family: 'Montserrat'、sans-serif;
	line-height: 1.9em;
	padding-top: 50px;
	font-size: 16px;
	color: #1f1f1f;
	letter-spacing: 0.1em;
	padding-left: 15%;
}
.charter_last{
	background-color: #EEF2FB;
	width: 100%;
	padding-bottom: 90px;
	letter-spacing: 0.1em;
}


}



@media screen and (max-width:599px){
/*/////////////////////////////////////////////
smartPhone
/////////////////////////////////////////////*/
/*/////////////////////////////////////////////
ページトップボタン
/////////////////////////////////////////////*/

.pagetop {
	position: fixed;
	bottom: 30px;
	right: 30px;
}

/*/////////////////////////////////////////////
smトップページ
/////////////////////////////////////////////*/

.main{
	background-image: url(img/main.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	height: auto;
	width: 100%;
	background-size:contain;
}
.maintaitle{
	height: 300px;
	width: 100%;
	text-align: center;
}
.maintaitle h1{
	font-family: 'Noto Serif JP'、serif;
	font-size: 23px;
	color: #FFFFFF;
	padding-top: 110px;
	padding-left: 0px;
	padding-bottom: 0px;
	font-weight: 500;
	line-height: 1.5em;
	letter-spacing: 0.05em;
	text-shadow: 0px 0px 5px rgba(0,0,0,0.3);
}
.maintaitle h1 span{
	font-size: 18px;
}

.about{
	width: 100%;
	background-color: #FFF;
	text-align: center;
	padding-top: 40px;
	padding-bottom: 0px;
	margin-top: -60px;
}
.about h2{
	font-family: "ADAM.CG PRO";
	font-size: 30px;
	color: #0052a1;
	letter-spacing: 0.1em;
}
.about p{
	line-height: 2em;
	padding-top: 30px;
	font-size: 14px;
	color: #1f1f1f;
	letter-spacing: 0.05em;
	text-align: left;
	width: 80%;
	margin-right: auto;
	margin-left: auto;
}

.service{
	width: 100%;
	margin-bottom: 70px;
	padding-top: 50px;
	margin-top: -20px;
}
.service h3{
	font-family: "ADAM.CG PRO";
	font-size: 30px;
	color: #0052a1;
	letter-spacing: 0.2em;
	text-align: center;
	width: 100%;
	padding-bottom: 40px;
}
.service_box{
	width: 84%;
	margin-right: auto;
	margin-left: auto;
	display: flex;
	flex-direction: column;
}
.service_item1{
	width: 100%;
	margin-right: 0px;
	margin-left: 0px;
	background-image: url(img/service1.jpg);
	background-repeat: no-repeat;
	background-size:contain;
}
.service_item2{
	width: 100%;
	margin-right: 0px;
	margin-left: 0px;
	background-image: url(img/service2.jpg);
	background-repeat: no-repeat;
	background-size: contain;
	margin-top: 40px;
}
.service_item3{
	width: 100%;
	margin-right: 0px;
	margin-left: 0px;
	background-image: url(img/service3.jpg);
	background-repeat: no-repeat;
	background-size:contain;
	margin-top: 40px;
}
.service_box h4{
	font-family: 'Montserrat'、sans-serif;
	font-size: 18px;
	padding-top: 270px;
	padding-left: 0px;
	font-weight: bold;
	color: #0052a1;
}
.service_box p{
	font-size: 14px;
	line-height: 2em;
	width: 93%;
	padding-top: 10px;
	padding-left: 0px;
	color: #1f1f1f;
}
.pv{
	padding-top: 50px;
}
.pv_box{
	width: 90%;
	padding-bottom:60px;
}
.pv h3{
	font-size: 30px;
	padding-bottom: 50px;
}


/*/////////////////////////////////////////////
sm_slide
/////////////////////////////////////////////*/

.slickbox {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}
.slickbox li {
	float: left;
}
.slickbox li img {
	max-width: 100%;
	height: auto;
}

.news{
	width: 100%;
	padding-bottom: 70px;
}
.news h5{
	font-family: "ADAM.CG PRO";
	font-size: 30px;
	color: #0052a1;
	letter-spacing: 0.3em;
	padding-top: 60px;
	text-align: center;
	width: 100%;
	padding-bottom: 10px;
}
.news_box{
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	display: flex;
	flex-direction: column;
}
.news_item{
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	margin-top: 30px;
}
.news_item img{
	width: 100%;
	
	object-fit: contain;
}
.news_cont h6{
	font-family: 'Montserrat'、sans-serif;
	font-size: 14px;
	padding-top: 30px;
	padding-left: 20px;
	color: #888787;
}
.news_cont span{
	color: #FFFFFF;
	margin-left: 0px;
	background-color: #0052a1;
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 15px;
	border-radius:3px;
}
.news_cont p{
	font-family: 'Montserrat'、sans-serif;
	font-size: 14px;
	line-height: 2em;
	width: 93%;
	padding-top: 15px;
	padding-left: 20px;
	color: #1f1f1f;
}
footer{
	background-color: #333;
	width: 100%;
	text-align: center;
	padding-top: 70px;
	letter-spacing: 0.1em;
	padding-bottom: 50px;
}
.foot_logo{
	margin-right: auto;
	margin-left: auto;
}
footer p{
	font-family: 'Montserrat'、sans-serif;
	font-size: 12px;
	color: #FFF;
	letter-spacing: 0.1em;
}

.copy{
	font-family: 'Montserrat'、sans-serif;
	font-size: 10px;
	color: #FFF;
	padding-top: 20px;
	padding-bottom: 30px;
	
	margin-top: 30px;
}

/*/////////////////////////////////////////////
sm-階層共通
/////////////////////////////////////////////*/
.about2{
	width: 100%;
	background-color: #FFF;
	text-align: center;
	padding-bottom: 40px;
}
.about2 h2{
	font-family: "ADAM.CG PRO";
	font-size: 30px;
	color: #0052a1;
	letter-spacing: 0.05em;
	padding-top: 40px;
}
.about2 p{
	font-family: 'Montserrat'、sans-serif;
	line-height: 2em;
	padding-top: 20px;
	font-size: 14px;
	color: #1f1f1f;
	letter-spacing: 0.05em;
	width: 80%;
	margin-right: auto;
	margin-left: auto;
	text-align: left;
}
.about2 p br{
	display:none;
}

/*/////////////////////////////////////////////
sm-階層　FUJIDENについて
/////////////////////////////////////////////*/
.charter_main{
	background-image: url(img/charter_main.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	height: 237px;
	width: 100%;
}
.submaintaitle{
	width: 100%;
	text-align: center;
}
.submaintaitle h1{
	font-family: 'Noto Serif JP'、serif;
	font-size: 26px;
	color: #FFFFFF;
	text-shadow: 0px 0px 5px rgba(0,0,0,0.3);
	padding-top: 110px;
	letter-spacing: 0.1em;
	font-weight: 600;
}

.about3{
	width: 80%;
	padding-bottom: 40px;
	background-image: url(img/greetings.png);
	background-repeat: no-repeat;
	background-position: center center;
	margin-right: auto;
	margin-left: auto;
}
.about3 h2{
	font-family: "ADAM.CG PRO";
	font-size: 30px;
	color: #0052a1;
	letter-spacing: 0.2em;
	padding-top: 50px;
	text-align: center;
}
.about3 p{
	font-family: 'Montserrat'、sans-serif;
	line-height: 1.8em;
	padding-top: 30px;
	font-size: 14px;
	color: #1f1f1f;
	letter-spacing: 0.1em;
	padding-left: 0%;
}

.charter_last{
	background-color: #f5f5f5;
	width: 100%;
	padding-bottom: 70px;
}
.charter_last img{
	width: 90%;
	margin-right: auto;
	margin-left: auto;
}
/*/////////////////////////////////////////////
sm-階層 業務内容
/////////////////////////////////////////////*/
.aircharter_main{
	background-image: url(img/charter_main.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	height: 237px;
	width: 100%;
}
.charter_flex{
	width: 100%;
	height: auto;
	background-color: #CCC;
	display: flex;
	flex-direction: column;
}

.air_itembox1{
	width: 100%;
	background-color: #0052a1;
	background-image: url(img/air1.jpg);
	background-position: top;
	background-repeat: no-repeat;
	background-size:contain;
}
.air_itembox2{
	width: 100%;
	background-color: #333;
	background-image: url(img/air2.jpg);
	background-position: top;
	background-repeat: no-repeat;
	background-size:contain;
}
.air_itembox3{
	width: 100%;
	background-color: #0052a1;
	background-image: url(img/air3.jpg);
	background-position: top;
	background-repeat: no-repeat;
	background-size:contain;
}
.air_itembox4{
	width: 100%;
	background-color: #333;
	background-image: url(img/air4.jpg);
	background-position: top;
	background-repeat: no-repeat;
	background-size:contain;
}
.charter_item1{
	color: #FFF;
	padding-top: 190px;
	padding-bottom: 32px;
}
.charter_flex h4{
	font-size: 18px;
	text-align: center;
	padding-top: 70px;
	letter-spacing: 0.1em;
}
.aircharter_map{
	width: 90%;
	text-align: center;
	padding-bottom: 50px;
	margin-right: auto;
	margin-left: auto;
}
.aircharter_map h5{
	font-family: "ADAM.CG PRO";
	font-size: 30px;
	color: #0052a1;
	letter-spacing: 0.2em;
	padding-top: 50px;
	}
.aircharter_map p{
	line-height: 2em;
	padding-top: 30px;
	font-size: 14px;
	color: #1f1f1f;
	letter-spacing: 0.05em;
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	font-family: 'Montserrat'、sans-serif;
	text-align: left;
}
.aircharter_map img{
	width: 100%;
}


/*/////////////////////////////////////////////
sm-階層contact
/////////////////////////////////////////////*/
.contactcont {
	width: 100%;
	clear: both;
	padding-top: 30px;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666666;
	padding-bottom: 30px;
}
.contactcont h2 {
	width: 100%;
	font-family: 'Montserrat'、sans-serif;
	font-size: 24px;
	color: #333;
	text-align: center;
}
.contactcont p {
	width: 80%;
	font-family: 'Montserrat'、sans-serif;
	font-size: 14px;
	color: #333;
	text-align: center;
	line-height: 2em;
	margin-right: auto;
	margin-left: auto;
	margin-top: -15px;
}
.contact_box{
	width: 90%;
	max-width: 980px;
	margin-right: auto;
	margin-left: auto;
	box-sizing: border-box;
	margin-top: 30px;
	margin-bottom: 50px;
}
.contact_box dl{
	display: table;
	width: 100%;
	font-family: 'Montserrat'、sans-serif;
	font-size: 14px;
}
.contact_box dt {
	display: table-cell;
	width: 28%;
	vertical-align: middle;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #0052a1;
	box-sizing: border-box;
	letter-spacing: 0.1em;
	text-align: left;
	padding-left: 5px;
	padding-top: 28px;
	padding-bottom: 28px;
}
.contact_box dd {
	display: table-cell;
	vertical-align: middle;
	box-sizing: border-box;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E1E1E1;
	letter-spacing: 0.1em;
	border-left-width: 10px;
	border-left-style: solid;
	border-left-color: #FFF;
	padding-top: 28px;
	padding-bottom: 28px;
}
.contact_submit {
	width: 90%;
	margin-right: auto;
	margin-bottom: 50px;
	margin-left: auto;
	text-align: center;
}
.submit {
	font-family: 'Montserrat'、sans-serif;
	font-size: 21px;
	letter-spacing: 0.1em;
	margin-right: auto;
	margin-left: auto;
	padding-right: 15px;
	padding-left: 15px;
	color: #FFFFFF;
	background-color: #0052a1;
	height: 80px;
	width: 100%;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.submit:hover {
	background-color: rgba(34,85,143,1.0);
	transition: all 1.0s;
}
input,textarea{
	width: 90%;
}
input,textarea,select{
	padding: 10px;
	font-size: 14px;
	letter-spacing: 0.1em;
}

/*/////////////////////////////////////////////
sm-階層　社内有資格一覧
/////////////////////////////////////////////*/
.license_box{
	width: 80%;
	max-width: 980px;
	margin-right: auto;
	margin-left: auto;
	box-sizing: border-box;
	margin-top: 20px;
	margin-bottom: 20px;
}
.license_box dl{
	width: 100%;
	font-family: 'Montserrat'、sans-serif;
	font-size: 16px;
}
.license_box dt {
	width: 100%;
	vertical-align: middle;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #0052a1;
	box-sizing: border-box;
	letter-spacing: 0.1em;
	text-align: center;
	padding-left: 0px;
	padding-top: 28px;
	padding-bottom: 28px;
	display: block;
}
.license_box dd {
	vertical-align: middle;
	box-sizing: border-box;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #E1E1E1;
	letter-spacing: 0.1em;
	border-left-width: 0px;
	border-left-style: solid;
	border-left-color: #FFF;
	padding-top: 28px;
	padding-bottom: 28px;
	clear: both;
	width: 100%;
	display: block;
	text-align: center;
}
.license_box2{
	width: 80%;
	max-width: 980px;
	margin-right: auto;
	margin-left: auto;
	box-sizing: border-box;
	margin-top: 20px;
	margin-bottom: 100px;
}
.license_box2 dl{
	width: 100%;
	font-family: 'Montserrat'、sans-serif;
	font-size: 16px;
}
.license_box2 dt {
	display: block;
	width: 100%;
	vertical-align: middle;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #0052a1;
	box-sizing: border-box;
	letter-spacing: 0.1em;
	text-align: center;
	padding-left: 0px;
	padding-top: 28px;
	padding-bottom: 28px;
}
.license_box2 dd {
	display: block;
	vertical-align: middle;
	box-sizing: border-box;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #E1E1E1;
	letter-spacing: 0.1em;
	border-left-width: 0px;
	border-left-style: solid;
	border-left-color: #FFF;
	padding-top: 28px;
	padding-bottom: 28px;
	text-align: center;
}


/*/////////////////////////////////////////////
sm-階層contact共通
/////////////////////////////////////////////*/
.estimate_main{
	background-image: url(img/contact_main.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	height: 237px;
	width: 100%;
	margin-bottom: 15px;
}
.thanksmaintaitle{
	width: 100%;
	text-align: center;
}
.thanksmaintaitle h1{
	font-family: "Baskerville Old Face";
	font-size: 26px;
	color: #FFFFFF;
	text-shadow: 0px 0px 5px rgba(0,0,0,0.3);
	padding-top: 100px;
	letter-spacing: 0.1em;
}

/*/////////////////////////////////////////////
sm-階層　会社概要
/////////////////////////////////////////////*/

.reserve_box{
	width: 90%;
	max-width: 1120px;
	margin-right: auto;
	margin-left: auto;
	box-sizing: border-box;
}
.reserve_box dl{
	display: table;
	width: 100%;
}
.reserve_box dt {
	display: table-cell;
	padding-top: 15px;
	padding-bottom: 15px;
	width: 30%;
	vertical-align: middle;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #E1E1E1;
	border-bottom-color: #E1E1E1;
	box-sizing: border-box;
	font-size: 14px;
	letter-spacing: 0.05em;
	background-color: #f5f5f5;
	text-align: center;
	padding-left: 0px;
}
.reserve_box dd {
	display: table-cell;
	padding-top: 15px;
	padding-bottom: 15px;
	vertical-align: middle;
	box-sizing: border-box;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E1E1E1;
	border-left-width: 0px;
	border-left-style: solid;
	border-left-color: #FFF;
	padding-left: 30px;
	font-size: 14px;
	letter-spacing: 0.1em;
	padding-right: 0px;
}
.reserve_box2{
	width: 90%;
	max-width: 1120px;
	margin-right: auto;
	margin-left: auto;
	box-sizing: border-box;
	margin-bottom: 60px;
}
.reserve_box2 dl{
	display: table;
	width: 100%;
}
.reserve_box2 dt {
	display: table-cell;
	width: 30%;
	padding-top: 30px;
	padding-bottom: 30px;
	vertical-align: middle;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #E1E1E1;
	border-bottom-color: #E1E1E1;
	box-sizing: border-box;
	font-size: 14px;
	letter-spacing: 0.05em;
	background-color: #f5f5f5;
	text-align: center;
	padding-left: 0px;
}
.reserve_box2 dd {
	display: table-cell;
	vertical-align: middle;
	box-sizing: border-box;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E1E1E1;
	border-left-width: 0px;
	border-left-style: solid;
	border-left-color: #FFF;
	padding-left: 30px;
	padding-top: 15px;
	padding-bottom: 15px;
	font-size: 14px;
	letter-spacing: 0.1em;
	padding-right: 0px;
}


/*/////////////////////////////////////////////
sm-階層contact_a
/////////////////////////////////////////////*/
.contactthanks_main{
	background-image: url(img/contact2_main.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	height: 237px;
	width: 100%;
	margin-bottom: 15px;
}

.contactthanks {
	width: 90%;
	clear: both;
	padding-top: 30px;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #1B1B1B;
	padding-bottom: 30px;
	letter-spacing: 0.1em;
}
.contactthanks h2 {
	width: 100%;
	font-size: 26px;
	color: #333;
	text-align: center;
}
.contactthanks p {
	width: 90%;
	font-size: 14px;
	color: #333;
	text-align: left;
	line-height: 2em;
	margin-right: auto;
	margin-left: auto;
	margin-top: 10px;
	margin-bottom: 20px;
}
/*/////////////////////////////////////////////
sm-階層　メディア情報
/////////////////////////////////////////////*/
.media{
	width: 100%;
	background-image: url(img/mediamain_sm.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	margin-top: -80px;
	height: 162px;
	background-size: contain;
}
.media1{
	width: 80%;
	background-size: contain;
	height: 250px;
	margin-top: 30px;
}
.media2{
	width: 100%;
	height: 81px;
	margin-top: 0px;
	background-size: contain;
	background-image: url(img/media2_sm.jpg);
	background-repeat: no-repeat;
}
.media3{
	width: 80%;
	background-size: contain;
	height: 170px;
	margin-top: 20px;
}
.media4{
	width: 100%;
	height: 81px;
	margin-top: 0px;
	background-size: contain;
	background-image: url(img/media3_sm.jpg);
	background-repeat: no-repeat;
}
.media5{
	width: 80%;
	background-size: contain;
	height: 130px;
	margin-top: 20px;
	margin-bottom: 40px;
}

/*/////////////////////////////////////////////
smナビゲーション
/////////////////////////////////////////////*/
/* header */
.pc_header{
	height: 150px;
	width: 100%;
	display: none;
}
.mobile_nav{
	display: block;
	height: 110px;
	width: 100%;
}
.mobile_logo{
	padding-top: 35px;
	padding-left: 30px;
}
.mobile_logo img{
	width: 50%;
}
.globalMenuSp{
	display: block;
}
/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 40px;
  top   : 32px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
	display : block;
	position: absolute;
	width   : 50px;
	height  : 4px;
	left    : 6px;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition   : 0.3s ease-in-out;
	transition        : 0.3s ease-in-out;
	background-color: #666;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}


/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  background :#fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav1.globalMenuSp {
	position: fixed;
	z-index : 2;
	top  : 0;
	left : 0;
	color: #fff;
	background: rgba(0,0,0,0.9);
	text-align: center;
	width: 100%;
	transition: all 0.6s;
	height: 100%;
	padding-top: 180px;
	transform: translateX(100%);
}

nav1.globalMenuSp ul {
	padding: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
}

nav1.globalMenuSp ul li {
	list-style-type: none;
	width: 20%;
	transition: .4s all;
	font-size: 13px;
	padding-top: 50;
	padding-right: 0;
	padding-bottom: 50;
	padding-left: 0;
	font-family: 'Montserrat'、sans-serif;
	letter-spacing: 0em;
}
nav1.globalMenuSp ul li img{
	margin-bottom: 10px;
}
nav1.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav1.globalMenuSp ul li:hover{
	opacity:0.5;
	transition: all 1.0s ease-out;
}

nav1.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration :none;
}

/* このクラスを、jQueryで付与・削除する */
nav1.globalMenuSp.active {
  transform: translateX(0%);

}





}
		

/*/////////////////////////////////////////////
smartPhone-final
/////////////////////////////////////////////*/







@media screen and (min-width: 600px) and (max-width: 1179px) {
/*/////////////////////////////////////////////
tablet
/////////////////////////////////////////////*/

/*/////////////////////////////////////////////
ページトップボタン
/////////////////////////////////////////////*/

.pagetop {
	position: fixed;
	bottom: 30px;
	right: 30px;
}

/*/////////////////////////////////////////////
トップページ
/////////////////////////////////////////////*/

.main{
	background-image: url(img/main.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	height: 677px;
	width: 100%;
	background-size:contain;
}
.maintaitle{
	height: 410px;
	width: 100%;
}
.maintaitle h1{
	font-family: "Times New Roman", Times, serif;
	font-size: 29px;
	color: #FFFFFF;
	padding-top: 190px;
	padding-left: 30px;
	padding-bottom: 10px;
	font-weight: bolder;
	line-height: 1.5em;
	letter-spacing: 0.05em;
}
.maintaitle h1 span{
	font-size: 24px;
}

.about{
	padding-top: 70px;
	padding-bottom: 50px;
}
.about h2{
	
}
.about p{
	font-family: 'Montserrat'、sans-serif;
	line-height: 2em;
	padding-top: 30px;
	font-size: 14px;
	color: #1f1f1f;
	letter-spacing: 0.05em;
	width: 80%;
	margin-right: auto;
	margin-left: auto;
	text-align: left;
}
.about p br{
	display:none;
}

.service{
	width: 100%;
	margin-bottom: 90px;
	padding-top: 70px;
}
.service h3{
	font-family: "ADAM.CG PRO";
	font-size: 42px;
	color: #0052a1;
	letter-spacing: 0.2em;
	text-align: center;
	width: 100%;
	padding-bottom: 40px;
}
.service_box{
	width: 96%;
	margin-right: auto;
	margin-left: auto;
	display: flex;
	justify-content: center;
}
.service_item1{
	width: 30%;
	margin-right: 15px;
	margin-left: 15px;
	background-image: url(img/service1.jpg);
	background-repeat: no-repeat;
	background-size:contain;
}
.service_item2{
	width: 30%;
	margin-right: 15px;
	margin-left: 15px;
	background-image: url(img/service2.jpg);
	background-repeat: no-repeat;
	background-size:contain;
}
.service_item3{
	width: 30%;
	margin-right: 15px;
	margin-left: 15px;
	background-image: url(img/service3.jpg);
	background-repeat: no-repeat;
	background-size:contain;
}
.service_box h4{
	font-family: 'Montserrat'、sans-serif;
	font-size: 16px;
	padding-top: 160px;
	padding-left: 0px;
	color: #0052a1;
	font-weight: 600;
}
.service_box p{
	font-family: 'Montserrat'、sans-serif;
	font-size: 13px;
	line-height: 1.8em;
	width: 100%;
	padding-top: 10px;
	padding-left: 0px;
	color: #1f1f1f;
}

.pv_box{
	width: 90%;
	
}

.news{
	width: 100%;
	padding-bottom: 90px;
}
.news h5{
	font-family: "ADAM.CG PRO";
	font-size: 42px;
	color: #0052a1;
	letter-spacing: 0.2em;
	padding-top: 70px;
	text-align: center;
	width: 100%;
	padding-bottom: 40px;
}
.news_box{
	width: 95%;
	margin-right: auto;
	margin-left: auto;
	display: flex;
	justify-content: center;
}
.news_item{
	width: 30%;
	margin-right: 15px;
	margin-left: 15px;
}
.news_item img{
	width:100%;
	height:180px;
	object-fit: contain;
}
.news_cont h6{
	font-family: 'Montserrat'、sans-serif;
	font-size: 14px;
	padding-top: 10px;
	padding-left: 0px;
	color: #888787;
}
.news_cont span{
	color: #FFFFFF;
	margin-left: 0px;
	background-color: #0052a1;
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 15px;
	border-radius:3px;
}
.news_cont p{
	font-family: 'Montserrat'、sans-serif;
	font-size: 14px;
	line-height: 2em;
	width: 100%;
	padding-top: 15px;
	padding-left: 0px;
	color: #1f1f1f;
}
footer{
	background-color: #333;
	width: 100%;
	text-align: center;
	padding-top: 60px;
	letter-spacing: 0.1em;
	padding-bottom: 10px;
}
.foot_logo{
	margin-right: auto;
	margin-left: auto;
}
footer p{
	font-family: 'Montserrat'、sans-serif;
	font-size: 12px;
	color: #FFF;
	letter-spacing: 0.1em;
}
.copy{
	font-family: 'Montserrat'、sans-serif;
	font-size: 12px;
	color: #FFF;
	padding-top: 20px;
	padding-bottom: 30px;
	margin-top: 40px;
}


/*/////////////////////////////////////////////
tab-階層共通
/////////////////////////////////////////////*/
.about2{
	width: 100%;
	background-color: #FFF;
	text-align: center;
	padding-bottom: 60px;
}
.about2 h2{
	font-family: "ADAM.CG PRO";
	font-size: 42px;
	color: #22334d;
	letter-spacing: 0.2em;
	padding-top: 70px;
}
.about2 p{
	width: 90%;
	line-height: 2em;
	padding-top: 30px;
	font-size: 15px;
	color: #1f1f1f;
	letter-spacing: 0.05em;
	margin-right: auto;
	margin-left: auto;
}

/*/////////////////////////////////////////////
tab-階層 FUJIDENについて
/////////////////////////////////////////////*/
.about3{
	width: 100%;
	padding-bottom: 40px;
	background-image: url(img/greetings.png);
	background-repeat: no-repeat;
	background-position: left bottom;
}
.about3 h2{
	font-family: "ADAM.CG PRO";
	font-size: 42px;
	color: #0052a1;
	letter-spacing: 0.2em;
	padding-top: 90px;
	text-align: center;
}
.about3 p{
	font-family: 'Montserrat'、sans-serif;
	line-height: 1.9em;
	padding-top: 50px;
	font-size: 16px;
	color: #1f1f1f;
	letter-spacing: 0.1em;
	padding-left: 7%;
}
.charter_last{
	padding-bottom: 80px;
}

.charter_last p{
	padding-top: 30px;
	width: 80%;
	margin-right: auto;
	margin-left: auto;
}

/*/////////////////////////////////////////////
tab-階層　業務内容
/////////////////////////////////////////////*/
.charter_flex{
	display: flex;
	width: 100%;
	height: 640px;
	background-color: #CCC;
	display: flex;
	flex-wrap: wrap;
}
.charter_item1{
	color: #FFF;
	padding-top: 235px;
}
.charter_flex h4{
	font-family: 'Noto Serif JP'、serif;
	font-size: 18px;
	text-align: center;
	padding-top: 30px;
	letter-spacing: 0.1em;
}
.aircharter_main{
	background-image: url(img/charter_main.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	height: 407px;
	width: 100%;
}
.air_itembox1{
	width: 50%;
	background-size:contain;
}
.air_itembox2{
	width: 50%;
	background-size:contain;
}
.air_itembox3{
	width: 50%;
	background-size:contain;
}
.air_itembox4{
	width: 50%;
	background-size:contain;
}
.aircharter_map{
	padding-bottom: 70px;
}
.aircharter_map h5{
	padding-top: 70px;
	}
.aircharter_map p{
	padding-top: 50px;
	font-size: 14px;
	width: 80%;
	margin-right: auto;
	margin-left: auto;
}
.aircharter_map p img{
	width:100%;
	height:auto;
}

/*/////////////////////////////////////////////
tab-階層　社内保有資格
/////////////////////////////////////////////*/

/*/////////////////////////////////////////////
tab-階層　メディア情報
/////////////////////////////////////////////*/
.media{
	width: 100%;
	background-image: url(img/mediamain_sm.jpg);
	background-repeat: repeat-x;
	background-position: center bottom;
	margin-top: -60px;
	height: 172px;
	background-size: contain;
}
.media1{
	width: 80%;
	background-size: contain;
	height: 550px;
	margin-top: 20px;
}
.media2{
	width: 100%;
	height: 81px;
	margin-top: 60px;
	background-image: url(img/media2_tab.jpg);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
.media3{
	width: 80%;
	background-size: contain;
	height: 359px;
	margin-top: 20px;
}
.media4{
	width: 100%;
	height: 81px;
	margin-top: 60px;
	background-image: url(img/media3_tab.jpg);
	background-repeat: no-repeat;
	background-position: center;
}
.media5{
	width: 80%;
	background-size: contain;
	height: 284px;
	margin-top: 20px;
	margin-bottom: 60px;
}

/*/////////////////////////////////////////////
tab-階層contactform
/////////////////////////////////////////////*/
.contactcont {
	width: 90%;
	padding-top: 50px;
	padding-bottom: 70px;
}
.contactcont h2 {
}
.contactcont p {
	width: 90%;
}


/*/////////////////////////////////////////////
tab-階層contact共通
/////////////////////////////////////////////*/
.contact_submit {
	width: 50%;
	margin-right: auto;
	margin-bottom: 70px;
	margin-left: auto;
	text-align: center;
}
.submit {
	font-size: 21px;
	letter-spacing: 0.1em;
	margin-right: auto;
	margin-left: auto;
	padding-right: 15px;
	padding-left: 15px;
	color: #FFFFFF;
	background-color: #0052a1;
	height: 80px;
	width: 100%;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.submit:hover {
	background-color: rgba(34,85,143,1.0);
	transition: all 1.0s;
}
input,textarea{
	width: 100%;
}
.date{
	width: 38%;
}
input,textarea,select{
	padding: 10px;
	font-size: 16px;
	letter-spacing: 0.1em;
}

/*/////////////////////////////////////////////
tab-階層contact_thanks
/////////////////////////////////////////////*/
.contactthanks_main{
	background-image: url(img/contact2_main.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	height: 237px;
	width: 100%;
	margin-bottom: 15px;
}
.thanksmaintaitle{
	width: 100%;
	text-align: center;
}
.thanksmaintaitle h1{
	font-family: "Baskerville Old Face";
	font-size: 36px;
	color: #FFFFFF;
	text-shadow: 0px 0px 5px rgba(0,0,0,0.3);
	padding-top: 100px;
	letter-spacing: 0.1em;
}
.contactthanks {
	width: 90%;
	clear: both;
	padding-top: 70px;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #1B1B1B;
	padding-bottom: 70px;
	letter-spacing: 0.1em;
}
.contactthanks h2 {
	width: 100%;
	font-size: 30px;
	color: #333;
	text-align: center;
}
.contactthanks p {
	width: 70%;
	font-size: 16px;
	color: #333;
	text-align: left;
	line-height: 2em;
	margin-right: auto;
	margin-left: auto;
	margin-top: 20px;
	margin-bottom: 20px;
}
.contactthanks p br{
	display: none;
}

/*/////////////////////////////////////////////
ナビゲーション
/////////////////////////////////////////////*/
/* header */
.pc_header{
	height: 150px;
	width: 100%;
	display: none;
}
.mobile_nav{
	display: block;
	height: 110px;
	width: 100%;
}
.mobile_logo{
	padding-top: 30px;
	padding-left: 30px;
}
.globalMenuSp{
	display: block;
}
/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 40px;
  top   : 32px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
	display : block;
	position: absolute;
	width   : 50px;
	height  : 4px;
	left    : 6px;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition   : 0.3s ease-in-out;
	transition        : 0.3s ease-in-out;
	background-color: #666;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}


/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  background :#fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav1.globalMenuSp {
	position: fixed;
	z-index : 2;
	top  : 0;
	left : 0;
	color: #fff;
	background: rgba(0,0,0,0.9);
	text-align: center;
	width: 100%;
	transition: all 0.6s;
	height: 100%;
	padding-top: 220px;
	transform: translateX(100%);
}

nav1.globalMenuSp ul {
	padding: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 50px;
	margin-left: auto;
}

nav1.globalMenuSp ul li {
	list-style-type: none;
	width: 20%;
	transition: .4s all;
	font-size: 16px;
	padding-top: 50;
	padding-right: 0;
	padding-bottom: 50;
	padding-left: 0;
	font-family: 'Montserrat'、sans-serif;
	letter-spacing: 0.1em;
}
nav1.globalMenuSp ul li img{
	margin-bottom: 10px;
}
nav1.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav1.globalMenuSp ul li:hover{
	opacity:0.5;
	transition: all 1.0s ease-out;
}

nav1.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration :none;
}

/* このクラスを、jQueryで付与・削除する */
nav1.globalMenuSp.active {
  transform: translateX(0%);

}

}
