@charset "UTF-8";
@import url(./reset.css);
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

* {
	box-sizing: border-box;
}

html {
	overflow: auto;
}
body {
	font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-weight: normal;
	font-size: 14px;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	line-height: 1;
	color: #222;
	background-color: #fff;
	overflow: hidden;
}

img {
	border: none;
	vertical-align: bottom;
	height: auto;
}

.clearfix:after {
	content: ""; 
	display: block; 
	height: 0; 
	font-size:0;	
	clear: both; 
	visibility:hidden;
}

.mb0 { margin-bottom: 0px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb60 { margin-bottom: 60px !important; }
.mb1em { margin-bottom: 1em !important; }
.mb2em { margin-bottom: 2em !important; }
.mb3em { margin-bottom: 3em !important; }
.mb4em { margin-bottom: 4em !important; }
.mb5em { margin-bottom: 5em !important; }
.mb6em { margin-bottom: 6em !important; }
.pt0 { padding-top: 0px !important; }
.pb0 { padding-bottom: 0px !important; }
.pt60 { padding-top: 60px !important; }
.pb60 { padding-bottom: 60px !important; }
.center { text-align: center; }
.alignright { text-align: right; }
.aligncenter { text-align: center; }
.bold { font-weight: 900; }
.nowrap { white-space: nowrap; }


.en {
	font-family: "Arial Black", Arial, Gadget, "sans-serif";
	font-weight: 900 !important;
	letter-spacing: 0.2em;
}

@media screen and (max-width: 767px){
	.pcOnly{
		display: none;
	}
}

@media screen and (min-width: 768px){
	.spOnly{
		display: none;
	}
}

#wrapper {
	width: 100%;
	max-width: 2000px;
	position: relative;
	margin: 0 auto;
}

@media screen and (max-width: 767px){
	
	#wrapper {
		min-width: 100%;
	}
	
}

#js-menuBk {
	display: none;
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
}

/*------ヘッダーメニュー-----*/


header {
	width: 100%;
	height: 70px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 0 0 20px;
	background-color: #fff;
}

header .logo img {
	width: 130px;
	transition: 0.3s opacity ease;
}

header .logo img:hover {
	opacity: 0.6;
}

.g_navi {
	position: fixed;
	z-index: -9999;
	top: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	border: none;
	background: #fff;
	transition: all .5s;
	flex-direction: column;
	display: block;
	opacity: 0;
	overflow: auto; /*追加*/
	-webkit-overflow-scrolling: touch; /*追加*/
}

.g_navi_inner {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 20px;
}
	
.g_navi.is-active {
	z-index: 9999;
	opacity: 1;
}

.g_navi a {
	color: #222;
	text-decoration: none;
	font-weight: bold;
	font-size: 18px;
	display: block;
	padding: 20px;
	position: relative;
	margin: 10px 0;
	transition: opacity 0.3s ease;
	text-align: center;
}

.g_navi a:hover {
	opacity: 0.6;
}

.menubtn {
	position: absolute;
	right: 0;
	top: 0;
	width: 70px;
	height: 70px;
	display: flex;
	z-index: 99;
	background-color: #fff;
	transition: opacity 0.3s ease;
}

.menubtn:hover {
	opacity: 0.6;
}

.menubtn, .btn_close {
	position: relative;
	display: block;
	width: 70px;
	height: 70px;
	color: #d6d6d6;
	text-align: center;
	cursor: pointer;
	z-index: 999;
}
	
.btn_close {
	border: none;
	position: absolute;
	right: 0;
	top: 0;
}
	
.menubtn span,
.menubtn::before,
.menubtn::after {
	content: '';
	width: 36px;
	height: 2px;
	position: absolute;
	top: 34px;
	left: 50%;
	margin-left: -18px;
	background: #666;
	transition: all 0.3s ease;
}


.btn_close span,
.btn_close::before,
.btn_close::after {
	content: '';
	width: 36px;
	height: 2px;
	position: absolute;
	top: 34px;
	left: 50%;
	margin-left: -18px;
	background: #666;
	transition: all 0.3s ease;
}

