@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
body {	
	font-family: 'Noto Sans JP', sans-serif;
	font-weight:400;
	font-size: 16px; 
	color: #282828;
	line-height: 2;
	-webkit-font-smoothing: antialiased; 
	-moz-osx-font-smoothing: grayscale; 
	  overflow: hidden;
}
a{
  color:#003B82;
  text-decoration: underline;
}
a:hover {
  color:#003B82;
	-webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all  0.3s ease;
}
a img { 
	transition: opacity 0.2s linear; 
}
a:hover img { 
	opacity: 0.8;
}
.br-sp { 
  display:none;
}
.br-tb { 
  display:none;
}
.spmenu{
	display:none!important;
}
.tbmenu{
	display:none!important;
}


.mb5 {
	margin-bottom:5px !important;
}
.mb10 {
	margin-bottom: 10px !important;
}
.mb15 {
	margin-bottom: 15px !important;
}
.mb20 {
	margin-bottom:20px !important;
}
.mb30 {
	margin-bottom:30px !important;
}
.mb40 {
	margin-bottom: 40px !important;
}
.mb50 {
	margin-bottom:50px !important;
}
.mb60 {
	margin-bottom:60px !important;
}
.mb70 {
	margin-bottom:70px!important;
}
.mt5 {
	margin-top:5px !important;
}
.mt10 {
	margin-top:10px !important;
}
.mt20 {
	margin-top:20px !important;
}
.mt30 {
	margin-top:30px !important;
}
.mt40 {
	margin-top:40px !important;
}
.mt50 {
	margin-top:50px !important;
}
.mt60 {
	margin-top:60px !important;
}
.mt70 {
	margin-top:70px !important;
}
.al_left{
	text-align: left;
}
.al_right{
	text-align: right;
}
.center {
	display: block;
	text-align: center;
	margin: 0 auto;
}

img{
	width:100%;
}

p{
	margin: 20px 0;
}


/* ヘッダー */
.container{
	max-width: 1160px;
	margin: 0 auto;
	padding: 0;
 	overflow: hidden;
}


/* ナビゲーション */
#head_wrap01{
	width:100%;
	transition: all ease .6s;
	position: fixed;
	height: 80px;
	background-color: #fff;
	left: 0;
	right: 0;
	top: 0;
	z-index: 1000;
	box-shadow: 0px 6px 6px -5px rgba(0,0,0,0.3);

}
.nav_back_trapezoid_wrap{
	width:100%;
	position: relative;
}
.nav_back_trapezoid{
	z-index: 0;
	position: absolute;
	top:0;
	right: 0;
	width: 860px;/* 幅 */
  height: 80px;
  border-bottom: 80px solid #CCD7E6; /* 高さ */
  border-left: 140px solid transparent; /* 左側下辺の伸び */
  box-sizing: border-box;
}
.sp_navi_menu{
	display:none;
}
.head_wrap{
	position: relative;
}

#menu {
}
/*==ナビゲーション全体の設定*/
nav{
  text-align: left;
}
nav ul li.head_logo{
	 position: absolute;
	 left: 0;
}
nav ul li.head_logo img{
  width:340px;
}
nav ul li.head_logo a {
  padding:8px 30px!important;
}
nav ul li.head_logo a:hover{
	background-color: transparent!important;
}

/*ナビゲーションを横並びに*/
nav ul{
  list-style: none;
  display: flex;
  justify-content: right;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
  position: relative;
}
/*ナビゲーションのリンク設定*/
nav ul li a{
  display: block;
  text-decoration: none;
  padding:25px 25px;
  transition:all .3s;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight:500 ;
	font-size: 15px;
	letter-spacing: 0;
	color:  #282828;
}
nav ul li a:hover{  
	transition:1s all;
	color:  #282828;
}

/*== 2・3階層目の共通設定 */
/*下の階層を持っているulの指定*/
nav li.has-child ul{
    /*絶対配置で位置を指定*/
  position: absolute;
  left:0;
  top:80px;
  z-index: 4;
    /*形状を指定*/
	opacity: 0.5;
  width:230px;
    /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
    /*アニメーション設定*/
  transition: all .3s;
  	box-shadow: 6px 6px 6px -5px rgba(0,0,0,0.3);

}
/*2階層目以降は横並びにしない*/
nav ul ul{
  display: block;
}

