@charset "UTF-8";
/* CSS Document */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

*, *::before, *::after{
  box-sizing: border-box;
}

body{
  color: #333;
  font-family: 'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
}
a{
  text-decoration: none;
  color: #333;
}
@media screen and (min-width: 350px) {

a[href]{
  transition: .3s;
}
a[href]:hover{
  opacity: 0.6;
}
}
header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #46658E;
  height: 110px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}
.headers{
	max-width: 100%;
	background-color: #46658E;
}
.logo{
		width: 260px;
		height: auto;
	}
.logosp{
  display: none;
}
.telsp{
  display: none;
}
.topsp_texticon{
	display: none;
}
#nav-drawer {
  position: relative;
  display: none !important;
}
.nav-unshown {
  display: none !important;
}
#nav-open {
  display: inline-block;
  width: 100px;
  height: 35px;
  vertical-align: middle;
}
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  background-image: url("img/topmenu.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  display: block;
  cursor: pointer;
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}
#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 90%;
  max-width: 200px;
  height: 30%;
  background:#46658E;
  transition: .3s ease-in-out;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
  font-size: 20px;
  line-height: 2;
  font-weight: bold;
}
#nav-content a{
  color: #fff;
  padding: 20px;
  text-decoration:underline;
}
#nav-input:checked ~ #nav-close {
  display: block;
  opacity: .5;
}
#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

@media screen and (min-width:769px) {
  #nav-open {
  display:none;
}
}
.gnav{
  max-width: 100%;
  background-color: #46658E;
  height: 40px;
  margin: 0 auto;
}
.gnav ul{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120%;
  white-space: nowrap;
}
.gnav a {
  font-weight: bold;
  color: #FFFFFF;
  margin: 40px;
}
.gnav > ul > li+ li {
	border-left: 2px solid #fff;
}
.top{
  width: 100%;
  height: 650px;
  background-image: url("img/top.jpg");
  background-size:  cover;
  background-position: center;
}
.top_textbox{
  width: 1040px;
  height: 400px;
  margin: 0 auto;
  position: relative;
}
.text1{
  color: #fff;
  padding: 20px;
	margin: 0 20px;
  background-color: #333;
  position:absolute;
  top: 20%;
  left: 0;
	/*
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);*/
  font-weight: bold;
  font-size: 280%;
  opacity: 0.5;
  white-space: nowrap;
}
.text2{
  position: absolute;
  color: #fff;
	margin: 0 20px;
  padding: 20px;
  background-color: #333;
   top: 47%;
  left: 0%;/*
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);*/
  font-weight: bold;
  font-size: 280%;
  opacity: 0.5;
  white-space: nowrap;
}
.m100{
	margin: 0 130px;
}
.thanks{
	position: absolute;
	top: 38%;
	left: 26%;
}
.icon{
	position: absolute;
	top: 80%;
	left: 2%;
}
.pc { display: block !important; }
.sp { display: none !important; }