.menubtn::before {
	transform: translateY(-10px);
}

.menubtn::after {
	transform: translateY(10px);
}

.btn_close span {
	opacity: 0;
}

.btn_close::before {
	transform: translateY(0) rotate(45deg);
}

.btn_close::after {
	transform: translateY(0) rotate(-45deg);
}
	

@media screen and (max-width: 767px){
	
	header {
		height: 60px;
		padding: 0 0 0 10px;
		position: fixed;
		z-index: 999;
	}

	header .logo img {
		width: 90px;
	}
	.g_navi a {
		font-size: 14px;
		padding: 15px;
		margin: 10px 0;
	}
	
	.menubtn {
		width: 60px;
		height: 60px;
	}

	.menubtn, .btn_close {
		width: 60px;
		height: 60px;
	}

	.menubtn span,
	.menubtn::before,
	.menubtn::after,
	.btn_close span,
	.btn_close::before,
	.btn_close::after {
		width: 30px;
		top: 28px;
		margin-left: -15px;
	}
	
	.menubtn::before {
		transform: translateY(-9px);
	}

	.menubtn::after {
		transform: translateY(9px);
	}
	
}

/*------イメージ-----*/

.main {
	position: relative;
	background-color: #ddd;
}
.main .bg {
	content: '';
	display: inline-block;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 100;
	opacity: 1;
}

.main .inner {
	width: 85%;
	height: 50vw;
	max-height: 550px;
	min-height: 250px;
	background: url(../img/home/mv.jpg) no-repeat left 50%;
	background-size: cover;
}
.main .txtt {
	position: absolute;
	z-index: 99;
	right: 5vw;
	top: 25%;
	color: #222;
}

.main .lead {
	font-size: 36px;
	margin-bottom: 15px;
	white-space: nowrap;
	line-height: 1.5;
}

.main .caption {
	font-size: 27px;
	font-weight: bold;
	letter-spacing: 0.5em;
	line-height: 1.5;
}

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

	main {
		padding-top: 60px;
	}
	.main .txtt {
		right: 5vw;
		top: 15%;
	}
	.main .lead {
		font-size: 4.7vw;
		margin-bottom: 2vw;
	}

	.main .caption {
		font-size: 3.5vw;
	}
	
}

/*------イントロ-----*/

.h2box {
	padding: 80px 0 60px 0;
	text-align: center;
	letter-spacing: 0.2em;
}

.h2box .en {
	font-size: 34px;
	margin-bottom: 20px;
	line-height: 1.4;
}

.h2box h2 {
	font-size: 20px;
}

.intro {
	width: 100%;
	display: flex;
	justify-content: center;
}
.intro .inner {
	padding: 80px 20px;
	display: flex;
	flex-direction: column;
	width: auto;
}

.intro .img_intro {
	max-width: 600px;
	width: 100%;
	margin-bottom: 50px;
	display: flex;
	justify-content: space-between;
}
.intro .img_intro img {
	height: 139px;
	opacity: 0;
	transform: translateY(20px);
}

.sil_1 { transition: all 1s ease 0.2s; }
.sil_2 { transition: all 1s ease 0.4s; }
.sil_3 { transition: all 1s ease 0.6s; }
.sil_4 { transition: all 1s ease 0.8s; }
.sil_5 { transition: all 1s ease 1.0s; }
.sil_6 { transition: all 1s ease 1.2s; }
.sil_7 { transition: all 1s ease 1.4s; }
.sil_8 { transition: all 1s ease 1.6s; }

.intro_wrap.show img {
	opacity: 1;
	transform: translateY(0);
}

.intro .lead {
	font-size: 30px;
	font-weight: bold;
	letter-spacing: 0.2em;
	margin-bottom: 60px;
	opacity: 0;
	transition: all 1s ease 2.2s;
	transform: translateY(20px);
}
.intro_wrap.show .lead {
	opacity: 1;
	transform: translateY(0);
}
.intro .caption {
	font-size: 18px;
	line-height: 3.2;
	letter-spacing: 0.05em;
	opacity: 0;
	transition: all 1s ease 2.5s;
	transform: translateY(20px);
	text-align: center;
}
.intro_wrap.show .caption {
	opacity: 1;
	transform: translateY(0);
}