/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav ul li li a{
	font-weight:500 ;
  padding:11px 15px;
  background-color:rgba(0,59,130,0.6);
}
nav li.has-child ul li a{
	font-weight:500 ;
  color: #fff;
  border-bottom:solid 1px #cccccc;
  padding:11px 15px;
  background-color:rgba(0,59,130,0.7);
}
nav li.has-child ul li.top-child a{
	display: none;
}
nav li.has-child ul li:last-child a{
  border-bottom:none;
}
nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
  background-color:rgba(0,59,130,1);
}


/* top_mainvisual */
/* メインビジュアル */
.top_mainvisual{
	margin-top: 80px; 
	width:100%;	
	position: relative;
}

.top_main_ttl{
	position: absolute;
	top: 50%;
  left: 60px;
  transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	font-size: 50px;
	color: #fff;
	line-height: 1.6;
	letter-spacing: 8px;
	z-index: 10;
	border-bottom: 1px solid #fff;
	padding-bottom: 15px;
	text-shadow: 0 0 10px rgba(0,0,0,0.4);
}
.slide_ph{
 width: 100%;
 height: 80vh;
} 
.slide_ph img{
	width: 100%;
	 height: 80vh;
  object-fit: cover;	
}
/* メインビジュアル */
/* top_mainvisual */


/* top_sec01 */
.top_sec01{
	margin: 80px auto 0;
	max-width: 100%;
	background-image: url('../img/top_sec01_back.jpg');
	background-size: cover;
	background-position: 50% 50%;
	height: auto;
	position:relative;
	padding-bottom: 200px;
}
.top_sec01_wrap{
	width: 63%;
	margin: 50px 0 0;
	border-left: 1px solid #003B82;
	padding-left: 40px;	
}
.top_sec01_Img01{
	position: absolute;
	top:40px;
	right: 0;
	width: 33%;
}
.top_sec01_Img02{
	position: absolute;
	top:63%;
	right: 33%;
	width: 13%;
}
.top_sec01_ttl{
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	font-size: 22px;
	line-height: 1.6;
	color: #003B82;
	letter-spacing: 1px;
	border-bottom: 1px solid #003B82;
	display: inline-block;
	padding-bottom: 30px;	
	margin: 30px 0 15px;
}

/* top_sec02 */
.top_sec02{
	max-width:100%;
	background-image: url("../img/common_sec01_back.png");
	background-repeat: no-repeat;
   -webkit-background-size: absolute;
   background-size: absolute;
	background-position:right 64vw top 0;
  z-index: 0;
  overflow: hidden;
  padding-top: 70px;
}
.ttl_wrap_border{
	padding-bottom: 15px;
	border-bottom: 1px solid #003B82;
}
.ttl_jp{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight:700;
	font-size: 20px; 
	color: #282828;
	letter-spacing: 3px;
	line-height: 1.3;
}
.ttl_en{
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	font-size: 60px;
	font-style: italic;	
	color: #003B82;
	line-height: 1.3;
}
.top_txt_center{
	font-size: 16px;
	text-align: center;
	margin: 30px 0 0 !important;
	letter-spacing: 1px;
}
.top_sec02_wrap{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 70px auto 100px;
}
.top_sec02_contents{
	margin: 0 45px 33px;
	width:42.2%;
	border: 1px solid #003B82;
	position: relative;
}

.top_sec02_ttl_wrap{
	position: absolute;
	bottom: -33px;
	left: 50%;
  transform: translateX(-50%);
}
.top_sec02_ttl{
	padding: 10px 0;
	background-color:#003B82;
	color: #fff;
	font-weight: 700;
	font-size: 24px;
	letter-spacing: 1px;
	width: 228px;
	text-align: center;
}


