@charset "UTF-8";

/* ---------------------------------------------------------
	CSS Document load
--------------------------------------------------------- */

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

.wf-active #load {
	display: none;
}

/* ---------------------------------------------------------
	CSS Document Common
--------------------------------------------------------- */

html, body {
	margin: 0;
	padding: 0;
	background: #f0f0f0;
	-webkit-text-size-adjust: none;
	-ms-text-size-adjust: none;
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 18px;
	line-height: 2;
	word-break: normal;
	word-wrap: break-word;
	color: #666;
}

h1, h2, h3, h4, h5, h6, div, p, ul, ol, li, dl, dt, dd, a, span, blockquote, i, img, figure, figcaption, table {
	outline: none;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-collapse: collapse;
	list-style: none;
}

address, em, i {
	font-style: normal;
}

img {
	vertical-align: top;
	max-width: 100%;
	border: 0;
}

a {
	text-decoration: none;
	transition: .4s;
}

/* ---------------------------------------------------------
	CSS Document layout
--------------------------------------------------------- */

#wrapper {
	overflow: hidden;
}

.container {
	width: 1200px;
	margin: 0 auto;
}

.sp {
	display: none;
}

.estimate a {
	display: inline-block;
	vertical-align: top;
	width: 440px;
	height: 70px;
	padding-left: 80px;
	background: #111;
	box-shadow: 0 0 0 2px #111 inset;
	text-decoration: none;
	text-align: left;
	font-size: 18px;
	letter-spacing: 0.05em;
	line-height: 68px;
	color: #fff;
	position: relative;
}

.estimate a:hover {
	background: none;
	color: #111;
}

.estimate svg {
	stroke: #fff;
	transition: .4s;
}

.estimate svg.icon {
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	left: 30px;
}

.estimate svg.arrow {
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	right: 20px;
	stroke: #fff;
}

.estimate a:hover svg {
	stroke: #111;
}

/* ---------------------------------------------------------
	CSS Document header
--------------------------------------------------------- */

#header {
	display: flex;
	justify-content: space-between;
	width: 100%;
	height: 100px;
	padding: 0 60px;
	font-size: 0;
	line-height: 100px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9;
	transition: .4s;
}

#header:before {
	content: '';
	width: 100%;
	height: 100%;
	background: url(../images/h_bg.png) no-repeat center / 100% auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: -1;
}

#header.off:before {
	opacity: 0;
	animation: off .5s ease 0s 1 normal;
}

@keyframes off {
	0% {opacity: .9}
	100% {opacity: 0}
}

#header.on:before {
	background-image: url(../images/h_bg.png);
	opacity: .9;
	animation: on 1.5s ease 0s 1 normal;
}

@keyframes on {
	0% {opacity: 0}
	100% {opacity: .9}
}

#header h1 img {
	vertical-align: middle;
	height: 41px;
}

#header #swicth {
	width: 34px;
	height: 100px;
	position: relative;
	z-index: 11;
	cursor: pointer;
	transition: .4s;
}

#header #swicth:hover {
	opacity: 0.6;
}

#header #swicth span {
	display: inline-block;
	width: 34px;
	height: 4px;
	background: #fff;
	position: absolute;
	left: 0;
	transition: all .4s;
}

#header #swicth span:nth-of-type(1) {
	top: 31px;
}

#header #swicth span:nth-of-type(2) {
	top: 45px;
}

#header #swicth span:nth-of-type(3) {
	top: 59px;
}

#header #swicth.active span:nth-of-type(1) {
	transform: translateY(14px) rotate(-45deg);
}

#header #swicth.active span:nth-of-type(2) {
	left: 50%;
	opacity: 0;
	animation: swicth 0.8s forwards;
	animation-fill-mode: both;
}

@keyframes swicth {
	100% {
		height: 0;
	}
}

#header #swicth.active span:nth-of-type(3) {
	transform: translateY(-14px) rotate(45deg);
}

/* ---------------------------------------------------------
	CSS Document navi
--------------------------------------------------------- */

#navi {
	display: none;
	width: 100%;
	height: 100vh;
	background:  rgba(255, 255, 255, 0.6);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	transition: .4s;
}

#navi .section {
	width: 440px;
	height: 100vh;
	overflow: auto;
	-webkit-overflow-scrolling: auto;
	padding: 100px 60px 40px;
	background: #1d1d1d;
	font-size: 14px;
	line-height: 1;
	color: #fff;
	position: fixed;
	top: 0;
	right: 0;
}

#navi figure {
	margin-bottom: 80px;
}

#navi img {
	height: 41px;
}

#navi a {
	display: block;
	line-height: 56px;
	color: #fff;
}

