@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');
html { 
	font-size: 62.5%;
}
body {
	min-width: 350px;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
    font-size: 1.6rem;
    color: #333333;
}
li{
	list-style: none;
}
a{
	text-decoration: none;
    transition: all 0.3s ease-in-out;
	color: #333333;
}
a:hover{
	opacity: 0.5;
}
img{
	width: 100%;
    vertical-align: bottom;
}
.flex{
	display: flex;
	justify-content: space-between;
	aline-items: center;
}
.wrapper{
	width: 100%;
}
/* スクロールすると下からふわっとさせるためのコード */
.inview {
  /* 30px下げる */
  transform: translateY(30px);
  /* 要素を透明にする */
  opacity: 0;
  /* 2秒かけて、変化させる */
  transition: transform 1s, opacity 1s;
}
.inview.show {
  transform: translateY(0);
  opacity: 1;
}
/*↓↓↓↓前頁共通パーツ:ヘッダー、コンタクト、フッター↓↓↓↓*/

/*header*/
.header{
	width: 100%;
	height: 100px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
}
.header-container{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: inherit;
	color: #333;
	background-color: rgba(255, 255, 255, 0.8); 
	padding: 0px 40px;
}
.header_logo{
	display: block;
	width: 300px;
	padding-right: 20px;
}
/*nav*/
.nav_checkbox{
	opacity: 0;
	visibility: hidden;
	position: absolute;
}
.nav{
	width: auto;
}
.sp_landscape_navscroll{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: flex-end;
}
.nav_list{
	display: flex;
	align-items: center;
	column-gap: 80px;
}
.nav_item{
	display: block;
	font-weight: 600;
	font-size: 1.4rem;
	color: #333;
	white-space: nowrap;
	position: relative;
}
.nav_item::after{
	content: '';
	position: absolute;
	top: 25px;
	left: 0;
	width: 100%;
	height: 1.5px;
	background: #000080;
	transform: scale(0, 1);
	transform-origin: right top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
	transition: transform 0.3s;  /*変形の時間*/
}
.nav_item:hover::after {
	transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
	transform-origin: left top; /*左から右に向かう*/
}
.nav_cv{
    color: #fff;
    display: block;
	background-image: linear-gradient(90deg, rgba(250, 188, 42, 1) 75%, rgba(248, 255, 39, 1));
    text-align: center;
	font-size: 1.4rem;
    border-radius: 30px;
    width: 150px;
	height: 50px;
	line-height: 3.5;
	cursor: pointer;
	margin: 0 0 0 80px;
}
.logo-nav_bg{
	display: none;
}
/*contact*/
.contact{
    background-image: url(../images/contact_bg.jpg),linear-gradient(90deg, rgba(0, 0, 128, 0.7), rgba(5, 194, 199, 0.7));;
    background-size: cover;
    width: 100%;
    height: auto;
    background-position: center bottom;
	position: relative;
	background-blend-mode: soft-light;
	padding: 50px 0px;
}
.contact-container{
	max-width: 1032px;
	padding: 0px 50px;
	height: 300px;
	margin: 0 auto;
	align-items: center;
}
.contact-content_text{
	color: #fff;
	letter-spacing: 2px;
}
.sec-title_ja_contact{
	font-size: 3rem;
}
.sec-title_en_contact{
	font-family: "Montserrat", sans-serif;
  	font-weight: 500;
	font-size: 6rem;
	letter-spacing: 4px;
	display: block;
	margin-bottom: 15px;
}
.tel_btn{
	display: block;
	width: 380px;
	height: 70px;
	background-color: #fff;
	border-radius: 50px;
	font-size: 2rem;
	font-weight: 600;
	line-height: 2.5;
	text-align: center;
	letter-spacing: 2px;
}
.tel_btn::before{
	content: "\e0b0";
	font-family: "Material Symbols Outlined";
	font-size: 2.5rem;
	display: inline-block;
	transform: translateY(6px);
	padding-right: 5px;
}
.mail_btn{
	display: block;
	width: 380px;
	height: 70px;
	background-color: #fff;
	border-radius: 50px;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.8;
	text-align: center;
	margin-top: 30px;
}
.mail_btn::before{
	content: "\e158";
	font-family: "Material Symbols Outlined";
	font-size: 3rem;
	font-weight: 400;
	display: inline-block;
	transform: translateY(8px);
	padding-right: 5px;
}
/*footer*/
.footer{
	width: 100%;
	background-color: #050549;
    height: auto;
	padding: 30px 0px;
	color: #fff;
}
.footer-container_top{
	max-width: 1080px;
	padding: 24px 24px 54px;
	height: auto;
	margin: 0 auto;
}
.footer-content_company{
	width: 50%;
}
.footer_company{
	font-size: 1.6rem;
	color: #fff;
}
/*フッターのロゴ*/
.footer_company::before{
    content: "";
    display: inline-block;
    width: 60px;
    height: 60px;
    margin-right: 30px;
    vertical-align: middle;
    background-image: url(../images/geologo.svg);
}
/*ロゴ横の縦線*/
.footer_company::after{
	content: "";
    display: inline-block;
    width: 1px;
    height: 50px;
	background-color: #BCBCBC;
	transform: translate(-205px, 20px);
}
.footer_info{
	padding-top: 10px;
	font-size: 1.2rem;
	letter-spacing: 2px;
}
.footer_info p{
	padding-top: 8px;
}
/*フッターナビ*/
.footer-content_nav{
	width: 50%;
}
.footer_nav_list{
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.footer_nav_itembox{
	width: 70px;
}
.footer_nav_item{
	font-size: 1.3rem;
	color: #fff;
}
.footer_nav_item_child{
	font-size: 1.2rem;
	color: #8F8F9A;
	position: relative;
	display: inline-block;
	padding: 15px 0px 0px 8px;
}
.footer_nav_item_child::before{
	content: "";
	display: inline-block;
	width: 5px;
	height: 0.5px;
	background-color: #8F8F9A;
	position: absolute;
	top: 23px;
	left: 0;
}
.footer-container_bottom{
	margin: 0 auto;
	text-align: center;
	max-width: 1032px;
	height: auto;
	padding-top: 30px;
	border-top: solid 1px #8F8F9A;
}
.footer-container_bottom small{
	font-size: 1rem;
	letter-spacing: 1px;
	color: #8F8F9A;
}
/*上に戻るボタンここから*/
.top{
	position: fixed;
	right: 10px;
    bottom: 10px;
    width: 50px;
    height: 50px;
	border-radius: 50%;
    background-color: #1891BC;
    opacity: 0.6;
}
.top a{
	postion: relative;
	display: block;
	width: 50px;
	height: 50px;
	text-decoration: none;
}
.top a::before{
	font-family:'Material Symbols Outlined';
	content: '\e5ce';
	font-size: 4rem;
	font-weight: 200;
	color: #fff;
	position: absolute;
	width: 40px;
	height: 40px;
	top: 3%;
	left: 0;
	right: 0;
	margin: auto;
}
/*TOPここから*/
.topfv{
    width: 100%;
    height: 100vh;
    position: relative;
    background-image: url(../images/pc_fv.jpg);
    background-size: contain;
	background-position: right;
}
.topfv-content_copy{
	width: 80%;
	height: 30%;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	margin: auto;
}
.copy_ja{
	font-size: clamp(1.875rem, 1.307rem + 2.84vw, 3.438rem);/*最小30px最大55px/320-1200*/
	font-weight: 700;
	letter-spacing: 3px;
	color: #000080;
}
.copy_en{
	font-size: clamp(1.875rem, -3.125rem + 10vw, 4.375rem);
	font-family: "Montserrat", sans-serif;
  	font-weight: 500;
	letter-spacing: 2px;
	color: #C6C6C6;
	line-height: 1.5;
	padding-top: 20px;
	position: absolute;
	z-index: 100;
}
.topfv_h1{
	font-size: 1rem;
	font-weight: 400;
	color: #B5B1B1;
	padding-top: 10px;
}
.scrolldown-content{
	position: absolute;
	top: 90vh;
	left: 10%;
}
.scrolldown-content span{
	content: "";
	display: block;
	width: 1px;
	height: 180px;
	background-color: #D0E0F3;
	position: absolute;
	top: -30px;
	left: 60px;
}
.scrolldown-content span::after{
	content: "";
	display: block;
	width: 230px;
	height: 0.5px;
	background-color: #D0E0F3;
	position: absolute;
	top: 90px;
	left: -80px;
}
.scrolldown{
	width: 120px;
	height: 120px;
}
@keyframes rotation {
  	0% { transform: rotateZ(0);}
  	100% { transform: rotateZ(360deg); }
}

.spin_img {
  	animation: 15s linear infinite rotation;
	z-index: 1000;
}
.about{
    width: 100%;
    height: auto;
	padding-top: 130px;
}
.about-container{
	max-width: 1000px;
	padding: 0 0 0 100px;
	height: auto;
	margin: 0 auto;
}
.heading{
	font-size: clamp(1.875rem, 1.307rem + 2.84vw, 3.438rem);/*最小30px最大55px/320-1200*/
	font-weight: 600;
	letter-spacing: 3px;
	line-height: 1.8;
	height: auto;
}
.marker{
	background:linear-gradient(transparent 90%, rgba(250, 188, 42, 1) 10%); /* マーカーを引く */
  	/* インライン属性を指定する */
  	display: inline;
	/* 背景の繰り返しを停止 */
 	background-repeat: no-repeat;
	/* マーカーの横方向を0にして縮める */
  	background-size: 0% 100%;
  	/* マーカーが引かれる速度を指定 */
  	transition:background-size 1.8s;
}
/* マーカーが引かれる際に付与するクラス */
.marker.on {
  	/* 横方向を100%にして、マーカーを引く */
  	background-size: 100% 100%;
}
.about_content{
	width: 100%;
	padding: 20px 10% 0 50%;
}
.lead{
	letter-spacing: 2px;
	line-height: 2;
	font-weight: 500;
}
.about_content .lead:last-child{
	padding-top: 20px;
}
/*slider*/
.slider{
	padding: 80px 0px 100px;
}
.slide_item{
	margin-right: 90px;
}
.slider img{
    border-radius: 30px;
}
/*business*/
.business{
	max-width: 1032px;
	height: auto;
	margin: 0 auto;
	background-color: #f5f5f5;
	border-radius: 20px;
}
.business-text{
	width: 100%;
	padding: 50px;
}
.sec-title_ja{
	display: block;
	font-size: 3rem;
	text-shadow: 0px 0px 8px #fff;
}
.sec-title_en{
	display: block;
	font-family: "Montserrat", sans-serif;
  	font-weight: 500;
	font-size: 5rem;
	letter-spacing: 1px;
	color: #000080;
	text-shadow: 0px 0px 8px #fff;
}
.description{
	letter-spacing: 2px;
	line-height: 1.5;
	font-weight: 500;
	padding-top: 20px;
}
.more_btn{
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	padding-top: 20px;
}
.more_btn_circle{
	display: block;
	content:"";
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #fff;
	border: solid 1.5px #000080;
	position: relative;
	margin-left: 70px;
}
.more_btn_circle::before{
	display: block;
	content:"";
	width: 70px;
	height: 1.5px;
	background-color: #000080;
	position: absolute;
	top: 0;
	right: 20px;
	bottom: 0;
	margin: auto;
}
.more_btn_circle::after{
	display: block;
	content: "";
	width: 0px;
	height: 0px;
	border-radius: 50%;
	background-color: #000080;
	position: absolute;
	top: 50%;
	left: 50%;
	transition: 0.3s ease-in;
}
.more_btn:hover{
	opacity: 1;
}
.more_btn:hover .more_btn_circle::after{
	width: 40px;
	height: 40px;
	margin: -20px 0 0 -20px;
	opacity: 1;
}
.card-container{
	max-width: 1080px;
	padding: 0px 50px 50px 50px;
	display: flex;
	justify-content: space-between;
}
.card-content{
    width: 47%;
    background-color: #ffffff;
    border-radius: 20px;
    height: auto;
    box-shadow: 0px 0px 15px #CCCCD8;
}
.card-content a{
	display: block;
	width: 100%;
	height: 100%;
}
.card-content:hover{
	opacity: 1;
	transform: translateY(-2px);
	transition: all 0.3s ease-in-out;
}
.card-content img{
	height: 250px;
	object-fit: cover;
	border-radius: 20px 20px 0px 0px;
}
.card-content_text{
	width: 100%;
	padding: 24px 0px 24px 32px;
	height: 170px;
}
.content_title{
	font-size: 2.5rem;
	letter-spacing: 1px;
	color: #000080;
}
.card-content_text ul{
	padding-top: 10px;
}
.card-content_text ul li{
	position: relative;
	padding: 5px 0 0 14px;
	letter-spacing: 1px;
	font-size: 2rem;
	font-weight: 500;
}
.card-content_text ul li::before{
	content:"";
	display: block;
	width: 7px;
	height: 1.3px;
	background-color: #333;
	position: absolute;
	top: 60%;
	left: 0;
}
.content_arrow{
	width: 100%;
	padding: 0 20px 10px 0;
}
.material-symbolsoutlined{
	font-family: "Material Symbols Outlined";
	color: #000080;
	font-size: 7rem;
	font-variation-settings:'FILL' 1,'wght' 400,'GRAD' 0,'opsz' 48;
	display: block;
	width: 70px;
	margin-left:auto;
}
/*information*/
.information{
    width: 100%;
    height: 515px;
    background-image: url(../images/info_bg.jpg);
    background-size: cover;
	background-position: right;
	position: relative;
	margin-top: 100px;
}
.info-container{
	max-width: 1032px;
	height: 350px;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;;
	margin: auto;
}
.info_content{
    width: 47%;
    background-color: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0px 0px 30px #65659B;
}
/*会社情報ページ*/
.sub-body{
	background-color: #f5f5f5;
}
/*パンくずリスト*/
.breadcrumbs-container{
	width: 100%;
	height: auto;
	background-color: #f5f5f5;
	margin-top: 100px;
	padding: 10px 50px;
}
.breadcrumbs{
	display: flex;
	align-items: center;
}
.breadcrumbs_items{
	font-size: 1.4rem;
	font-weight: 500;
}
.breadcrumbs_items span{
	color: #000080;
	padding-left:10px;
}
.breadcrumbs_items span::before{
	content:"\e315";
	font-family: "Material Symbols Outlined";
	color: #A6A5A5;
	display: inline-block;
	transform: translateY(2px);
	padding-right:10px;
}
.subfv{
    width: 100%;
    height: 400px;
    background-image: url(../images/company_fv.jpg);
    background-size: cover;	
	background-position: center;
}
.subfv-content{
	max-width: 1032px;
	padding: 90px 50px 50px 50px;
	margin: 0 auto;
}
.sub-wrapper{
    width: 90%;
    max-width: 1300px;
    height: auto;
    background-color: #fff;
    margin: -100px 0px 0px auto;
    box-shadow: -3px -3px 25px #CCCCCC;
}
.greeting{
	width: 100%;
	height: auto;
	padding-top:100px;
}
.greeting-container{
	width: 70%;
	padding: 60px 100px;
	margin: 0 auto;
	font-family: "Noto Serif JP", serif;
	text-align: center;
	background-color: #fff;
	box-shadow: 0px 0px 15px #E3E3E3;
}
.sec-title_ja_greeting{
	font-size: 2rem;
	display: block;
}
.sec-title_en_greeting{
	font-size: 2rem;
	color: #000080;
	display: block;
}
.greeting-container p{
	letter-spacing: 1px;
	font-weight: 600;
	line-height: 1.8;
	text-align: left;
	padding-top: 20px;
}
.sec-title_ja_company{
	font-size: 2rem;
	display: block;
	letter-spacing: 1px;
}
.sec-title_en_company{
	font-size: 2rem;
	display: block;
	color: #000080;
	font-family: "Montserrat", sans-serif;
  	font-weight: 500;
	letter-spacing: 2px;
}
.dldt-container{
	width: 70%;
	padding: 100px 10px 0px 50px;
	margin: 0 auto;
}
.dldt-content dl{
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	margin-bottom: 50px;
	letter-spacing: 1px;
}
.dldt-content dt{
	width: 30%;
	border-bottom: solid 2px #000080;
	padding: 24px;
	font-weight: 600;
	white-space:nowrap;
}
.dldt-content dd{
	width: 70%;
	border-bottom: solid 1px #B6B5B5;
	padding: 24px 0px 24px 24px;
	white-space:nowrap;
}
.dldt-content dd p{
	padding: 2px;
}
.officeimg-container{
	width: 100%;
	display:flex;
	justify-content: space-between;
}
.officeimg-container figure{
	width: 45%;
}
.officeimg-container img{
	border-radius: 20px;
}
.access-container{
	width: 70%;
	padding: 100px 10px 100px 50px;
	margin: 0 auto;
}
.access-container dl{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	padding: 30px 0px 50px 0px;
}
.access-container dt{
	width: 25%;
	padding: 10px 25px 10px 0px;
}
.access-container dd{
	width: 75%;
	padding: 10px 0px 10px 10px;
}
/* Google Map */
/* Google Mapを囲う要素 */
.map{
	position: relative;
  	width: 100%;
  	height: 0;
  	padding-top: 50%; /* 比率を1:1に固定(100%)(4:3の場合75％) */
}
/* Google Mapのiframe */
.map iframe{
  	position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
}
/* 横幅を指定するための要素 */
.map_wrap{
   	width: 100%; /* ここに横幅を指定 */
}
/*実績*/
#works .subfv{
    background-image: url(../images/works_fv.jpg);	
	background-position: bottom;
}
.businessworks-container{
	width: 90%;
	height: auto;
	padding: 80px 0px 0px 50px;
	margin: 0 auto 50px auto;
}
.businessworks-content{
	width: 55%;
	padding-right:20px;
}
.businessworks-img{
	width: 45%;
}
.p-content{
	width: 100%;
	padding: 24px 0px 24px 0px;
}
.works-year{
	font-size: 2rem;
}
.dldt-container_works{
	width: 70%;
	padding: 0px 10px 100px 50px;
	margin: 0 auto;
}
/*事業内容*/
#business .subfv{
	background-image: url(../images/business_fv.jpg);	
	background-position: bottom;
}
.business-container{
	width: 100%;
	height: auto;
	background-color: #EFEFEF;
	padding: 0px 100px 50px 100px;
}
.business-content{
	width: 100%;
	padding-top: 50px;
}
.sec-title_ja_group{
	font-size: 3rem;
	padding-left: 10px;
}
.sec-title_ja_group::before{
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	background-color: #000080;
	border-radius: 50%;
	transform: translate(-10px, -4px);
}
.businesscard-block{
	width: 100%;
	background-color: #fff;
	padding: 24px;
	border-radius: 10px;
	margin-top: 20px;
}
.flex_reverce{
	flex-direction: row-reverse;
}
.businesscard-text{
	width: 45%;
	padding: 30px 0px 0px 0px;
}
.business-title{
	font-size: 2.5rem;
	padding-left: 40px;
}
.business-number{
	font-family: "Montserrat", sans-serif;
	font-size: 3rem;
	color: #000080;
}
.business-number::after{
	content:"";
	display: inline-block;
	background-color: #575798;
	width: 1.5px;
	height: 20px;
	transform: translateX(20px) rotate(40deg);
}
.businesscard-text p{
	line-height: 1.8;
	padding-top: 20px;
}
.businesscard-img{
	width: 50%;
}
.businesscard-img img{
	border-radius: 20px;
	height: 350px;
	object-fit: cover;
}
/*お問い合わせ*/
#contact .subfv{
	background-image: url(../images/contact_fv.jpg);	
}
.subcontact-container{
	width: 60%;
	padding: 100px 5px 0px 5px;
	margin: 0 auto;
}
.form-container{
	width: 60%;
	margin: 0 auto;
	padding: 30px 5px 100px 5px;
}
.form-table{
	width: 100%;
	background-color: #efefef;
	padding: 30px 50px;
	font-size: 1.4rem;
	border-radius: 10px;
}
.form-table tr{
	border-bottom: 1px solid #DDDDDD;
	padding: 15px 0px;
	display: block;
}
.form-table tr:last-child{
	border-bottom: none;
}
.form-table select{
	background-color: #fff;
	padding: 8px 100px 8px 10px;
	border-radius: 5px;
	cursor: pointer;
	position: relative;
	font-size: 1.6rem;
	appearance: none;
}
.form-table .allow{
	position: relative;
  	display: inline-flex;
  	align-items: center;
}
.form-table .allow::after{
	content: '';
	position: absolute;
	right: 1rem;
	width: 10px;
	height: 7px;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	pointer-events: none;
	background-color: #333;
}
.form-table th,.form-table td{
	width: 100%;
	display: block;
}
.form-table th{
	text-align: left;
	padding: 5px 10px 8px 0px;
}
.form-table td{
	padding: 0px 0px 10px 0px;
}
.form-table input{
	width: 80%;
	height: 30px;
	background-color: #fff;
	padding: 20px 15px;
	border-radius: 5px;
	font-size: 1.6rem;
}
.form-table select:focus, .form-table textarea:focus, .form-table input:focus {
	outline: #DCDCDC solid 4px;
}
.form-table textarea{
	width: 100%;
	height: 180px;
	background-color: #fff;
	border-radius: 5px;
	padding: 10px 15px;
	font-size: 1.6rem;
}
.essential{
	color: #fff;
	background-color: #FABC2A;
	font-size: 1.2rem;
	padding: 1px 5px;
	border-radius: 3px;
	margin-left: 8px;
}
.privacypolicy{
	width: 100%;
	padding-top: 60px;
}
.privacypolicy h3{
	font-size: 1.6rem;
	font-weight: 600;
	text-align: center;
}
.privacypolicy p{
	font-size: 1.3rem;
	width: 80%;
	height: 130px;
	padding: 20px;
	line-height: 1.8;
	overflow-y: scroll;
	border: solid 1px #D0D0D0;
	margin: 20px auto;
}
.check-container{
	text-align: center;
	font-size: 1.5rem;
	padding: 30px;
}
.check_content label{
	background-color: #efefef;
	padding: 20px;
	width: 300px;
	margin: 0 auto;
	display: inline-block;
}
.check_content input[name="個人情報保護方針"]{
	margin-right: 8px;
	cursor: pointer;
}
.submit_btn input[type="submit"]{
	background-color: #000080;
	color: #fff;
	width: 300px;
	padding: 20px;
	margin-top: 40px;
	border-radius: 10px;
}
/*確認画面・入力エラー・送信完了*/
#under .breadcrumbs_items span{
	color: #333;
}
#under .breadcrumbs_items .navy{
	color: #000080;
}
.under-wrappaer{
	width: 70%;
	max-width: 1000px;
	margin: 80px auto;
	text-align: center;
}
#under h1{
	font-size: 2.3rem;
}
#under #body{
	padding-top: 30px;
}
#under #form{
	width: 80%;
	padding-top: 30px;
	border-spacing: 0;
	text-align: left;
	margin: 0 auto;
}
#form tr{
	border-bottom:1px solid #cfcfcf;
	display: block;
}
#form th, #form td{
	padding: 20px;
}
#form th{
	width: 200px;
}
#form td{
	width: 400px;
}
.back{
	background-color: #8B8686;
	padding: 10px 30px;
	color: #fff;
}
.send{
	background-color: #000080;
	padding: 10px 30px;
	color: #fff;
}
.btn{
	padding-top: 30px;
}
/*入力エラー時文字色*/
#under span.msg{
	color: #dd0000;
}
@media (max-width: 959px){
body{
	font-size: 1.4rem;
}
a:hover{
	opacity: 1;
}
.flex{
	flex-direction: column;
}
/*header*/
.header{
	height: 80px;	
}
.header-container {
	padding: 0px 0px 0px 10px;
}
.hamburger {
	width: 60px;
	height: 60px;
	background-color: #000080;
	border:solid 0.5px #fff;
	border-radius:50%;
	position: relative;
	position: fixed;
	top: 10px;
	right: 10px;
	cursor: pointer;
	z-index: 100;
	padding: 25px;
}
.hamburger span,
.hamburger span::before,
.hamburger span::after {
	position: absolute;
	display: block;
	content: "";
	width: 30px;
	height: 1.5px;
	background-color: #fff;
	transition: all 0.5s;
}
.hamburger span{
	top: 50%;
	right: 15px
}
.hamburger span::before {
	top: -10px;
}
.hamburger span::after {
	bottom: -10px;
}
input[type="checkbox"]:checked + .hamburger span {
	background-color: transparent;
}
input[type="checkbox"]:checked + .hamburger span::before {
	top: 0;
	transform: rotate(-45deg);
}
input[type="checkbox"]:checked + .hamburger span::after {
	bottom: 0;
	transform: rotate(45deg);
}
.nav{
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	right: -100%;
    background-image: linear-gradient(180deg, rgba(0, 0, 128, 1), rgba(2, 2, 67, 1));
	color: #fff;
	transition: all 0.5s;
	padding: 0px;
}
.sp_landscape_navscroll{
	overflow-y: scroll;
	flex-direction: column;
	justify-content: flex-start;
	padding: 10px 0px 50px 50px;
}
.nav_list{
	width: 100%;
	height: auto;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
}
.nav_item{
	padding-top: 60px;
	width: 150px;
	font-size: 1.4rem;
	color: #fff;
	text-align: left;
}
.nav_item::after{
	display: none;	
}
input[type="checkbox"]:checked ~ .nav{
	right: 0;
}
.nav_cv{
	width: 100%;
	height: auto;
	text-align: left;
	background-image: none;
	color: #fff;
	margin: 50px 0px 0px 0px;
	font-weight: 600;
}
.logo-nav_bg{
	display: block;
	position: absolute;
	width: 400px;
	top: 40%;
	left: 35%;
	z-index: -100;
	opacity: 0.05;
}
/*contact*/
.contact-box{
    height: auto;
	padding: 0px;
}
.contact-container{
	width: 100%;
	padding: 80px 50px;
	height: auto;
	align-items: flex-start;
}
.contact-content_text{
	width: 100%;	
}
.s-title_ja_contact{
	font-size: 2rem;
}
.s-title_en_contact{
	font-size: 4rem;
}
.contact-content_btn{
	width: 100%;
	padding-top: 50px;
}
.tel_btn{
	width: 100%;
	height: 60px;
	font-size: 2rem;
	line-height: 2.8;
}
.tel_btn::before{
	font-size: 2rem;
	transform: translateY(4px);
	padding-right: 3px;
}
.mail_btn{
	width: 100%;
	height: 60px;
	font-size: 1.6rem;
	line-height: 2.8;
	margin-top: 30px;
}
.mail_btn::before{
	font-size: 2rem;
	transform: translateY(5px);
	padding-right: 5px;
}
/*footer*/
.footer-box{
	padding: 0px;
}
.footer-container_top{
	max-width: 100%;
	padding: 30px 32px;
	flex-direction:column-reverse;
}
.footer-content_company{
	width: 100%;
	padding-bottom: 32px;
}
.footer_company{
	font-size: 1.4rem;
}
/*フッターのロゴ*/
.footer_company::before{
    width: 45px;
    height: 45px;
}
/*ロゴ横の縦線*/
.footer_company::after{
	height: 43px;
	transform: translate(-183px, 18px);
}
/*フッターナビ*/
.footer-content_nav{
	width: 100%;
}
.footer_nav_list{
	width: 100%;
	padding-bottom: 80px;
}
.footer_nav_item{
	display: block;
	flex-basis: auto; 
	padding-top: 30px;
}
.footer_nav_item_child{
	width: 70px;
}
/*TOPここから*/
.topfv{
	background-image: url(../images/tb_fv.jpg);
}
.scrolldown-content{
	top: 90vh;
	left: 70%;
}
.scrolldown-content span{
	height: 150px;
	top: -30px;
	left: 45px;
}
.scrolldown-content span::after{
	width: 200px;
	top: 75px;
	left: -80px;
}
.scrolldown{
	width: 90px;
	height: 90px;
}
/*about*/
.about{
   	padding-top: 50px;
}
.about_content{
	width: 100%;
	padding: 30px 0px 0px 20%;
}
/*slider*/
.slider{
	padding: 50px 0px 60px;
}
.slide_item{
	margin-right: 30px;
}
/*business*/
.business{
	max-width: 100%;
	border-radius: 30px;
}
.card-container{
	max-width: 100%;
	flex-direction: column;
	justify-content: flex-start;
	gap: 30px;
}
.card-content{
	width: 100%;
}
.more_btn:hover .more_btn_circle::after{
	display: none;
}
/*information*/
.information{
    height: 800px;
	margin-top: 60px;
	background-position: bottom;
}
.info-container{
	max-width: 100%;
	height: 650px;
	padding: 0px 50px;
	gap: 30px;
}
.info_content{
    width: 100%;
}
/*会社情報ページ*/
/*パンくずリスト*/
.breadcrumbs-container{
	margin-top: 80px;
	padding: 10px 50px;
}
.greeting{
	padding-top: 50px;	
	}
.greeting-container{
	width: 80%;
	padding: 30px 50px;
}
.dldt-container{
	width: 80%;
	padding: 50px 10px 0px 10px;
}
.dldt-content dl{
	padding-top: 10px;
}
.dldt-content dt{
	padding: 24px 10px;
	white-space:nowrap;
}
.dldt-content dd{
	padding: 24px 0px 24px 24px;
	white-space:pre-wrap;
}
.dldt-content dd p{
	padding: 4px;
}
.officeimg-container figure{
	width: 48%;
}
.access-container{
	width: 80%;
	padding: 100px 10px 100px 10px;
}
/*実績*/
.businessworks-container{
	width: 100%;
	padding: 50px 0px 0px 50px;
	margin-bottom: 50px;
}
.businessworks-content{
	width: 100%;
}
.businessworks-img{
	width: 95%;
}
.businessworks-img img{
	height: 300px;	
	}
.p-content{
	width: 100%;
	padding: 24px 80px 24px 0px;
}
.dldt-container_works{
	width: 80%;
	padding: 10px 10px 50px 10px;
}
/*事業内容*/
.business-container{
	padding: 0px 30px 50px 30px;
}
.sec-title_ja_group{
	font-size: 3rem;
	padding-left: 10px;
}
.businesscard-text{
	width: 100%;
	padding: 0px 0px 20px 0px;
}
.businesscard-img{
	width: 100%;
}
.businesscard-img img{
	border-radius: 20px;
	height: 350px;
	object-fit: cover;
}
/*お問い合わせ*/
.subcontact-container{
	width: 80%;
	padding: 50px 5px 0px 5px;
}
.form-container{
	width: 80%;
	padding: 30px 0px 50px 0px;
}
.form-table{
	width: 100%;
	padding: 30px;
}
.form-table tr{
	padding: 10px 0px;
}
.privacypolicy p{
	width: 100%;
}
.form-table input{
	width: 100%;
}
/*確認画面・入力エラー・送信完了*/
#under #form{
	width: 100%;
}
#form th, #form td{
	width: 100%;
	display: block;
}
#form th{
	padding: 10px 0px 0px 10px;	
}
#form td{
	padding: 10px 0px 10px 10px;	
}
}
@media (max-width: 480px){
/*header*/
.header-container{
	padding: 0px 0px 0px 5px;
}
.header_logo{
	width: 230px;
	padding-right: 0px;	
}
.hamburger {
	width: 10px;
	height: 10px;
	top: 15px;
	right: 5px;
}
.hamburger span,
.hamburger span::before,
.hamburger span::after {
	width: 18px;
}
.hamburger span{
	right: 16px;
}
.hamburger span::before {
	top: -8px;
}
.hamburger span::after {
	bottom: -8px;
}
/*contact*/
.contact-container{
	padding: 0px 24px;
	height: auto;
	align-items: flex-start;
}
.contact-content_text{
	width: 100%;	
}
.sec-title_ja_contact{
	font-size: 2rem;
}
.sec-title_en_contact{
	font-size: 4rem;
}
.contact-content_btn{
	width: 100%;
	padding-top: 50px;
}
.tel_btn{
	width: 100%;
	height: 60px;
	font-size: 2rem;
	line-height: 2.8;
}
.tel_btn::before{
	font-size: 2rem;
	transform: translateY(4px);
	padding-right: 3px;
}
.mail_btn{
	width: 100%;
	height: 60px;
	font-size: 1.6rem;
	line-height: 2.8;
	margin-top: 30px;
}
.mail_btn::before{
	font-size: 2rem;
	transform: translateY(5px);
	padding-right: 5px;
}
/*footer*/
.footer_nav_list{
	flex-wrap: wrap;
	justify-content: flex-start;
}
.footer_nav_item{
	width: 98px;
}
.footer_nav_item_child{
	width: 95px;
}
/*TOPここから*/
.topfv{
	width: 100%;
    height: 100vh;
    background-image: url(../images/sp_fv.jpg);
}
.topfv-content_copy{
	width: 90%;
	height: 500px;
	padding-top: 70px;
}
.copy_en{
	line-height: 1.5;
	letter-spacing: 1px;
	padding-top: 25px;
}
.copy_ja{
	font-size: 2.8rem;
	letter-spacing: 2px;
}
.topfv_h1{
	font-size: 1rem;
}
.scrolldown-content{
	top: 80vh;
	left: 8%;
}
.scrolldown-content span{
	height: 100px;
	top: -15px;
	left: 35px;
}
.scrolldown-content span::after{
	width: 120px;
	top: 50px;
	left: -50px;
}
.scrolldown{
	width: 70px;
	height: 70px;
}
/*about*/
.about{
   	padding-top: 80px;
}
.about-container{
	max-width: 100%;
	padding: 0 24px;
}
.about_content{
	width: 100%;
	padding: 20px 0px 0px 0px;
}
/*slider*/
.slide_item{
	margin-right: 20px;
}
/*business*/
.business-text{
	padding: 50px 24px;
}
.sec-title_ja{
	font-size: 2rem;
}
.sec-title_en{
	font-size: 3rem;
}
.card-container{
	max-width: 100%;
	padding: 0px 24px 50px 24px;
}
.card-content img{
	height: 150px;
	}
.card-content_text{
	padding: 24px 24px 0px 24px;
	height: 100px;
}
.card-content_text ul li{
	font-size: 1.6rem;
}
.content_title{
	font-size: 2rem;	
}
.content_arrow{
	padding: 0 10px 3px 0;;
	}
/*information*/
.information{
    height: 700px;
	margin-top: 60px;
	background-position: center;
}
.info-container{
	max-width: 100%;
	height: 600px;
	padding: 0px 24px;
	gap: 30px;
}
.info_content{
	padding: 50px 24px;
}
/*会社情報ページ*/
/*パンくずリスト*/
.breadcrumbs-container{
	margin-top: 80px;
	padding: 10px 24px;
}
.subfv{
    height: 250px;
	background-position: bottom;
}
.subfv-content{
	max-width: 100%;
	padding: 60px 50px 50px 50px;
}
.sub-wrapper{
	width: 100%;
	max-width: 100%;
	margin: -50px 0px 0px auto;
}
.greeting{
	width: 100%;
	height: auto;
	padding-top:50px;
}
.greeting-container{
	width: 90%;
	padding: 50px 24px;
}
.greeting-container p{
	line-height: 1.7;
	padding-top: 10px;
}
.dldt-container{
	width: 100%;
	padding: 50px 24px 0px 24px;
}
.dldt-content dl{
	padding-top: 0px;
	flex-direction: column;
	width: 100%;
	border: solid 1px #B6B5B5;
	margin-top: 20px;
}
.dldt-content dt{
	width: 100%;
	border-bottom: solid 1px #B6B5B5;
	padding: 24px;
	background-color: #E7E7E7;
}
.dldt-content dd{
	width: 100%;
	padding: 24px 0px 24px 24px;
}
.dldt-content dd:last-child{
	border-bottom: solid 0px #B6B5B5;
}	
.officeimg-container{
	flex-direction: column;
}
.officeimg-container figure{
	width: 100%;
	margin-top: 20px;
}
.access-container{
	width: 100%;
	padding: 50px 24px;
}
.access-container dl{
	width: 100%;
	flex-direction: column;
	flex-wrap: wrap;
	padding: 30px 0px;
}
.access-container dt{
	width: 100%;
	padding: 10px 15px;
	background-color: #E7E7E7;
}
.access-container dd{
	width: 100%;
	padding: 15px;
}
/*実績*/
.businessworks-container{
	padding: 50px 0px 0px 24px;
}
.businessworks-img{
	width: 95%;
	padding-left: 0px;
}
.p-content{
	padding: 24px 0px 0px 0px;
}
.dldt-container_works{
	width: 100%;
	padding: 0px 24px 60px 24px;
}
/*事業内容*/
.business-container{
	padding: 0px 24px 50px 24px;
}
.sec-title_ja_group{
	font-size: 2.8rem;
}
.businesscard-block{
	padding: 24px 24px 30px 24px;
	border-radius: 10px;
	margin-top: 25px;
}
.businesscard-text{
	width: 100%;
	padding: 0px 0px 20px 0px;
}
.business-title{
	font-size: 2rem;
	padding-left: 40px;
}
.business-number{
	font-size: 2rem;
}
.business-number::after{
	transform: translate(20px, 3px) rotate(40deg);
}
.businesscard-img{
	width: 100%;
}
.businesscard-img img{
	border-radius: 20px;
	height: 250px;
	object-fit: cover;
}
/*お問い合わせ*/
.subcontact-container{
	width: 90%;
	padding: 30px 5px 30px 5px;
}
.form-container{
	width: 100%;
	padding: 10px 0px 80px 0px;
}
.form-table{
	width: 100%;
	padding: 15px;
}
.form-table select{
	padding: 13px 100px 13px 10px;
}
.form-table input{
	height: 50px;
}
.privacypolicy{
	padding-top: 50px;
}
.privacypolicy p{
	width: 90%;
}
.check-container{
	padding: 20px;
	width: 100%;
}
.check_content{
	width: 100%;
	white-space: nowrap;	
}
/*確認画面・入力エラー・送信完了*/
.under-wrappaer{
	width: 90%;
}
}