@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;
}
img{
	vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

.br-pc { 
  display:none;
}
.pcmenu{
	display:none!important;
}
.tbmenu{
	display:none!important;
}

.br-tb { 
  display:none;
}


.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: 92%;
	margin: 0 auto;
	padding: 0 ;
  overflow: hidden;
}

/* ナビゲーション */
#head_wrap01{
	transition: all ease .6s;
	position: fixed;
	height: 60px;
	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: 100px;/* 幅 */
  height: 60px;
  border-bottom: 60px solid #CCD7E6; /* 高さ */
  border-left: 100px solid transparent; /* 左側下辺の伸び */
  box-sizing: border-box;
}
.sp_navi_menu{
	height: 60px;
}
.sp_navi_menu_wrap{
	display:inline-block;
}
.header_logo_sp{
	width: 236px;
	position: absolute;
	top: 8px;
	left: 14px;
  right: 0;
	z-index: 3;
}
#toggle{
	position: absolute;
	width:22px;
	top: 10px;
	right: 14px;
}
.head_wrap{
	z-index: 1000;
	box-shadow: 0px 6px 6px -5px rgba(0,0,0,0.3);
	width:100%;	
	margin: 0 auto;
}
#menu {
	display: none;
}


/*==ナビゲーション全体の設定*/
nav{
  text-align: center;
  padding: 0;
	background-color: #fff;
}

/*ナビゲーションを横並びに*/
nav ul{
  list-style: none;
  display: block;
  justify-content: center;
	width:100%;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
  position: relative;
width:100%;

}
/*ナビゲーションのリンク設定*/
nav ul li a{
  display: block;
  text-decoration: none;
  padding:14px;
  transition:all .3s;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight:500 ;
	font-size: 15px;
	color:  #282828;
  border-top:solid 1px #A2AAB5;
  background-color: #EFF2F7;

}
nav ul li a:hover{
	color: #282828;

}
nav ul li:last-child a{

}
/*==矢印の設定*/

/*2階層目を持つliの矢印の設定*/
nav ul li.has-child::before{
  content:'';
  position: absolute;
  right:15px;
  top:25px;
  width:6px;
  height:6px;
  border-top: 2px solid #282828;
    border-right:2px solid #282828;
    transform: rotate(135deg);
}

/*3階層目を持つliの矢印の設定*/
nav ul ul li.has-child::before{
  content:'';
  position: absolute;
  left:6px;
  top:17px;
  width:6px;
  height:6px;
    border-top: 2px solid #fff;
    border-right:2px solid #fff;
    transform: rotate(45deg);
}
/*矢印の位置と向き*/

nav ul li.has-child::before{
  right:20px;  
}

nav ul ul li.has-child::before{
    transform: rotate(135deg);
  right:20px;
}
    
nav ul li.has-child.active::before{
    transform: rotate(-45deg);
}


/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
nav li.has-child ul{
    /*絶対配置で位置を指定*/
  position: relative;
  left:0;
  top:0;
  z-index: 4;
    /*形状を指定*/
  background-color:#3C699F;
  width:100%;
    /*はじめは非表示*/
  visibility:visible;/*JSで制御するため一旦表示*/
  opacity:1;/*JSで制御するため一旦表示*/
  display: none;/*JSのslidetoggleで表示させるため非表示に*/

    /*アニメーション設定*/
  transition:none;/*JSで制御するためCSSのアニメーションを切る*/
}
/*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;
}
nav ul li li a{
	font-weight:500 ;
	font-size: 15px;
  padding:10px;
  background-color:#3C699F;
}
/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
	font-weight:400 ;
	font-size: 15px;
  color: #fff;
  padding:10px;
}
nav li.has-child ul li.top-child a{
	font-weight:400 ;
	font-size: 15px;
  color: #fff;
	border-top:solid 1px #cccccc;
  padding:10px;
  background-color:#3C699F;
}

nav li.has-child ul li:last-child a{
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
}


/* top_mainvisual */
/* メインビジュアル */
.top_mainvisual{
	margin-top: 60px; 
	width:100%;	
	position: relative;
}

