@charset "shift_jis";

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

li {
	list-style-type: none;
}

body {
	font-family: "ヒラギノ明朝 Std", "HiraMinStd", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
	width: 100%;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.7;
	background-color: #fff;
}
body.overflow {
	overflow: hidden;
}

img {
	display: block;
}

.container {
	max-width: 1450px;
	width: 100%;
	padding: 0 10px;
	margin: 0 auto;
}


a {
	text-decoration: none;	
}
a:hover {
	opacity: 0.7;	
}



.contact_a a {
	position: relative;
}
.contact_a a:hover {
	opacity: 1;
	filter: brightness(102%);
}

.contact_a a:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .7s cubic-bezier(.19, 1, .22, 1);
    background: #4a81b8;
	z-index: -1;
}
  
.contact_a a:hover:after {
    transform: scaleX(1);
    transform-origin: left;
	filter: brightness(102%);
}


.over_v {
	overflow: auto;
}


/*-------------------------------------

ローディング画面

--------------------------------------*/


/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;	
	text-align:center;
	color:#fff;
	background-color: #fff;
}




/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/
.splashbg{
    display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg{
    display: block;
    content: "";
    position:fixed;
	z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
	left: 0;
    transform: scaleY(0);
    background-color: #113575;/*伸びる背景色の設定*/
	animation-name:PageAnime;
	animation-duration:.6s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;
}

@keyframes PageAnime{
	0% {
		transform-origin:top;
		transform:scaleY(0);
	}
	50% {
		transform-origin:top;
		transform:scaleY(1);
	}
	50.001% {
		transform-origin:bottom;
	}
	100% {
		transform-origin:bottom;
		transform:scaleY(0);
	}
}




/*bodyにappearクラスがついたら出現*/
body.appear2 .splashbg2 {
		display: block;
		content: "";
		position: absolute;
		z-index: -1;
		width: 100%;
		height: 100vh;
		top: 0;
		left: 0;
		transform: scaleY(0);
		background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #113575 50%, #113575 100%);/*伸びる背景色の設定*/
		animation-name:PageAnime2;
		animation-duration:.6s;
		animation-timing-function:ease-in-out;
		animation-fill-mode:forwards;
}

@keyframes PageAnime2{
		0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	
	100% {
		transform-origin:left;
		transform:scaleX(1);
	}
}

/*画面遷移の後現れるコンテンツ設定*/
#container{
	opacity: 0;/*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear2 #container{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay: 0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}





.load_c1 {
	position: relative;
	top: 49%;
	left: 50%;
	transform: translate(-50%,-50%);
} 
.load_c1 .mv_catch p {
	color: #1A3675!important;
}

.load_c p {
	position: absolute;
	top: 0%;
	left: 0%;
}
.load_c p img {
	width: 177px;
	height: 177px;
	display: block;
}






/*-------------------------------------

ヘッダー

--------------------------------------*/


header {
	display: flex;
	align-items: center;
	width: 100%;
}
header.pc {
	position: fixed;
	background: #fff;
	top: 0;
	z-index: 9;
}
header h1 {
	padding-left: 15px;
}

header nav {
	margin-left: auto; 
}
header nav ul {
	margin-left: auto; 
	display: flex;
	align-items: center;
}
header nav ul li {
	margin-right: 60px;
	font-size: 15px;
}
header nav ul li:last-child {
	margin-right: 0px;
}
header nav ul li:last-child a {
	background-color: #113575;
	color: #fff;
	padding: 25px 40px;
	display: flex;
}
header nav ul li:last-child a:before {
	content: "";
	background-image: url(../img/h_mail.png);
	margin-right: 20px;
	display: block;
	width: 31px;
	height: 23px;
}
header nav ul li a {
	color: #000;
}


/*-------------------------------------

ファーストビュー

--------------------------------------*/


/*-------------------------------------

消さないのコメントアウトを消す

--------------------------------------*/



.mv_wrap {
	position: relative;
	margin-top: 75px;
	padding: 0 50px 60px;
	height: calc(100vh - 75px);
	overflow: hidden;
}

.header_wrap {
	background: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #113575 50%, #113575 100%);/*伸びる背景色の設定*/
}


.mv_catch1 {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
	display: none;
}
.mv_catch1 p:first-child {
	margin-bottom: 20px;
}
.mv_catch1 p img {
	display: inline-block;
}




.mv_catch {
	position: absolute;
	left: 50%;
	top: calc(48% - 60px);
	opacity: 0;
	transform: translate(-50%,-50%);
	text-align: center;
}

.mv_catch.pc img {
	width: 450px;
}

.mv_catch.down {
	opacity: 1;
}

.mv_catch p:first-child {
	margin-bottom: 20px;
}
.mv_catch p img {
	display: inline-block;
}
.mv_copy {
	position: absolute;
	color: #ccc;
	left: 13px;
    top: 50%;
    transform: translateY(-50%);
	height: 410px;
	 -ms-writing-mode: tb-rl;
  	writing-mode: vertical-rl;
}


/*スクロールダウン全体の場所*/


.scrolldown1{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	left:50%;
	transform: translateX(-50%);
	bottom: 0px;
    /*全体の高さ*/
	height:80px;
	font-weight: 600;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
    /*描画位置*/
	position: absolute;
	left:-23px;
	top: -15px;
    /*テキストの形状*/
	color: #eee;
	font-size: 0.8rem;
	letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after{
	content: "";
    /*描画位置*/
	position: absolute;
	top: 5px;
    /*線の形状*/
	width: 1px;
	height: 60px;
	background: #eee;
    /*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:0;
}


/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
	0%{
		height:0;
		top:5px;
		opacity: 0;
	}
	30%{
		height:70px;
		opacity: 1;
	}
	100%{
		height:0;
		top:70px;
		opacity: 0;
	}
}

#slider {
  position: relative;
	height: calc(100vh - 134px);
	overflow: hidden;
}
#slider div {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 2.5s;
}
#slider div.show {
  opacity: 1;
}

.top_back {
	background-color: #fff;
	top: 100%;
	height: 100%;
}
.top_back img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.top_img1 {
	height: calc(100vh - 134px);
	width: 100%;
	background-image: url(../img/top_img1.jpg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;	
}

.top_img2 {
	height: calc(100vh - 134px);
	width: 100%;
	background-image: url(../img/top_img2.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	
}
.top_img3 {
	height: calc(100vh - 134px);
	width: 100%;
	background-image: url(../img/top_img3.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}


.top_img1 img {
	height: calc(100vh - 134px);
	width: 100%;
	object-fit: cover;
}

/*-------------------------------------

トップ取扱業務

--------------------------------------*/

article {
	position: relative;
	overflow: hidden;
	background: #ebebeb;
    z-index: 1;
	transform: translate3d(0,0,0); 
}


.back_wrap {
	position: absolute;
	top: -400px;
	width: 100%;
	z-index: -1;
	transform: rotate(20deg);
}

.back_1 {
	height: 1200px;
	width: 850px;
	left: 45%;
	background-color: #fff;
	position: absolute;
	transform: translateY(-100%);
    transition: 1s;
	z-index: -99;
}
.back_1.down {
	transform: translateY(0%);
}
.back_3.down {
	transform: translateY(0%);
}

.back_2.right {
	transform: translateX(0%);
}
.back_4.right {
	transform: translateX(0%);
}

.back_2 {
	width: 200%;
	height: 800px;
	background-color: #fff;
	position: absolute;
	top: 1200px;
	transition: 1s;
	transform: translateX(-100%);
	z-index: -99;
}

.back_3 {
	height: 1900px;
	width: 850px;
	background-color: #fff;
	position: absolute;
	top: 2000px;
	left: 80%;
	transform: translateY(100%);
	transition: 1s;
	z-index: -99;
}
.back_4 {
	width: 200%;
	height: 650px;
	background-color: #fff;
	position: absolute;
	top: 3600px;
	left: 50%;
	transform: translateX(-100%);
	transition: 1s;
	z-index: -99;
}


/*-------------------------------------

スクロール

--------------------------------------*/


.scroll_layer_l {
	position: relative;
	z-index: -1;
}




.scroll_layer_l::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  transform: scaleX(0);
  transform-origin: left center;
  background-color: #113575;
}

.scroll_layer_l.on::before {
    animation: scale 1.3s ease forwards;
}

@keyframes scale {
	0%{
		 transform: scaleX(0);
		transform-origin: right center;
	}
	35%{
		 transform: scaleX(1);
		transform-origin: right center;
	}
	65%{
		 transform: scaleX(1);
		transform-origin: left center;
	}
	
	100%{
		 transform: scaleX(0);
   		transform-origin: left center;
		 
	}
}




.scroll_layer_r {
	position: relative;
	z-index: -1;
	
}

.scroll_layer_r::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  transform: scaleX(0);
  transform-origin: right center;
  background-color: #113575;
}

.scroll_layer_r.on::before {
  animation: scale1 1.3s ease forwards;
}

@keyframes scale1 {
	0%{
		 transform: scaleX(0);
		transform-origin: left center;
	}
	35%{
		 transform: scaleX(1);
		transform-origin: left center;
	}
	65%{
		 transform: scaleX(1);
		transform-origin: right center;
	}
	
	100%{
		 transform: scaleX(0);
   		transform-origin: right center;
		 
	}
}



.scroll_layer1>img {
	max-width: 1100px;
	width: 100%;
    height: auto;
} 

.scroll_layer1 img {
	opacity: 0;
}
.on .scroll_layer1 img {
    animation: on 1s .5s ease forwards;
    opacity: 0;
}

@keyframes on {
	0%{
		 opacity: 0;
	}

	
	100%{
		opacity: 1;
		 
	}
}




.fade_up {
	opacity: 0;
}
.fade_up.fade {
	animation: fadeup 1s .4s ease forwards;
	opacity: 0;
}
.company_wrap .about_title .fade_up.fade {
	animation: fadeup 1s 1s ease forwards;
	opacity: 0;
}


.company_back .fade_up.fade {
	animation: fadeup .5s ease forwards;
	opacity: 0;
}

.business_in li.fade_up:first-child.fade {
	animation: fadeup 1s ease forwards;
	opacity: 0;
}
.business_in li.fade_up:nth-child(2).fade {
	animation: fadeup 1s .6s ease forwards;
	opacity: 0;
}
.business_in li.fade_up:nth-child(3).fade {
	animation: fadeup 1s 1.2s ease forwards;
	opacity: 0;
}
.business_in li.fade_up:nth-child(4).fade {
	animation: fadeup 1s 1.8s ease forwards;
	opacity: 0;
}


@keyframes fadeup {
	0% {
    opacity: 0;
    transform: translateY(50px);
	}

	100% {
    opacity: 1;
    transform: translateY(0px);
	}
}


.business_in .scroll_layer_l {
	z-index: 1;
}

.business_in .scroll_layer_l:first-child.on::before {
    animation: scale1 1.2s ease forwards;
}
.business_in .scroll_layer_l:nth-child(2).on::before {
    animation: scale1 1.2s .6s ease forwards;
}
.business_in .scroll_layer_l:nth-child(3).on::before {
    animation: scale1 1.2s 1.2s ease forwards;
}
.business_in .scroll_layer_l:nth-child(4).on::before {
    animation: scale1 1.2s 1.8s ease forwards;
}





.slide_left {
	opacity: 0;
    transform: translateX(-100%);
}

.slide_left.left {
	animation: slideleft 1s ease forwards;
}




@keyframes slideleft {
	0% {
    opacity: 0;
    transform: translateX(-100%);
	}

	100% {
    opacity: 1;
    transform: translateY(0px);
	}
}


.slide_right {
	opacity: 0;
    transform: translateX(100%);
}
.slide_right.right {
	animation: slideright 1s ease forwards;
}




@keyframes slideright {
	0% {
    opacity: 0;
    transform: translateX(100%);
	}

	100% {
    opacity: 1;
    transform: translateY(0px);
	}
}

/*-------------------------------------

トップアバウト

--------------------------------------*/



.about_wrap {
	position: relative;
}
.about_wrap .mainImg {
	/*background-image: url(../img/about_img.png); */
    max-width: 1100px;
	width: 100%;
    height: auto;
	margin-left: auto;
	margin-top: 200px;
	margin-bottom: 70px;
	margin-right: 0px;	
}



.about_title {
	position: absolute;
	top: -140px;
	right: 10px;
	z-index: 10;
	width: 290px;
	height: 230px;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	color: #fff;
}

.about_title h2 {
	font-size: 18px;
	margin-top: 155px;
	font-weight: 500;
	margin-bottom: 10px;
} 
.about_title p:nth-child(2) {
	font-size: 35px;
	font-family:"Times New Roman", Times, serif;
} 



.about_wrap h3 {
	font-size: 24px;
}
.about_wrap h3:after {
	content: "";
	display: block;
	margin-top: 25px;
	margin-bottom: 40px;
	height: 1px;
	width: 350px;
	background-color: #113575;
}



.about_c {
	display: flex;
	align-items:  center;
	gap: 60px;
}
.about_c2 {
	flex-direction: row-reverse;
	margin-top: 70px;
}
.about_p {
	width: 100%;
    padding: 80px 50px;
	line-height: 1.7;
}

.about_p span {
	display: block;
    text-align: right;
}
.about_p p br {
	display: block;
	content: "";
	height: 10px;
}


/*-------------------------------------

トップ取扱業務

--------------------------------------*/


.business_wrap {
	position: relative;
}
.business_wrap .mainImg {
	max-width: 1100px;
	width: 100%;
    height: 500px;
	margin-right: auto;
	margin-top: 200px;
	margin-bottom: 0px;	
	margin-left: 0px;	
}

.business_title {
	position: absolute;
	top: -200px;
	left: 10px;
	z-index: 10;
	width: 320px;
	height: 320px;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	color: #fff;
}
.business_title h2 {
	font-size: 18px;
	margin-top: 175px;
	font-weight: 500;
	margin-bottom: 5px;
} 
.business_title p:nth-child(2) {
	font-size: 35px;
	font-family:"Times New Roman", Times, serif;
	margin-bottom:5px;
}
.business_title p:last-child a {
	font-size: 18px;
	display: flex;
	align-items: center;
	color: #fff;
	text-decoration: none;
}
.business_title p:last-child a:before {
	content: "";
	width: 40px;
	height: 40px;
	background-image: url(../img/more.png);
	background-repeat: no-repeat;
	display: block;
	margin-right: 20px;
}   

.business_in {
	display: flex;
	max-width: 1095px;
	width: 100%;
	justify-content: space-between;
	margin-left: auto;
	margin-top: -50px;
}
.business_c { 
	background: #ebebeb;
	padding: 100px 100px;
}
.business_txt ul {
	display: flex;
	gap: 30px 60px;
	flex-wrap: wrap;
	margin-bottom: 30px;
}
.business_txt ul span {
	color: #113575;
}
.business_img {
	display: flex;
	margin-bottom: 30px;
	justify-content: space-between;
}
.business_img p {
	width: 24%;
}
.business_img p img {
	width: 100%;
}

/*-------------------------------------

トップ会社概要

--------------------------------------*/


.company_wrap {
	position: relative;
}
.company_back {
    position: absolute;
    width: 100vw;
    height: 500px;
    z-index: -1;
	top: -300px;
    left: calc(50% - 50vw);
    background-color: #113575;
    transform: translateX(-100%);
	transition: 1s;
}



.company_wrap .mainImg {
    max-width: 1100px;
	width: 100%;
	margin-left: auto;
	margin-top: 225px;
	margin-right: 0px;
	z-index: 5;	
}

.campany_c {
	background-color: #F4F4F4;
	padding: 150px 100px 100px;
	max-width: 1150px;
	width: 100%;
	margin-top: -70px;
}
.campany_c dl {
	display: flex;
	flex-wrap: wrap;
	font-size: 18px;
	align-items: center;	
}
.campany_c dt {
	width: 15%;	
	text-align: center;
	color: #8C6800;
	font-weight: bold;
	margin-bottom: 40px;
}
.campany_c dd {
	width: 35%;
	padding-left: 30px;	
	margin-bottom: 40px;
}
.campany_c .last_dt {
	margin-bottom: 0px;		
}



/*-------------------------------------

トップアクセス

--------------------------------------*/


.access_wrap {
	position: relative;
	
}

.access_back {
    position: absolute;
    display: block;
    width: 100vw;
    height: 760px;
    z-index: -1;
	top: -700px;
    left: calc(50% - 50vw);
    background-image: url(../img/access-img.png);
	background-repeat: no-repeat;
	background-size: cover;
}




.access_title {
	position: absolute;
	top: -140px;
	left: 10px;
	z-index: 10;
	width: 320px;
	height: 230px;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	color: #fff;
}

.access_title h2 {
	font-size: 18px;
	margin-top: 155px;
	font-weight: 500;
	margin-bottom: 10px;
} 
.access_title p:nth-child(2) {
	font-size: 35px;
	font-family:"Times New Roman", Times, serif;
} 

.access_in {
	display: flex;
	margin-top: 650px;
	margin-bottom: 100px;
	background-color: #F4F4F4;
	align-items: center;
	padding: 200px 100px 100px 100px;
	margin-left: 0px;
}
.access_in .access_if {
	flex-shrink: 0;
	margin-left: auto;
	width: 55%;
}
.access_in .access_if iframe {
	width: 100%;
}
.access_c {
	width: 100%;
}
.access_c>p {
	margin-bottom: 60px;
	font-size: 30px;
}
.access_c dl {
	display: flex;
	width: 48%;
	font-size: 18px;
	gap: 20px;
}
.access_c dt {
	width: 20%;
	color: #8C6800;
}
.access_c dd img {
	display: inline-block;
	margin-bottom: -1.7px;
}
.access_c dd img.sp {
	display: inline-block;
	margin-bottom: -1.7px;
}
.access_date {
	display: flex;
	justify-content: space-between;
}



/*-------------------------------------

トップお問い合わせ

--------------------------------------*/

#index-contact {
	background: url("../img/bg-contact.jpg") no-repeat center center/cover;
	height: 650px;
	color: #fff;
	display: flex;
	justify-content:center;
	align-items: center;
}