.intro .caption span {
	font-weight: bold;
}

@media screen and (max-width: 767px){
	
	.h2box {
		padding: 50px 0 30px 0;
	}

	.h2box .en {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.h2box h2 {
		font-size: 16px;
		font-weight: 500;
	}
	
	.intro .inner {
		padding: 50px 20px;
		max-width: 500px;
	}
	
	.intro .img_intro {
		margin-bottom: 40px;
	}
	.intro .img_intro img {
		height: 100px;
	}
	
	.intro .lead {
		font-size: 16px;
		margin-bottom: 40px;
		text-align: center;
	}
	.intro .caption {
		font-size: 13px;
		line-height: 2;
		max-width: 315px;
		text-align: left;
	}
	
}

/*-----ビジネス-----*/

.business {
	background-color: #f0f0f0;
	padding: 0 20px 80px;
}

.ul_business {
	max-width: 680px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 auto;
}

.ul_business li {
	width: 26%;
	padding-top: calc( 26% - 4px );
	border: 2px solid #ff9900;
	border-radius: 50%;
	position: relative;
	margin-bottom: 50px;
}
.ul_business li:nth-child(4), .ul_business li:nth-child(5), .ul_business li:nth-child(6) {
	margin-bottom: 0;
}
.ul_business p {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	font-size: 24px;
	white-space: nowrap;
	color: #ff9900;
	text-align: center;
	line-height: 1.4;
}
.ul_business span {
	font-size: 32px;
	color: #ff9900;
	letter-spacing: 0;
	position: absolute;
	right: 3%;
	top: 0;
	background-color: #f0f0f0;
	padding: 2px;
}

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

	.ul_business {
		max-width: 400px;
		justify-content: space-around;
	}

	.ul_business li {
		width: 38%;
		padding-top: calc( 38% - 4px );
		border: 2px solid #ff9900;
		margin-bottom: 30px;
	}
	.ul_business li:nth-child(4) {
		margin-bottom: 30px;
	}
	.ul_business p {
		font-size: 22px;
	}
	.ul_business span {
		font-size: 28px;
	}
	
}

@media screen and (max-width: 439px){
	
	.ul_business p {
		font-size: 5vw;
	}
	.ul_business span {
		font-size: 6.3vw;
	}
	
}

/*------スライダー-----*/

.slideshow, .staffimg {
	background-color: #ddd;
	padding: 40px 0;
}
.slider img, .staffimg img {
	width: 100%;
	height: auto;
}

.staffimg {
	position: relative;
}
.staffbg {
	content: '';
	display: inline-block;
	width: 100%;
	height: 100%;
	background-color: #ddd;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 100;
	transition: all 0.5s ease;
}

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

	.staffimg {
		padding: 25px 0;
	}
	
	.staffimg.show .staffbg {
		width: 0;
	}

}

/*------想い-----*/

.president {
	width: 100%;
}
.president .inner {
	padding: 0 20px 80px;
	max-width: 800px;
	margin: 0 auto;
}
.president .honbun {
	font-size: 18px;
	line-height: 2.5;
	letter-spacing: 0.05em;
	margin-bottom: 1em;
}
.president .name {
	text-align: right;
	margin-bottom: 0;
}

@media screen and (max-width: 767px){
	
	.president .inner {
		padding: 0 20px 50px;
		max-width: 500px;
	}
	.president .honbun {
		font-size: 13px;
		line-height: 2;
		max-width: 315px;
		margin: 0 auto;
	}
	
}
/*------サービス-----*/

.service {
	background-color: #f0f0f0;
}

.service .inner {
	max-width: 1040px;
	padding: 0 20px 140px;
	margin: 0 auto;
}