main{
  width: 100%;
  margin: 0 auto 0;
  padding: 0px;
}
main > .description{
  background-color: #46658E;
  height: auto;
  width: 100%;
  margin: 0 auto;
  padding: 50px 20px;
}
.description img{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.pcde { display: block !important; }
.spde { display: none !important; }

.article{
	max-width: 100%;
	background-color: #236188;
}
.articles{
  padding: 50px 0px;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.articles > li > .boxtext > h2{
  color: #fff;
  font-size: 170%;
  padding: 20px 0;
  line-height: 1.5;
  text-align: center;
}
.articles > li > .boxtext > p{
  font-size: 120%;
  color: #fff;
  line-height: 1.6;
  margin-left: 3%;
}
.box1{
  height: 100%;
  width: 310px;
  background-color: #236188;
}
.articlesimage img{
	width: 100%;
	height: auto;
}
.service_back{
	width: 100%;
	background-color: #CCD8E2;
}

.service{
	background-color: #CCD8E2;
	height: 160px;
}
.service > h1{
	font-size: 300%;
	font-weight: bold;
	text-align: center;
	padding: 60px;
}
.services{
	background-color: #CCD8E2;
	height: 100%;
	width: 1000px;
	display: flex;
	margin: 0 auto;
	padding-bottom: 7px;
}
.services > .container1{
	padding: 0 2% 0 0;
}
.services > .container2{
	padding: 0 0 0 2%;
}
.box2{
	margin-bottom: 8%;
}
.services > .container1 > li > .box2text > h2{
	color: #333;
	font-size: 200%;
	padding: 15px 0 10px;
	line-height: 1.5;
	text-align: center;
}
.services > .container1 > li > .box2text > p{
	font-size: 120%;
	color: #333;
	line-height: 1.5;
	text-align: left;
	padding:  0 7%;
}
.services > .container2 > li > .box2text > h2{
	color: #333;
	font-size: 200%;
	padding: 15px 0 10px;
	line-height: 1.5;
	text-align: center;
}
.services > .container2 > li > .box2text > p{
	font-size: 120%;
	color: #333;
	line-height: 1.5;
	text-align: left;
	padding:  0 7%;
}
.servicesimages{
	display: flex;
}
.servicesimage1{
	background-image: url("img/servicesimage1.jpg");
	object-fit: cover;
	background-size: cover;
	background-repeat: no-repeat;
	height: 230px;
	width: 100%;
	margin-right: 0.5%;
}
.servicesimage2{
	flex-direction: row;
	background-image: url("img/servicesimage2.jpg");
	object-fit: cover;
	background-size: cover;
	background-repeat: no-repeat;
	height: 230px;
	width: 100%;
	margin-left: 0.5%;
}
.box2text{
	background-color: #fff;
	margin-top: 5px;
	height: 230px;
}
.servicesimage3{
	background-image: url("img/servicesimage3.jpg");
	object-fit: cover;
	background-size: cover;
	background-repeat: no-repeat;
	height: 230px;
	width: 100%;
	margin-right: 0.5%;
}
.servicesimage4{
	flex-direction: row;
	background-image: url("img/servicesimage4.jpg");
	object-fit: cover;
	background-size: cover;
	background-repeat: no-repeat;
	height: 230px;
	width: 100%;
	margin-left: 0.5%;
}
.servicesimage5{
	background-image: url("img/servicesimage5.jpg");
	object-fit: cover;
	background-size: cover;
	background-repeat: no-repeat;
	height: 230px;
	width: 100%;
	margin-right: 0.5%;
}
.servicesimage6{
	flex-direction: row;
	background-image: url("img/servicesimage6.jpg");
	object-fit: cover;
	background-size: cover;
	background-repeat: no-repeat;
	height: 230px;
	width: 100%;
	margin-left: 0.5%;
}
.servicesimage7{
	background-image: url("img/servicesimage7.jpg");
	object-fit: cover;
	background-size: cover;
	background-repeat: no-repeat;
	height: 230px;
	width: 100%;
	margin-right: 0.5%;
}
.servicesimage8{
	flex-direction: row;
	background-image: url("img/servicesimage8.jpg");
	object-fit: cover;
	background-size: cover;
	background-repeat: no-repeat;
	height: 230px;
	width: 100%;
	margin-left: 0.5%;
}
.min_services{
	width: 1000px;
	margin: 0 auto;
}
.min_servicesimg {
	width: 100%;
	height: auto;
	margin: 40px auto;
	display: block !important;
	   -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
	}
.min_servicesimgsp {
	display: none !important;
}
@media screen and (min-width: 350px){
.min_servicesimg:hover{
	box-shadow: 0 2px 7px 3px #888;
    transform: translateY(-2px);
    opacity: .7;
}
}
.transaction > h1{
	font-size: 300%;
	font-weight: bold;
	text-align: center;
	padding: 50px;
}
.transaction > p{
	font-size: 200%;
	text-align: center;
	line-height: 1.5;
}
.transactionlist{
	max-width: 1100px;
    text-align: center;
	margin: 5% auto;
}
.transactions{
	width: 29%;
	height: auto;
	display: inline-block;
	text-align: center;
}

.transactionsimg{
	width: 241px;
	height: auto;
}

.transactiontext > h2{
	font-size: 30px;
	text-align: center;
	line-height: 1.6;
	font-weight: bold;
}
.triangleDown{
	display: none;
}
.inquiry{
	background-image: url("img/inquirypc.jpg");
	background-position: center;
	background-repeat: no-repeat;
	height: 600px;
	width: 100%;
	margin-top: 100px;
}
.inquirybox{
	max-width: 540px;
	height: 450px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}
.inquiry > .inquirybox > h1{
	padding: 40px;
	font-size: 65px;
	line-height: 1.6;
	font-weight: bold;
	color: #fff;
	text-align: center;
}
.inquiry > .inquirybox > p{
	padding: 4px;
	font-size: 20px;
	text-align: center;
	line-height: 1.6;
	color: #fff;
}
.inquirybutton{
	text-align: center;
}
.inquirybutton > a{
	color: #fff;
	font-size: 30px;
	background-color: darkorange;
	padding: 30px 60px;
	width: 600px;
	height:100px;
}
footer{
	background-color: #333333;
	color: #fff;
	display: block;
	max-width: 100%;
	margin: 0 auto;
}
.footer_container{
	max-width: 1200px;
	display: flex;
	margin: 0 auto;
	white-space: nowrap;
}
footer img{
	width: 100%;
	height: auto;
}
.adress{
	padding: 40px;
	height: 300px;
	width: 350px;
	margin: 0 auto;

}
.adress > h2{
	font-size: 18px;
	line-height: 1.5;
}
.adress > a{
	color: #fff;
	line-height: 2;
	font-size: 20px;
}
.footernav{
	margin-left: 0px;
}
.footernav > ul{
	display: flex;
	background-color: #333;
	margin-left: 0px;
	white-space: nowrap;
	margin-top: 40px;
}
.footernav > ul > li{
	padding: 0px 17px;
}
.footernav > ul > li > a {
	color: #fff;
	line-height: 1;
	font-size: 18px;
}
.footernav > ul > li+ li {
	border-left: 2px solid #fff;
}
#page_top{
	width: 100px;
	height: 40px;
	border-radius: 6px;
	background: #fff;
	margin: 20px;
	position: relative;
	top:100px;
	bottom: 0;
	right: 0;
	left: -135px;
}
#page_top a{
	position: relative;
	display: block;
	width: 100px;
	height: 40px;
	text-decoration: none;
}
#page_top a::after{
	content: '▲ トップへ';
	font-size: 16px;
	font-weight: bold;
	color: #333;
	position: absolute;
	top: 13px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}