#index-contact .container {
	position: relative;
	z-index: 2;
}
#index-contact .container::before {
	content: "";
    position: absolute;
    background: url(../img/bg-index-contact.png) no-repeat center center / cover;
    width: 1194px;
	height: 860px;
    top: 50%;
	transform: translateY(-50%);
	right: -340px;
	z-index: -1;
}
#index-contact .section-title {
	align-items: center;
}
.index-contact-inner {
	display: flex;
	align-items: center;
}
.index-contact-left {
	width: 50%;
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 30px;
	position: relative;
}
.index-contact-left p:last-child {
	font-size: 20px;
}
.index-contact-right {
	width: 50%;
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 30px;
}
.index-contact-left::before {
	content: "";
	background: #ccc;
	width: 1px;
	height: 118px;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	position: absolute;
}
.tel {
	font-size: 50px;
	font-weight: 800;
	display: flex;
	align-items: center;
	gap: 40px;
	line-height: 1;
	margin-left: -80px;
}
.tel::before {
	content: "";
	background: url("../img/tel-icon.png") no-repeat center center/cover;
	width: 44px;
	height: 58px;
}
#index-contact .more-btn {
    margin-top: 0;
}
#index-contact .more-btn a {
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 280px;
    height: 70px;
    background: #113575;
    position: relative;
    color: #fff;
	margin: 0 auto;
    font-weight: 700;
}
#index-contact .more-btn a:before {
    content: "";
    background-image: url(../img/h_mail.png);
    margin-right: 20px;
    display: block;
    width: 31px;
    height: 23px;
}



