@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;
}

:root {
	--gray: #a3a3a3;
	--silver: #d8d8d8;
	--black: rgba(43, 43, 43, 1); /* #2b2b2b */
	--orange: #e15d0b;
}

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

html, body {
	min-width: 1300px;
	margin: 0;
	padding: 0;
	background: #fff;
	-webkit-text-size-adjust: none;
	-ms-text-size-adjust: none;
	text-align: center;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	font-family: "Inter", "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.07em;
	line-height: 1.9;
	color: var(--black);
}

* {
	outline: none;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-collapse: collapse;
	font-style: normal;
	list-style: none;
}

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

a {
	color: #0B6BE1;
	transition: .4s;
}

a:hover {
	text-decoration: underline;
}

a.tel {
	text-decoration: none;
	color: var(--black);
}

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

#wrapper {
	overflow: hidden;
	padding-top: 100px;
}

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

.target {
	margin-top: -140px;
	padding-top: 140px;
}

.sp {
	display: none;
}

.find {
	cursor: pointer;
	transition: .4s;
}

.h3 {
	margin-bottom: 40px;
	font-weight: 600;
	font-size: 32px;
	line-height: 34px;
	color: #1A1A1A;
}

.h3:before {
	display: inline-block;
	vertical-align: top;
	content: '';
	width: 34px;
	height: 34px;
	margin-right: 15px;
	background: url(../images/h_logo.svg) no-repeat left / 100% auto;
}

.h4 {
	margin-bottom: 60px;
	font-weight: 600;
	font-size: 36px;
	line-height: 1;
	color: #1A1A1A;
	opacity: 0;
	translate: 0 15%;
}

.isActive .h4 {
	opacity: 1;
	translate: 0;
	transition-duration: 0.4s;
	transition-delay: 0.5s;
	transition-timing-function: opacity var(--ease-out-cubic), translate var(--ease-out-quint);
}

.h4:after {
	display: block;
	content: '';
	width: 0;
	height: 3px;
	margin: 30px auto 0;
	background: var(--orange);
	transition-duration: 0.3s;
	transition-delay: 0.8s;
	transition-timing-function: ease-out;
}

.isActive .h4:after {
	width: 80px;
}

.pdf {
	font-size: 15px;
	letter-spacing: 0.03em;
	line-height: 22px;
}

.pdf img {
	height: 20px;
	margin-right: 0.6em;
}

.pdf a {
	display: inline-block;
	vertical-align: top;
	text-decoration: none;
	position: relative;
}

.pdf a:hover {
	text-decoration: underline;
	opacity: 0.6;
}

.more a {
	display: inline-block;
	vertical-align: top;
	height: 25px;
	overflow: hidden;
	padding-right: 6px;
	text-align: left;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	line-height: 14px;
	color: var(--black);
	position: relative;
	transform: perspective(1px) translateZ(0);
}

.more a:before {
	content: '';
	width: calc(100% - 6px);
	height: 2px;
	background: var(--black);
	position: absolute;
	left: 0;
	bottom: 0;
	transform: translateY(1px);
	transition-property: transform;
	transition-duration: 0.4s;
	transition-timing-function: ease-out;
}

.more a:hover:before {
	transform: translateY(0);
}

.more a:after {
	display: inline-block;
	vertical-align: top;
	content: '';
	width: 12px;
	height: 12px;
	margin-left: 8px;
	background: url(../images/arrow.svg) no-repeat left / 100% auto;
	transform: translateZ(0);
}

.more a:hover:after {
	animation-name: hvr-icon-wobble-horizontal;
	animation-duration: 0.4s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1;
}

@keyframes hvr-icon-wobble-horizontal {
	50% {
		transform: translateX(5px);
	}
	100% {
		transform: translateX(0);
	}
}

.lazyloaded {
	opacity: 0;
	animation: lazyload .9s 0s forwards ease;
}

@keyframes lazyload {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

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

#header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-width: 1300px;
	width: 100%;
	height: 100px;
	padding: 0 50px;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
}

#header .h_logo {
	display: flex;
}