.top_main_ttl{
	position: absolute;
	top: 50%;
  left: 14px;
  transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	font-size: 19px;
	color: #fff;
	line-height: 1.6;
	letter-spacing: 1px;
	z-index: 10;
	border-bottom: 1px solid #fff;
	padding-bottom: 10px;
	text-shadow: 0 0 10px rgba(0,0,0,0.4);
}
.slide_ph{
 width: 100%;
 height: 40vh;
} 
.slide_ph img{
	width: 100%;
	 height: 40vh;
  object-fit: cover;	
}
/* メインビジュアル */
/* top_mainvisual */


/* top_sec01 */
.top_sec01{
	margin: 0 auto;
	max-width: 100%;
	background-image: url('../img/top_sec01_back.jpg');
	background-size: cover;
	background-position: 50% 50%;
	height: auto;
	padding-bottom: 50px;
}
.top_sec01_wrap{
	width: 100%;
	margin: 35px auto 0;
	border-left: 1px solid #003B82;
	padding-left: 20px;	
}
.top_sec01_Img01{
	margin-top: 20px;
	width: 100%;
}
.top_sec01_Img02{
	display: none;
}
.top_sec01_ttl{
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.6;
	color: #003B82;
	letter-spacing: 0px;
	border-bottom: 1px solid #003B82;
	display: inline-block;
	padding-bottom: 20px;	
	margin: 10px 0 0;
}

/* 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 19vw top 0;
  z-index: 0;
  overflow: hidden;
  padding-top: 50px;
}
.ttl_wrap_border{
	padding-bottom: 10px;
	border-bottom: 1px solid #003B82;
}
.ttl_jp{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight:700;
	font-size: 16px; 
	color: #282828;
	letter-spacing: 1px;
	line-height: 2;	
}
.ttl_en{
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	font-size: 45px;
	font-style: italic;	
	color: #003B82;
	line-height: 1;
}
.top_txt_center{
	font-size: 14px;
	line-height: 1.7;
	text-align: center;
	letter-spacing: 1px;
	margin: 25px 0 0 !important;
}
.top_sec02_wrap{
	width: 100%;
	margin: 0px auto 90px;
}
.top_sec02_contents{
	margin: 40px 0 78px;
	width:100%;
	border: 1px solid #003B82;
	position: relative;
}

.top_sec02_ttl_wrap{
	position: absolute;
	bottom: -28px;
	left: 50%;
  transform: translateX(-50%);
}
.top_sec02_ttl{
	padding: 8px 0;
	background-color:#003B82;
	color: #fff;
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 1px;
	width: 198px;
	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 19vw top 0;
  z-index: 0;
  overflow: hidden;
  padding-top: 50px;
}
.top_sec03_back{
	max-width: 100%;
  height: auto;
  background-image: url('../img/top_sec03_back.jpg');
  background-size: 100% 1040px;
  background-repeat: no-repeat;
  background-position: bottom;
}


.top_sec03_ttl{
	font-weight: 700;
	font-size: 20px;
	color: #003B82;
	letter-spacing: 1px;
	text-align: center;
	border-bottom: 1px solid #003B82;
	margin-top: 30px;
}
.top_sec03_wrap01{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 30px auto 0;
	column-gap: 10px;
	row-gap: 30px;
}
.top_sec03_contents01{
	width:48.5%; 
}
.top_sec03_subttl{
	font-weight:700;
	font-size: 15px; 
	color: #fff;
	letter-spacing: 0px;
	line-height: 1.7;
	text-align: center;
	background-color: #003B82;
	padding: 5px;
}
.top_sec03_Img{
	width: 100%;
	height:auto;
	margin-bottom: 10px;
}
.top_sec03_contents01 p,.top_sec03_contents02 p{
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
}

.top_sec03_wrap02{
	width: 100%;
	margin: 30px auto 0;
}
.top_sec03_contents02{
	width:100%;
}
.top_sec03_wrap03{
	width: 100%;
	margin: 50px auto 0;
}
.top_sec03_contents03{
	width:100%;
	position: relative;
	margin-top: 40px;
}
.top_sec03_contents03 a{
	text-decoration:none;	
}
.top_sec03_banner_Img{
	overflow: hidden;	/*拡大時にはみ出た部分を隠す*/
  height: auto;	
}
.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:22px;
	font-weight: 700;
	color: #fff;
	border-bottom: 1px solid #fff;
	letter-spacing: 3px;
	line-height: 1.5;
	padding-bottom: 5px;
}
.top_sec03_ttl02_eng{
	font-size:18px;
	font-weight: 700;
	color: #fff;
	line-height: 1.5;
	display: block;
}
.top_sec03_ttl02_arrow{
	width: 15px;
	position: absolute;
	top:50%;
	transform: translateY(-50%);
	right:15px;
}

