@charset "utf-8";

/***************************************************
	common.css
	共通レイアウトスタイル定義
***************************************************/

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

/* Base
------------------------------------------------------------ */
html {
	font-size: 62.5%;
	overflow-y: scroll;
}
body {
	line-height: 1.88;
	color: #333333;
	margin: 0;
	background: #ffffff;
	font-family: 'Noto Sans JP', '游ゴシック', YuGothic, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
	word-wrap: break-word;
}
@media only screen and (max-width: 999px) {
	body {
	}
}

img {
	vertical-align: top;
	max-width: 100%;
	height: auto;
}

@media only screen and (min-width: 1000px) {
	.view_sp{
		display: none;
	}
}
@media only screen and (max-width: 999px) {
	.view_pc{
		display: none;
	}
}


.innerBox {
	clear: both;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 25px;
}

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

/* Link
------------------------------------------------------------ */
a { outline: none; }
a:link {
	color: #333333;
	text-decoration: underline;
}
a:visited {
	color: #333333;
	text-decoration: underline;
}
a:hover {
	color: #39b67c;
	text-decoration: none;
}

a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
}

/* wrapper
-------------------------------------------------------------------*/
#wrapper {
	clear: both;
}

/* header
-------------------------------------------------------------------*/
#header {
	margin: 0;
	height: 90px;
	background: #ffffff;
	position: fixed;
	z-index: 200;
	width: 100%;
	top: 0;
}
@media only screen and (max-width: 999px) {
	#header {
		height: 50px;
	}
}
#header .headerInner {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin: 0;
}
@media only screen and (max-width: 999px) {
	#header .headerInner {
		min-width: inherit;
	}
}
#header .logo {
	width: 180px;
	margin: 0 0 0 85px;
	position: relative;
	z-index: 1;
}
@media only screen and (max-width: 999px) {
	#header .logo {
		width: 90px;
		margin-left: 15px;
	}
}
#header #menuBox {
	margin: 0 80px 0 auto;
}
@media only screen and (max-width: 999px) {
	#header #menuBox {
		visibility: hidden;
		opacity: 0;
		height: 0;
		margin: 0;
		padding: 30px 0 0 0;
		position: absolute;
		width: 100%;
		top: 50px;
		left: 0;
		background: #ffffff;
		box-sizing: border-box;
		transition: 0.2s;
	}
	body.open #header #menuBox {
		visibility: visible;
		opacity: 1;
		height: calc(100vh - 50px);
		position: fixed;
		overflow-y: scroll;
	}
}
#header .gnavi {
	margin: 30px 0 0 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	font-size: 1.4rem;
	font-weight: bold;
}
@media only screen and (max-width: 999px) {
	#header .gnavi {
		margin: 0;
		flex-direction: column;
		font-size: 1.5rem;
		transition: all 0.5s ease-in-out;
	}
}
#header .gnavi > li {
	position: relative;
	margin: 0;
	padding: 0;
}
@media only screen and (max-width: 999px) {
	#header .gnavi > li {
		padding: 1em 15px 1em 40px;
	}
}
@media only screen and (max-width: 999px) {
	#header .gnavi > li.--list::before,
	#header .gnavi > li.--list::after {
		display: block;
		content: "";
		position: absolute;
		top: 30px;
		right: 30px;
		width: 18px;
		height: 2px;
		margin: auto;
		background: #7dcfa9;
	}
	#header .gnavi > li.--list::after{
		transform: rotate(90deg);
	}
	#header .gnavi > li.--list.js-open::after{
		transform: rotate(0deg);
	}
}
#header .gnavi > li:hover {
	color: #39b67c;
	cursor: pointer;
}
#header .gnavi > li + li {
	margin-left: 1.8em;
}
@media only screen and (max-width: 999px) {
	#header .gnavi > li {
		border-bottom: 1px solid #BFBFBF;
	}
	#header .gnavi > li + li {
		margin-left: 0;
	}
}
#header .gnavi > li > ul {
	display: none;
	position: absolute;
	padding: 10px 15px;
	width: 180px;
	list-style: none;
	background-color: rgba(227, 255, 243, 0.8);
	font-weight: initial;
	border-radius: 8px;
}
@media only screen and (max-width: 999px) {
	#header .gnavi > li > ul {
		position: relative;
		padding: 0 0 0 10px;
		width: auto;
		background-color: initial;
		border-radius: 0;
	}
}
#header .gnavi > li.js-open > ul {
	display: block;
}
#header .gnavi > li > ul > li {
	padding: 5px;
}
@media only screen and (max-width: 999px) {
	#header .gnavi > li > ul > li {
		padding: 10px 0 10px 10px;
		border-bottom: 1px solid #BFBFBF;
	}
	#header .gnavi > li > ul > li:last-child {
		padding: 10px 0 0 10px;
		border-bottom: none;
	}
}
#header .gnavi > li a {
	text-decoration: none;
}
#header .gnavi > li a:hover {
	text-decoration: underline;
}
body.news #header .gnavi > li.news a ,
body.vision #header .gnavi > li.vision a ,
body.products #header .gnavi > li.products a ,
body.case #header .gnavi > li.case a ,
body.company #header .gnavi > li.company a ,
body.inquiry #header .gnavi > li.inquiry a,
body.casestudies #header .gnavi > li.casestudies a {
	color: #39b67c;
	text-decoration: underline;
}
@media only screen and (max-width: 999px) {
	#header .gnavi > li a {
		display: block;
		/* padding: 1em 15px 1em 60px; */
	}
}
#header #btnMenu ,
#overlay {
	display: none;	
}
@media only screen and (max-width: 999px) {
	#header #btnMenu {
		display: block;
		overflow: hidden;
		position: relative;
		z-index: 0;
		width: 25px;
		height: 25px;
		cursor: pointer;
		margin: 10px 10px 0 auto;
	}
	#header #btnMenu span,
	#header #btnMenu::before,
	#header #btnMenu::after {
		display: block;
		position: absolute;
		top: 0;
		bottom: 0;
		left:0;
		right: 0;
		width: 25px;
		height: 2px;
		margin: auto;
		background: #7dcfa9;
	}
	#header #btnMenu span {
		overflow: hidden;
		z-index: 1;
		color: #7dcfa9;
	}
	#header #btnMenu::before {
		z-index: 2;
		transform: translate(0, -8px);
		content: "";
	}
	#header #btnMenu::after {
		z-index: 2;
		transform: translate(0, 8px);
		content: "";
	}
	#header #btnMenu span {
		opacity: 1;
		transition: opacity 150ms 50ms;
	}
	#header #btnMenu::before,
	#header #btnMenu::after {
		transition: transform 200ms;
	}

	body.open #header #btnMenu span {
		opacity: 0;
		transition: opacity 150ms;
	}
	body.open #header #btnMenu::before {
		transform: rotate(45deg);
	}
	body.open #header #btnMenu::after {
		transform: rotate(-45deg);
	}
	body #overlay  {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		z-index: 100;
		background: rgba(0, 0, 0, .3);
		visibility: hidden;
		opacity: 0;
		transition: 0.5s;
	}
	body.open #overlay  {
		visibility: visible;
		opacity: 1;
	}
}


