@charset "utf-8";
/* CSS Document */

.sp{
display: block;
}

.pc{
display: none;
}

body {
  margin: 0 auto;
  padding: 0;
  letter-spacing: 1px;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "メイリオ", meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
  font-weight: bold;
  background: #fff;
  word-break: break-all;
}

* {
  box-sizing:border-box;
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  -ms-box-sizing:border-box;
  -o-box-sizing:border-box;
  }
		
		img {
  max-width: 100%;
  height: auto;
  aspect-ratio: attr(width) / attr(height);
		vertical-align: bottom;
}

a,
a img,
input{
	cursor: pointer;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

a:hover{
opacity: .7;
}

/* header ***************************************************************/

	header {
		background:#fff;
		position:fixed;
		top:0;
		width:100%;
		height:56px;
		z-index: 1;
		box-shadow:rgba(0,0,0,.12) 0px 0px 6px 3px;
		min-width:auto;
		display: flex;
  align-items: center;
}
	
  #header_inner {
			padding:8px 15px 0;
			height:auto;
  }

  #global-nav {
    display:none;
  }

	.logo{
		font-family: "Noto Sans JP", sans-serif;
		font-optical-sizing: auto;
		font-weight:900;
		font-size: 30px;
		line-height: 30px;
		color: #222;
	}

/* first_view ***************************************************************/

 #top_image_wrap {
		height: 200px;
		position: relative;
		background: url(images/top_bg.png) no-repeat left top / cover;
		display: flex;
  align-items: center;
  }


#top_image_wrap img{
	width: 100%;
}


/* content ***************************************************************/

#lp_wrap{
	width: 100%;
	background: #fff;
	text-align: center;
}

#lp_main{
	padding-top: 56px;
}

section .inner{
	width: 100%;
padding: 30px 20px;
overflow: hidden;
}

/* text ***************************************************************/

#top_image_wrap p{
	font-size: 20px;
	color: #fff;
	word-break: break-word;
	font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
	white-space: nowrap;
}

#top_image_wrap p span{
	display: block;
}

h2, .business_text p {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight:900;
}

h2.title{
	font-size: 20px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
	line-height: 1;
}

.title:before {
	content: "";
	width: 30px;
	height: 3px;
	background: #aaa;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -15px;
}

p.text{
	font-size: 16px;
}

.left{
	text-align: left;
}

/* btn ***************************************************************/

.btn {
width: 280px;
height: 60px;
line-height: 60px;
display: flex;
border-radius: 50px;
background-image: linear-gradient(0deg, #333, #6f6f6f);
margin: 30px auto 0;
color: #fff;
position: relative;
font-size: 16px;
font-weight: bold;
justify-content: center;
align-items: center;
}

.btn:after {
	content: "";
	display: block;
	width: 8px;
	height: 14px;
	background: url('images/icon_arrow.svg') no-repeat center center;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%); 
	pointer-events: none; 
}

.btn.tel{
display: none;
}

/* pagetop ***************************************************************/

.pagetop {
  display: none; 
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 1000; 
}

.pagetop a {
  width: 40px;
  height: 40px;
  font-size: 10px;
  border-radius: 50px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  background: #222;
  text-decoration: none;
		font-family: "Noto Sans JP", sans-serif;
}

.pagetop a span{
display: none;
}

.icon_arrow_up{
  display: inline-block;
  width: 13px;
  height: 7px;
  background: url('images/icon_arrow_up.svg') no-repeat center center;
  background-size: contain;
		position: relative;
		top: 4px;
}

.icon_mail{
  display: inline-block;
  width: 20px;
  height: 16px;
  background: url('images/icon_mail.svg') no-repeat center center;
  background-size: contain;
		position: relative;
		top: 0;
		left: -10px;
}

.icon_tel{
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url('images/icon_tel.svg') no-repeat center center;
  background-size: contain;
		position: relative;
		top: 0;
		left: -5px;
}



/* top_text ***************************************************************/

.top_text p{
	line-height: 1.8;
	text-align: left;
	font-size: 16px;
}

.top_text p:nth-of-type(n+2){
	margin-top: 20px;
}

/* table ***************************************************************/

table{
width: 100%;
font-weight: bold;
	border-top: 1px solid #666;
	border-left: 1px solid #666;
	border-right: 1px solid #666;
}

table th,
table td{
	width: 100%;
	padding: 10px;
	font-size: 15px;
	vertical-align: middle;
	text-align: left;
	border-bottom: 1px solid #666;
	display: block;
}

table th{
	border-bottom: 1px solid #666;
	text-align: center;
	background: #eee;
	padding: 5px 10px;
}

table td{
	font-size: 13px;
}

