@charset "UTF-8";

/* ---------- mediaQuery  ---------- */


@media all and (max-width: 767px) {
.viewpc {
	display: none!important;
}
.viewtb {
	display: none;
}
.viewsp {
	display: block;
}

img {
	width: 100%;
	height: auto;
}
.inner_narrow {
	width: 90%;
	margin: 0 auto;
}


/* ===============
header
================*/
header {
	width: 100%;
	height: 80px;
	margin: 0 auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	padding: 0 10px;
	h1 {
		flex-basis: 21%;
		width: 100%;
		max-width: 40px;
		margin-right: 10px;
		margin-left: 10px;
		padding-top: 15px;
		a {
			transition: all .3s;
		}
		img {
			width: 100%;
			height: auto;
		}
	}

}

/* ===============
#g-nav
================*/
#g-nav {
  position: fixed;
  z-index: 999;
  top: -150vh;
  width: 100%;
  height: 100vh;
  background-color: var(--bgcolor01);
  transition: all 0.6s;
  color: #fff;
  padding: 60px 0 10px 0;
  overflow:auto;
  #g-nav-list {
	  position: relative;
	  z-index: 999;
	  width: 100%;
	  .topcat {
			border-bottom: 1px solid var(--bordercolor01);
			a {
				display: block;
				font-size: 1.6rem;
				font-weight: 400;
				padding: 8px 10px 8px 20px;
				transition: 0.2s all ease 0s;
				color: var(--texcolor01);
				&:hover {
					background-color: var(--accentcolor);
					color: #fff;
				}
				&:active {
					cursor: pointer;
				  background-color: var(--accentcolor);
				  color: var(--texcolor01);
				  &:hover {
						text-decoration: none;
					}
				}
			}
			.sub {
				font-size: 1.4rem;
				a {
					padding: 4px 10px 4px 50px;
					border-bottom: none;
					font-size: 1.4rem;
					font-weight: 400;
					background-size: 6px;
					&:hover {
						background-color: var(--accentcolor);
						color: #fff;
					}
				}
				&:last-child {
					margin-bottom: 10px;
				}
			}
			.sub_disable {
				padding: 4px 10px 4px 50px;
				color: var(--texcolor01);
				opacity: 0.4;
			}
		}
		.disable {
			color: var(--texcolor03);
			font-size: 1.6rem;
			font-weight: 400;
			padding: 8px 10px 8px 20px;
		}
		&:first-child {
			border-top: 1px solid var(--bordercolor01);
		}
	}
	.btn_contact {
		margin: 30px auto;
		width: 80%;
		max-width: 380px;
		font-size: 1.4rem;
		a {
			display: inline-block;
			width: 100%;
			font-size: 1.6rem;
			background: url("../images/common/icon_mail.svg") no-repeat 26px center var(--accentcolor);
			background-size: 18px;
			padding: 6px 4px 6px 20px;
			color: #fff;
			border-radius: 40px;
			text-align: center;
			transition: all .3s;
			&:hover {
				opacity: 0.7;
			}
		}
	}
}


#g-nav.panelactive {
  top: 0;
}

.openbtn1 {
  position:fixed;
  z-index: 9999;
  top:0;
  right: 0;
  cursor: pointer;
  width: 64px;
  height: 64px;
	transition: 0.2s all ease 0s;
	span {
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 14px;
		height: 1px;
		background-color: var(--texcolor02);
		width: 80%;
		&:nth-of-type(1) {
			 top:22px;
			 width: 34px!important;
		}
		&:nth-of-type(2) {
		 top: 33px;
		 left: 9px;
		 width: 44px!important;
		}
		&:nth-of-type(3) {
			 top:44px;
			 width: 34px!important;
		}
		&:active {
			cursor: pointer;
			background-color: var(--texcolor02);
		}
	}
}
.openbtn1.active {
	span {
		&:nth-of-type(1) {
			top: 27px;
			left: 21px;
			transform: translateY(6px) rotate(-45deg);
			width: 40%;
		}
		&:nth-of-type(2){
			opacity: 0;
		}
		&:nth-of-type(3){
			top: 39px;
			left: 21px;
			transform: translateY(-6px) rotate(45deg);
			width: 40%;
		}
	}
}

/* ===============
main
================*/
main {
	width: 100%;
	margin-top: 60px;
}

main img {
	width:  100%;
	height:  auto;
}