#header .h_logo .find {
	display: flex;
	align-items: center;
	margin-right: 25px;
	margin-left: 15px;
	text-align: left;
}

#header .h_logo .logo img {
	height: 36px;
}

#header .h_logo h1 {
	margin-left: 15px;
	font-weight: 500;
	font-size: 11px;
	line-height: 1;
}

#header .h_logo h1 a {
	text-decoration: none;
	color: var(--black);
}

#header .h_logo h1 .en {
	display: block;
	margin-bottom: 8px;
}

#header .h_logo h1 .ja img {
	height: 26px;
}

#header .mark {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 174px;
	height: 42px;
	border: solid 1px var(--silver);
	font-weight: 600;
	font-size: 12px;
	line-height: 38px;
	letter-spacing: 0;
}

#header .mark img {
	width: 30px;
	height: 26px;
	margin-right: 5px;
}

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

#navi ul {
	display: flex;
	justify-content: flex-end;
}

#navi li {
	margin: 0 1em;
	font-weight: 600;
	font-size: 16px;
	line-height: 50px;
}

#navi .parent {
	display: block;
	overflow: hidden;
	text-decoration: none;
	color: var(--black);
	position: relative;
	cursor: pointer;
	transition: .4s;
}

#navi .parent:before {
	content: '';
	height: 2px;
	background: var(--black);
	position: absolute;
	left: 51%;
	right: 51%;
	bottom: 0;
	transition-property: left, right;
	transition-duration: 0.2s;
	transition-timing-function: ease-out;
}

#navi .parent:hover:before,
#navi .parent.active:before,
#navi .parent.this:before {
	left: 0;
	right: 0;
}

#navi span.parent {
	padding-right: 16px;
}

#navi span.parent:after {
	content: '';
	width: 6px;
	height: 6px;
	margin-top: -3px;
	border-bottom: solid 1px var(--gray);
	border-right: solid 1px var(--gray);
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 2px;
}

/* ---------------------------------------------------------
	CSS Document navi > drawer
--------------------------------------------------------- */

#navi .drawer {
	display: none;
	width: 100vw;
	height: calc(100vh - 100px);
	background: rgba(0, 0, 0, 0.6);
	position: fixed;
	top: 100px;
	left: 0;
	z-index: 98;
}

#navi .drawer .menu {
	display: flex;
	justify-content: center;
	padding: 30px 0 60px;
	background: #fff;
	font-size: 15px;
}

#navi .drawer .name {
	margin-right: 60px;
	padding-right: 120px;
	border-right: solid 1px var(--silver);
	text-align: left;
	font-weight: 600;
	font-size: 28px;
	line-height: 1;
}

#navi .drawer .thumb {
	display: flex;
	flex-wrap: wrap;
	width: 440px;
	text-align: left;
	line-height: 1.3;
}

#navi .drawer .thumb .li {
	width: 210px;
}

#navi .drawer .thumb .li:nth-of-type(-n+2) {
	margin-bottom: 30px;
}

#navi .drawer .thumb img {
	width: 169px;
	height: 108px;
	margin-bottom: 5px;
}

#navi .drawer .thumb a:hover {
	opacity: 0.6;
}

#navi .drawer .ul .li {
	margin-bottom: 20px;
	text-align: left;
	line-height: 1;
}

#navi .drawer .ul .li a:before {
	display: inline-block;
	vertical-align: 0.3em;
	content: '';
	width: 8px;
	height: 1px;
	margin-right: 10px;
	background: var(--silver);
}

#navi .drawer a {
	display: block;
	text-decoration: none;
	font-weight: 500;
	color: var(--black);
}

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

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

#visual {
	overflow: hidden;
	background: linear-gradient(135deg, #e6e6e6 20%, #f0f0f0 20%);
}

#visual .container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 430px;
	position: relative;
	z-index: 0;
}

#visual figure {
	width: 1320px;
	height: 430px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

#visual .main_01 {
	width: 643px;
	height: 0;
	overflow: hidden;
	text-align: left;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	transition-duration: 0.4s;
	transition-delay: 0.8s;
	transition-timing-function: ease-out;
}