.common_contact{
	margin: 60px auto 90px;
	width: 100%;
  height: auto;
  background-image: url('../img/common_banner_back_sp.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
  background-color: #0556B7;
  padding: 5px 20px;
}
.common_contact_ttl_wrap_border{
}
.common_contact_ttl_en{
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	font-size: 45px;
	font-style: italic;	
	color: #fff;
	opacity: 0.5;
	line-height: 1.3;
	display: block;
}
.common_contact_ttl_jp{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight:700;
	font-size: 16px; 
	color: #fff;
	letter-spacing: 2px;
	line-height: 1.3;
	display: block;
	margin-left:0;
	padding-top: 15px;
	border-top: 2px solid #fff;
	text-align: center;
}
.common_contact_wrap{
	width: 100%;
	margin-top: 30px;
}
.common_contact_contents01{
	text-align: center;
}
.common_contact_subttl{
	padding: 10px 17px;
	border-radius: 100vh;
	background-color: #019F49;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	display: inline-block;
	text-align: center;	
}
.common_contact_contents02{

}
.common_contact_tel{
	margin: 15px 0 0;
	text-align: center;
}
.common_contact_tel a{
	font-weight:700;
	font-size: 36px; 
	color: #fff;
	letter-spacing: 2px;
	line-height: 1.3;
	margin: 0;
	text-decoration: none;
	vertical-align: middle;
	
}
.common_contact_tel a::before{
	content: "";
  display: inline-block;  
  background-image: url('../img/tel_icon.png');
  background-size: cover;
  background-repeat: no-repeat;
  width: 35px;
  height: 38px;
  margin-right: 5px;
  vertical-align: middle;
}
.common_contact_txt{
	font-weight:500;
	font-size: 14px; 
	color: #fff;
	line-height: 2;
	text-align: center;
	margin: 10px 0;
}
.common_contact_contents03{
	width: 100%;
	margin: 30px 0 45px;
}
.common_contact_button a{
	width: 100%;
  display: block;
  padding: 20px;
  font-size: 16px;
  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_sp.jpg');
  background-size: 100% 555px;
  background-repeat: no-repeat;
  background-position: bottom;
  overflow: hidden;
}


/* biz_mainvisual */
/* メインビジュアル */
.biz_mainvisual{
	margin-top: 60px; 
  background-image: url("../img/biz_main.jpg");
	background-repeat: no-repeat;
   -webkit-background-size: cover;
   background-size: cover;
	background-position:30% 0%;
  z-index: 1;
  overflow: hidden;
	height: 135px;
}
.main_black {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
}
.common_main_wrap{
	width: 66.5%;
	margin: 0 auto;
	position: relative;
}
.biz_main_ttl_wrap{
	width: 100px;
	position: absolute;
  top: 30px;
	left: 0;  
	z-index: 2;
}
.common_main_ttl{
	font-family: 'Noto Serif JP', serif;
	font-size: 20px;
	font-weight: 700;
  color: #fff;
	letter-spacing: 5px;
	text-shadow: 0 0 10px rgba(0,0,0,0.4);
	border-bottom: 1px solid #fff;
	padding-bottom: 3px;
	text-align: center;
}
.common_main_txt{
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 13px;
	font-style: italic;	
	color: #fff;
	line-height: 1.3;
	text-align: center;
	letter-spacing: 2px;
	margin: 8px 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 19vw top 0;
  z-index: 0;
  overflow: hidden;
}
#breadcrumbs {
	font-weight:400;
	font-size:10px;
	line-height: 1.6;
	margin: 15px 0 30px;
	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: 13px;
	line-height: 1.5;
	text-align: center;
	letter-spacing: 1px;
	margin: 0 0 30px!important;
}

.biz_sec01_wrap{
	width: 100%;
	margin: 60px 0;
}
.biz_sec01_left{
	float:none;
	width: 100%;
	margin: 0;
}
.biz_sec01_right{
	float:none;
	width: 100%;
	margin: 30px 0 0 0;
}