/* top_sec03 */
.top_sec03{
	max-width:100%;
	background-image: url("../img/common_sec01_back.png");
	background-repeat: no-repeat;
   -webkit-background-size: absolute;
   background-size: absolute;
	background-position:right 64vw top 0;
  z-index: 0;
  overflow: hidden;
  padding-top: 70px;
}
.top_sec03_back{
	max-width: 100%;
  height: auto;
  background-image: url('../img/top_sec03_back.jpg');
  background-size: 100% 875px;
  background-repeat: no-repeat;
  background-position: bottom;
}


.top_sec03_ttl{
	font-weight: 700;
	font-size: 24px;
	color: #003B82;
	letter-spacing: 1px;
	text-align: center;
	border-bottom: 1px solid #003B82;
	margin-top: 40px;
}
.top_sec03_wrap01{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 50px auto 0;
	column-gap: 16px;
	row-gap: 40px;
}
.top_sec03_contents01{
	width:23.95%; 
}
.top_sec03_subttl{
	font-weight:700;
	font-size: 20px; 
	color: #fff;
	letter-spacing: 1px;
	line-height: 1.3;
	text-align: center;
	background-color: #003B82;
	padding: 10px;
}
.top_sec03_Img{
	width: auto;
	height:210px;
	margin-bottom: 13px;
}
.top_sec03_contents01 p,.top_sec03_contents02 p{
	margin: 0;
	line-height: 1.7;
}

.top_sec03_wrap02{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 50px auto 0;
	column-gap: 16px;
}
.top_sec03_contents02{
	width:49.3%;
}

.top_sec03_wrap03{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 100px auto 0;
	column-gap: 16px;
}
.top_sec03_contents03{
	width:49.3%;
	position: relative;
}
.top_sec03_contents03 a{
	text-decoration:none;	
}
.top_sec03_banner_Img{
	overflow: hidden;	/*拡大時にはみ出た部分を隠す*/
  height: 154px;	
}
.top_sec03_banner_Img img{
	width:100%;
	transition:1s all;
}
.top_sec03_banner_Img img:hover{
	transform:scale(1.2,1.2);
	transition:1s all;
}
.top_sec03_ttl02_wrap{
	position: absolute;
	top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	width: 60%;
	text-align: center;
}
.top_sec03_ttl02_jp{
	font-size:28px;
	font-weight: 700;
	color: #fff;
	border-bottom: 1px solid #fff;
	letter-spacing: 3px;
}
.top_sec03_ttl02_eng{
	font-size:25px;
	font-weight: 700;
	color: #fff;
	line-height: 1.5;
	display: block;
}
.top_sec03_ttl02_arrow{
	width: 20px;
	position: absolute;
	top:50%;
	transform: translateY(-50%);
	right:20px;
}

