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

@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-font-smoothing: subpixel-antialiased;
    box-sizing: border-box;
    letter-spacing: 1px;
	color: #464646;
}


h1,h2,h3,h4{
    font-weight: 600;
    padding: 0;
    margin: 0;
}
h1{
    font-size: 22px;
	font-weight: 600;
}
h2{
	font-size: 14px;
	color: #E95477;
	font-weight: 400;
}

ul,li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
img{
    width: 100%;
    height: auto;
}

p{
    margin: 0;
	line-height: 1.6em;
}
a {
    text-decoration: none;
	color: #464646;
}

@media only screen and (max-width: 960px) {
	H1{
		font-size: 18px;
	}
}

/*ヘッダー*/
header{
	width: 100%;
	height: auto;
	margin: 0 auto;
	position: fixed;
	z-index: 9999;
}
.header{
	max-width: 1024px;
	width: 90%;
	height: auto;
	margin: 20px auto 0 auto;
	background-color: rgba(255,255,255,0.9);
	justify-content: space-between;
	border-radius: 10px;
	text-align: center;
	display: flex;
}

.header_1{
	padding: 20px 0;
	height: auto;
	margin: 0 20px 0 40px;
	display: inline-block;
}
.header_2{
	display: inline-block;
}
.header_2 ul{
	display: flex;
}
.header_2 ul li{
	margin: 4px 3vw 4px 0;
	padding: 20px 0;
	font-weight: 400;
}
.header_2 ul li a{
	font-size: 15px;
} 
.header_2 ul li a:hover{
  color: #E95477;
}

.header_2 ul li a{
  position: relative;
}

.header_2 ul li a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #E95477;
  bottom: -10px;
  transform: scale(0, 1);
  transition: transform 0.5s;
  transform-origin: center top;
}

.header_2 ul li a:hover::after {
  transform: scale(1, 1)
}


.header_2 ul .contact-btn{
	width: 140px;
	height: auto;
	background-color: #464646;
	color: #fff;
	margin: 0;
	padding: 23px 0;
	border-radius: 0 10px 10px 0;
	display: block;
	border: solid 2px #464646;
}