#navi a:hover {
	text-decoration: underline;
	opacity: 0.6;
}

#navi .h_navi {
	margin-bottom: 20px;
	text-align: left;
}

#navi .h_navi li {
	border-top: solid 2px #fff;
}

#navi .h_navi li:last-of-type {
	border-bottom: solid 2px #fff;
}

#navi .h_navi a {
	padding-left: 40px;
	background: url(../images/navi.png) no-repeat 95% / auto 8px;
	line-height: 70px;
}

#navi .h_gnavi {
	margin-bottom: 60px;
	text-align: left;
}

#navi address {
	font-size: 12px;
}

/* ---------------------------------------------------------
	CSS Document visual
--------------------------------------------------------- */

#visual {
	font-size: 0;
}

#visual img {
	width: 100%;
}

/* ---------------------------------------------------------
	CSS Document collaboration
--------------------------------------------------------- */

#collaboration {
	padding: 70px 60px 80px;
	background: #111 url(../images/h_bg.png) no-repeat center / 100% auto;
	letter-spacing: 0.05em;
	color: #fff;
}

#collaboration h2 {
	margin-bottom: 40px;
	font-weight: 500;
	font-size: 30px;
	line-height: 1.3;
}

/* ---------------------------------------------------------
	CSS Document product
--------------------------------------------------------- */

#product {
	height: 470px;
}

/* ---------------------------------------------------------
	CSS Document about
--------------------------------------------------------- */

#about {
	margin-bottom: 80px;
	background: #eae5ec;
}

#about .section {
	max-width: 1000px;
	margin: 0 auto;
	padding: 50px;
	background: #fff;
}

#about h2 {
	margin-bottom: 40px;
	font-weight: 700;
	font-size: 20px;
	line-height: 1;
}

#about h2 .en {
	display: block;
	margin-bottom: 30px;
	font-size: 52px;
	color: #6d4a7b;
}

#about h2:after {
	display: block;
	content: '';
	width: 50px;
	height: 3px;
	margin: 40px auto 0;
	background: #6d4a7b;
}

#about h3 {
	margin-bottom: 10px;
	font-weight: 700;
	font-size: 20px;
	line-height: 1;
}

#about p {
	margin-bottom: 40px;
}

#about figure {
	margin-bottom: 50px;
}

#about .waku {
	max-width: 600px;
	margin: 0 auto 50px;
	padding: 40px;
	border-radius: 10px;
	border: solid 8px #e8e8e8;
}

#about .waku figure {
	margin-bottom: 30px;
}

#about .waku ul {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

#about .waku li {
	width: 246px;
	height: 45px;
	background: #009d95;
	font-weight: bold;
	font-size: 16px;
	letter-spacing: 0.05em;
	line-height: 44px;
	color: #fff;
}

#about .waku li img {
	margin-top: 3px;
	margin-right: .5em;
	width: 39px;
	height: 39px;
}

#about .waku p {
	margin-bottom: 0;
	text-align: justify;
	font-size: 14px;
}

#about .waku p.small {
	margin-top: 20px;
	font-size: 12px;
}

#about .more a {
	display: inline-block;
	vertical-align: top;
	width: 440px;
	height: 70px;
	padding-left: 30px;
	background: #fff;
	box-shadow: 0 0 0 2px #6d4a7b inset;
	text-decoration: none;
	text-align: left;
	font-size: 18px;
	line-height: 68px;
	color: #6d4a7b;
	position: relative;
}

#about .more a:hover {
	background: #6d4a7b;
	color: #fff;
}

#about .more svg {
	transform: translateY(-50%);
	position: absolute;
	stroke: #6d4a7b;
	top: 50%;
	right: 20px;
	transition: .4s;
}

#about .more a:hover svg {
	stroke: #fff;
}

/* ---------------------------------------------------------
	CSS Document reazon
--------------------------------------------------------- */

#reazon {
	margin: 70px 60px 80px;
}

#reazon h2 {
	margin-bottom: 40px;
	font-weight: 700;
	font-size: 46px;
	letter-spacing: 0.05em;
	line-height: 1;
	color: #111;
}

#reazon h2 img {
	margin-right: 5px;
	height: 46px;
}

#reazon h2 .ja {
	font-size: 36px;
}

#reazon h2:after {
	display: block;
	content: '';
	width: 50px;
	height: 3px;
	margin: 40px auto 0;
	background: #111;
}

#reazon .waku {
	display: flex;
	justify-content: space-between;
	max-width: 1000px;
	margin: 0 auto 30px;
	padding: 30px 0;
	background: #fff;
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 0.05em;
	color: #c6c40b;
}