.common_contact{
	margin: 60px auto 100px;
	width: 100%;
  height: 250px;
  background-image: url('../img/common_banner_back_pc.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
  background-color: #0556B7;
  padding: 5px 20px;
}
.common_contact_ttl_wrap_border{
	border-bottom: 2px solid #fff;
}
.common_contact_ttl_en{
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	font-size: 60px;
	font-style: italic;	
	color: #fff;
	opacity: 0.4;
	line-height: 1.3;
	display: inline-block;
}
.common_contact_ttl_jp{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight:700;
	font-size: 22px; 
	color: #fff;
	letter-spacing: 2px;
	line-height: 1.3;
	display: inline-block;
	margin-left:100px;
	padding-bottom: 15px;
}
.common_contact_wrap{
	display: table;
	width: 100%;
	margin-top: 30px;
}
.common_contact_contents01{
	display: table-cell;
	width: 21%;
	vertical-align: middle;
}
.common_contact_subttl{
	padding: 10px 17px;
	border-radius: 100vh;
	background-color: #019F49;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	margin-right: 24px;
}
.common_contact_contents02{
	display: table-cell;
	width: 36%;
	vertical-align: middle;
}
.common_contact_tel{
	margin: 0;
}
.common_contact_tel a{
	font-weight:700;
	font-size: 48px; 
	color: #fff;
	letter-spacing: 2px;
	line-height: 1.3;
	margin: 0;
	text-decoration: none;
}
.common_contact_tel a::before{
	content: "";
  display: inline-block;  
  background-image: url('../img/tel_icon.png');
  background-size: cover;
  background-repeat: no-repeat;
  width: 40px;
  height: 44px;
  margin-right: 10px;
  vertical-align: middle;
}
.common_contact_txt{
	font-weight:500;
	font-size: 16px; 
	color: #fff;
	line-height: 2;
	text-align: center;
	margin: 0;
}
.common_contact_contents03{
	display: table-cell;
	width: 44.5%;
	vertical-align: middle;
	padding: 0 42px;
}
.common_contact_button a{
	width: 395px;
  display: block;
  padding: 25px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
	background-color: #019F49;
  cursor: pointer;
	text-decoration: none;
	text-align: center;
	line-height: 1;
	border-radius: 100vh;
	position: relative;
}
.common_contact_button a::after{
	content: "";
  position: absolute;
  top:50%;
	transform: translateY(-50%);
  right: 10px;
  width: 20px;
  height: 20px;
  background: url("../img/arrow_icon.png");
    background-repeat: repeat;
    background-size: auto;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.common_contact_button a:hover{
  opacity: 0.8;
  transition: opacity 0.2s linear;
}
.common_contact_back{
	max-width: 100%;
  height: auto;
  background-image: url('../img/common_back_pc.jpg');
  background-size: 100% 420px;
  background-repeat: no-repeat;
  background-position: bottom;
}



/* biz_mainvisual */
/* メインビジュアル */
.biz_mainvisual{
	margin-top: 80px; 
  background-image: url("../img/biz_main.jpg");
	background-repeat: no-repeat;
   -webkit-background-size: cover;
   background-size: cover;
	background-position:50% 0%;
  z-index: 1;
  overflow: hidden;
	height: 250px;
}
.main_black {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
}
.common_main_wrap{
	width: 1080px;
	margin: 0 auto;
	position: relative;
}
.biz_main_ttl_wrap{
	width: 200px;
	position: absolute;
  top: 58px;
	left: 0;  
	z-index: 2;
}
.common_main_ttl{
	font-family: 'Noto Serif JP', serif;
	font-size: 42px;
	font-weight: 700;
  color: #fff;
	letter-spacing: 8px;
	text-shadow: 0 0 10px rgba(0,0,0,0.4);
	border-bottom: 1px solid #fff;
	padding-bottom: 4px;
	text-align: center;
}
.common_main_txt{
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 22px;
	font-style: italic;	
	color: #fff;
	line-height: 1.3;
	text-align: center;
	letter-spacing: 4px;
	margin: 12px 0;
}

/* biz_sec01 */
.biz_sec01{
	max-width:100%;
	background-image: url("../img/common_sec01_back.png");
	background-repeat: no-repeat;
   -webkit-background-size: absolute;
   background-size: absolute;
	background-position:right 64vw top 0;
  z-index: 0;
  overflow: hidden;
}
#breadcrumbs {
	font-weight:400;
	font-size:12px;
	margin: 15px 0 0;
	z-index: 5;
}
#breadcrumbs ul li{
	color:#282828;
	display: inline-block;
	margin: 0 0.5em;
	letter-spacing: 1px;
}
#breadcrumbs ul li a{
	color: #003B82;	
	display: inline-block;
}
#breadcrumbs a:hover{
	color: #003B82;	
	transition:1s all;
}
.common_txt_center{
	font-size: 16px;
	text-align: center;
	letter-spacing: 1px;
	margin: 0 0 30px!important;
}
.biz_sec01_wrap{
	width: 100%;
	margin: 70px 0;
}
.biz_sec01_left{
	float:left;
	width: 53.5%;
	margin: 0;
}
.biz_sec01_right{
	float:right;
	width: 37%;
	margin: 0 40px 0 60px;
}

.biz_ttl{
	font-weight: 700;
	font-size: 30px;
	color: #003B82;	
	line-height: 1;	
	letter-spacing: 1px;
	width: 100%;
	border-bottom: 1px solid #003B82;	
	padding-bottom: 20px;
}