.copylight{
	display: block;
	background-color: black;
	text-align: center;
	color: #fff;
	height: 36px;
	padding: 10px;
}
@media screen and (max-width: 850px){
	.logo{
		width: 210px;
		height: auto;
	}
	.tel{
		width: 160px;
		height: auto;

	}
	.mail{
		width: 160px;
		height: auto;
	}
	.telmail{
		white-space: nowrap;
	}
	.gnav ul{
        font-size: 100%;
    }
	.gnav a {
		margin: 30px;}
	.top{
  height: 500px;
}
.top_textbox{
  width: 850px;
  height: 400px;
  margin: 0 auto;
  position: relative;
}
.text1{
  top: 15%;
  left: 0;
  font-size: 220%;
}
.text2{
   top: 38%;
  left: 0%;
  font-size: 220%;
}
.m100{
	margin: 0 90px;
}
.thanks{
	position: absolute;
	top: 32%;
	left: 26%;
	width: 25%;
}
.icon{
	position: absolute;
	top: 65%;
	left: 2%;
	width: 60%;
}
	.description img{
         width: 100%;
		 height: auto;
	     margin: 0 auto;
}
	.transaction{
		padding-top: 50px;
	}
	.transactionsimg{
		width: 80%;
		height: auto;
	}
	.transactiontext > h2{
	font-size: 20px;
	white-space: nowrap;
	}

	.articles{
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 850px;
	padding: 20px 20px;
}
	.articles > li > .boxtext > h2{
	font-size: 30px;
	padding: 20px 0;
}
	.articles > li > .boxtext > p{
    font-size: 20px;
	margin: 0;
	}
    .box1{
	height: 100%;
	width: 100%;
	margin: 7% auto;
}
	.box2text{
	background-color: #fff;
	margin-top: 5px;
	height: 100%;
	padding-bottom: 10px;
	}
	.boxtext > p{
  font-size: 100%;
	}
	.services{
		max-width: 850px;
		width: 100%;
		padding: 0 20px;
		height: auto;
	}
	.servicesimage1,
	.servicesimage2,
	.servicesimage3,
	.servicesimage4,
	.servicesimage5,
	.servicesimage6,
	.servicesimage7,
	.servicesimage8{
		height: 170px;
	}
	.services > .container1 > li > .box2text > p{
	font-size: 100%;
}
	.services > .container2 > li > .box2text > p{
	font-size: 100%;
}
	.services > .container1{
	padding: 0 10px 0 0;
}
.services > .container2{
	padding: 0 0 0 10px;
}
.min_services{
	max-width: 850px;
	width: 100%;
	padding: 0 20px;
}
	.transaction > h1{
	font-size: 250%;
	padding: 0px;
}
.transaction > p{
	font-size: 180%;
	margin-top: 30px;
	line-height: 1.3;
}
	footer{
	background-color: #333;
	color: #fff;
	display: block;
	max-width: 100%;
	margin: 0 auto;
}
.inquiry > .inquirybox > h1{
	padding: 40px;
	font-size: 250%;
}
.footer_container{
	max-width: 100%;
	height: 530px;
	background-color: #333;
	display: block;
	margin: 0px;
}
footer img{
	width: 80%;
	height: auto;
}
.adress{
	padding: 40px 20px;
	height: 200px;
	width: 290px;
	margin-left: 0px;
}
.adress > h2{
	font-size: 14px;
	line-height: 1.5;
}
.adress > a{
	color: #fff;
	line-height: 2;
	font-size: 16px;
}
.footernav{
	background-color: #333333;
}
.footernav > ul{
	display: block;
	background-color: #333;
	margin-left: 10px;
}
.footernav > ul > li{
	padding: 20px 10px;
}
.footernav > ul > li > a {
	color: #fff;
	line-height: 1;
	font-size: 17px;
}
.footernav > ul > li+ li {
	border-left: none;
}
#page_top{
	width: 100px;
	height: 40px;
	border-radius: 6px;
	background: #fff;
	margin: 20px;
	position: relative;
	top: -450px;
	bottom: 0;
	right: 0;
	left: 300px;
}
#page_top a{
	position: relative;
	display: block;
	width: 100px;
	height: 40px;
	text-decoration: none;
}
#page_top a::after{
	content: '▲ トップへ';
	font-size: 16px;
	font-weight: bold;
	color: #333;
	position: absolute;
	top: 13px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}