#visual .main_01 img {
	height: 430px;
	position: absolute;
	bottom: 0;
	left: 0;
}

.loaded #visual .main_01 {
	height: 430px;
}

#visual .h2 {
	text-align: left;
	font-weight: 500;
	font-size: 50px;
	line-height: 1.6;
	color: #fff;
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	left: 40%;
	z-index: 2;
	opacity: 0;
	transition-duration: 0.4s;
	transition-delay: 1.2s;
	transition-timing-function: ease-out;
}

.loaded #visual .h2 {
	left: 190px;
	opacity: 1;
}

#visual .h2 .en {
	display: block;
	font-family: "Inter", sans-serif;
	font-weight: 600;
	font-size: 20px;
	color: var(--orange);
}

/* ---------------------------------------------------------
	CSS Document bread
--------------------------------------------------------- */

#bread {
	margin-bottom: 60px;
}

#bread ol {
	display: flex;
	text-align: left;
	font-size: 12px;
	line-height: 60px;
	color: var(--gray);
	position: relative;
	z-index: 9;
}

#bread li:not(:last-of-type):after {
	display: inline-block;
	vertical-align: 0.01em;
	content: '';
	width: 0;
	height: 0;
	margin-left: 0.5em;
	margin-right: 2px;
	border: solid 4px transparent;
	border-left: solid 6px var(--gray);
}

#bread li a {
	display: inline-block;
	vertical-align: top;
	text-decoration: none;
	color: var(--gray);
}

#bread li a:hover {
	text-decoration: underline;
}

/* ---------------------------------------------------------
	CSS Document f_contact
--------------------------------------------------------- */

#f_contact {
	padding: 50px 0 50px;
	background: #f0f0f0;
	background: linear-gradient(to right, #f0f0f0 0%, #f6f6f6 100%);
}

#f_contact .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 40px 80px;
	border-radius: 10px;
	background: #fff;
}

#f_contact .logo {
	width: 600px;
	text-align: left;
	line-height: 1.7;
}

#f_contact h2 {
	display: flex;
	align-items: flex-end;
	height: 90px;
	margin-bottom: 20px;
	font-family: "Inter", sans-serif;
	font-weight: 600;
	font-size: 44px;
	line-height: 1;
	position: relative;
	z-index: 0;
}

#f_contact h2 img {
	height: 86px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

#f_contact .row {
	width: 400px;
}

#f_contact .link {
	height: 90px;
	margin: 10px 0;
	border-radius: 10px;
	text-align: left;
	line-height: 1;
}

#f_contact .link:nth-of-type(1) {
	background: linear-gradient(135deg, #f0f0f0 0%, #f9f9f9 20%, #f0f0f0 50%);
}

#f_contact .link:nth-of-type(2) {
	background: linear-gradient(135deg, #f0f0f0 50%, #f9f9f9 80%, #f0f0f0 100%);
}

#f_contact .link a {
	display: flex;
	align-items: center;
	height: 90px;
	padding-left: 30px;
	text-decoration: none;
	color: var(--black);
}

#f_contact .link:nth-of-type(2) a:hover {
	opacity: 0.6;
}

#f_contact .link img {
	width: 50px;
	height: 50px;
	margin-right: 15px;
}

#f_contact .num {
	display: block;
	margin-bottom: 10px;
	font-weight: 600;
	font-size: 28px;
}

#f_contact .time {
	display: block;
	font-size: 14px;
}

#f_contact .form {
	display: block;
	font-weight: 600;
	font-size: 20px;
}

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

#footer {
	padding-top: 50px;
	background: var(--black);
	color: #fff;
}

#footer .company {
	display: flex;
	justify-content: space-between;
}

#footer .company_name {
	display: flex;
	align-items: center;
	text-align: left;
}

#footer .company_name figure {
	margin-right: 15px;
}

#footer .company_name figure img {
	height: 36px;
	height: 46px;
}