/* main
-------------------------------------------------------------------*/
#main {
	display: block;
	clear: both;
	font-size: 1.8rem;
	padding: 90px 0 120px 0;
}
@media only screen and (max-width: 999px) {
	#main {
		font-size: 1.3rem;
		padding-top: 50px;
		padding-bottom: 60px;
	}
}

/* breadcrumbs */
.breadcrumbs {
	
}
.breadcrumbs .innerBox{
	
}
.breadcrumbs ul {
	margin: 0;
	padding: 1em 0;
	list-style-type: none;
	font-size: 1.4rem;
	display: flex;
	flex-wrap: wrap;

}
.breadcrumbs ul li {
	margin: 0;
	padding: 0;
}
.breadcrumbs ul li {
	margin: 0 0.5em 0 0;
}
.breadcrumbs ul li::after {
	content: ">";
	margin: 0 0 0 0.5em;
}
.breadcrumbs ul li:last-child::after{
	content: '';
}
@media only screen and (max-width: 999px) {
	.breadcrumbs ul {
		display: flex;
		flex-wrap: wrap;
		font-size: 0.9rem;
	}
	.breadcrumbs ul li{
		display: inline-block;
	}
}

/* ttl */
.pageHeadBox {
	color: #7dcfa9;
	text-align: center;
	line-height: 1;
	padding: 30px 0 20px 0;
	border-bottom: 2px solid #7dcfa9;
}
.pageHeadBox .jp {
	margin: 0;
	font-size: 2rem;
	font-weight: bold;
}
.pageHeadBox .eng {
	margin: 0.5em 0 0 0;
	font-size: 1.5rem;
	font-weight: bold;
	letter-spacing: 0.1em;
}
@media only screen and (max-width: 999px) {
	.pageHeadBox {
		padding-bottom: 10px;
		border-bottom: 1px solid #7dcfa9;
	}
	.pageHeadBox .jp {
		font-size: 1.5rem;
	}
	.pageHeadBox .eng {
		font-size: 1.2rem;
	}
}
.commonTtl01 {
	text-align: center;
	font-size: 1.8rem;
	font-weight: bold;
	margin: 3em 0 1em;
}
@media only screen and (max-width: 999px) {
	.commonTtl01 {
		font-size: 1.4rem;
	}
}


