@charset "UTF-8";

body{
	font-family: "-apple-system", "BlinkMacSystemFont","Helvetica Neue","Arial","Hiragino Kaku Gothic ProN","Hiragino Sans","Meiryo",sans-serif;
	font-weight: 400;
	font-size: 16px;
	letter-spacing: 1px;
	color:#212121;
	}

img{
	max-width: 100%;
}

a:hover{
	transition: .2s;
}	

.wrapper{
	width: 100%;
}

.contents{
	margin:0 auto;
	max-width:1000px;
	text-align: center;
}

.gy{
	background-color: #f5f5f5;
}

.dgy{
	background-color: #d7d7d7;
}

.bk{
	background-color: #212121;
	color: #fff;
}

/*ーーーーheaderーーーー*/

header{
	background-color: #fff;
	z-index: 2;
}

.drawer{
	display: flex;
	justify-content: space-between;
  align-items: center;
  position: relative;
  height: 100px;
  padding: 0 50px;
}

.tel_wrap{
	text-align: center;
}

.tel{
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	font-size: 28px;
	padding-bottom: 5px;
}

.tel::before{
	content: '';
	display: inline-block;
  background-image:url(../images/tel.png);
  background-size: contain;
  width: 26px;
  height: 26px;
  position: relative;
  top: 3px;
	margin-right: 10px;
}

.toiawase{
	font-size: 11px;
	color: #17347c;
	background-color: #eaf0ff;
	padding: 5px 0;
	border-radius: 25px;
	max-width: 235px;
	border: 1px solid #17347c;
}

.Toggle {
	display: none;
}

.menu{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 150px;
}

.menu li {
  font-size: 15px;
  font-weight: 600;
  padding: 25px 20px;
}

.menu li a:hover{
	color: #868686
}

.comingsoon {
  color: #464646;
  position: relative;
}

.hover{
	opacity: 0;
  transition: 0.5s;
  background: #359fdd;
  font-size: 13px;
  font-weight: 400;
  position: absolute;
  color: #fff;
  padding: 5px;
  width: 120px;
  bottom: 50px;
  left:-10px;
  border-radius: 5px;
  visibility: hidden;
}

.comingsoon:hover::before {
  opacity: 1;
  visibility: visible;
}
.comingsoon:hover span {
  opacity: 1;
  visibility: visible;
}

@media only screen and (max-width: 767px){
	.drawer{
  	padding: 0 30px;
  	border-bottom: 1px solid #d7d7d7;
	}

	.logo{
		max-width: 230px;
	}

	header{
		height: 100px;
		position: fixed;
	}

	.tel_wrap{
		display: none;
	}

	.gnav{
		background-color: rgba(0,0,0,0.9);
		transition: .5s ease;
		transform: translateX(-105%);
	}

	.gnav.open {
		transform: translateX(0%);
	}

	.Toggle {
  	display: block;
    width: 30px;
    height: 30px;
    cursor: pointer;
	}
 
	.Toggle span {
    display: block;
    position: absolute;
    width: 30px;
    border-bottom: solid 2px #212121;
    transition: .35s ease-in-out;
	}
 
	.Toggle span:nth-child(1) {
    top:40px;
	}
 
	.Toggle span:nth-child(2) {
    top: 50px;
	}
 
	.Toggle span:nth-child(3) {
    top: 60px;
	}

	.Toggle.active span:nth-child(1) {
    top: 50px;
    transform: rotate(-45deg);
	}
 
	.Toggle.active span:nth-child(2),
	.Toggle.active span:nth-child(3) {
    top: 50px;
    transform: rotate(45deg);
	}

	.menu{
		display:block;
		padding: 40px 0;
	}

	.hover{
  	display: none;
	}
}

/*ーーーーTOPーーーー*/

.mv p{
	background-color: #999999;
}

.intro{
	padding: 100px 50px 100px;
}

h1{
	font-weight: 900;
	font-size: 42px;
	font-size: clamp(15px, 4vw, 42px);
}

.greeting{
	padding: 30px 0 40px;
	line-height: 2.0;
	text-align: left;
}

.btn{
	display: block;
	position: relative;
	max-width: 475px;
	margin: 0 auto;
	background:#fff;
	border: 1px solid #212121;
  padding: 20px 0;
  font-size: 20px;
	border-radius:50vh;
  transition: .3s;
}

.btn:hover{
	background:#212121;
	color: #fff;
}

.btnarrow::after{
  content: '';
	position: absolute;
  top:43%;
  right: 50px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #212121;
  border-right: 1px solid #212121;
  transform: rotate(45deg);
  transition: all .3s;
}

.btnarrow:hover::after{
  right: 40px;
  border-color:#fff;
}


@media only screen and (max-width: 767px){
	.mv {
		padding: 100px 0 0;
	}

	.intro {
		padding: 40px 30px 50px;
	}

	.motto {
		font-size: 14px;
		font-size: clamp(14px, 3vw, 28px);
		padding-bottom: 10px;
	}

	.motto::before,
	.motto::after {
		height: 1px;
	}

	h1 {
		font-size: 15px;
		font-size: clamp(15px, 4vw, 42px);
		line-height: 2.0;
	}

	.greeting {
		padding: 20px 0 30px;
		font-size: 13px;
	}

	.btn {font-size: 14px;
	}
}

/*ーーーーfooterーーーー*/

.bnr{
	padding-top: 80px;
}

.info{
	padding: 60px 0 80px;
}

.address{
	padding: 10px 0;
}

.address span{
	font-size: 12px;
}

.info > div > .tel{
	font-size: 42px;
	padding-bottom: 10px;
}

