@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@900&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap');

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p,
a, address,
em, img,
small, strong, sub, sup,
b, u, i,
ul, ol, li, dl, dt, dd,
form, label,
table, caption, tbody, tfoot, thead, tr, th, td,
article, section, aside, figure, figcaption,
header, footer, nav, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, section, aside, figure, figcaption, header, footer, nav { display: block; }
body { line-height: 1; }
ul, ol { list-style: none; }
table { border-collapse: collapse; border-spacing: 0; }
strong { font-weight:bold;}

.clearfix::after {
	content: "";
	clear: both;
	display: table;
}

/*================================================

　全体

=================================================*/
*{ -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
*::before,
*::after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }

html { font-size: 62.5%; }
body { 
	position: relative;
	min-height: 100vh;
	color: #000;
	text-align: left;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	font-feature-settings: "palt" 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a, a:link, a:focus, a:visited {
	color: #000;
	text-decoration: none;
	opacity: 1;
	transition: all 0.5s ease;
}
a:hover {
	opacity: 0.3;
}

@media screen and (min-width: 768px) {
	a[href^="tel:"]{
		pointer-events: none;
	}
}

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

/* Avoid Chrome to see Safari hack */
@supports (-webkit-touch-callout: none) {
	body {
		/* The hack for Safari */
		height: -webkit-fill-available;
	}
}

strong {
	color: #FF0;
	font-weight: 900;
}

/*================================================

　レイアウト共通

=================================================*/
.content-wrap {
	margin: 0;
	padding: 120px 0 0;
}
.top .content-wrap {
	margin: 0;
	padding: 0;
}
.content-wrap-bgcover {
	position: relative;
	padding: 0 40px;
	z-index: 2;
}
.title {
	position: relative;
	display: flex;
	justify-content: space-between;
	height: 48px;
	margin-bottom: 30px;
	padding: 0 36px;
}
.title.ex {
	height: 70px;
}
.title::after {
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	width: 100%;
	height: 45px;
	background: url("../images/common/title_line_pc_01.svg") center center / 100% auto no-repeat;
}
.title span {
	display: inline-block;
	text-align: left;
	font-size: 1.8rem;
	font-weight: 400;
}
.title span:nth-of-type(2) {
	text-align: right;
	line-height: 1.2;
}

@media screen and (min-width: 1080px) {

	.pc-new-line02 {
		display: block;
	}

}

@media screen and (max-width: 1079px) {

	.content-wrap {
		padding: 80px 0 0;
	}
	.pc-new-line02 {
		display: none;
	}
	.title span {
		font-size: clamp(1.3rem, (100vw - 769px) * 5 / 310 + 13px, 1.8rem);
	}

}

@media screen and (min-width: 769px) {

	.pc-new-line {
		display: block;
	}
	.sp-new-line {
		display: none;
	}

}

@media screen and (max-width: 768px) {

	.content-wrap {
		padding: 19.33333333vw 0 0;
	}
	.pc-new-line {
		display: none;
	}
	.title {
		height: 7vw;
		height: 7.5vw;
		margin-bottom: 4vw;
		padding: 0 4.8vw;
	}
	.title.ex,
	.title.ex02 {
		height: 10.5vw;
	}
	.title::after {
		height: 6vw;
		background: url("../images/common/title_line_sp_01.svg") center center / 100% auto no-repeat;
	}
	.title span {
		font-size: clamp(1rem, (100vw - 375px) * 8.5 / 393 + 10px, 1.85rem);
		line-height: 1.3;
	}
	.title span:nth-of-type(2) {
		margin-top: 0.2em;
		font-size: clamp(1rem, (100vw - 375px) * 8.5 / 393 + 10px, 1.85rem);
	}

}

/*================================================

　header

=================================================*/
.header__wrap {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	margin: 0 auto;
	z-index: 99999;
	transition: all 0.5s ease;
}
.header__wrap__inner {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	height: 120px;
	margin: 0 auto;
	padding: 0 20px;
}
.header__wrap__inner .logo {
	margin: 0;
	padding: 0;
	filter:
		 drop-shadow(0 0 5px rgba(255, 255, 255, 1))
		 drop-shadow(0 0 5px rgba(255, 255, 255, 1));
}

@media screen and (max-width: 1079px) {

	.header__wrap__inner {
		width: 100%;
		height: 80px;
		margin: 0 auto;
	}
	.header__wrap__inner .logo {
		width: 160px;
	}

}

@media screen and (max-width: 768px) {

	.header__wrap__inner {
		height: 19.33333333vw;
		transition: all 0.5s ease;
	}
	.header__wrap__inner.transform {
		height: 13vw;
		background-color: rgba(255,255,255,0.7);
	}
	.header__wrap__inner .logo {
		margin: 0 auto;
		width: 36.4vw;
		filter:
			 drop-shadow(0 0 3px rgba(255, 255, 255, 1))
			 drop-shadow(0 0 3px rgba(255, 255, 255, 1))
			 drop-shadow(0 0 3px rgba(255, 255, 255, 1));
		transition: all 0.5s ease;
	}
	.header__wrap__inner .logo.transform {
		width: 30vw;
	}
	.header__wrap__inner .logo img {
		width: 100%;
	}

}

/*　ナビメニュー
=================================================*/
.header__wrap__inner .navlist {
	height: 100%;
}
.header__wrap__inner .navlist ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 435px;
	height: 100%;
	margin: 0;
	padding: 0;
	z-index: 999999;
}
.header__wrap__inner .navlist ul li {
	position: relative;
	font-size: 1.3rem;
	line-height: 1;
	padding: 0 5px;
	color: #000;
	filter:
		 drop-shadow(0 0 1px rgba(255, 255, 255, 1))
		 drop-shadow(0 0 1px rgba(255, 255, 255, 1))
		 drop-shadow(0 0 1px rgba(255, 255, 255, 1));
}
.header__wrap__inner .navlist ul li::before {
	position: absolute;
	content: '';
	top: 1px;
	left: -6px;
	width: 1px;
	height: 100%;
	background-color: #000;
}
.header__wrap__inner .navlist ul li:nth-of-type(7),
.header__wrap__inner .navlist ul li:nth-of-type(8),
.header__wrap__inner .navlist ul li:first-child::before {
	display: none;
}