/* footer
-------------------------------------------------------------------*/
#footer {
	clear: both;
}
#footerContactBox {
	padding: 20px 0;
	background: url("../img/common/footer_contact_bg01.png") center 0 repeat-y;
	background-size: 100% auto;
}
@media only screen and (max-width: 999px) {
	#footerContactBox {
		padding: 25px 0;
	}
}
#footerContactBox .inBox01 {
	padding: 15px;
	background: #ffffff;
	border-radius: 10px;
	display: flex;
	align-items: center;
}
@media only screen and (max-width: 999px) {
	#footerContactBox .inBox01 {
		padding: 0 25px;
		flex-direction: column;
	}
}
#footerContactBox .inBox01 .clm01 {
	width: 50%;
	text-align: center;
	padding: 15px 55px;
	border-right: 1px solid #adadad;
	box-sizing: border-box;
}
#footerContactBox .inBox01 .clm02 {
	width: 50%;
	padding: 15px 55px;
	box-sizing: border-box;
}
@media only screen and (max-width: 999px) {
	#footerContactBox .inBox01 .clm01 {
		width: 100%;
		padding: 25px 0;
		border-right: none;
		border-bottom: 1px solid #adadad;
	}
	#footerContactBox .inBox01 .clm02 {
		width: 100%;
		padding: 25px 0;
	}
}
#footerContactBox .inBox01 .clm01 h4 {
	font-size: 1.7rem;
	font-weight: bold;
	margin: 0;
}
#footerContactBox .inBox01 .clm01 p {
	font-size: 1.5rem;
	line-height: 1.4;
	margin: 0.5em 0 0 0;
}
@media only screen and (max-width: 999px) {
	#footerContactBox .inBox01 .clm01 h4 {
		font-size: 1.5rem;
	}
	#footerContactBox .inBox01 .clm01 p {
		font-size: 1.3rem;
	}
}
#footerContactBox .inBox01 .clm02 .btn {
	margin: 0;
}
#footerContactBox .inBox01 .clm02 .btn a {
	display: block;
	color: #ffffff;
	text-decoration: none;
	text-align: center;
	font-size: 1.8rem;
	font-weight: bold;
	padding: 0.8em;
	border-radius: 10px;
	background: #7DCFA9;
	box-shadow: 0px 4px 0px 0px #39B67C;
}
#footerContactBox .inBox01 .clm02 .btn a:hover {
	opacity: 0.7;
}
@media only screen and (max-width: 999px) {
	#footerContactBox .inBox01 .clm02 .btn a {
		font-size: 1.3rem;
	}
}
#footer .footerNaviList {
	margin: 30px 0 10px 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
}
@media only screen and (max-width: 999px) {
	#footer .footerNaviList {
		gap: 30px 0;
	}
}
@media only screen and (max-width: 480px) {
	#footer .footerNaviList {
		gap: 10px 20px;
	}
}
#footer .footerNaviList > li {
	margin: 0 0.8em;
	padding: 0;
	width: 22%;
	font-size: 1.4rem;
}
@media only screen and (max-width: 999px) {
	#footer .footerNaviList > li {
		margin: 0;
		width: 50%;
		font-size: 1.4rem;
	}
}
@media only screen and (max-width: 480px) {
	#footer .footerNaviList > li {
		margin: 0 0 15px 0;
		/* width: 100%; */
		width: 45%;
		font-size: 1.2rem;
	}
}
#footer .footerNaviList > li > a {
	text-decoration: none;
}
#footer .footerNaviList > li > a:hover {
	text-decoration: underline;
}
#footer .footerNaviList > li > ul {
	padding: 0 0 0 20px;
}
@media only screen and (max-width: 480px) {
	#footer .footerNaviList > li > ul {
		padding: 0;
	}	
}
#footer .footerNaviList > li > ul > li {
	list-style: none;
}
#footer .copy_company{
	display: flex;
	align-items: center;
	padding: 1em 0 0 0;
}
#footer .copy_company .chs{
	display: flex;
	align-items: center;
	margin-right: 2em;
}
#footer .copy_company .chs h1.logo{
	width: 186px;
}
#footer .copy_company .chs .company_name{
	margin-left: 3em;
}
#footer .companyName {
	margin: 0 0 0 0;
	font-size: 1.5rem;
	font-weight: bold;
}
#footer .address {
	margin: 0;
	font-size: 1.2rem;
}
#footer .copy_company .daidan{
	margin: 0 0 0 auto;
}
#footer .copy_company .daidan a {
	border: 2px solid #7DCFA9;
	border-bottom: 4px solid #7DCFA9;
	display: inline-block;
	border-radius: 5px;
	padding: 1.2em 1em;
}
#footer .copy_company .daidan a img{
	width: 84px;
	flex-shrink: 0;
}
@media only screen and (max-width: 999px) {
	#footer .companyName {
		font-size: 1.1rem;
	}
	#footer .address {
		font-size: 0.9rem;
	}
	
	#footer .copy_company .daidan a {
		padding: 1.2em 1em .5em;
		flex-shrink: 0;
	}
		#footer .copy_company .chs .company_name{
		margin-left: 1em;
	}
	#footer .copy_company .daidan a img {
		width: 142px;
	}
}
#footer .crBox {
	margin: 30px 0 0 0;
	padding: 15px 0;
	border-top: 1px solid #7dcfa9;	
}
#footer .crBox p {
	margin: 0;
	font-size: 1.1rem;
	text-align: center;
}
@media only screen and (max-width: 999px) {
	#footer .crBox p {
		font-size: 0.9rem;
	}
}
#btnPagetop {
	position: fixed;
	right: 25px;
	bottom: 25px;
	width: 60px;
	z-index: 10;
}
@media only screen and (max-width: 999px) {
	#btnPagetop {
		right: 10px;
		bottom: 10px;
		width: 40px;
	}
}
/*スライダー */