/* biz_sec02 */
.biz_sec02{
	margin: 0 auto;
	max-width: 100%;
	background-image: url('../img/biz_sec02_back.jpg');
	background-size: cover;
	background-position: 50% 50%;
	height: 440px;
}
.biz_sec02_wrap{
	width: 100%;
	margin: 83px 0;		
}
.biz_sec02_left{
	float:left;
	width: 37%;
	margin: 0 60px 0 40px;
}
.biz_sec02_right{
	float:right;
	width: 48%;
	margin: 0;
	position: relative;
}
.biz_triangle{
	position: absolute;
	top:-83px;
	left:-46px;
	width: 489px;
	height: 281px;	
}

/* biz_sec03 */
.biz_sec03{
	margin: 0 auto;
	max-width: 100%;
}
.biz_sec03_bnrph_wrap{
	margin: 0 auto;
	max-width: 100%;
	display: flex;
	flex-wrap: nowrap;
	margin: 75px auto 100px;
}
.biz_sec03_bnrph{
	width: 21.5%;
}

/* equipment_mainvisual */
/* メインビジュアル */
.equipment_mainvisual{
	margin-top: 80px; 
  background-image: url("../img/equipment_main.jpg");
	background-repeat: no-repeat;
   -webkit-background-size: cover;
   background-size: cover;
	background-position:50% 0%;
  z-index: 1;
  overflow: hidden;
	height: 250px;
}
.equipment_main_ttl_wrap{
	width: 200px;
	position: absolute;
  top: 58px;
	left: 0;  
	z-index: 2;
}

/* equipment_sec01 */
.equipment_sec01{
	max-width:100%;
	background-image: url("../img/common_sec01_back.png");
	background-repeat: no-repeat;
   -webkit-background-size: absolute;
   background-size: absolute;
	background-position:right 64vw top 0;
  z-index: 0;
  overflow: hidden;
}
.equipment_sec01_wrap{
	width: 93%;
	margin: 60px auto 10px;
}
.equipment_ttl{
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1.4;
	padding: 0 0 0 1em;
	background: transparent;
  border-left: solid 8px #003B82;	
  margin-bottom: 20px;
}
.equipment_sec01_inner{
	width: 100%;
}
.equipment_sec01_left{
	float:left;
	width: 39.7%;
	margin: 0;
}
.equipment_sec01_right{
	float:right;
	width: 54.6%;
	margin: 0 0 0 60px;
}
table.equipment_tbl{
	width: 100%;
}
table.equipment_tbl th{
	background-color: #003B82;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	text-align: center;
	padding: 5px;
	border: 1px solid #fff;
	width: 33.33%;
}
table.equipment_tbl td{
	text-align: center;
	padding: 5px;
	border: 1px solid #ccc;
	width: 33.33%;
}
.equipment_sec01_left02{
	float:left;
	width: 47%;
	margin: 0;
}
.equipment_sec01_right02{
	float:right;
	width: 47%;
	margin: 0 0 0 60px;
}

/* equipment_sec02 */
.equipment_sec02{
	margin: 70px auto 0;
	max-width: 100%;
}
.equipment_sec02_wrap{
	width: 93%;
	margin: 60px auto 100px;
}
.equipment_sec02_left{
	float:left;
	width: 39.7%;
	margin: 0;
}
.equipment_sec02_right{
	float:right;
	width: 54.6%;
	margin: 0 0 0 60px;
}

/* company_mainvisual */
/* メインビジュアル */
.company_mainvisual{
	margin-top: 80px; 
  background-image: url("../img/company_main.jpg");
	background-repeat: no-repeat;
   -webkit-background-size: cover;
   background-size: cover;
	background-position:50% 50%;
  z-index: 1;
  overflow: hidden;
	height: 250px;
}
.company_main_ttl_wrap{
	width: 200px;
	position: absolute;
  top: 58px;
	left: 0;  
	z-index: 2;
}

/* company_sec01 */
.company_sec01{
	max-width:100%;
	background-image: url("../img/common_sec01_back.png");
	background-repeat: no-repeat;
   -webkit-background-size: absolute;
   background-size: absolute;
	background-position:right 64vw top 0;
  z-index: 0;
  overflow: hidden;
}

