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

/*---------- reset custom ----------*/
html {
  font-size: 62.5%;
}
*, *::before, *::after {
  box-sizing: border-box;
}
img {
  vertical-align: bottom;
	max-width: 100%;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}



/*---------- basic style ----------*/

body {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.6rem;
	line-height: 2.4rem;
	color: #434343;
}
#wrapper {
	overflow: hidden;
}

p {
	line-height: 2.4rem;
}
a:hover {
	opacity: 0.8;
}

.inner {
	max-width: 960px;
	margin: 0 auto;
}


/*------- header -------*/

header {
	width: 100%;
	height: 90px;
	line-height: 90px;
	position: fixed;
	top: 0;
	z-index: 9999;
	background: rgba(255,255,255,0.8);
}
h1 {
	font-size: 2.4rem;
	padding: 0 10px;
}
h1 a {
	color: #33c06c;
	text-decoration: none;
}
.info {
	display: none;
}

.mail {
  width: 80px;
	position: fixed;
	bottom: 0;
	right: 0;
}
.mail a {
  display: block;
  width: 80px;
  height: 0;
  padding-top: 60px;
  background: #f9d054 url("../images/iconMail.png") no-repeat center center;
	border-radius: 5px 0 0 0;
  overflow: hidden;
	opacity: 0.8;
}


/*----- .gnav-btn -----*/

/*   ボタンタグ設定   */
header button {
  display: block;
  background: #fff;
  border: 1px #33c06c solid;
  padding: 0 1em;
  width: 70px;
  color: #33c06c;
  letter-spacing: 0.1em;
  cursor: pointer;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 100;
  text-align: center;
  outline: none;
  opacity: 0.8;
}

/*   ハンバーガーボタン3本線   */
header button span.bar {
  display: block;
  height: 2px;
  background-color: #33c06c;
  margin: 10px 0;
  transition: 0.3s;
  transform-origin: 0 0;
}
header button .close {
  letter-spacing: 0.08em;
  display: none;
  margin: 10px 0;
}
header button .menu {
  display: block;
  margin: 10px 0;
}

/*  メニューアクティブ時  */
header button.active span.bar {
  width: 49px;
} 
header button.active .bar1 {
  transform: rotate(30deg);
}
header button.active .bar2 {
  opacity: 0;
}
header button.active .bar3 {
  transform: rotate(-30deg);
}
header button.active .menu {
  display: none;
}
header button.active .close {
  display: block;
}

/*  メニューリスト設定  */
#gnav {
  position: fixed;
  top: -420px;
  transition: 0.5s;
  z-index: 50;
}
#gnav li a {
  display: block;
  width: 100vw;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-bottom: 1px #33c06c solid;
  color: #33c06c;
  text-decoration: none;
  background: #fff;
  transition: 0.3s;
}
#gnav li a:hover {
  opacity: 0.8;
}
#gnav.active {
  top: 0;
}



/*------- #keyVisual -------*/

#keyVisual {
	margin-top: 90px;
}
.pcslider {
	display: none;
}



/*------- #service, #instagram -------*/

#service, #instagram {
  background: url("../images/bgTriangle.png") no-repeat;
  background-position: left top;
	background-size: 85%;
  padding: 40px 10px 0;
}

#service h2, #instagram h2 {
  margin-bottom: 10px;
  position: relative;
  padding-left: 10px;
}
#service h2::before, #instagram h2::before {
  content: "SERVICE";
  color: #33c06c;
  font-size: 2.4rem;
  display: block;
  margin-bottom: 10px;
}
#instagram h2::before {
  content: "INSTAGRAM";
}
#service h2::after, #instagram h2::after {
  content: "";
  display: block;
  width: 175px;
  height: 2px;
  background: #434343;
  position: absolute;
  top: 30px;
  left: 0;
}



/*------- #service -------*/

#service h2::after {
	width: 125px;
}