#reazon .waku figure {
	width: 33.3%;
	padding: 40px 0 50px;
	position: relative;
}

#reazon .waku figure:not(:last-of-type):after {
	content: '';
	width: 2px;
	height: 100%;
	background: #999999;
	position: absolute;
	top: 0;
	right: 0;
}

#reazon .waku img {
	height: 40px;
}

#reazon .waku figcaption {
	margin-top: 15px;
}

#reazon .estimate {
	margin-top: 40px;
}

/* ---------------------------------------------------------
	CSS Document business
--------------------------------------------------------- */

#business {
	padding: 70px 60px 40px;
	background: #111 url(../images/h_bg.png) center / 100% auto;
	letter-spacing: 0.05em;
	color: #fff;
}

#business h2 {
	margin-bottom: 50px;
	font-weight: 700;
	font-size: 46px;
	letter-spacing: 0.05em;
	line-height: 1.3;
}

#business h2:after {
	display: block;
	content: '';
	width: 50px;
	height: 3px;
	margin: 40px auto 0;
	background: #fff;
}

#business .flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 920px;
	margin: 0 auto;
}

#business figure {
	max-width: 440px;
	width: 33%;
	margin-bottom: 4%;
	background: #fff;
	color: #111;
}

#business figcaption {
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 70px;
	line-height: 2;
	padding: 1em;
}
#business figcaption span {
	display: block;
	font-size: 80%;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 2;
}

/* ---------------------------------------------------------
	CSS Document link
--------------------------------------------------------- */

#link {
	margin-bottom: 80px;
	padding: 40px 60px;
	background: #bdbd2b;
}

#link ul {
	display: flex;
	justify-content: space-between;
	max-width: 1060px;
	margin: 0 auto;
}

#link li {
	width: 32%;
}

#link a {
	display: block;
	padding: 50px 0;
	background: none;
	box-shadow: 0 0 0 2px #fff inset;
	text-decoration: none;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.05em;
	line-height: 1.3;
	color: #fff;
	position: relative;
}

#link a:hover {
	background: #fff;
	color: #bdbd2b;
}

#link span {
	display: block;
	margin: 30px 0;
}

#link svg {
	transition: .4s;
}

#link svg.icon {
	fill: #fff;
}

#link a:hover svg.icon {
	fill: #bdbd2b;
}

#link svg.arrow {
	stroke: #fff;
}

#link a:hover svg.arrow {
	stroke: #bdbd2b;
}

/* ---------------------------------------------------------
	CSS Document faq
--------------------------------------------------------- */

#faq {
	margin: 180px 60px 100px;
}

#faq h2 {
	margin-bottom: 60px;
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 0.05em;
	line-height: 1;
}

#faq h2:after {
	display: block;
	content: '';
	width: 50px;
	height: 3px;
	margin: 50px auto 0;
	background: #111;
}

#faq h2 .en {
	display: block;
	margin-bottom: 40px;
	font-size: 52px;
	color: #111;
}

#faq .section {
	max-width: 1000px;
	margin: 0 auto;
}

#faq dl {
	margin-bottom: 20px;
}

#faq dt {
	height: 60px;
	padding-left: 40px;
	background: #375077;
	text-align: left;
	font-weight: 500;
	font-size: 18px;
	letter-spacing: 0.05em;
	line-height: 60px;
	color: #fff;
}

#faq dt i {
	display: inline-block;
	vertical-align: top;
	margin-right: 0.5em;
	font-family: 'Ropa Sans', sans-serif;
	font-weight: 400;
	font-size: 34px;
}

#faq dd {
	padding: 20px 40px 20px 80px;
	background: #fff;
	text-align: justify;
	line-height: 1.8;
}

/* ---------------------------------------------------------
	CSS Document flow
--------------------------------------------------------- */

#flow {
	margin: 180px 60px 90px;
}

#flow h2 {
	margin-bottom: 60px;
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 0.05em;
	line-height: 1;
}

#flow h2:after {
	display: block;
	content: '';
	width: 50px;
	height: 3px;
	margin: 50px auto 0;
	background: #111;
}

#flow h2 .en {
	display: block;
	margin-bottom: 40px;
	font-size: 52px;
	color: #111;
}

#flow .section {
	max-width: 1000px;
	margin: 0 auto;
	text-align: left;
	line-height: 1.7;
}

#flow dl {
	display: flex;
	align-items: center;
	height: 148px;
	margin-bottom: 20px;
	padding: 30px 40px;
	background: #fff;
}

#flow dt {
	width: 240px;
	font-weight: 700;
	line-height: 64px;
	color: #111;
	position: relative;
}