/* map ***************************************************************/

	.map_wrap p{
	font-size: 16px;
	margin-top: 20px;
	}

.map {
  position: relative;
  padding: 30% 0 30%;
  height: 0;
  overflow: hidden;
}

.map iframe, .map object, .map embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access p{
	font-size: 16px;
	line-height: 1.8;
	text-align: center;
}

/* business ***************************************************************/

.business {
  position: relative;
  background: url(images/business_bg.png) no-repeat center top / cover;
  display: flex;
  align-items: center;
}

.business h2{
	color: #fff;
}

.business ul li{
	display: flex;
	background: rgba(255,255,255,.75);
}

.business ul li:nth-of-type( n+2 ){
	margin-top: 20px;
}

.business ul li:nth-of-type( 2n ){
	flex-direction: row-reverse;
}

.business ul li:nth-of-type(4) p{
  letter-spacing: -1px;
}

.business .image_wrap{
	width: 30%;
	display: flex;
}

.business .image_wrap img{
	width: 100%;
}

.business .business_text{
	width: 70%;
	display: flex;
	flex-direction: column;
	align-self: center;
	padding: 10px;
}

.business .business_text p{
	font-weight: 800;
	font-size: 17px;
}

.business .business_text span{
	color: #aaa;
	font-size: 10px;
	margin-top: 5px;
	font-family: "Noto Sans JP", sans-serif;
}

/* footer ***************************************************************/

footer {
  background: #333;
  text-align: center;
  font-size: 12px;
  line-height: 30px;
  display: block;
  letter-spacing: 1px;
  color: #fff;
}

.inner_footer{
	padding: 15px;
}

.footer_social{
	display: flex;
	justify-content: space-between;
}
	
.footer_social li{
width: calc(50% - 5px);
}
	
.footer_social li img{
border-radius: 10px;
}

	#footer-nav ul {
  margin-top: 20px;
  display: flex;
		justify-content: center;
}
	
	#footer-nav ul li:before {
  left: 0;
}
	
		#footer-nav ul li:last-child:after {
  right: 0;
}
	
	#footer-nav ul li:last-child:after, #footer-nav  ul li:before {
  content: "｜";
  position: relative;
		display: inline-block;
}
	
#footer-nav ul li a {
	font-size: 11px;
	color: #fff;
	padding: 0 2px;
}

copy{
	display: block;
	margin-top: 10px;
	font-size: 10px;
}

/* toggle button ***************************************************************/

#drawer {
	display: none;
}

label {
	cursor: pointer;
	position: fixed;
}

.open {
	z-index: 999;
	top: 7px;
	right: 10px;
	width: 44px;
	height: 44px;
	border-radius: 48px;
	background: #ddd;
	transition: background .6s, transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.open::before,
.open::after {
	content: "";
}

.open span,
.open::before,
.open::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	left: 30%;
	width: 40%;
	border-bottom: 2px solid #222;
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.open::before {
	transform: translateY(-8px);
}

.open::after {
	transform: translateY(8px);
}

.close {
	z-index: 1;
	inset: 0;
	pointer-events: none;
	transition: background .6s;
}

#drawer:checked + .open {
	background: #fff;
	transform: translateX(-280px);
}

#drawer:checked + .open span {
	transform: scaleX(0);
}

#drawer:checked + .open::before {
	transform: rotate(135deg) scaleX(1.2);
}

#drawer:checked + .open::after {
	transform: rotate(-135deg) scaleX(1.2);
}

#drawer:checked ~ .close {
	pointer-events: auto;
	background: rgba(0,0,0,.3);
}


/* drawer menu  ***************************************************************/

.menu {
	z-index: 999;
	position: fixed;
	overflow: auto;
	top: 0;
	right: 0;
	width: 280px;
	height: 100%;
	margin: 0;
	padding: 10px;
	box-sizing: border-box;
	background: rgba(0,0,0,.8);
	transform: translateX(100%);
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.menu h2 {
	color: white;
	font-family: "Ubuntu Condensed", sans-serif;
	font-weight: 400;
	letter-spacing: .1em;
	text-align: center;
}
.menu ul {
	margin: 0;
	padding: 0;
}
.menu li {
	line-height: 1.4;
}
.menu li {
	border-top: 1px solid rgba(255,255,255,.6);
}

.menu li:last-child{
	border-bottom: 1px solid rgba(255,255,255,.6);
}

.menu a {
	display: block;
	padding: 1em 2em;
	color: white;
	text-decoration: inherit;
	transition: background .6s;
}
.menu a:hover {
	background: black;
}
#drawer:checked ~ .menu {
	transform: none;
}