.ul_service {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.ul_service li {
	width: 44%;
	margin-bottom: 120px;
}
.ul_service a {
	display: block;
	color: #222;
	text-decoration: none;
	position: relative;
}
.ul_service img {
	width: 100%;
	transition: all 0.3s ease;
	border: 1px solid #666;
}
.ul_service .exp {
	position: absolute;
	right: -12px;
	bottom: -60px;
	background-color: #fff;
	width: 320px;
	height: 150px;
	padding: 12px;
	transition: all 0.5s ease;
}
.ul_service a:hover .exp {
	transform: scale(1.05);
	box-shadow: 0 0 25px rgba(0,0,0,0.2);
}
.ul_service .exp > div {
	border: 3px solid #222;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.ul_service .exp h3 {
	padding: 15px;
	font-size: 17px;
	line-height: 1.3;
	font-weight: 500;
}
.ul_service .exp p {
	border-top: 3px solid #222;
	padding: 10px 15px;
	font-weight: 500;
	position: relative;
}
.ul_service .exp p::after {
	position: absolute;
	right: 12px;
	top: 50%;
	margin-top: -6px;
	content: '';
	display: inline-block;
	width: 0px;
	height: 0px;
	border-left: 10px solid #222;
	border-top: transparent 6px solid;
	border-bottom: transparent 6px solid;
}

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

	.service .inner {
		padding: 0 40px 100px;
	}

	.ul_service li {
		width: 46%;
		margin-bottom: 100px;
	}
	.ul_service .exp {
		right: -10px;
		bottom: -50px;
		width: 220px;
		height: 110px;
		padding: 10px;
	}
	.ul_service a:hover .exp {
		transform: none;
		box-shadow: none;
	}
	.ul_service .exp > div {
		border: 2px solid #222;
	}
	.ul_service .exp h3 {
		padding: 10px;
		font-size: 14px;
	}
	.ul_service .exp p {
		border-top: 2px solid #222;
		font-size: 12px;
		padding: 8px 10px;
	}
	.ul_service .exp p::after {
		right: 8px;
	}
	
}

@media screen and (max-width: 599px){
	
	.ul_service {
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
	}
	.ul_service li {
		width: 100%;
		margin-bottom: 100px;
	}
	.ul_service .exp {
		width: 70%;
	}
	
}




/*------会社概要-----*/

.company {
	background-color: #fff;
}

.company .inner {
	max-width: 940px;
	padding: 0 20px 80px;
	margin: 0 auto;
}

.company_wrap {
	border: 3px solid #222;
	padding: 40px;
	font-size: 18px;
	line-height: 1.8;
	letter-spacing: 0.1em;
}

.company_wrap li {
	margin-bottom: 1em;
	display: flex;
}
.company_wrap li span {
	font-weight: bold;
}
.company_wrap .th {
	width: 180px;
}
.company_wrap .td {
	width: calc( 100% - 180px );
}

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

	.company .inner {
		padding: 0 20px 50px;
	}
	.company_wrap {
		padding: 20px;
		font-size: 13px;
		max-width: 460px;
		margin: 0 auto;
		border: 2px solid #222;
	}
	.company_wrap li {
		display: block;
		margin-bottom: 1.5em;
	}
	.company_wrap .th {
		width: 100%;
		margin-bottom: 0.5em;
		font-weight: bold;
	}
	.company_wrap .td {
		width: 100%;
	}
}

/*------フッター-----*/

footer {
	background-color: #737477;
	color: #fff;
}

footer .inner {
	max-width: 940px;
	padding: 0 20px 50px;
	margin: 0 auto;
}

footer .img_shop {
	display: flex;
	justify-content: space-between;
	margin-bottom: 60px;
}
footer .img_shop div {
	width: 48%;
}
footer .img_shop img {
	width: 100%;
}
footer .map {
	display: block;
	width: 100%;
	/*max-width: 600px;*/
	height: 360px;
	margin: 0 auto 40px;
}
footer iframe {
	width: 100%;
	height: 100%;
}

footer .company_info {
	display: flex;
	justify-content: space-between;
	margin: 0 auto 60px;
	max-width: 600px;
}
footer .company_info img {
	width: 160px;
	margin-bottom: 20px;
}
footer .company_info p {
	font-size: 20px;
	color: #e0d9dd;
	letter-spacing: 0.2em;
	line-height: 1.8;
}
footer .company_info .right p {
	font-size: 16px;
}