.cont_ttl_wrap{
	width: 100%;
	border-bottom: 1px solid #003B82;	
	padding-bottom: 20px;
}
.cont_ttl_eng{
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	font-size: 30px;
	font-style: italic;	
	color: #282828;	
	line-height: 1;	
}
.cont_ttl_jp{
	font-weight: 700;
	font-size: 34px;
	color: #003B82;	
	line-height: 1.4;	
	letter-spacing: 3px;
}
.company_sec01_wrap{
	width: 100%;
	margin: 45px 0 0;		
}
.company_sec01_left{
	float:left;
	width: 58%;
	border-left:1px solid #003B82;
	padding-left: 40px;	
}
.company_sec01_ttl{
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	font-size: 28px;
	line-height: 1.6;
	color: #282828;
	letter-spacing: 1px;
	border-bottom: 1px solid #003B82;
	padding-bottom: 20px;	
	margin: 20px 0 10px;
}
.company_sec01_txt{
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	font-size: 18px;
	line-height: 2.5;
	letter-spacing: 1px;	
}
.company_sec01_right{
	float:right;
	width: 37%;
}


/* company_sec02 */
.company_sec02{
	margin: 65px auto 0;
	max-width: 100%;
}

.company_sec02_wrap{
	width: 100%;
	margin: 45px 0 0;		
}
.company_sec02_left{
	float:left;
	width: 41%;
	padding-left: 40px;	
}
.company_sec02_txt{
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 2.4;
	margin: 0;
}
.company_sec02_sign{
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	font-size: 20px;
	text-align: right;
	letter-spacing: 1px;
	margin: 10px 0;
}
.company_sec02_right{
	float:right;
	width: 54%;
}


/* company_sec03 */
.company_sec03{
	margin: 65px auto 0;
	max-width: 100%;
	position:relative;
}
.company_sec03_wrap{
	width: 100%;
	margin: 60px auto 0;
	padding-left: 40px;	
}
.company_sec03_Img{
	position: absolute;
	top:160px;
	right: 0;
	width: 38%;
}
.company_sec03 table{
	width: 58%;
}
.company_sec03 table th{
	width: 24%;
	background-color:#003B82;
	color: #fff;
	font-size: 14px;
	padding: 10px 15px;
	border: 1px solid #fff;	
	vertical-align: middle;
}
.company_sec03 table td{
	width: 76%;
	font-size: 16px;
	padding: 10px 15px;
	border: 1px solid #003B82;	
	vertical-align: middle;
}


/* company_sec04 */
.company_sec04{
	margin: 65px auto 0;
	max-width: 100%;
}
.company_sec04_wrap{
	width: 100%;
	margin: 60px auto 0;
	padding: 0 40px;	
}
.company_sec04 table{
	width: 100%;
}
.company_sec04 table th{
	width: 22%;
	background-color:#003B82;
	color: #fff;
	font-size: 16px;
	padding: 10px 20px;
	border: 1px solid #fff;	
	vertical-align: middle;
	height: 85px;
}
.company_sec04 table td{
	width: 78%;
	font-size: 16px;
	padding: 10px 20px;
	border: 1px solid #003B82;	
	vertical-align: middle;
}
.company_sec04_Img{
	width: 93%;
	margin: 55px auto 0;
}

/* company_sec05 */
.company_sec05{
	margin: 65px auto 0;
	max-width: 100%;
}
.company_sec05_wrap{
	width: 100%;
	margin: 60px 0 100px;	
}
.gglmap{
	width: 100%;
	height: 600px;
}



/* contact_mainvisual */
/* メインビジュアル */
.contact_mainvisual{
	margin-top: 80px; 
  background-image: url("../img/contact_main.jpg");
	background-repeat: no-repeat;
   -webkit-background-size: cover;
   background-size: cover;
	background-position:50% 0%;
  z-index: 1;
  overflow: hidden;
	height: 250px;
}
.contact_main_ttl_wrap{
	width: 300px;
	position: absolute;
  top: 58px;
	left: 0;  
	z-index: 2;
}