.biz_ttl{
	font-weight: 700;
	font-size: 24px;
	color: #003B82;	
	line-height: 1;	
	letter-spacing: 1px;
	width: 100%;
	border-bottom: 1px solid #003B82;	
	padding-bottom: 15px;
}

/* 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: auto;
	position: relative;
}
.biz_sec02_wrap{
	width: 100%;
	margin: 48px 0 60px;		
}
.biz_sec02_left{
	float:none;
	width: 100%;
	padding-top: 0px;
	margin: 40px 0px 0 0;
}
.biz_sec02_right{
	float:none;
	width: 100%;
	margin: 0 0 0 0px;	
}
.biz_triangle{
	position: absolute;
	top:0px;
	right:75px;
	width: 510px;
	height: 293px;	
}

/* biz_sec03 */
.biz_sec03{
	margin: 0 auto;
	max-width: 100%;
}
.biz_sec03_bnrph_wrap{
	margin: 0 auto;
	max-width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin: 60px auto 60px;
}
.biz_sec03_bnrph{
	width: 50%;
}

/* equipment_mainvisual */
/* メインビジュアル */
.equipment_mainvisual{
	margin-top: 60px; 
  background-image: url("../img/equipment_main.jpg");
	background-repeat: no-repeat;
   -webkit-background-size: cover;
   background-size: cover;
	background-position:20% 50%;
  z-index: 1;
  overflow: hidden;
	height: 135px;
}
.equipment_main_ttl_wrap{
	width: 100px;
	position: absolute;
  top: 30px;
	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 19vw top 0;
  z-index: 0;
  overflow: hidden;
}
.equipment_sec01_wrap{
	width: 100%;
	margin: 40px 0 0;
}
.equipment_ttl{
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1.4;
	padding: 0 0 0 0.5em;
	background: transparent;
  border-left: solid 6px #003B82;	
  margin-bottom: 20px;
}
.equipment_sec01_inner{
	width: 100%;
}
.equipment_sec01_left{
	float:none;
	width: 100%;
	margin: 0;
}
.equipment_sec01_right{
	float:none;
	width: 100%;
	margin: 0 ;
}
table.equipment_tbl{
	width: 100%;
	margin-top: 20px;
}
table.equipment_tbl th{
	background-color: #003B82;
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	text-align: center;
	padding: 2px;
	border: 1px solid #fff;
}
table.equipment_tbl th.equipment_daisu{
	width: 25%;
}
table.equipment_tbl td{
	font-size: 14px;
	text-align: center;
	padding: 2px;
	border: 1px solid #ccc;
}
table.equipment_tbl td.equipment_daisu{
	width: 25%;
}
.equipment_sec01_left02{
	float:none;
	width: 100%;
	margin: 0;
}
.equipment_sec01_right02{
	float:none;
	width: 100%;
	margin: 40px 0 0;
}

/* equipment_sec02 */
.equipment_sec02{
	margin: 60px auto 0;
	max-width: 100%;
}
.equipment_sec02_wrap{
	width: 100%;
	margin: 40px auto 60px;
}
.equipment_sec02_left{
	float:none;
	width: 100%;
	margin: 0;
}
.equipment_sec02_right{
	float:none;
	width: 100%;
	margin: 40px 0 0 0;
}


/* company_mainvisual */
/* メインビジュアル */
.company_mainvisual{
	margin-top: 60px; 
  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: 135px;
}
.company_main_ttl_wrap{
	width: 100px;
	position: absolute;
  top: 30px;
	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 19vw top 0;
  z-index: 0;
  overflow: hidden;
}

.cont_ttl_wrap{
	width: 100%;
	border-bottom: 1px solid #003B82;	
	padding-bottom: 16px;
}
.cont_ttl_eng{
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	font-size: 22px;
	font-style: italic;	
	color: #282828;	
	line-height: 1;	
}
.cont_ttl_jp{
	font-weight: 700;
	font-size: 25px;
	color: #003B82;	
	line-height: 1.4;	
	letter-spacing: 1px;
}
.company_sec01_wrap{
	width: 100%;
	margin: 30px 0 0;		
}
.company_sec01_left{
	float:none;
	width: 100%;
	border-left:1px solid #003B82;
	padding-left: 30px;	
}
.company_sec01_ttl{
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.6;
	color: #282828;
	letter-spacing: 1px;
	border-bottom: 1px solid #003B82;
	padding-bottom: 18px;	
	margin: 20px 0 10px;
}
.company_sec01_txt{
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 2.5;
	letter-spacing: 1px;	
}
.company_sec01_right{
	float:none;
	width: 100%;
	margin: 45px 0 0;
}