#service li {
  max-width: 300px;
	margin: 10px auto;
}

#service li a {
	display: block;
	width: 300px;
	height: 374px;
	font-size: 1.8rem;
	color: #fff;
	text-decoration: none;
	position: relative;
}
#service li:first-child a {
	background: url("../images/service01.jpg") no-repeat center top;
}
#service li:nth-child(2) a {
	background: url("../images/service02.jpg") no-repeat center top;
}
#service li:last-child a {
	background: url("../images/service03.jpg") no-repeat center top;
}
#service li a span {
	display: block;
	background: rgba(18, 96, 146, 0.5);
	width: 100%;
	height: 45px;
	line-height: 45px;
	text-align: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}


/*------- #origin -------*/

#origin {
	margin: 40px 0 0;
	padding: 0 20px;
	color: #a84e2b;
	background: url("../images/originBGSP.jpg") no-repeat center top;
	background-size: contain;
}

#origin h2 {
	font-size: 2.2rem;
	margin-bottom: 20px;
}
#origin p {
	margin-bottom: 20px;
	font-size: 1.4rem;
}



/*------- #instagram -------*/

#instagram {
	margin-bottom: 10px;
}
#instagram .instaArea {
	max-width: 800px;
	margin: 0 auto;
}


/*------- footer -------*/

footer {
	background: #6ec329;
	color: #fff;
	padding: 50px 20px;
	font-size: 1.4rem;
}



/*------- bxslider custom -------*/

.bx-wrapper {
	border: none;
	box-shadow: none;
	margin-bottom: 0;
}





/*-------lower pages -------*/


/*-------lower all -------*/

nav#breadcrumb {
	display: none;
}

#pageTitle {
	height: 340px;
	background: center center no-repeat;
	background-size: cover;
	padding-top: 135px;
	margin-top: 90px;
}
.lower h2 {
	text-align: center;
	max-width: 600px;
	font-size: 3rem;
	font-weight: bold;
	margin: 0 auto;
}
.lower h2 span {
	display: block;
	border-top: 2px #6ec329 solid;
	font-size: 1.8rem;
	font-weight: normal;
	margin-top: 10px;
	padding-top: 6px;
}

.lowerInner {
	max-width: 700px;
	margin: 0 auto;
	padding: 0 1rem;
}

p.leadTxt {
	margin: 50px 0 65px;
}

.lower h3 {
	background: url("../images/h3BG.png") no-repeat left top;
	height: 43px;
	line-height: 43px;
	font-size: 2.2rem;
	padding-left: 55px;
	color: #fff;
	margin-bottom: 35px;
}

section section {
	margin-bottom: 65px;
}
section section p {
	margin-bottom: 35px;
}
p.imgCenter {
	text-align: center;
}

.txt20 {
	font-size: 2.0rem;
	line-height: 3.4rem;
}



/*-------forCompany + forHome-------*/

#forCompany #pageTitle {
	background-image: url("../forCompany/images/pageTitleForCompany.jpg");
}
#forHome #pageTitle {
	background-image: url("../forHome/images/pageTitleForHome.jpg");
}

section.flow {
	margin-top: 150px;
}
section.flow h2 {
	font-size: 2.2rem;
}
section.flow h2 span {
	font-size: 1.6rem;
}
section.flow ol {
	margin: 70px 0;
}
section.flow ol li {
	display: flex;
	align-items: center;
	margin: 50px 0;
}
section.flow ol li p:first-child {
	margin-right: 30px;
}

.mailBTN {
	max-width: 600px;
	margin: 80px auto;
}
.mailBTN a {
	display: block;
	max-width: 600px;
	height: 80px;
	background: #ffa800;
	color: #fff;
	font-weight: bold;
	text-align: center;
	line-height: 80px;
	font-size: 2.2rem;
	text-decoration: none;
	border-radius: 5px;
}



/*-------faq-------*/

#faq #pageTitle {
	background-image: url("../faq/images/pageTitleFaq.jpg");
}