.section-title {
	display: flex;
	flex-direction: column;
	justify-content:center;
	align-items: center;
	margin-bottom: 60px;
	color: #113575;
}
.en {
	font-size: 60px;
}
.ja {
	font-size: 18px;
}
#contact {
	color: #fff;
	margin: 100px 15px 0;
	padding-bottom: 150px;
}
#contact .container {
	max-width: 1280px;
	width: 100%;
	color: #fff;
	border: 1px solid #fff;
	border-radius: 10px;
    padding: 130px 240px;
	background: #fff;
}
#contact form .container {
	background: #fbfbfb;
	border-radius: 10px;
}
#contact .container ul {
	color: #000;
}
.contact_wrap {
	margin-top: 60px;
	padding: 0 0px;
}
#contact .formT {
	margin-bottom: 10px;
	font-weight: 800;
	width: 100%;
	display: flex;
	gap: 5px;
	color: #113575;
	font-size: 18px;
}
#contact .formT span {
	color: red;
	font-size: 13px;
}
#contact .formP {
	margin-bottom: 20px;
	color: #000;
	font-size: 18px;
}
.formP input {
	padding: 10px;
	width: 100%;
	border-radius: 5px;
	border: 1px solid #aaa;
	font-size: 18px;
}

.formP textarea {
	padding: 10px;
	height: 300px;
	width: 100%;
	border-radius: 5px;
	font-size: 18px;
	border: 1px solid #aaa;
}
.submit input {
	display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    width: 250px;
    height: 60px;
    margin: 0 auto;
    cursor: pointer;
	color: #fff;
     font-size: 16px;
    font-weight: 600;
    background: #113575;
}
.require {
	font-size: 13px;
}