/* company_sec02 */
.company_sec02{
	margin: 45px auto 0;
	max-width: 100%;
}
.company_sec02_wrap{
	width: 100%;
	margin: 0;		
}
.company_sec02_left{
	float:none;
	width: 100%;
	margin: 45px 0 0;
}
.company_sec02_txt{
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 2.3;
	letter-spacing: 1px;
	margin: 0;
}
.company_sec02_sign{
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 1px;
	margin: 5px 0;
	text-align: right;
}
.company_sec02_right{
	float:none;
	width: 100%;
	margin: 30px 0 0;
}



/* company_sec03 */
.company_sec03{
	margin: 45px auto 0;
	max-width: 100%;
}
.company_sec03_wrap{
	width: 100%;
	margin: 45px auto 0;
	padding-left: 0px;	
}
.company_sec03_Img{
	margin-top: 40px;
	width: 100%;
}
.company_sec03 table{
	width: 100%;
}
.company_sec03 table th{
	width: 28.5%;
	background-color:#003B82;
	color: #fff;
	font-size: 14px;
	padding: 10px 10px;
	border: 1px solid #fff;	
	vertical-align: middle;
}
.company_sec03 table td{
	width: 71.5%;
	font-size: 16px;
	padding: 10px 10px;
	border: 1px solid #003B82;	
	vertical-align: middle;
}

/* company_sec04 */
.company_sec03{
	margin: 45px auto 0;
	max-width: 100%;
}
.company_sec04_wrap{
	width: 100%;
	margin: 45px auto 0;
	padding-left: 0px;	
}
.company_sec04_Img{
	margin-top: 40px;
	width: 100%;
}
.company_sec04 table{
	width: 100%;
}
.company_sec04 table th{
	width: 50%;
	background-color:#003B82;
	color: #fff;
	font-size: 14px;
	padding: 7px;
	border: 1px solid #fff;	
	vertical-align: middle;
	height: 86px;
}
.company_sec04 table td{
	width: 50%;
	font-size: 14px;
	line-height: 1.7;
	padding: 7px ;
	border: 1px solid #003B82;	
	vertical-align: middle;
}

/* company_sec05 */
.company_sec05{
	margin: 55px auto 0;
	max-width: 100%;
}
.company_sec05_wrap{
	width: 100%;
	margin: 45px 0 0;	
}
.gglmap{
	width: 100%;
	height: 450px;
}



/* contact_mainvisual */
/* メインビジュアル */
.contact_mainvisual{
	margin-top: 60px; 
  background-image: url("../img/contact_main.jpg");
	background-repeat: no-repeat;
   -webkit-background-size: cover;
   background-size: cover;
	background-position:50% 50%;
  z-index: 1;
  overflow: hidden;
	height: 135px;
}
.contact_main_ttl_wrap{
	width: 150px;
	position: absolute;
  top: 30px;
	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 19vw top 0;
  z-index: 0;
  overflow: hidden;
}
.contact_sec01_b_txt{
	font-size:15px;
	margin:0px;
	text-align: center;
	letter-spacing: 0px;
	font-weight: 700;
	line-height: 1.8;
}
.contact_sec01_ttl_kakunin{
	font-size: 22px;
	font-weight: 700;
	color: #003B82;	
	text-align: center;
	margin:30px 0 40px ;
}
.contact_sec01 h4{
	font-size: 18px;
	line-height: 1.7;
	font-weight: 700;
	color: #003B82;	
	text-align: center;
	margin:0 0 40px ;
}
.contact_sec01_txt{
	font-size:15px;
	text-align: center;
	letter-spacing: 1px;
	margin: 0 0 60px;
}
.contact_sec01_wrap{
	border: 5px solid #CCD7E6;
	padding: 10px;
	width: 100%;
	margin: 25px auto;
}
.contact_sec01_logo{
	width: 250px;
	text-align: center;
	margin: 0 auto;
}
.contact_tel{
	font-weight: 700;
	font-size: 20px;
	color: #003B82;	
	text-align: center;
	margin: 0 0 5px;
	letter-spacing: 1px;
}
.contact_txt{
	font-size: 14px;
	line-height: 1.4;
	text-align: center;
	margin: 0;
	letter-spacing: 1px;
}
.contact_privacy_wrap{
	width: 100%;
	margin: 30px auto 0;
	border-top:1px solid #003B82;
}
.contact_privacy_ttl{
	font-size: 14px;
	line-height: 1.8;
	font-weight: 700;
	color:#003B82;
	text-align: center;
	margin: 20px 0;
	letter-spacing: 0px;
}
table.formTable{
	margin: 20px auto 0;
	width: 100%;
	font-size: 16px;
}
table.formTable tr{
	width: 100%;
	padding: 1em 0;
	border-bottom:1px solid #ccc;
	display: block;

}
table.formTable th{
	width: 100%;
	vertical-align: middle;
	font-weight: 400;
	display: block;	
	padding: 0;
}
table.formTable td{
	margin: 0 auto!important;
	width: 100%;
	font-size: 14px;
	line-height: 1.4;
	padding: 0;
}