@media screen and (min-width: 767px) {

.sp{
display: none;
}

.pc{
display: block;
}
	
/* header PC ***************************************************************/

.logo{
	font-family: "Noto Sans JP", sans-serif;
	font-size: 40px;
	line-height: 40px;
}
	
	header {
  border-bottom: solid 1px #e2e0e1;
  background: #fff;
  position: fixed;
  width: 100%;
  z-index: 100;
  -moz-transition: all .5s;
  -o-transition: all .5s;
  -webkit-transition: all .5s;
  transition: all .5s;
  height: 80px;
}

	#header_inner {
  padding: 0;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
		overflow: hidden;
		width: 960px;
		min-width: 960px;
		margin: 0 auto;
}

.head-right{
display: flex;
align-items: center;
}
		
	#global-nav {
  display: block;
		margin-right: 20px;
}
	
	#global-nav ul {
  display: flex;
}
	
	#global-nav ul li {
  font-size: 90%;
  font-weight: 700;
  position: relative;
  white-space: nowrap;
}
	
	#global-nav ul li:before {
  left: 0;
}
	
		#global-nav ul li:last-child:after {
  right: 0;
}
	
	#global-nav ul li:last-child:after, #global-nav  ul li:before {
  content: "";
  width: 2px;
  height: 17px;
  background: #dedede;
  position: absolute;
  top: 50%;
  margin-top: -8px;
}
	
#global-nav ul li a {
color: #333;
  height: 80px;
  padding: 2px 25px;
  display: flex;
  align-items: center;
  position: relative;
  flex-direction: column;
  text-align: center;
}
	
#global-nav ul li a:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  background: #333;
  height: 3px;
  transform: translateY(4px);
  transition-property: transform;
  transition-duration: .3s;
  transition-timing-function: ease-out;
		opacity: 0;
}
	
#global-nav ul li a:hover:before {
  opacity:1;
	  transform: translateY(0);
}
	
#global-nav ul li a p {
  margin-top: 22px;
  letter-spacing: 1px;
  line-height: 1;
  font-size: 14px;
		font-family: "Noto Sans JP", sans-serif;
}
	
	#global-nav ul li a span {
  display: block;
  font-size: 10px;
  color: #aaa;
  margin-top: 10px;
  letter-spacing: 1.5px;
  line-height: 1;
		font-family: "Noto Sans JP", sans-serif;
}

#global-nav ul li a:hover{
opacity: 1;
}
	
/* first_view PC ***************************************************************/

 #top_image_wrap{
	background: url(images/top_bg.png) no-repeat left 0 top 15% / cover;
	height: 450px;
	position: relative;
}

	#top_image_wrap img{
		width: 100%;
	}
	
/* content PC ***************************************************************/
	
#lp_main{
	padding-top: 80px;
}

section .inner{
		width: 960px;
		min-width: 960px;
margin: 0 auto;
padding: 60px 0;
overflow: hidden;
}
	
/* text PC ***************************************************************/

#top_image_wrap p{
	font-size: 60px;
}

h2.title{
	font-size: 40px;
	margin-bottom: 30px;
	padding-bottom: 35px;
	line-height: 1;
}

.title::before {
	content: "";
	width: 40px;
	height: 4px;
	margin-left: -20px;
}

p.text{
	font-size: 18px;
}
	
/* btn PC ***************************************************************/

.btn {
width: 360px;
height: 70px;
line-height: 70px;
display: flex;
border-radius: 50px;
background-image: linear-gradient(0deg, #333, #6f6f6f);
margin: 60px auto 0;
color: #fff;
position: relative;
font-size: 18px;
font-weight: bold;
justify-content: center;
align-items: center;
}

.btn:after {
	content: "";
	display: block;
	width: 8px;
	height: 14px;
	background: url('images/icon_arrow.svg') no-repeat center center;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%); 
	pointer-events: none; 
}

.btn.tel{
display: flex;
	width: 220px;
	height: 60px;
	margin: 0;
	padding-top: 20px;
	font-size: 20px;
	font-family: "Noto Sans JP", sans-serif;
}

.btn.tel:after{
content: none;
}

.btn.tel:before{
content: "お問い合わせ";
color: #fff;
font-weight: 600;
font-size: 12px;
display: block;
position: absolute;
top: -17px;
}

/* top_text PC ***************************************************************/

.top_text p{
	font-size: 18px;
	text-align: center;
	margin-top: 40px;
}

.top_text p:nth-of-type(n+2){
	margin-top: 20px;
}
	
/* table PC ***************************************************************/

table{
width: 100%;
font-weight: bold;
	border-top: 2px solid #666;
	border-left: 2px solid #666;
	border-right: 2px solid #666;
}

table th,
table td{
	padding: 0 15px;
	height: 66px;
	font-size: 18px;
	vertical-align: middle;
	text-align: left;
	border-bottom: 2px solid #666;
	display: table-cell;
}
	