.error-area {
	margin-bottom: 30px;
}
.error-area li {
	font-size: 14px!important;
	color: red;
}

.page_wrap {
	margin: 150px auto 80px;
}
.back_btn {
	margin-top: 60px;
}
.complete_wrap p {
	text-align: center;
}
.form_table {
	width: 60%;
	margin: 0 auto 60px;
	border-collapse: collapse;
}
.form_table tr:first-child {
	display: none;
}
.form_table td:first-child {
	width: 40%;
}
.form_table td {
	padding: 20px;
	border: 1px solid #ddd;
}
.button {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
	align-items: center;
}
.button_send {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    width: 250px;
    height: 60px;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    background: #113575;
}
.button_back {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    width: 250px;
    height: 60px;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    background: #bbb;
}


/*-------------------------------------

フッター

--------------------------------------*/


#footer {
	background-color: #113575;	
}
#footer nav ul {
	padding: 30px 50px;
	display: flex;
	max-width: 1050px;
	width: 100%;
	margin: 0 auto 25px;
	justify-content: space-between;
}
#footer nav ul li a {
	color: #fff;
}

.f_title {
	background-repeat: no-repeat;
	background-position: center center;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-bottom: 50px;
}
.f_title a {
	color: #fff;
}
.f_title a span {
	font-size: 27px;
}
.f_add {
	text-align: center;
	color: #fff;
	margin-bottom: 30px;
	font-size: 18px;
}
.f_add span {
	font-size: 16px;
}