/* ハンバーガー初期設定 */
.hamburger {
  display: none;
  width: 28px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  margin: auto 20px auto 0;
  z-index: 10001;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #464646;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* 開閉アニメーション */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* 960px以下で切り替え */
@media (max-width: 960px) {
	.header_1{
		margin: 0 20px 0 20px;
		padding: 16px 0;
	}
  .hamburger {
    display: flex;
  }

  /* 全画面オーバーレイ */
  .header_2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255,255,255,0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10000;
  }

  .header_2.active {
    opacity: 1;
    pointer-events: auto;
  }
	.header_2 nav{
		width: 90%;
		margin: 0 auto;
	}
  .header_2 ul {
	  width: 100%;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

	.header_2 ul li{
		margin: 0 auto;
	}
  .header_2 ul li a {
    font-size: 18px;
    font-weight: 500;
    color: #464646;
  }

  .header_2 ul .contact-btn {
    background-color: #464646;
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 18px;
    margin-top: 40px;
	  max-width: 300px;
	  width: 90%;
	  display: block;
	  margin: 10px auto 0 auto;
  }
}


/*セクション設定*/
.wrap{
	width: 100%;
	padding: 80px 0;
}
.box{
	max-width: 840px;
	width: 90%;
	margin: 0 auto;
}
.title{
	width: 90%;
	margin: 0 auto 30px auto;
	text-align: center;
}
.title p{
	font-size: 36px;
	font-weight: 700;
	color: #464646;
}
.gray{
	background-color: #f5f5f5;
}

@media (max-width: 480px) {
	.wrap{
		padding: 40px 0;
	}
	.title p{
		font-size: 28px;
	}
}

/*メインビュー*/
.mainview{
	width: 100%;
}
.mainview h2{
	position: absolute;
	display: block;
	top: 12vw;
	left: 3%;
}
.mainview h2 span {
    background-color: #464646;
    color: #fff;
    margin: 5px 0;
    padding: 5px 8px;
    display: inline-block;
    font-size: 2.6vw;
	font-weight: 600;
}
@media (max-width: 800px) {
	.mainview h2{
		top: 14vw;
	}
}
@media (max-width: 480px) {
	.mainview h2{
/*		text-align:center;*/
		top: 36vw;
/*
		right: 0;
		bottom: 0;
		left: 0;
		margin: auto;
*/
	}
	.mainview h2 span{
		font-size: 6vw;
		
	}
}
/*会社について*/
.about{
	background-color: #fff;
}
.about_1{
	width: 100%;
	background-color: #f5f5f5;
	padding: 50px 80px;
	margin-bottom: 50px;
}
.about_1 .about_1-1{
	margin-bottom: 30px;
	text-align: center;
}
.about_1 .about_1-1 h3 span{
	width: 70px;
	height: 4px;
	background-color: #E95477;
	display: block;
	margin: 10px auto 20px auto;
}
.about_1 .about_1-1 .note{
	font-size: 14px;
	font-weight: 300;
	margin-top: 10px;
}

.about_message-1{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.message-img{
	width: 40%;
}
.message-name{
	width: 45%;
	text-align: left;
	margin-top: 20px;
}
.name-1{
	margin-bottom: 10px;
}
.name-2{
	font-size: 34px;
	font-weight: 600;
}
.name-3{
	font-size: 14px;
	font-weight: 300;
	margin-bottom: 20px;
}

.about_1 .about_1-1 .about_message-2 p{
	text-align: left;
	line-height: 1.6em;
	margin-top: 50px;
	font-size: 15px;
}

.about_value{
	display: flex;
	flex-wrap: wrap;
	gap: 2%;
	margin: 20px auto 0 auto;
}
.value{
	width: 23.5%;
}

@media (max-width: 480px) {
	.about_1{
		padding: 30px;
		margin-bottom: 30px;
	}
	.about_value{
		gap: 4%;
	}
	.value{
		width: 48%;
		margin-bottom: 10px;
	}
	.about_message-1{
		display: block;
	}
	.message-img{
		max-width: 360px;
		width: 100%;
		margin: 0 auto;
	}
	.message-name{
		width: 100%;
	}
	.name-1,.name-4{
		margin-bottom: 0;
		font-size: 15px;
	}
	.name-2{
		font-size: 28px;
	}
	.name-3{
		margin-bottom: 10px;
	}
	.about_1 .about_1-1 .about_message-2 p{
		margin-top: 30px;
	}
	.about_1 .about_1-1 .note{
		font-size: 12px;
		line-height: 1.2em;
	}
	.about_1 .about_1-1 .note br{
		display: none;
	}
}

/*事業について*/
.survicewrap{
	background-image: url("img/ashirai.png");
	background-repeat: no-repeat;
	background-size: 90%;
}
.survice_1{
	width: 100%;
	margin-bottom: 60px;
	display: flex;
	justify-content: space-between;
}
.reverse{
	flex-direction: row-reverse;
}
.survice_1-sen{
	width: 48%;
}
.survice_1-sen h3{
	font-size: 22px;
	border-bottom: solid 2px #E95477;
	padding-bottom: 10px;
}
.survice_1-sen p{
	margin-top: 20px;
	font-size: 14px;
	font-weight: 400;
}
.survice_1-sen a{
	font-size: 14px;
	display: inline-block;
	margin-top: 10px;
}
.survice_1-sen i{
	margin-right: 5px;
}

.survice_1-img{
	width: 48%;
	height: auto;
}
@media (max-width: 480px) {
	.survicewrap{
		background-size: 100%;
	}
	.survice_1{
		width: 90%;
		display: block;
		margin: 0 auto;
	}
	.reverse{
		flex-direction: column-reverse;
	}
	.survice_1-sen,.survice_1-img{
		width: 100%;
	}
	
	.survice_1-sen{
		margin-bottom: 20px;
	}
	.survice_1-sen h3{
		font-size: 18px;
	}
	.survice_1-sen p{
		margin-top: 10px;
	}
	.survice_1-img{
		margin-bottom: 30px;
	}
}

/*施設について*/
.facility-box{
	display: flex;
	justify-content: space-between;
}
.facility_1{
	width: 48%;
	background-color: #f5f5f5;
	padding: 30px;
}
.facility-img{
	width: 100%;
}
.facility-sen{
	margin-top: 20px;
}
.facility-sen_1{
	font-size: 18px;
	font-weight: 600;
}
.facility-sen_2{
	font-size: 14px;
	font-weight: 400;
}
.facility-sen a{
	display: block;
	width: 100%;
	padding: 10px;
	background-color: #E95477;
	color: #fff;
	text-align: center;
	margin-top: 10px;
	border: solid 2px #E95477;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.facility-sen a::before {
 	content: '';
	width: 100%;
	height: 100%;
	background-color: #fff;
	position: absolute;
  	left: -100%;
  	top: 0;
  	transition: .4s;
  	z-index: -1;
}
.facility-sen a:hover{
	color: #E95477;
}
.facility-sen a:hover::before {
  	left: 0;
}
@media (max-width: 480px) {
	.facility-box{
		display: block;
	}
	.facility_1{
		width: 100%;
		margin-bottom: 30px;
	}
	.facility-sen a{
		padding: 6px;
	}
}

/*会社概要*/
.companywrap{
	background-image: url("img/ashirai_1.png");
	background-repeat: no-repeat;
	background-size: 90%;
	background-position: top right;
}
.company-box{
	background-color: #fff;
	padding: 20px 50px;
}
/* テーブル */
#table01{
	width: 100%;
}
#table01 tr {
	display: flex;
	width: 100%;
	border-bottom: 1px solid #d0d0d0;
}
#table01 tr:last-of-type{
	border-bottom: none;
}

#table01 th,
#table01 td {
	padding: 24px 0;
	border: none;
}

#table01 th {
	width: 30%;
	text-align: left;
	font-weight: 600;
}

@media (max-width: 480px) {
	.company-box{
		padding: 10px 30px;
	}
	#table01 tr{
		display: inline-block;
	}
	#table01 th,#table01 td {
		width: 100%;
		display: block;
  }

	#table01 th {
		width: 100%;
		padding: 20px 10px 5px 0;
	}

	#table01 td {
    	padding-top: 0;
		font-size: 15px;
	}
}


/*フッター*/
.footer{
	padding: 50px 10px 20px 10px;
	background-color: #464646;
	margin: 0 auto;
	text-align: center;
}
.footer p{
	color: #fff;
}
.footer a{
	display: block;
	max-width: 350px;
	width: 90%;
	padding: 18px;
	background-color: #E95477;
	color: #fff;
	text-align: center;
	margin: 20px auto 80px auto;
	border: solid 2px #E95477;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.footer a::before {
 	content: '';
	width: 100%;
	height: 100%;
	background-color: #fff;
	position: absolute;
  	left: -100%;
  	top: 0;
  	transition: .4s;
  	z-index: -1;
}
.footer a:hover{
	color: #E95477;
}
.footer a:hover::before {
  	left: 0;
}
.copyright{
	color: #fff;
	font-size: 13px;
	font-weight: 300;
}
@media (max-width: 480px) {
	.footer a{
		padding: 12px;
	}
}