table th{
	border-right: 2px solid #666;
	text-align: center;
	background: #eee;
	width: 180px;
	padding: 0 15px;
}
	
	table td{
		width: auto;
		font-size: 18px;
	}	
	
/* map PC ***************************************************************/
	
	.map_wrap p{
	font-size: 18px;
	margin-top: 20px;
	line-height: 2.5;
	}

.map {
  position: relative;
  padding: 30px 0 20%;
  height: 0;
  overflow: hidden;
}

.map iframe, .map object, .map embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access p{
	font-size: 16px;
	line-height: 1.8;
	text-align: center;
}


/* business PC ***************************************************************/

.business {
  position: relative;
  background: url(images/business_bg.png) no-repeat center top / cover;
  display: flex;
  align-items: center;
}

.business ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.business ul li {
		display: flex;
		background: rgba(255,255,255,.8);
		flex-direction: column;
		width: calc(50% - 20px);
	}

.business ul li:nth-of-type( n+2 ){
	margin-top: auto;
}

.business ul li:nth-of-type( n+3 ){
	margin-top: 40px;
}

.business ul li,
.business ul li:nth-of-type( 2n ){
	flex-direction: column;
}

.business .image_wrap{
	width: 100%;
	display: flex;
}

.business .image_wrap img{
	width: 100%;
}

.business .business_text{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-self: center;
	padding: 15px;
}

.business .business_text p{
	font-size: 27px;
	font-weight: 600;
}

.business .business_text span{
	color: #aaa;
	letter-spacing: 2px;
	margin-top: 0;
}
		
/* footer PC ***************************************************************/
	
	.inner_footer{
	padding: 30px;
}
	
.footer_social{
	width: 530px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
		
.footer_social li {
  width: calc(50% - 15px);
}
	
#footer-nav ul{
	margin-top: 40px;
}

#footer-nav ul li a{
	padding: 0 6px;
	font-size: 18px;
}
	
	#footer-nav ul li:last-child:after, #footer-nav  ul li:before {
		font-size: 18px;
}

copy{
	display: block;
	margin-top: 20px;
	font-size: 12px;
}
	
#drawer-nav {
	display: none;
}

/* pagetop PC ***************************************************************/

.pagetop {
  display: none; 
  position: fixed;
  right: 30px;
  bottom: 10px;
  z-index: 1000; 
}

.pagetop a {
  width: 60px;
  height: 60px;
  font-size: 10px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  background: #222;
  text-decoration: none;
		font-family: "Noto Sans JP", sans-serif;
}

.pagetop a span{
display: block;
}


.icon_arrow_up{
  display: inline-block;
  width: 14px;
  height: 8px;
  background: url('images/icon_arrow_up.svg') no-repeat center center;
  background-size: contain;
		position: relative;
		top: 5px;
}

.icon_mail{
  display: inline-block;
  width: 20px;
  height: 16px;
  background: url('images/icon_mail.svg') no-repeat center center;
  background-size: contain;
		position: relative;
		top: 0;
		left: -10px;
}
}

@media screen and (max-width: 395px) {
	
table th{
	border-bottom: 1px solid #666;
	text-align: center;
	background: #eee;
	padding: 5px 10px;
}

table td{
	font-size: 13px;
}
	
	section .inner {
  width: 100%;
  padding: 30px 15px;
  overflow: hidden;
}
	
#footer-nav ul li a{
	padding: 0;
	font-size: 10px;
	letter-spacing: 0;
}
	
}

@media screen and (max-width: 340px) {

#top_image_wrap p{
	font-size: 24px;
	color: #fff;
}

section .inner {
  width: 100%;
  padding: 20px 10px;
  overflow: hidden;
}

.business .image_wrap {
  width: 29%;
  display: flex;
}

.business .business_text {
width: 71%;
padding: 10px 5px;
}

.business .business_text p {
	font-size: 15px;
	letter-spacing: 0;
}
	
table th{
	border-bottom: 1px solid #666;
	text-align: center;
	background: #eee;
	padding: 5px 10px;
}

table td{
	font-size: 12px;
	letter-spacing: 0;
}

.map_wrap p {
 font-size: 12px;
	letter-spacing: 0;
}

.inner_footer {
  padding: 10px;
}
	
#footer-nav ul{
		margin-top: 20px;
}

#footer-nav ul li a{
	padding: 0;
	font-size: 10px;
	letter-spacing: 0;
}
}

/* Animations */
.fade-in {
opacity: 0;
transform: translateY(20px);
transition: all 0.6s ease;
}

.fade-in.visible {
opacity: 1;
transform: translateY(0);
}