/* contact_sec01 */
.contact_sec01{
	max-width:100%;
	background-image: url("../img/common_sec01_back.png");
	background-repeat: no-repeat;
   -webkit-background-size: absolute;
   background-size: absolute;
	background-position:right 64vw top 0;
  z-index: 0;
  overflow: hidden;
}
.contact_sec01_b_txt{
	margin:55px 0 0;
	text-align: center;
	letter-spacing: 1px;
	font-weight: 700;
}
.contact_sec01_ttl_kakunin{
	font-size: 28px;
	font-weight: 700;
	color: #003B82;	
	text-align: center;
	margin:30px 0 40px ;
}
.contact_sec01 h4{
	font-size: 20px;
	line-height: 1.7;
	font-weight: 700;
	color: #003B82;	
	text-align: center;
	margin:30px 0 60px ;
}

.contact_sec01_txt{
	text-align: center;
	letter-spacing: 1px;
	margin: 0 0 100px;
}

.contact_sec01_wrap{
	border: 5px solid #CCD7E6;
	padding: 20px;
	width: 640px;
	margin: 25px auto;
}
.contact_sec01_logo_wrap{
	text-align: center;
}
.contact_sec01_logo{
	width: 264px;
	display: inline-block;
	vertical-align: middle;
}
.contact_tel{
	font-weight: 700;
	font-size: 28px;
	color: #003B82;	
	text-align: center;
	margin: 0 0 0 30px;
	letter-spacing: 1px;
	display: inline-block;
	vertical-align: top;
	line-height: 1.4;
}
.contact_txt{
	font-size: 14px;
	line-height: 1.4;
	text-align: center;
	margin: 15px 0 0;
	letter-spacing: 1px;
}
.contact_privacy_wrap{
	width: 100%;
	margin: 50px auto 0;
	border-top:1px solid #003B82;
}
.contact_privacy_ttl{
	font-size: 18px;
		line-height: 1.7;
	font-weight: 700;
	color:#003B82;
	text-align: center;
	margin: 30px 0 0;
	letter-spacing: 1px;
}
table.formTable{
	margin: 30px auto;
	width: 75%;
	font-size: 16px;
}
table.formTable th{
	width: 40%;
	padding: 28px 20px;
	vertical-align: middle;
	font-weight: 400;	
	border-bottom:1px solid #ccc;
}
table.formTable td{
	width: 60%;
	padding: 28px 20px;
	vertical-align: middle;
	border-bottom:1px solid #ccc;
}


.rule{
	width: 90%;
	margin: 0 auto;
	height: 210px;
	padding: 15px;
	border: 1px solid #CCCCCC;
	box-sizing: border-box;
	margin-top: 30px;
	overflow-y: scroll;	
	font-size: 13px;
}
.contact_privacy{
	text-align: center;
	margin: 40px 0;
	font-size: 16px;
}
.contact_sec01 table{
	margin: 30px auto 0;
	width: 75%;
	font-size: 16px;
}
table.contact_sec01_privacy {
	margin: 0 auto!important;
	width: 75%;
	font-size: 16px;
}

.contact_sec01 th{
	width: 30%;
	padding: 28px 20px;
	vertical-align: middle;
	font-weight: 400;	
}
.contact_sec01 td{
	width: 70%;
	padding: 28px 20px;
	vertical-align: middle;
}

.contact_sec01 th.date_1_2{
	padding: 15px 20px 0;
	vertical-align: middle;
	}

.contact_sec01 td.date_1_3{
	width: 72%;
	padding: 15px 20px;
	vertical-align: middle;
}

.required{
	font-family: 'Noto Sans JP', sans-serif;
  font-size:13px;
  padding: 2px 10px;
  background:#DB3131;
  color: #fff;
  margin-left: 1em; 
}
.contactform td p.fot30,.contactform th p.fot30{
	font-size: 14px;
}
.frm_button_wrp{
	width: 100%;
	text-align: center;
	margin: 80px 0 100px;
}
.frm_button{
width: 520px;
color:#fff;
font-weight: 700;
font-size: 18px;
background-color:#003B82;
padding: 24px;
margin: 0 auto;
display: inline-block;
text-decoration: none;
letter-spacing: 2px;
text-align: center;
border:none;
cursor: pointer;
position: relative;
margin: 0 10px;
}
.frm_button:hover{
	color: #fff;
	opacity: 0.8;
	-webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all  0.3s ease;
}
.thx_button{
width: 520px;
color:#fff;
font-weight: 700;
font-size: 18px;
background-color:#003B82;
padding: 18px;
margin: 0 auto;
display: inline-block;
text-decoration: none;
letter-spacing: 2px;
text-align: center;
border:none;
cursor: pointer;
position: relative;
margin: 0 10px;
}
.thx_button a{
	text-decoration: none;
	color: #fff;
}
.thx_button:hover{
	color: #fff;
	opacity: 0.8;
	-webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all  0.3s ease;
}
.arrow02 i{
	position: absolute;
  top:50%;
	transform:translateY(-50%);
	left:10px; 
	color: #fff;
	font-size:30px;
}
a.arrow02 i{
	position: absolute;
  top:50%;
	transform:translateY(-50%);
	left:10px; 
	color: #fff;
	font-size:30px;
}