.f_date {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
	font-size: 18px;
}
.f_date p {
	padding-left: 10px;
	padding-right: 10px;
	color: #fff;
	font-size: 16px;
}



.f_copy {
	text-align: center;
	padding: 5px 0;
	color: #fff;
}

.f_copy a {
	color: #fff;
	font-size: 14px;
}

/*----------------------------------------

ページトップ

----------------------------------------*/

#pagetop {
	position: fixed;
	bottom: 20px;
	right: 15px;
	z-index: 999;
	display: none;
	 
}
.page_img {
	
	width: 38px;
	height: 38px;
	 cursor: pointer;
}

.sp {
	display: none!important;
}
.pad {
		display: none;
}
.pad_c {
		display: none;
}
@media screen and (max-width: 1390px) {

	.about_p h3 br {
   		display: none;
	}
}

@media screen and (max-width: 1180px) {
	#header img {
		width: 250px;
	}
	.about_p {
   		padding: 0px 20px;
	}
	.access_in {
		padding: 200px 50px 100px;
	}
	.f_date p a {
    	color: #fff;
	}
	.menubtn:hover {
    opacity: 1;
	}
	.mv_catch {
		width: 40%;
	}
	.mv_catch img {
		width: 100%;
	}
	.top_back img {
		object-position: left;
	}
	.about_c>p {
		width: 50%;
		flex-shrink: 0;
	}
	.about_c>p img {
		width: 100%;
	}
	#contact .container {
		max-width: 1280px;
		width: 100%;
		color: #fff;
		border: 1px solid #fff;
		border-radius: 10px;
		padding: 100px 100px;
		background: #fff;
	}
}


@media screen and (max-width: 1024px) {
	header nav ul li {
		margin-right: 40px;
	}
	.about_p {
   		padding: 0px 20px;
	}
	.about_c .pc {
   		display: none;
	}
	.access_in {
		padding: 200px 50px 100px;
	}
	.access_back {
		background-position: center;
	}
}
@media screen and (max-width: 960px) {

	.pad {
		display: block;
	}
	.pc {
		display: none;		
	}
	.pad_c {
		display: block;
	}
	
	/*---------- Hamburger Menu ----------*/
	#header.pad {
		position: fixed;
		background-color: #fff;
		z-index: 99;
		top: 0;
		display: flex;
        justify-content: center;
        align-items: center;
		height: 80px;
	}
	#header .menubtn {
		width: 60px;
		height: 60px;
		background-color: #113575;/*ボタンの色*/
		position: fixed;
		top: 12px;
		right: 10px;
		cursor: pointer;
		z-index: 1001;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.menubtn span,
	.menubtn span:before,
	.menubtn span:after {
		content: '';
		display: block;
		height: 3px;
		width: 25px;
		border-radius: 3px;
		background-color: #ffffff;
		position: absolute;
		transition: 1s;
	}
	.menubtn span:before {
		bottom: 10px;
	}
	.menubtn span:after {
		top: 10px;
	}
	
	.peke span {
		background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
	}
	.peke span::before {
		bottom: 0;
		transform: rotate(45deg);
	}
	.peke span::after {
		top: 0;
		transform: rotate(-45deg);
	}
	#header .humbergur {
		transform: translateX(0px);
	}
	.drawr {
		background-color: #113575;/*メニューの背景の色*/
		position: fixed;
		padding-left: 20px;
		text-align: left;
		top: 0;
		right: 0;
		transform: translateX(100%);
		width: 100%;
		padding: 30px 20px 80px 20px;
		height: 100vh;
		z-index: 100;
		transition: .8s;
		overflow-y: scroll;
		display: block!important;
		z-index: 1000;
	}
	header nav ul {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		height: 100%;
	}
	header nav ul li {
		margin-right: 0;
		margin-bottom: 50px;		
	}
	header nav ul li a {
		color: #fff;		
	}
	header nav ul li:last-child a {
   		padding: 0;
	}
	header nav ul li:last-child a:before {
   		display: none;
	}
	#slider {
	    height: calc(100vh - 60px);
	}
	.top_img1 {
	    height: calc(100vh - 60px);
	}
	.top_img2 {
	    height: calc(100vh - 60px);
	}
	.top_img3 {
	    height: calc(100vh - 60px);
	}
	/* header */
	
	header h1 {
		padding: 0;		
	}
	header h1 a img {
		margin: 0 auto;
		padding-right: 30px;
		width: 30%;		
	}
	
	svg.demo3 {
		width: 700px;
		height: 700px;
		z-index: -1;
	}
	.about_c {
		gap: 30px;
	}
	.about_c>p {
        width: 50%;
        flex-shrink: 0;
    }
	/* business */
	
	.business_in {
		flex-direction: column;
		align-items: center;
		margin-top: 0px;
	}
	.business_in li {
		margin: 0 0 30px 0;
	}
	.business_in li a {
		width: 100%;
		max-width: 400px;
		max-width: none;
	}
	.business_wrap .mainImg {
		height: auto;
	}
	.business_in li a {
		display: flex;
		flex-direction: row;
		width: 100%;
		padding: 15px 10px;
	}
	.business_c li {
		margin-bottom: 0;
	}
	.business_img {
		display: flex;
		justify-content: center;
	}
	.business_c {
		
	}
	.business_img {
		flex-wrap: wrap;
		gap: 15px;
	}
	.business_img p {
		width: 48%;
	}
	.business_c ul {
	}
	.business_c h3 {
		text-align: center;
		margin-bottom: 20px;
	}
	
	
	/* company */
	
	.campany_c {
		padding: 150px 50px 70px;
	}
	.campany_c dt {
		width: 15%;
	}
	.campany_c dd {
		width: 35%;
		padding-left: 20px;
	}
	
	/* access */ 
	
	.access_back {
		background-position: center;
	}
	.access_c {
		width: 100%;
	}
	.access_in {
		display: block;
	}
	.access_in .access_if {
		width: 100%;		
	}
	.access_if iframe {
		width: 100%;
		height: 400px;	
	}
	.access_c>p {
		text-align: center;
		margin-top: 20px;
		margin-bottom: 50px;
	}
	
	.f_date p {
    	padding-left: 20px;
    	padding-right: 20px;
	}
	.f_date p a {
    	color: #fff;
	}
	.busuness_wrap main dd {
    	padding: 20px;
	}
	.busuness_wrap main .dl_odd dd {
    	padding: 20px;
	}
	
	.access_c dt {
		width: 36%;
	}
	
}