@media screen and (max-width: 1079px) {

	.header__wrap__inner .navlist {
		position: fixed;
		top: 0;
		left: 100%;
		width: 375px;
		height: 100%;
		padding: 25px 30px 0;
		background: rgba(0,0,0,0.8);
		background: rgba(0,112,158,0.8);
		transform: translate(0, 0);
		transition: 0.5s ease-out;
	}
	.header__wrap__inner .navlist ul {
		justify-content: flex-start;
		flex-direction: column;
		width: 100%;
	}
	.header__wrap__inner .navlist ul li {
		display: block;
		width: 100%;
		margin-right: 0;
		padding: 30px 0 10px;
		font-size: 1.3rem;
		border-right: none;
		border-bottom: 1px solid #FFF;
		filter: none;
	}
	.header__wrap__inner .navlist ul li::before {
		display: none;
	}
	.header__wrap__inner .navlist ul li a {
		color: #FFF;
	}
	.header__wrap__inner .navlist ul li:nth-of-type(7),
	.header__wrap__inner .navlist ul li:nth-of-type(8) {
		display: block;
	}

}

@media screen and (max-width: 768px) {

	.header__wrap__inner .navlist {
		width: 100%;
		padding: 35px 20px 0;
	}

}

/*　ハンバーガー
=================================================*/
.menu-btn {
	display: none;
	position: absolute;
	right: 25px;
	z-index: 10;
}
.menu-btn .toggle {
	display: block;
	position: relative;
	width: 42px;
	height: 24px;
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
}
.menu-hamburger,
.menu-hamburger::before,
.menu-hamburger::after {
	display: block;
	position: relative;
	width: 100%;
	height: 1px;
	background-color: #000;
	transition: 0.2s ease-out;
}
.change .menu-hamburger,
.change .menu-hamburger::before,
.change .menu-hamburger::after {
	background-color: #000;
}
.menu-hamburger::before,
.menu-hamburger::after {
	position: absolute;
	content: '';
	top: -5px;
	left: 0;
}
.menu-hamburger::after {
	top: 5px;
}
.open .menu-hamburger {
	background-color: transparent;
}
.open .menu-hamburger::before,
.open .menu-hamburger::after {
	top: 0;
	background-color: #FFF;
}
.open .menu-hamburger::before {
	transform: rotate(45deg);
}
.open .menu-hamburger::after {
	transform: rotate(-45deg);
}