.wpcf7-spinner{
	display: none!important;
}
.use_icon{
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.contactform input[type="text"],.contactform input[type="email"],.contactform input[type="tel"],
.contactform textarea{
  width: 100%;
  padding: 16px;
  border: 1px solid #cfd9db;
  background-color: #ffffff;
  border-radius: 0.25em;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
	font-size: 16px;
}
select{
  width: 30%;
  padding: 16px;
  border: 1px solid #cfd9db;
  background-color: #ffffff;
  border-radius: 0.25em;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
	font-size: 16px;
}

.contactform input[type="date"]{
	width: 100%;
  padding: 16px;
  border: 1px solid #cfd9db;
  background-color: #ffffff;
  border-radius: 0.25em;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08)!important;
	font-size: 16px;
}

.date_ttl{
	font-size: 22px;
}


.contact_sec01 p.error_messe{
	 color:#DB3131;
}





/* footer01 */
.footer01{
	max-width:100%;
	border-top:5px solid #F4F4F4;
	z-index: 1;
}
.footer_back_trapezoid_wrap{
	max-width:100%;
	background-image: url("../img/foot_back.png");
	background-repeat: no-repeat;
   -webkit-background-size: absolute;
   background-size: absolute;
	background-position:left 30vw top 0;
  z-index: 0;
  overflow: hidden;
  height: 338px;	
}

.foot_logo_wrp{
	width: 73.6%;
	margin: 20px auto 0;
	display: flex;
	flex-wrap: nowrap;
}
.foot_logo img{
	width: 298px;
}
.foot_logo{
	width: 40%;
}
.foot_address{
	width: 45%;
	font-size: 14px;
	letter-spacing: 1px;	
	line-height: 1.6;
	margin-left: 45px;
}
.foot_address a{
	text-decoration: none!important;
}
.foot_address span{
	font-size: 16px;
	letter-spacing: 1px;
	font-weight: 700;
	color: #003B82;	
}
.foot_wrp{
	width: 60%;
	margin: 25px auto 30px;
	display: flex;
	flex-wrap: nowrap;
	position: relative;
}
.foot_wrp ul{
	width:50%;
}
.foot_wrp ul li{
	font-size: 14px;
	font-weight: 500;
	line-height: 1.3;
}
.foot_wrp ul li a{
	text-decoration: none;
	color: #282828;
}
.foot_wrp li::before{
	font-size: 24px;
  font-family: "Material Icons";
  font-style: "Round";
	content: "\e5df";
  color: #003B82;
  vertical-align: middle;
}
ul.foot_column li::before{
	font-size: 20px;
  font-family: "Material Icons";
	content: "\e15b";
  color: #003B82;
  vertical-align: middle;
}
ul.foot_column li a{
	text-decoration: none;
	color: #282828;
}
.foot_tiktok{
	position: absolute;
	width: 100px;
	top:-75px;
	right: -230px;
}
.footer_copy{
	width:100%;
	display: block;
	font-weight: 400;
	font-size: 12px;
	text-align:center;
	letter-spacing: 1px;
	padding-bottom: 15px;
	z-index: 1;
}


/*トップへ戻るボタン*/
.page_top {
	position: fixed;
	bottom: 0;
	right: 20px;
	padding-bottom: 20px;
	z-index: 1000;

}
body {
  position: relative;/*トップへ戻るボタンに必要な様です*/

}