@media screen and (max-width: 767px) { /*ウィンドウ幅が最大767pxまでの場合に適用*/
	body {
		font-size: 15px;		
	}
	
	#header .menubtn {
		width: 50px;
		height: 50px;
		background-color: #113575;/*ボタンの色*/
		position: fixed;
		top: 9px;
		right: 10px;
		cursor: pointer;
		z-index: 1001;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	#header.pad {
        height: 66px;
    }
	.sp {
		display: block!important;
	}
	.pc {
		display: none!important;		
	}
	.pc_pad {
		display: none;
	}
	.access_c dd img.pc_pad {
		display: none;
	}
	.pad_c {
		display: none;
	} 
	.access_c dd img.sp {
		display: inline-block!important;
		margin-bottom: -1.7px;
		width: 14px;
	}
	.mv_wrap {
		position: relative;
		padding: 0 20px 60px;
		overflow: hidden;
		opacity: 1;
	}
	.top_back img {
		object-position: 2%;
    }
	.mv_catch {
		width: 50%;
	}
	header h1 a img {
		margin: 0 auto;
		padding-right: 30px;
		width: 50%;		
	}
	.mv_catch1 {
		transform: translate(-50%,-40%);
	}
	
	
	.back_1 {
		height: 1000px;
		transform: translateY(0%);
		height: 1200px;
		width: 500px;
		left: 80%;
		
	}
	.back_2 {
		width: 250%;
   		height: 850px;
		transform: translateX(0%);
    	left: 50%;
		
	}
	
	.back_3 {
		
		transform: translateY(0%);
		
	}
	.back_4 {
		
		transform: translateX(0%);
		
	}
	
	
	.scroll_layer1>img {
		height: 230px;
		object-fit: cover;
	}
	
	#slider {
	    height: calc(100vh - 93px);
	}
	.top_img1 {
	    height: calc(100vh - 93px);
	}
	.top_img2 {
	    height: calc(100vh - 93px);
	}
	.top_img3 {
	    height: calc(100vh - 93px);
	}
	
	header {
		height: 66px;
	}
	
	.mv_catch {
		top: 50%;
	}
	
	.mv_catch p:first-child img {
    	width: 150px;
		height: 150px;
	}
	.mv_catch p:first-child {
    	margin-bottom: 10px;
	}
	
	.mv_catch p:nth-child(2) {
   		 font-size: 40px;
		 margin-bottom: 10px;
	}
	.mv_catch p:nth-child(3) {
		font-size: 18px;
	}
	
	
	
	.mv_catch1 p:first-child img {
    	width: 150px;
		height: 150px;
	}
	
	
	
	/* about */
	
	.about_wrap .mainImg {
		margin-top: 100px;
		margin-bottom: 0;
	}
	.about_wrap {
		margin-bottom: 100px;
	}
	.about_c {
		flex-direction: column;
	}
	.about_p {
		padding: 50px 10px;
	}
	.about_c>p {
        width: 100%;
    }
	.about_p h3 {
		text-align: center;
		font-size: 20px;		
	}
	.about_p h3::after {
		margin-left: auto;
		margin-right: auto;
		width: 200px;
	}
	.about_title {
		width: 150px;
		height: 80px;
		top: -45px;
	}
	.about_title h2 {
		font-size: 12px;
		margin-top: 85px;
		margin-bottom: 0;
	}
	.about_title h2 img {
		width: 100%;
	}
	.about_title p:nth-child(2) {
		font-size: 20px;	
	}
	.about_c2 {
		margin-top: 0;
	}
	svg.demo3 {
		width: 500px;
		height: 500px;
		z-index: -1;
	}
	
	/* business */
	
	.business_wrap .mainImg {
		margin-top: 50px;
		margin-bottom: 0;
		height: auto;
	}
	.business_p {
		padding: 50px 10px;	
	}
	.business_title {
		width: 150px;
		height: 80px;
		top: -45px;
	}
	.business_title h2 {
		font-size: 12px;
		margin-top: 85px;
		margin-bottom: 0;
	}
	.business_title h2 img {
		width: 100%;
	}
	.business_c h3 {
    	font-size: 18px;
	}
	.business_title p:nth-child(2) {
		font-size: 20px;	
	}
	.business_in {
		flex-direction: column;
		align-items: center;
	}
	.business_in li {
		margin: 0 0 20px;
		width: 100%;
	}
	.business_in li a {
		display: flex;
		flex-direction: row;
		width: 100%;
		padding: 15px 10px;
	}
	.business_img {
   		margin-bottom: 10px;
		flex-shrink: 0;
	}
	
	.business_img {
		gap: 10px;
	}
	.business_img img {
		width: 100%;
		margin: 0 auto;
	}
	.business_c {
		text-align: left;
		padding: 50px 20px;
		margin-right: 0;
	}
	.business_c p:nth-child(2) {
	    font-size: 13px;
		padding: 0;
	} 
	.business_c p:last-child {
    	font-size: 13px;
		text-align: left;
	}
	.business_c h3 {
		padding: 0 0 10px 10px;
		text-align:left;
		margin-bottom: 0px;
	}
	.business_c ul {
		
		text-align: left;
		margin-bottom: 15px;
	}
	.business_c li {
		margin-bottom: 0;
	}
	.business_c h3:after {
		display: none;
	}
	.business_btn {
		width: 100%;
		margin: 0 auto;	
	}
	.business_btn a {
		color: #fff;
		border: 1px solid;
		margin-top: 0px;
		width: 100%;
		padding: 20px 0px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.business_in li.fade_up:nth-child(2).fade {
		animation: fadeup 1s ease forwards;
		opacity: 0;
	}
	
	.business_in .scroll_layer_l:nth-child(2).on::before {
		animation: scale1 1.2s ease forwards;
	}
	.business_in li.fade_up:nth-child(3).fade {
		animation: fadeup 1s ease forwards;
		opacity: 0;
	}
	.business_in .scroll_layer_l:nth-child(3).on::before {
		animation: scale1 1.2s ease forwards;
	}
	.business_in li.fade_up:nth-child(4).fade {
		animation: fadeup 1s .6s ease forwards;
		opacity: 0;
	}
	.business_in .scroll_layer_l:nth-child(4).on::before {
		animation: scale1 1.2s .6s ease forwards;
	}
	.business_btn a {
		display: flex;
	}
	.business_btn a:before {
		content: "";
		width: 30px;
		height: 30px;
		background-size: cover;
		background-image: url(../img/more.png);
		background-repeat: no-repeat;
		display: block;
		margin-right: 30px;
		margin-left: -30px;
	}
	.business_in li a:before {
		display: none;
	}
	
	/* company */
	
	
	
	.company_wrap .mainImg {
		margin-top: 100px;
		margin-bottom: 0;	
	}
	.campany_c {
		padding: 20px;
		margin-top: 0;	
	}
	.campany_c dl {
		font-size: 15px;
		display: block;
	}
	.campany_c dt {
		width: 100%;
		margin-bottom: 10px;
	}
	.campany_c dd {
		width: 100%;
		margin-bottom: 10px;
		padding-left: 0;
		text-align: center;
	}
	.campany_c .last_dt {
		margin-bottom: 10px;
	}
	.campany_c .last_dt a {
        color: #000!important;
    }
	/* access */
	
	
	.access_back {
		height: 300px;
		z-index: -1;
		top: -400px;
	}
	.access_in {
		margin-top: 450px;
	}
	.access_title {
		width: 150px;
		height: 80px;
		top: -45px;
	}
	.access_title h2 {
		font-size: 12px;
		margin-top: 85px;
		margin-bottom: 0;
	}
	.access_title h2 img {
		width: 100%;
	}
	.access_title p:nth-child(2) {
		font-size: 20px;	
	}
	.access_if iframe {
		width: 100%;
		height: 250px;	
	}
	.access_in {
		display: block;
		padding: 100px 20px 20px;
		margin-bottom: 50px;
	}
	.access_c>p {
		margin-bottom: 20px;
		font-size: 18px;
	}
	.access_date {
		width: 100%;
		display: block;
		font-size: 15px;
		margin-bottom: 20px;
		text-align: left;
	}
	.access_c dl {
		width: 100%;
		text-align: center;
		flex-direction: column;
		margin-bottom: 20px;
		gap: 15px;
	}
	.access_c dl:last-child {
		width: 100%;
		text-align: center;
		flex-direction: column;
		margin-bottom: 0px;
		gap: 15px;
	}
	.access_c dt {
		width: 100%;
		font-size: 16px;
		font-weight: 700;
	}
	.access_c dd {
		width: 100%;
		font-size: 15px;
	}
	.access_date p:first-child {
		margin-right: 0px;
		margin-bottom: 10px;		
	}
	
	.ja {
		font-size: 13px;
	}
	.en {
		font-size: 30px;
	}
	.section-title {
		margin-bottom: 30px;
	}
	#contact .container {
        padding: 50px 20px;
        background: #fff;
    }
	#contact {
		color: #fff;
		margin: 70px 15px 0;
		padding-bottom: 60px;
	}
	.form_table td:first-child {
		width: 100%;
		display: block;
	}
	.form_table td {
		width: 100%;
		display: block;
	}
	.form_table {
		width: 90%;
		margin: 0 auto 60px;
		border-collapse: collapse;
	}
	/* footer */
	
	#footer nav ul {
		padding: 0;
		display: block;
		text-align: center;
	}
	#footer nav ul li {
		padding: 15px 0;
		border-bottom: 1px solid #fff;
	}
	.f_title {
		margin-bottom: 25px;
	}
	.f_add {
		font-size: 15px;
	}
	.f_date {
		display: block;
		text-align: center;		
	}
	.f_date p {
		font-size: 15px;		
	}
	.f_date p a {
		color: #fff;		
	}
	.f_copy a {
		font-size: 12px;	
	}
	.page_img img {
		width: 48px;
		height: 30px;
	}

	#contact .formT {
    font-size: 16px;
}