#footer .company_name .kana {
	font-size: 13px;
	color: #fff;
}

#footer .company_name .name img {
	height: 24px;
}

#footer .company_address {
	display: flex;
	justify-content: flex-end;
}

#footer .company_address dl {
	margin-left: 50px;
	text-align: left;
	line-height: 24px;
}

#footer .company_address dt {
	font-weight: 500;
	font-size: 15px;
	line-height: 32px;
	color: #fff;
}

#footer .company_address dd {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
}

/* ---------------------------------------------------------
	CSS Document sitemap
--------------------------------------------------------- */

#footer .sitemap {
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
	padding-top: 50px;
	border-top: solid 1px #313131;
	text-align: left;
	line-height: 28px;
}

#footer .sitemap .name {
	font-weight: 500;
	font-size: 15px;
	line-height: 32px;
	color: #fff;
}

#footer .sitemap a {
	text-decoration: none;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
}

#footer .sitemap a:hover {
	text-decoration: underline;
	color: rgba(255, 255, 255, 1);
}

#footer .sitemap ul {
	display: flex;
	flex-wrap: wrap;
}

#footer .sitemap li {
	width: 100%;
}

#footer .sitemap li.half {
	width: 130px;
}

#footer .sitemap ul.sitemap_company_ul {
	width: 220px;
}

#footer .sitemap li.quarter {
	width: fit-content;
}

#footer .sitemap li:before {
	display: inline-block;
	vertical-align: 0.3em;
	content: '';
	width: 8px;
	height: 1px;
	margin-right: 10px;
	background: #a3a3a3;
}

#footer .f_navi li a:hover {
	opacity: 0.6;
}

/* ---------------------------------------------------------
	CSS Document guide
--------------------------------------------------------- */

#footer .guide {
	display: flex;
	justify-content: center;
	margin: 50px 0;
}

#footer .guide .link {
	width: 320px;
	margin: 0 50px;
}

#footer .guide a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80px;
	border-radius: 4px;
	background: linear-gradient(135deg, #eee 40%, #fff 70%, #eee 100%);
	text-decoration: none;
	color: var(--black);
	position: relative;
}

#footer .guide a:hover {
	opacity: 0.6;
}

#footer .guide .link:last-of-type a:after {
	content: '';
	width: 12px;
	height: 13px;
	background: url(../images/f_external.svg) no-repeat 0 0 / 100% auto;
	position: absolute;
	bottom: 12px;
	right: 12px;
}

#footer .guide .ja {
	display: block;
	font-weight: 600;
	font-size: 16px;
}

#footer .guide .en {
	display: block;
	font-size: 12px;
	color: rgba(43, 43, 43, 0.5);
}

#footer address {
	background: #000;
	font-size: 13px;
	line-height: 50px;
	color: rgba(255, 255, 255, 0.7);
}

/* ---------------------------------------------------------
	CSS Document float
--------------------------------------------------------- */

#float {
	display: none;
	width: 60px;
	overflow: hidden;
	position: fixed;
	top: 110px;
	right: 0;
	z-index: 999;
}

#float li {
	margin-bottom: 10px;
}

#float li a {
	display: flex;
	align-items: center;
	width: 60px;
	padding: 20px 0;
	background: #1A1A1A;
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
	text-decoration: none;
	font-weight: 500;
	font-size: 15px;
	writing-mode: vertical-rl;
	line-height: 1;
	letter-spacing: 0;
	color: #fff;
}

#float li a:hover {
	opacity: 0.6;
}

#float li:nth-of-type(1) img {
	margin-bottom: 0.5em;
}

#float li img {
	height: 22px;
}

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

#pagetop {
	display: none;
	width: 60px;
	height: 60px;
	overflow: hidden;
	background: #1A1A1A;
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
	font-size: 0;
	color: #fff;
	position: fixed;
	bottom: 50px;
	right: 0;
	z-index: 8;
	cursor: pointer;
	transition: .4s;
}

#pagetop span {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
}

#pagetop img {
	height: 24px;
}

#pagetop:hover {
	opacity: 0.6;
}