/* ===============
#topimage
================*/
#topimage {
	width: 100%;
	height: 300px;
	background: url("../images/index/topimage.png") no-repeat center 70%;
	background-size: 100%;
	padding: 50px 0 0 0;
	h1 {
		width: 90%;
		margin: 0 auto;
		font-size: 2rem;
		color: var(--texcolor02);
		letter-spacing: 0.1em;
		line-height: 2;
	}
}

/* ===============
#about_clowder
================*/
#about_clowder {
	width: 90%;
	margin: 0 auto 60px auto;
	h2 {
		font-size: 3rem;
		font-family: "Montserrat", sans-serif;
		color: var(--accentcolor);
		text-align: center;
		line-height: 1.4;
		margin-bottom: 40px;
		span {
			display: block;
			font-size: 1.2rem;
			color: var(--texcolor01);
		}
	}
	p {
		text-align: left;
		font-weight: 400;
		font-size: 1.4rem;
	}

	.about_btnarea {
		width: 100%;
		margin: 30px auto;
		display: flex;
		justify-content: center;
		flex-direction: column;
		align-items: center;
		gap: 10px;
		.about_btn {
			a {
				display: inline-block;
				padding: 6px 40px 6px 14px;
				background: url("../images/common/arrow_right_w.svg") no-repeat 95% center var(--accentcolor);
				background-size: 8px;
				color: #fff;
				font-size: 1.4rem;
				text-align: left;
				border-radius: 6px;
				transition: all .3s;
				&:hover {
					opacity: 0.7;
				}
			}
		}
	}
}

/* ===============
#products
================*/
#products {
	width: 100%;
	background-color: var(--bgcolor01);
	padding: 40px 0;
	.inner {
		width: 90%;
		margin: 0 auto;
		h2 {
			font-size: 3rem;
			font-family: "Montserrat", sans-serif;
			color: var(--accentcolor);
			text-align: center;
			line-height: 1.4;
			margin-bottom: 40px;
			span {
				display: block;
				font-size: 1.2rem;
				color: var(--texcolor01);
			}
		}
		p {
			font-weight: 400;
			font-size: 1.4rem;
		}
	}
}

/* ===============
#otherbusiness
================*/
#otherbusiness {
	width: 100%;
	padding: 60px 0 0 0;
	.inner {
		width: 90%;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
		flex-direction: column;
		.otheritem {
			flex-basis: 100%;
			width: 100%;
			display: flex;
			flex-direction: column;
			border: 1px solid var(--accentcolor);
			position: relative;
			margin-bottom: 60px;
			h2 {
				position: absolute;
				top: -28px;
				left: -4px;
				font-size: 2.6rem;
				font-family: "Montserrat", sans-serif;
				color: var(--accentcolor);
				text-align: cleft;
				line-height: 1.2;
				margin-bottom: -6px;
				span {
					font-size: 1.2rem;
					color: var(--texcolor01);
					margin-left: 10px;
				}
			}
			.otheritem_detail {
				padding: 20px 20px 20px 20px;
				position: relative;
				height: auto;
			}
			p {
				font-weight: 400;
				font-size: 1.4rem;
			}
			.detail_btn {
				width: 145px;
				margin-left: auto;
				position: relative;
				right: 0;
				bottom: 0;
				a {
					font-family: "Montserrat", sans-serif;
					display: inline-block;
					padding: 6px 40px 6px 14px;
					background: url("../images/common/arrow_right_w.svg") no-repeat 95% center var(--accentcolor);
					background-size: 8px;
					color: #fff;
					font-size: 1.4rem;
					text-align: left;
					border-radius: 6px;
					transition: all .3s;
					&:hover {
						opacity: 0.7;
					}
				}
			}
		}
	}
}

/* ===============
#contents_topimage
================*/
#contents_topimage {
	width: 100%;
	height: 200px;
	padding-top: 4px;
	h1 {
		width: 90%;
		margin: 20px auto 0 auto;
		color: var(--texcolor02);
		font-size: 2rem;
		position: relative;
		&:after {
			position: absolute;
			content: '';
			display: block;
			width: 140px;
			height: 1px;
			background-color: var(--bordercolor01);
			left: 90px;
			top: 50%;
		}
	}
	h1.business_partner {
		&:after {
			left: 150px;
			top: 50%;
		}
	}
	h1.business_ses {
		&:after {
			left: 80px;
			top: 50%;
		}
	}
	h1.service_top {
		&:after {
			left: 150px;
			top: 50%;
		}
	}
	h1.other_privacy {
		&:after {
			left: 170px;
			top: 50%;
		}
	}
	h1.other_policy {
		&:after {
			left: 265px;
			top: 50%;
			width: 50px;
		}
	}
	h1.other_security {
		&:after {
			left: 250px;
			top: 50%;
			width: 70px;
		}
	}
	h1.other_contact {
		&:after {
			left: 130px;
			top: 50%;
		}
	}
}