.slider{
	height: 470px;
	width: 100%;
	position: relative;
}
/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: 15px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    font-size: 12px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '●';
    text-align: center;

    opacity: 1;
    color: #fff;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: 1;
    color: #7DCFA9;
}

@media only screen and (max-width: 999px) {
	.slider .slick-dots{
		position: absolute;
		bottom: 0px !important;
	}
}

/*.slide-arrow{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.prev-arrow{
	left: 2%;
	z-index: 2;
}
.next-arrow{
	right: 2%;
}*/


/* 調整用
---------------------------------------------------------------------------- */
.mt0 { margin-top: 0!important; }
.mt5 { margin-top: 5px!important; }
.mt10 { margin-top: 10px!important; }
.mt15 { margin-top: 15px!important; }
.mt20 { margin-top: 20px!important; }
.mt30 { margin-top: 30px!important; }
.mt35 { margin-top: 35px!important; }
.mt40 { margin-top: 40px!important; }
.mt50 { margin-top: 50px!important; }
.mt100 { margin-top: 100px!important; }
.mr0 { margin-right: 0!important; }
.mr5 { margin-right: 5px!important; }
.mr10 { margin-right: 10px!important; }
.mr15 { margin-right: 15px!important; }
.mr20 { margin-right: 20px!important; }
.mr25 { margin-right: 25px!important; }
.mb0 { margin-bottom: 0!important; }
.mb5 { margin-bottom: 5px!important; }
.mb10 { margin-bottom: 10px!important; }
.mb12 { margin-bottom: 12px!important; }
.mb15 { margin-bottom: 15px!important; }
.mb20 { margin-bottom: 20px!important; }
.mb25 { margin-bottom: 25px!important; }
.mb30 { margin-bottom: 30px!important; }
.mb35 { margin-bottom: 35px!important; }
.mb40 { margin-bottom: 40px!important; }
.mb50 { margin-bottom: 50px!important; }
.mb60 { margin-bottom: 60px!important; }
.mb80 { margin-bottom: 80px!important; }
.ml0 { margin-left: 0!important; }
.ml5 { margin-left: 5px!important; }
.ml10 { margin-left: 10px!important; }
.ml15 { margin-left: 15px!important; }
.ml20 { margin-left: 20px!important; }
.ml25 { margin-left: 25px!important; }
.ml30 { margin-left: 30px!important; }


.clearB	{ clear: both!important;}
.floatR { float: right!important; }
.floatL { float: left!important; }

.taCenter { text-align: center!important; }
.taRight { text-align: right!important; }
.taLeft { text-align: left!important; }
.vaMiddle { vertical-align: middle!important; }
.fwBold { font-weight: bold!important; }

.fs11 { font-size: 11px!important; }
.fs12 { font-size: 12px!important; }
.fs14 { font-size: 14px!important; }
.fs16 { font-size: 16px!important; }
.fs20 { font-size: 20px!important; }

.w100per { width: 100%;}

.minIndent {
	padding-left: 1em;
	text-indent: -1em;
}
.notFloat {
	overflow: hidden;
	_zoom: 1;
}

/* clearfix */
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}
.clearfix {zoom:1;}