.rule{
	width: 100%;
	margin: 0 auto;
	height: 250px;
	padding: 15px;
	border: 1px solid #CCCCCC;
	box-sizing: border-box;
	margin-top: 20px;
	overflow-y: scroll;	
	line-height: 1.6;
	font-size: 13px;
}
.contact_privacy{
	text-align: center;
	margin: 40px 0;
	font-size: 16px;
}
.contact_sec01 table{
	margin: 20px auto 0;
	width: 100%;
	font-size: 16px;
}
table.contact_sec01_privacy {
	margin: 0 auto!important;
	width: 100%;
	font-size: 16px;
	line-height: 1.4;
}
table.contact_sec01_privacy td {
	margin: 0 auto!important;
	width: 100%;
	font-size: 14px;
	line-height: 1.4;
	padding: 0;
}

.contact_sec01 th{
	width: 100%;
	padding: 0.5em 0;
	vertical-align: middle;
	font-weight: 400;
	display: block;	
}
.contact_sec01 td{
	width: 100%;
	padding: 0 0 1em;
	vertical-align: middle;
	display: block;	
}

.contact_sec01 th.date_1_2{
	width: 100%;
	padding: 1em 0 0;
	vertical-align: middle;
	font-weight: 400;
}

.contact_sec01 td.date_1_3{
	width: 100%;
	padding: 0 0 1em;
	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: 40px 0 100px;
}

.frm_button{
width: 100%;
color:#fff;
font-weight: 700;
font-size: 18px;

background-color:#003B82;
padding: 18px;
margin: 15px auto;
display: block;
text-decoration: none;
letter-spacing: 2px;
text-align: center;
border:none;
cursor: pointer;
position: relative;
}
.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: 100%;
color:#fff;
font-weight: 700;
font-size: 18px;

background-color:#003B82;
padding: 13px;
margin: 15px auto;
display: block;
text-decoration: none;
letter-spacing: 2px;
text-align: center;
border:none;
cursor: pointer;
position: relative;
}
.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;
}

.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 0 bottom 0;
  z-index: 0;
  overflow: hidden;
  height: 440px;	
}

.foot_logo_wrp{
	width: 100%;
	margin: 15px auto 0;
}
.foot_logo img{
	width: 266px;
}
.foot_logo{
	width: 266px;
	margin: 0 auto;
}
.foot_address{
	width: 100%;
	font-size: 14px;
	letter-spacing: 1px;	
	line-height: 1.6;
	margin: 10px 0 0;
	text-align: center;
}
.foot_address a{
	text-decoration: none!important;
}
.foot_address span{
	font-size: 16px;
	letter-spacing: 1px;
	font-weight: 700;
	color: #003B82;	
}
.foot_wrp{
	width: 90%;
	margin: 30px 0 52px;
	display: flex;
	flex-wrap: nowrap;
	position: relative;
}
.foot_wrp ul{
	width:100%;
}
.foot_wrp ul li{
	font-size: 13px;
	font-weight: 500;
	line-height: 1.5;
	width: 100%;
}
.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: 76px;
	bottom:-20px;
	right: -25px;
}
.footer_copy{
	width:100%;
	display: block;
	font-weight: 400;
	font-size: 10px;
	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;/*トップへ戻るボタンに必要な様です*/

}