.copylight{
	background-color: black;
	text-align: center;
	color: #fff;
	height: 50px;
	padding: 16px;
	font-size: 12px;
}
}
@media screen and (max-width: 600px){
	main{
	width: 100%;
    padding: 0%;
}
	header{
	background-color:#2660E2;
	height: 17vw;
	max-width: 100%;
	padding: 0px;
}
	#nav-drawer {
  display: block !important;
}
	.logo{
		display: none;
}
    .mail {
	    display: none;
}
    .gnav {
	    display: none;
}
    .tel{
	    display: none;
}
	.logosp{
		display: inline-block;
		width: 100%;
		height: auto;
}
	.telsp{
		display: inline-block;
		width: 100%;
		height: auto;
}
.top{
  width: 100%;
  height: auto;
  background-image: url("img/thankssp.jpg");
  background-size:  cover;
  background-position: center;
}
.top_textbox{
  max-width: 600px;
  width: 100%;
  height: 400px;
  margin: 0 auto;
  position: relative;
}
.text1{
  color: #fff;
  padding: 10px;
  background-color: #333;
  position:absolute;
  top: 13%;
  left: 3%;
	margin: 0;
	/*
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);*/
  font-weight: bold;
  font-size: 4.5vw;
  opacity: 0.5;
  white-space: nowrap;
}
.text2{
  position: absolute;
  color: #fff;
  padding: 10px;
	margin: 0;
  background-color: #333;
   top: 27%;
  left: 3%;/*
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);*/
  font-weight: bold;
  font-size: 4.5vw;
  opacity: 0.5;
  white-space: nowrap;
}
.m100{
	margin: 0 17vw;
}
.thanks{
	position: absolute;
	top: 23%;
	left: 32vw;
	width: 35vw;
}
.icon{
	display: none;
	}
.topsp_texticon{
	    display: block;
		width: 100%;
		height: auto;
	    background-color: #46658E;
	    padding: 20px 0 20px 0;
	    position: relative;
	}
	.iconsp{
		position: absolute;
		width: 80%;
	    top: -190%;
		left: 5%;
	}
	.topsp_texticon h2{
		color: #fff;
		font-size: 4.5vw;
		text-align: center;
		line-height: 1.7;
	}

.pcde { display: none !important; }
.spde { display: block !important; }