@media screen and (max-width: 1079px) {

	.header__wrap__inner .navlist .nav-title {
		position: relative;
		display: block;
		z-index: 11;
	}
	.header__wrap__inner .navlist ul li a {
		display: flex;
		justify-content: space-between;
		align-items: baseline;
	}
	.menu-btn {
		display: block;
	}
	.menu-btn.open + .navlist {
		transform: translateX(-100%);
	}
	.navlist.open {
		transform: translateX(-100%);
	}

}

@media screen and (max-width: 768px) {

	.menu-btn {
		right: 5.33333333vw;
	}
	.menu-btn .toggle {
		min-width: 32px;
		width: 5.6vw;
		min-height: 24px;
		height: 3.2vw;
	}
	.menu-hamburger::before,
	.menu-hamburger::after {
		top: -.96666666vw;
	}
	.menu-hamburger::after {
		top: 0.96666666vw;
	}

}


/*================================================

　mainvisual

=================================================*/
.mainvisual {
	margin-bottom: 50px;
}

@media screen and (max-width: 1279px) {

	.mainvisual {
		margin-bottom: 4.6339203vw;
	}

}

/*================================================

　フッター

=================================================*/
footer {
	position: relative;
	margin: 90px 0 0;
	padding: 0;
	text-align: center;
	line-height: 1;
	background-color: #ECECEC;
	z-index: 10;
}
.footer__content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 690px;
	margin: auto;
	padding: 30px 0 20px;
}
.footer__content .logo {
	margin: 0;
	padding: 0;
}
.footer__content .navlist {
	padding: 0;
}
.footer__content .navlist ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 440px;
}
.footer__content .navlist ul li {
	position: relative;
	font-size: 1.3rem;
	line-height: 1;
	margin: 5px 0;
	padding: 0 10px;
	color: #000;
}
.footer__content .navlist ul li:nth-of-type(6) {
	padding-right: 0;
}
.footer__content .navlist ul li::before {
	position: absolute;
	content: '';
	top: 1px;
	left: 0;
	width: 1px;
	height: 100%;
	background-color: #000;
}
.footer__content .navlist ul li:nth-of-type(1)::before,
.footer__content .navlist ul li:nth-of-type(7)::before {
	display: none;
}

#copy {
	margin: 0;
	padding: 25px 0;
	color: #FFF;
	text-align: center;
	font-size: clamp(1.1rem, (100vw - 1079px) * 3 / 320 + 11px, 1.4rem);
	background-color: #00709E;
}
#copy p {
	margin: 0 0 5px;
}

@media screen and (max-width: 1079px) {

	footer {
		margin: 8.34105653vw 0 0;
	}

}

@media screen and (max-width: 768px) {
	
	footer {
		margin: 10.6666666vw 0 0;
	}
	.footer__content {
		justify-content: center;
		padding: 2.66666666vw 0 2vw;
	}
	.footer__content .logo {
		width: 32.4vw;;
	}
	.footer__content .logo img {
		width: 100%;
	}
	.footer__content .navlist {
		display: none;
	}

}

/*================================================

　表示　関連

=================================================*/

.bgappearTrigger,
.fadeUpTrigger {
	opacity: 0;
	transition: 0.5s;
}
.delay_01 { transition-delay: 0.3s; }