#flow dt:after {
	display: block;
	content: '';
	width: 4px;
	height: 88px;
	background: #111;
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	right: 20px;
}

#flow dt i {
	display: inline-block;
	vertical-align: top;
	width: 80px;
	font-family: 'Ropa Sans', sans-serif;
	font-weight: 400;
	font-size: 64px;
}

#flow h3 {
	margin-top: 60px;
	font-weight: 700;
	font-size: 17px;
	letter-spacing: 0.05em;
	line-height: 1.8;
	color: #111;
}

#flow p {
	font-size: 16px;
	letter-spacing: 0.05em;
	line-height: 1.8;
}
/* ---------------------------------------------------------
	CSS Document flow
--------------------------------------------------------- */

#docs {
	margin: 180px 60px 90px;
}

#docs h2 {
	margin-bottom: 60px;
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 0.05em;
	line-height: 1;
}

#docs h2:after {
	display: block;
	content: '';
	width: 50px;
	height: 3px;
	margin: 50px auto 0;
	background: #111;
}

#docs h2 .en {
	display: block;
	margin-bottom: 40px;
	font-size: 52px;
	color: #111;
}

#docs .section {
	max-width: 1000px;
	margin: 0 auto;
	text-align: left;
	line-height: 1.7;
	background: #fff;
	padding: 2em;
}


#docs h3 {
	margin-top: 20px;
	font-weight: 700;
	font-size: 17px;
	letter-spacing: 0.05em;
	line-height: 1.8;
	color: #111;
}

#docs p {
	font-size: 16px;
	letter-spacing: 0.05em;
	line-height: 1.8;
}

#docs dl {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 20px;
	padding: 30px 40px;
	background: #fff;
}

#docs dt {
	width: 240px;
	font-weight: 700;
	line-height: 64px;
	color: #111;
	position: relative;
	padding: 2em;
}
#docs dd {
	width: 600px;
	font-weight: 400;
	line-height: 2;
	color: #111;
	position: relative;
	padding: 2em;
}

#docs dt:after {
	display: block;
	content: '';
	width: 4px;
	height: 88px;
	background: #111;
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	right: 20px;
}

#docs dt i {
	display: inline-block;
	vertical-align: top;
	width: 80px;
	font-family: 'Ropa Sans', sans-serif;
	font-weight: 400;
	font-size: 64px;
}

#docs .flex {
	display: flex;
}

#docs .flex ul {
	width: 50%;
}
#docs .flex ul li {
	display: block;
	background: #333;
}
#docs .flex ul li a {
	display: block;
}
#docs .flex ul li a {
	color: #fff;
	padding-left: 40px;
	background: url(../images/navi.png) no-repeat 95% / auto 8px;
	line-height: 70px;
}

/* ---------------------------------------------------------
	CSS Document estimate
--------------------------------------------------------- */

#estimate {
	padding: 80px 0;
	background: #f0f0f0 url(../images/estimate.png) no-repeat center / auto 100%;
}

/* ---------------------------------------------------------
	CSS Document pagetop
--------------------------------------------------------- */

#pagetop {
	width: 50px;
	height: 50px;
	overflow: hidden;
	margin: -50px 40px 0 auto;
	border-radius: 100%;
	background: rgba(5, 36, 85, 0.95);
	box-shadow: 0 0 0 2px rgba(5, 36, 85, 0.95) inset;
	text-align: center;
	font-size: 26px;
	line-height: 48px;
	color: #fff;
	position: sticky;
	right: 40px;
	bottom: 40px;
	cursor: pointer;
	transition: .4s;
}

#pagetop:hover {
	background: none;
	color: #111;
}

/* ---------------------------------------------------------
	CSS Document footer
--------------------------------------------------------- */

#footer {
	padding: 90px 60px 40px;
	background: #1d1d1d;
	font-size: 14px;
	line-height: 1;
	color: #fff;
}

#footer figure {
	margin-bottom: 80px;
}

#footer img {
	height: 41px;
}

#footer ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

#footer .f_navi {
	margin-bottom: 20px;
	line-height: 44px;
}

#footer .f_navi li {
	max-width: 220px;
	width: 33.3%;
	border-left: solid 2px rgba(255, 255, 255, 0.4);
}

#footer .f_navi li:last-of-type {
	border-right: solid 2px rgba(255, 255, 255, 0.4);
}

#footer .f_gnavi {
	margin-bottom: 60px;
}

#footer .f_gnavi li {
	margin: 0 1em;
	line-height: 2;
}

#footer a {
	color: #fff;
}

#footer a:hover {
	text-decoration: underline;
	opacity: 0.6;
}

#footer address {
	font-size: 12px;
}