main > .description{
	background-color: #46658E;
	height: auto;
	width: 100%;
	display: flex;
	padding: 0;
}
	.description img{
         width: 100%;
	     margin: 0 auto;
		padding: 0 20px  20px;
}
.articles{
	display: block;
	margin: 0 auto;
	padding: 1px 20px;
}
	.articles > li > .boxtext > h2{
	font-size: 150%;
	padding: 15px 0;
}
	.articles > li > .boxtext > p{
  font-size: 100%;
	}
.box1{
	height: 100%;
	width: 100%;
	margin: 7% auto 14%;
}
.service{
	height: 130px;
}
.service > h1{
	font-size: 30px;
	padding: 50px;
}
.services{
	display: block;
	margin: 0 auto;
	height: 1500px;
	width: 100%;
}
.services > .container1{
	margin: 0 ;
}
.services > .container2{
	margin: 0 ;
}
.services > .container1{
	padding: 0 ;
}
.services > .container2{
	padding: 0 ;
}

.box2{
	margin-bottom: 20px;
}
.servicesimages{
	display: flex;
}
.servicesimage1,
	.servicesimage2,
	.servicesimage3,
	.servicesimage4,
	.servicesimage5,
	.servicesimage6,
	.servicesimage7,
	.servicesimage8{
		height: 160px;
	}
.services > .container1 > li > .box2text > h2{
	font-size: 150%;
}
.services > .container1 > li > .box2text > p{
	font-size: 100%;
}
.services > .container2 > li > .box2text > h2{
	font-size: 150%;
}
.services > .container2 > li > .box2text > p{
	font-size: 100%;
}
.box2text{
	background-color: #fff;
	height: 190px;
}
.min_services{
	max-width: 100%;
	margin: 0 auto;
}
.min_servicesimgsp {
	width: 100%;
	height: auto;
	display: block !important;
	margin: 20px 0 30px;
	}
.min_servicesimg {
	display: none !important;
}
.transaction > h1{
	font-size: 30px;
}
.transaction > p{
	font-size: 16px;
	line-height: 1.3;
}
.transactionlist{
	max-width: 100%;
	margin-top: 40px;
	margin-bottom: 60px;
	display: block;
}
.transactions{
	width: 80%;
	display: flex;
	justify-content:space-between;
	margin: 0 auto;
}
.transactions img{
	width: 40%;
	height: 40%;
	margin: 10px 0 10px 20px;
}
.transactiontext > h2{
	font-size: 18px;
	margin: 45px 0 0 10px;
	width: 150px;
}
.triangleDown{
	display: block;
	margin: 0 22vw;
	width:0;
	height:0;
	border-right:30px solid transparent;
	border-left:30px solid transparent;
	border-top:20px solid #32929F;
}
.inquiry{
	background-image: url("img/inquirypc.jpg");
	background-position: left;
	background-repeat: no-repeat;
	width: 100%;
	margin-top: 100px;
}
.inquirybox{
	max-width: 80%;
	height: 300px;
}
.inquiry{
	height: 450px;
	margin-top: 0px;
}
.inquirybox{
	max-width: 400px;
	height: 300px;
}
.inquiry > .inquirybox > h1{
	font-size: 30px;
}
.inquiry > .inquirybox > p{
	padding: 0 30px;
	font-size: 16px;
}
.inquirybutton{
	margin-top: 40px;
}
.inquirybutton > a{
	color: #fff;
	font-size: 17px;
	background-color: darkorange;
	padding: 20px 30px;
	width: 100%;
	height: auto;
	margin: 0;
}
#page_top{
	position: relative;
	top:-445px;
	bottom: 0;
	right: 0;
	left: 220px;
}
}


.market_bg {
  width: 100%;
  padding: 3em 0 3em 0;
  background: #003366;
}
h2.oshirase {
  font-weight: bold;
  text-align: center;
  font-weight: bold;
  font-size: 1.6em;
  margin-bottom: 1em;
}
.market {
  line-height: 1.8em;
  width:1000px;
  margin: 0 auto 0 auto;
  padding: 2em 3em;
  color: #fff;
  border: 2px solid #ccc;
}
@media screen and (max-width: 678px){
  .market {
    line-height: 1.8em;
    width:90%;
    display: block;
    margin: 0 auto 0 auto;
    padding: 2em 1em;
    color: #fff;
    border: 2px solid #ccc;
  }
}