.company_topimage {
	background: url("../images/contents/topimage_company.png") no-repeat center 10px;
	background-size: cover;
}
.recruit_topimage {
	background: url("../images/contents/topimage_recruit.png") no-repeat center 30px;
	background-size: cover;
}
.other_topimage {
	background: url("../images/contents/topimage_other.png") no-repeat center 20px;
	background-size: cover;
}


/* ===============
#contents_main 
================*/
#contents_main {
	width: 90%;
	margin: 40px auto;

	.basic_table {
		width: 100%;
		margin: 30px auto;
		tr {
			th {
				padding: 2px 0 30px 0;
				font-size: 1.4rem;
				font-weight: 600;
				border-top: 3px solid var(--bordercolor01);
				display: flex;
				align-items: flex-start;
				font-family: "Zen Kaku Gothic New", sans-serif;
				color: var(--texcolor02);
			}
			td {
				padding: 2px 0 30px 10px;
				font-size: 1.4rem;
				font-weight: 400;
				border-top: 1px solid var(--bordercolor01);
				font-family: "Zen Kaku Gothic New", sans-serif;
			}
		}
	}
	.contact_table {
		width: 100%;
		margin: 30px auto;
		border-bottom: 1px solid var(--bordercolor01);
		tr {
			th {
				width: 100%;
				padding: 18px 0 6px 0;
				font-size: 1.6rem;
				font-weight: 500;
				border-top: 1px solid var(--bordercolor01);
				display: block;
				align-items: center;
				font-family: "Zen Kaku Gothic New", sans-serif;
				color: var(--texcolor01);
				.ness {
					font-size: 1.2rem;
					display: inline-block;
					background-color: var(--accentcolor);
					color: #fff;
					padding: 0 4px;
					margin-left: 6px;
					border-radius: 4px;
				}
			}
			td {
				display: block;
				width: 100%;
				padding: 0 0 18px 0;
				font-size: 1.6rem;
				font-weight: 400;
				border-top: none;
				font-family: "Zen Kaku Gothic New", sans-serif;

				input.contact_txt01 {
					height: 2.4em;
			    width: 100%;
			    padding: 0 16px;
			    border-radius: 4px;
			    border: none;
			    box-shadow: 0 0 0 1px var(--bordercolor01) inset;
			    appearance: none;
			    -webkit-appearance: none;
			    -moz-appearance: none;
				}
				textarea.contact_txtarea {
					height: 8em;
			    width: 100%;
			    padding: 10px 16px;
			    border-radius: 4px;
			    border: none;
			    box-shadow: 0 0 0 1px var(--bordercolor01) inset;
			    appearance: none;
			    -webkit-appearance: none;
			    -moz-appearance: none;
				}
				label {
					font-size: 1.6rem;
					font-weight: 400;
					margin-left: 6px;
				}
			}
		}
	}
}

#contents_main_wide {
	width: 100%;
	margin: 40px auto;
	.business_contents_left {
		width: 100%;
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		margin-bottom: 40px;
		.business_img {
			flex-basis: 90%;
			width: 100%;
			margin-right: auto;
			img {
				border-radius: 0 20px 20px 0;
			}
		}
		.business_txt {
			flex-basis: 90%;
			margin: 20px auto;
			.link_btn {
				margin-top: -40px;
			}
		}
	}
	.business_contents_right {
		width: 90%;
		display: flex;
		justify-content: flex-end;
		flex-direction: column-reverse;
		flex-wrap: wrap;
		margin-bottom: 30px;
		margin-left: auto;
		.business_img {
			flex-basis: 90%;
			width: 100%;
			margin-left: auto;
			img {
				border-radius: 20px 0px 0px 20px;
			}
		}
		.business_txt {
			flex-basis: 100%;
			padding-right: 10%;
			width: 100%;
			margin: 20px auto;
		}
	}
}