/* ---------------------------------------

ビジネス

-----------------------------------------*/


#bredcrumb ul{
	max-width: 1300px;
	padding: 10px;
	margin: 0 auto;
	display: flex;
}
#bredcrumb ul li {
	padding-right: 20px;
}
#bredcrumb ul li a {
	color: #000;
}




.mv_wrap1 .scroll_layer2 {
	background-image: url(../img/business_top.png);
	background-repeat: no-repeat;
	background-position: center center;
	height: 350px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column-reverse;
	color: #fff;
	 opacity: 0;
}


.on .scroll_layer2 {
    animation: on 1s .5s ease forwards;
    opacity: 0;
}



.mv_wrap1 h2 {
	font-size: 30px;
	 opacity: 0;
}
.mv_wrap1 p {
	margin-bottom: 10px;
	 opacity: 0;
}

.on .scroll_layer2 h2 {
    animation: on 1s .8s ease forwards;
    opacity: 0;
}
.on .scroll_layer2 p {
    animation: on 1s .8s ease forwards;
    opacity: 0;
}


.business_in li a {
	position: relative;
}

.business_in li a:hover {
	filter: brightness(102%);
	opacity: 1;
}

.business_in li a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .7s cubic-bezier(.19, 1, .22, 1);
    background: #F5F5F5;
	z-index: -1;
}
  