.faqInner {
	max-width: 850px;
	margin: 0 auto;
	padding: 0 1rem;
}

.faqBox {
	margin: 50px 0;
}
.question {
	background: #6ec329;
	color: #fff;
	min-height: 50px;
	margin-bottom: 15px;
	padding: 7px 0;
	display: flex;
	align-items: center;
}
.question p:first-child {
	font-size: 3.6rem;
	padding: 0 12px;
	margin-top: -7px;
}
.answer {
	background: #fff0b4;
	color: #434343;
	min-height: 155px;
	display: flex;
	align-items: center;
	padding: 7px 0;
}
.answer p:first-child {
	width: 150px;
	padding: 10px;
}
.answer p:last-child {
	max-width: 700px;
}



/*-------company-------*/

#company #pageTitle {
	background-image: url("../company/images/pageTitleCompany.jpg");
}
#company .company .inner {
	max-width: 950px;
}
#company h3 {
	background: none;
	height: auto;
	line-height: 150%;
	font-size: 2.4rem;
	padding-left: 0;
	color: #434343;
	margin: 100px 0 50px;
	text-align: center;
}
#company .lowerInner {
	margin: 100px auto;
}
#company dt {
	font-size: 2.4rem;
	margin-bottom: 20px;
}
#company dd {
	margin-bottom: 50px;
}
#company dd li {
	line-height: 1.2;
	margin-bottom: 1rem;
}
#company .googleMap {
	width: auto;
	max-width: 950px;
	margin: 100px auto;
}
#company .googleMap {
height: 0;
overflow: hidden;
padding-bottom: 400px;
position: relative;
}
#company .googleMap iframe {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
}



/*-------co¥ntact-------*/

#contact #pageTitle {
	background-image: url("../contact/images/pageTitleContact.jpg");
}
#contact .contact .inner {
	max-width: 780px;
}
#contact h3 {
	background: none;
	height: auto;
	line-height: 150%;
	font-size: 2.4rem;
	padding-left: 0;
	color: #434343;
	margin: 100px 0 50px;
	text-align: center;
}
#contact .contactBox {
	background: #daf3d7;
	padding: 40px;
	margin-bottom: 100px;
}
#contact .contactBox p {
	max-width: 530px;
	margin: 0 auto 35px;
}
#contact .contactBox {
	margin-bottom: 40px;
}
#contact .contactBox p:nth-child(2) {
	text-align: center;
	margin-bottom: 0;
}
#contact form .contactBox p {
	max-width: 100%;
	margin-bottom: 60px;
}
#contact .contactBox dt {
	margin-bottom: 15px;
}
#contact .contactBox dd {
	margin-bottom: 40px;
}
#contact .contactBox dd:last-of-type {
	margin-bottom: 0;
}
#contact .contactBox input, #contact .contactBox textarea {
	width: 100%;
	height: 45px;
	border-radius: 10px;
	border: 1px #ccc solid;
}
#contact .contactBox textarea {
	height: 200px;
}
#contact input[type="submit"] {
	background: #31ae36;
	display: block;
	width: 200px;
	color: #fff;
	height: 40px;
	border: none;
	border-radius: 10px;
	font-size: 1.8rem;
	margin: 0 auto;
	cursor: pointer;
}
#contact input[type="submit"]:hover {
	opacity: 0.8;
}
#contact form {
	margin-bottom: 100px;
}



/*---------------------------------------- 一部モバイル向け調整 ----------------------------------------*/
@media screen and (max-width:500px) {
	.answer p:first-child {
		flex-shrink: 1;
	}
	.answer p:last-child {
		flex-shrink: 3;
	}
}
@media screen and (max-width:320px) {
	.answer p:first-child {
		flex-shrink: 1;
	}
	.answer p:last-child {
		flex-shrink: 2;
	}
	
	#company h3 {
		font-size: 2.0rem;
	}
}