h2 {
	color: var(--accentcolor);
	font-size: 1.8rem;
	font-weight: 500;
	border-bottom: 2px solid var(--accentcolor);
	margin-bottom: 14px;
	line-height: 1.5;
}
h3 {
	font-size: 1.6rem;
	font-weight: 500;
	border: 1px solid var(--texcolor03);
	display: inline-block;
	padding: 2px 8px;
	margin-bottom: 10px;
}
p {
	font-size: 1.4rem;
	margin-bottom: 30px;
}

.ses_contents {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 auto 60px auto;
	.ses_image {
		flex-basis: 100%;
	}
	.ses_text {
		flex-basis: 100%;
	}
	ul.ses_merit {
		width: 98%;
		display: block;
		margin: 0 auto;
		padding-left: 10px;
		li {
			list-style-type: disc;
			line-height: 1.4;
			margin-bottom: 10px;
			font-size: 1.4rem;
		}
	}
}

.link_btn {
	a {
		font-family: "Montserrat", sans-serif;
		display: inline-block;
		padding: 6px 40px 6px 14px;
		background: url("../images/common/arrow_right_w.svg") no-repeat 95% center var(--accentcolor);
		background-size: 8px;
		color: #fff;
		font-size: 1.4rem;
		text-align: left;
		border-radius: 6px;
		transition: all .3s;
		&:hover {
			opacity: 0.7;
		}
	}
}
.bnr_partner {
	width: 90%;
	max-width: 900px;
	margin: 40px auto;
	border: 1px solid var(--accentcolor);
	padding: 20px;
	p {
		text-align: left;
		margin-bottom: 0;
	}
	.link_btn {
		width: 240px;
		margin: 20px auto 0 auto;
	}
}

.faq_contents {
	margin: 0 auto 40px auto;
	.faq_question {
		border: 1px solid var(--bordercolor01);
		padding: 4px;
		margin-bottom: 10px;
		p {
			font-size: 1.6rem;
			font-weight: 600;
			margin: 0;
			color: var(--accentcolor);
			display: flex;
			line-height: 1.6;
			span {
				background-color: var(--accentcolor);
				color: #fff;
				padding: 2px 6px;
				font-size: 1.8rem;
				display: inline-block;
				margin-right: 8px;
			}
		}
	}
	.faq_answer {
		margin-left: 20px;
	}
}


/* footer-area */


/* ===================
footer
====================== */
footer {
	width: 100%;
	background-color: var(--bgcolor01);
	padding: 40px 0 0 0;
	.inner {
		width: 90%;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		flex-wrap: wrap;
		align-items: center;
		margin: 0 auto 20px auto;
		.ftr_logo {
			flex-basis: 100%;
			width: 100%;
			max-width: 50px;
			margin: 0 auto;
		}
		.ftr_sign {
			flex-basis: auto;
			margin-bottom: 30px;
			h2 {
				font-size: 1.6rem;
				font-weight: 600;
				text-align: center;
			}
			p {
				font-weight: 400;
				font-size: 1.4rem;
				text-align: center;
			}
		}
		.ftr_nav {
			flex-basis: 100%;
			width: 100%;
			margin-left: auto;
			display: flex;
			justify-content: space-between;
			flex-wrap: wrap;
			ul {
				flex-basis: 45%;
				width: 100%;
				display: flex;
				flex-direction: column;
				margin-bottom: 30px;
				li {
					font-size: 1.4rem;
					a {
						font-weight: 400;
						text-decoration: underline;
						&:hover {
							text-decoration: none;
						}
					}
				}
			}
			.disable {
				opacity: 0.5;
			}
		}
		.ftr_link {
			border-top: 1px solid var(--bordercolor01);
			padding-top: 10px;
			margin-top: 0;
			display: block;
			width: 100%;
			ul {
				width: 100%;
				text-align: center;
				margin: 0 auto;
				display: block;
				border-left: none;
				li {
					width: 100%;
					margin: 0 auto;
					display: block;
					font-size: 1.2rem;
					border-right: none;
					padding: 0 14px;
					a {
						display: block;
						font-weight: 400;
						text-decoration: underline;
						line-height: 1.6;
						&:hover {
							text-decoration: none;
						}
					}
				}
			}
		}
	}
	.ftr_copyright {
		width: 100%;
		background-color: var(--accentcolor);
		padding: 14px 0;
		p {
			text-align: center;
			font-size: 1.2rem;
			color: #fff;
			margin: 0;
		}
	}
}


}