.business_in li a:hover:before {
    transform: scaleX(1);
    transform-origin: left;
	filter: brightness(102%);
}

.busuness_wrap {
	margin: 0 0 100px 0;
}

.busuness_wrap article {
	background-color: #fff;
	max-width: 1200px;
	padding: 0 10px;
	margin: 0 auto;
}
.busuness_wrap h3 {
	padding: 2px 0;
	text-align: center;
	border: 2px solid #A88E3F;
	color: #A88E3F;
	font-size: 30px;
	font-weight: 500;
	font-style: italic;
	margin: 100px 0;
}

.busuness_wrap dl {
	display: flex;
	margin-bottom: 50px;
}
.busuness_wrap dl:last-child {
	margin-bottom: 0px;
}
.busuness_wrap dt {
	flex-shrink: 0;
	background-color: #113575;
	width: 340px;
	height: 240px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	color: #fff;
	position: relative;
	margin-right: 30px;
	padding: 0 20px;
}
.busuness_wrap .dl_odd dt {
	margin-right: 0px;
	margin-left: 30px;
}
.busuness_wrap .dl_odd {
	flex-direction: row-reverse;
}
.busuness_wrap dt::after {
	position: absolute;
	font-size: 110px;
	display: block;
	top: -85px;
	right: 20px;
	font-style: italic;
	color: #A88E3F;
}
.busuness_wrap dt span:first-child {
	margin-bottom: 10px;
}
.busuness_wrap dt span:last-child {
	font-size: 25px;
	text-align: center;
}
.busuness_wrap dd.font18 {
	font-size: 18px;
	line-height: 2;
}
.busuness_wrap .dl_odd dd.font18 {
	padding: 20px 50px 20px 20px;
}
.busuness_wrap dd {
	line-height: 2;
	font-size: 17px;
	padding: 20px 10px;
	display: flex;
	align-items: center;
}
.busuness_wrap .dl_odd dd {
	line-height: 2;
	font-size: 17px;
	padding: 20px 10px;
	display: flex;
	align-items: center;
}
.busuness_wrap .count_01::after {
	content: "01";	
}
.busuness_wrap .count_02::after {
	content: "02";	
}
.busuness_wrap .count_03::after {
	content: "03";	
}
.busuness_wrap .count_04::after {
	content: "04";	
}
.busuness_wrap .count_05::after {
	content: "05";	
}
.busuness_wrap .count_06::after {
	content: "06";	
}
.busuness_wrap .count_07::after {
	content: "07";	
}
.business_i img {
    width: 100%;
    object-fit: cover;
    margin: 100px 0 100px;
}

@media screen and (max-width: 767px) { 

	.busuness_wrap {
    margin: 0 0 50px 0;
	}
	.busuness_wrap dl {
		display: block;
	}
	.busuness_wrap dt {
		margin: 0;
		width: 100%;
		height: 110px;
	}
	.busuness_wrap dt::after {
    position: absolute;
    font-size: 90px;
    display: block;
    top: -65px;
    right: 20px;
    font-style: italic;
    color: #A88E3F;
	}

    .busuness_wrap .count_05::after {
		top: -95px;
	}
	.busuness_wrap .count_06::after {
		top: -75px;
	}
	.busuness_wrap .count_07::after {
		top: -95px;
	}

	.busuness_wrap .dl_odd dt {
    margin: 0;
	}
	.busuness_wrap main dd {
    padding: 20px 10px;
	font-size: 16px;
	}
	.busuness_wrap main .dl_odd dd {
    padding: 20px 10px;
	font-size: 16px;
	}
	.busuness_wrap dd.font18 {
    font-size: 16px;
	}
	.busuness_wrap .dl_odd dd.font18 {
    font-size: 16px;
	padding: 20px 10px;
	}
	.busuness_wrap h3 {
    margin: 50px 0 60px;
	font-size: 25px;
	}
	.busuness_wrap dt span:first-child {
    margin-bottom: 5px;
	}
	.busuness_wrap dt span:last-child {
    font-size: 25px;
	}

	.mv_wrap1 {
    height: 200px;
    margin-top: 67px;
	}
	.mv_wrap1 .scroll_layer2 {
	height: 200px;
	}
	.business_i img {
    width: 100%;
	height: 150px;
    object-fit: cover;
    margin: 50px 0 50px;
	}
	
}