.info > div > .tel::before{
  width: 38px;
  height: 38px;
}

.info > div > .toiawase{
	margin: 0px auto;
}

.footer_menu{
	display: flex;
	justify-content: center;
	padding: 40px 0 20px;
}

.footer_menu li {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
}

.footer_menu li a:hover{
	color: #868686
}

.copy{
	padding-bottom: 60px;
	font-size: 11px;
}

@media only screen and (max-width: 767px){
	.map{
		padding: 15px;
	}

	.bnr{
		padding: 30px 30px 15px;
	}

	.info {
		padding: 30px 0 45px;
	}

	.footer_logo{
		max-width: 260px;
		margin: 0 auto;
	}

	.address{
		font-size: 14px;
	}

	.info > div > .tel{
		font-size: 28px;
	}

	.info > div > .tel::before{
  	width: 24px;
  	height: 24px;
	}

	.footer_menu{
		display:none;
	}

	.copy{
		padding: 30px 0;
		font-size: 10px;
	}
}


/*ーーーー下層ーーーー*/

.pankuzu{
	display: flex;
	font-size: 12px;
	padding: 40px 20px 0;
}

.pankuzu li::after{
	content: '>';
  padding: 0 0.6em;
  color: #999999;
}

.pankuzu li:last-child::after{
	content: '';
}

.pankuzu li a{
	color: #999999;
}

.pankuzu li a:hover{
	text-decoration: underline;
}

@media only screen and (max-width: 767px){
	.pankuzu{
		padding: 120px 20px 0;
		font-size: 10px;
	}
}

/*ーーーー業務内容ーーーー*/

h2{
	font-weight: 700;
	font-size: 36px;
	font-size: clamp(16px, 4vw, 36px);
	padding-bottom: 60px;
}

h3{
	color: #17347c;
	font-weight: 700;
	font-size: 22px;
	font-size: clamp(16px, 4vw, 22px);
}

.service{
	padding: 60px 0 0;
}

.icon{
	display: flex;
	justify-content: center;
	padding-bottom: 50px;
}

.icon img{
	width:100%;
	max-width: 100px;
	margin-right: 20px;
}

.icon img:last-child{
	margin-right: 0;
}

.txt{
	padding: 0 50px;
	line-height: 2.0;
	text-align: left;
}

.detail{
	background-color: #f5f5f5;
	margin: 60px 0;
	padding: 50px;
}

.list{
	display: flex;
	flex-wrap: wrap;
}

.item {
  padding: 20px;
  width: 48%;
  background-color: #fff;
  margin-top: 40px;
}

.item:not(:nth-child(2n+2)) {
  margin-right: 4%;
}

.caption{
	padding-top: 20px;
	font-size: 14px;
}

.notes{
	padding-top: 30px;
	font-size: 12px;
	text-align: right;
}

@media only screen and (max-width: 767px){
	.service{
		padding: 20px 0 40px;
	}

	h2 {
		font-size: 16px;
		font-size: clamp(16px, 4vw, 36px);
		padding-bottom: 30px;
	}

	h3 {
		font-size: 16px;
		font-size: clamp(16px, 4vw, 22px);
	}

	.icon{
		padding: 0 20px 30px;
	}

	.icon img{
		max-width: 70px;
		margin-right: 10px;
	}

	.txt{
		padding: 0 20px 0;
		font-size: 13px;
	}

	.detail{
	margin: 30px 0;
	padding: 50px 30px;
}

	.item {
    width: 100%;
  }

   .item:not(:nth-child(2n+2)) {
    margin-right: 0;
  }
}

/*ーーーー会社概要ーーーー*/

.company{
	padding: 60px 0;
}

.photo{
	padding-bottom: 60px;
}

dl {
  display: flex;
  justify-content: space-between;
}

dt {
  padding: 20px 30px;
  margin-bottom: 5px;
  width: 230px;
  background-color: #d7d7d7;
}

dd {
  padding: 20px 30px;
  width: calc(100% - 230px);
  background-color: #f5f5f5;
  margin-bottom: 5px;
  text-align: left;
}

@media only screen and (max-width: 767px){
	.company{
		padding: 20px 0 0;
	}

	.photo {
		padding: 0 15px 30px;
	}

	dl {
		flex-direction: column;
		padding: 0 15px;
	}

	dt,dd{
		width: 100%;
	}

	dt{
		  margin-bottom: 0;
		  font-size: 13px;
	}

	dd{
		  text-align: center;
		  font-size: 14px;
		  line-height: 2.0;
	}
}

/*ーーーーお問い合わせーーーー*/

/*ーーーーアニメーションなどーーーー*/

.fadein{
		animation: anim 2s forwards;
}

@keyframes anim {
  0% {
	opacity:0;
  }

  100% {
	opacity:1;
  }
}

.shadow{
	box-shadow: 0 6px 10px 0 rgba(0,0,0,0.3);
}

/*ーーーーPAGETOPーーーー*/

#page_top{
  width: 40px;
  height: 40px;
  position: fixed;
  right: 41px;
  bottom: 91px;
  background-color: #212121;
}

#page_top a{
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
}

#page_top a::before{
  content: '';
	position: absolute;
  top:43%;
  right: 40%;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(-45deg);
  transition: all .3s;
}

@media only screen and (max-width: 767px){
	#page_top{
		width: 35px;
	  height: 35px;
  	right: 21px;
  	bottom: 20px;
  }

  #page_top a{
		position: relative;
		display: block;
		width: 35px;
		height: 35px;
}

  #page_top a::before{
  	top:42%;
		right: 35%;
	}
}