footer small {
	font-size: 11px;
	letter-spacing: 0.2em;
	color: #e0d9dd;
	text-align: center;
	display: block;
}


@media screen and (max-width: 767px){
	
	footer .inner {
		max-width: 500px;
		text-align: center;
	}

	footer .img_shop {
		display: block;
		margin-bottom: 0;
	}
	footer .img_shop div {
		width: 100%;
		margin-bottom: 40px;
	}

	footer .map {
		height: 300px;
		margin: 0 auto 40px;
	}

	footer .company_info {
		display: block;
		margin: 0 auto 40px;
	}
	footer .company_info img {
		width: 60px;
		margin-bottom: 20px;
	}
	footer .company_info p {
		font-size: 16px;
		color: #fff;
		margin-bottom: 1em;
	}
	footer .company_info .right p {
		font-size: 13px;
		margin-bottom: 0;
	}

	footer small {
		font-size: 10px;
	}
	
}



/*--------------pageTop--------------*/

#pageTop{
	position: fixed;
	right: -60px;
	bottom: 20px;
	width: 40px;
	height: 40px;
	background: rgba(0, 0, 0, 0.5) url(../img/pagetop.png) no-repeat 50% 50%;
	background-size: 14px;
	z-index: 9998;
	transition: all 0.3s ease;
	text-indent: -9999px;
}

#pageTop.showIn{
	right: 0;
}

@media screen and (min-width: 768px), print{
	#pageTop{
		right: 35px;
		bottom: -60px;
		width: 60px;
		height: 60px;
		background: rgba(0, 0, 0, 0.5) url(../img/pagetop.png) no-repeat 50% 50%;
		background-size: 27px;
	}
	
	#pageTop.showIn{
		right: 35px;
		bottom: 30px;
	}
}



/*------アニメーション-----*/

.fadeIn {
	opacity: 0;
	visibility: hidden;
	transition: all 1s ease;
}
.fadeIn.show {
	opacity: 1;
	visibility: visible;
	transform: translate(0,0);
}

.fi_top {
	transform: translate(0,60px);
}

.fi_bottom {
	transform: translate(0,-60px);
}

.fi_right {
	transform: translate(60px,0);
	transition-delay: 0s;
}
.fi_left {
	transform: translate(-60px,0);
	transition-delay: 0s;
}

.delay {
	transition-delay: 0.5s;
}

/*	LOADING	*/

#loading {
	width: 100%;
	height: 100%;
	background: #fff;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9999;
}

#loading .ldgimg {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	display: none;
	text-align: center;
}
#loading .ldgimg img {
	width: 80px;
	height: auto;
	margin-bottom: 30px;
}

#loading .ldgimg .en {
	font-size: 12px;
	color: #717171;
	letter-spacing: 0.2em;
	-moz-animation: ldgtxt 1.5s infinite;
	-webkit-animation: ldgtxt 1.5s infinite;
	-o-animation: ldgtxt 1.5s infinite;
	-ms-animation: ldgtxt 1.5s infinite;
}

#loading span {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 5px;
	background-color: #ec6c00;
}

#loading span.loaded {
	width: 0;
	height: 0;
	-moz-animation: ldg 1.5s;
	-webkit-animation: ldg 1.5s;
	-o-animation: ldg 1.5s;
	-ms-animation: ldg 1.5s;
}

@media screen and (max-width: 767px){
	
	#loading .ldgimg img {
		width: 60px;
		margin-bottom: 30px;
	}
	
}

@keyframes ldg {
	0% {
		width: 0;
		height: 5px;
	}
	50% {
		width: 100%;
		height: 5px;
	}
	80% {
		width: 100%;
		height: 5px;
	}
	100% {
		width: 100%;
		height: 0;
	}
}

@keyframes ldgtxt {
	0% {
		opacity: 0;
	}
	40% {
		opacity: 100;
	}
	60% {
		opacity: 100;
	}
	100% {
		opacity: 0;
	}
}
