@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&display=swap');


/*google fonts*/
.noto-sans jp-<uniquifier> {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
}

.roboto-regular {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.roboto-bold {
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	font-style: normal;
}

.roboto-regular-italic {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: italic;
}

.roboto-bold-italic {
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	font-style: italic;
}


/*------------------------------------------------------------
  [COMMON] SP PC base
------------------------------------------------------------ */
body {
	font-family: 'Roboto', 'Noto Sans JP', Sans-Serif;
	color: #0F1A51;
}

a {
	color: #0F1A51;
}

article {
	position: relative;
}

.box {
	width: 100%;
	height: 100vh;
}

.inner {
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.section-content {
	padding: 0;
	position: relative;
}


#greeting .inner {
	background: #fff;
}

#about .inner {
	background: #78DDA6;
}

#outline .inner {
	background: #FFFB99;
}

#contact .inner {
	background: #0F1A51;
	background: linear-gradient(180deg, #0F1A51 0%, #080B34 60%);
	color: #fff;
}

#greeting h2.logomark {
	display: block;
	text-indent: -9999px;
	margin: 0 auto;
	font-size: 0;
	line-height: 0;
	background: url(../img/logo.svg) no-repeat center top;
	background-size: contain;
}

#contact .logomark {
	display: block;
	text-indent: -9999px;
	background: url(../img/logo_white.svg) no-repeat center top;
	background-size: contain;
}

/*------------------------------------------------------------
  [COMMON] move
------------------------------------------------------------ */
.logomark {
	opacity: 0;
	animation-name: fadeUpAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	animation-delay: 0.2s;
}

.message {
	opacity: 0;
	animation-name: fadeUpAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	animation-delay: 0.6s;
}

/*要素フェードアップ*/
.fadeUpTrigger {
	opacity: 0;
}

.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	animation-delay: 0.2s;
}

.delay1 {
	animation-delay: 0.6s;
}

.delay2 {
	animation-delay: 1s;
}

@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(50px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/*------------------------------------------------------------
  [COMMON] nav
------------------------------------------------------------ */
nav {
	z-index: 10;
	opacity: 0;
	position: fixed;
	transition: top 0.5s;
}

nav.fixed {
	top: 0;
	opacity: 1;
}

ul.pager {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	margin: 0 auto;
	position: relative;
}

.pager li {
	display: block;
}

.pager li a {
	display: block;
	width: 100%;
	height: 100%;
	color: #0F1A51;
}

.pager li:first-child {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.pager li:first-child a {
	text-indent: -9999px;
	background: url(../img/icon_blue.svg) no-repeat center center;
	background-size: contain;
}

.pager li:nth-child(2) {
	text-align: right;
}

.pager li:nth-child(3) {
	text-align: left;
}

.pager li:last-child {
	display: none;
}

nav.white .pager li a {
	color: #fff;
}

nav.white .pager li:first-child a {
	background: url(../img/icon_white.svg) no-repeat center center;
}

.area_move {
	position: fixed;
	opacity: 0;
	transition: all 0.3s ease;
}

.area_move.fixed {
	opacity: 1;
}

.area_move:hover {
	cursor: pointer
}

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

	.pc_item {
		display: none;
	}

	.sp_item {
		display: block;
	}

	/*------------------------------------------------------------
  [SP] stroke
------------------------------------------------------------ */

	/*	.st_move {
		display: block;
		position: absolute;
		fill: none;
		fill-opacity: 0;
		stroke: #0F1A51;
		stroke-width: 0.5px;
	}
.st_move.done path {
		fill-opacity: 1;
	}

	.st_move#stroke1 {
		width: auto;
		height: 100%;
		left: 0;
		bottom: 0;
	}

	.st_move#stroke2,
	.st_move#stroke3 {
		width: auto;
		height: 100%;
		right: 0;
		top: 0;
	}

	.st_move#stroke4 {
		width: auto;
		height: 100%;
		stroke: #fff;
		top: 0;
	}*/

	/*------------------------------------------------------------
  [SP] common
------------------------------------------------------------ */
	.box h2 {
		width: fit-content;
		font-size: 17.6vw;
		font-weight: bold;
		line-height: 1;
	}

	.box h2 .txt_s_jp {
		display: block;
		margin: 1.6vw 0 0;
		font-size: 4vw;
		font-weight: normal;
		text-align: right;
	}

	/*	.st_move#stroke1,
	.st_move#stroke2,
	.st_move#stroke3,
	.st_move#stroke4 {
		right: 0;
		top: 0;
	}*/

	/*------------------------------------------------------------
  [SP] nav
------------------------------------------------------------ */
	nav {
		width: 100%;
		height: 13.6vw;
		padding: 4vw 0 0;
		top: -13.6vw;
		left: 0;
	}

	.pager {
		width: 64vw;
	}

	.pager li {
		width: 14.4vw;
		height: 9.6vw;
	}

	.pager li a {
		font-size: 4vw;
		line-height: 9.6vw;
	}

	.pager li:first-child {
		width: 9.6vw;
	}

	.area_move {
		right: 1.6vw;
		bottom: 2.4vw;
		width: 12vw;
		height: 12vw;
		background: url(../img/arrow_sp.svg) no-repeat center center / 5.6vw;
	}

	.area_move.reverse {
		background: url(../img/arrow_sp_wh.svg) no-repeat center center / 5.6vw;
	}


	/*------------------------------------------------------------
  [SP] #greeting
------------------------------------------------------------ */
	#greeting .section-content {
		width: 80vw;
		margin: 7.5vh 0 0;
	}

	#greeting h2.logomark {
		margin: 0 auto;
		width: 64vw;
		height: 44vw;
	}

	#greeting p.message {
		display: block;
		text-align: center;
		margin: 16vw 0 0;
		font-size: 6.4vw;
		line-height: 1.5;
		font-weight: normal;
	}


	/*------------------------------------------------------------
  [SP] #about
------------------------------------------------------------ */
	#about .section-content {
		width: 80vw;
		margin: 2.5vh 0 0;
	}

	#about h2 .txt_s_jp {
		margin-right: -4em;
	}

	#about h2 .txt_ss {
		font-size: 3.466666667vw;
		margin: 0 -0.3em;
	}

	#about p.explanation {
		margin: 12vw 0 0;
		line-height: 1.8;
		font-size: 4vw;
	}

	#about p.explanation+p {
		margin-top: 4vw;
	}

	/*------------------------------------------------------------
  [SP] #outline
------------------------------------------------------------ */
	#outline .section-content {
		width: 80vw;
		margin: 2.5vh 0 0;
	}

	#outline h2 .txt_s_jp {
		margin-right: -2em;
	}

	#outline .tb_com {
		width: fit-content;
		margin: 8vw 0 0 4vw;
	}

	.tb_com th {
		padding: 1.6vw 5.6vw 1.6vw 0;
		white-space: nowrap;
		line-height: 1.5;
		font-size: 3.733333333vw;
		font-weight: normal;
	}

	.tb_com td {
		padding: 1.6vw 0;
		line-height: 1.5;
		font-size: 4vw;
	}

	/*	.tb_com td .name_e {
	}
*/

	/*------------------------------------------------------------
  [SP] #contact
------------------------------------------------------------ */
	#contact .mail {
		display: block;
		margin: 0 auto;
		width: fit-content;
	}

	#contact .mail a {
		display: block;
		padding: 1.6vw 6.4vw;
		font-size: 4.8vw;
		border: 1px solid #fff;
		border-radius: 1px;
		color: #fff;
	}

	#contact .logomark {
		width: 56vw;
		height: 40vw;
		margin: 40vw auto 0;
	}

	#contact footer {
		display: block;
		width: 100%;
		position: absolute;
		bottom: 8vw;
		left: 0;
		margin: 0;
	}

	#contact .policy_link {
		display: block;
		width: 100%;
		margin: 0 0 4vw;
	}

	#contact .policy_link a {
		display: block;
		width: fit-content;
		margin: 0 auto;
		font-size: 3.2vw;
	}

	#contact .copyright {
		display: block;
		width: 100%;
		margin: 0;
		font-weight: normal;
		text-align: center;
		font-size: 3.466666667vw;
	}


}

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

	.sp_item {
		display: none;
	}

	.pc_item {
		display: block;
	}

	a {
		transition: 0.5s;
	}

	/*------------------------------------------------------------
  [PC] stroke
------------------------------------------------------------ */
	/*	.st_move {
		display: block;
		position: absolute;
		fill: none;
		fill-opacity: 0;
		stroke: #0F1A51;
		stroke-width: 0.5px;
	}

	.st_move.done path {
		fill-opacity: 1;
	}

	.st_move#stroke1 {
		width: 50%;
		height: auto;
		left: 0;
		bottom: 0;
	}

	.st_move#stroke2,
	.st_move#stroke3 {
		width: auto;
		height: 100%;
		right: 0;
		top: 0;
	}

	.st_move#stroke4 {
		width: 50%;
		height: auto;
		stroke: #fff;
		top: 0;
	}*/

	/*------------------------------------------------------------
  [PC] common 1280x800基準
------------------------------------------------------------ */
	.box h2 {
		width: fit-content;
		font-size: 148px;
		font-weight: bold;
		line-height: 1;
	}

	.box h2 .txt_s_jp {
		display: block;
		margin: 0 -3em 0 0;
		font-size: 18px;
		font-weight: normal;
		text-align: right;
	}

	/*	.st_move#stroke1,
	.st_move#stroke2,
	.st_move#stroke3,
	.st_move#stroke4 {
		right: 0;
		top: 0;
	}*/

	/*------------------------------------------------------------
  [PC] nav
------------------------------------------------------------ */
	nav {
		width: 100%;
		height: 60px;
		padding: 33px 0 0;
		top: -60px;
		left: 0;
	}

	.pager {
		width: 250px;
	}

	.pager li {
		width: 54px;
		height: 27px;
	}

	.pager li:first-child {
		width: 50px;
	}

	.pager li a span {
		width: fit-content;
		display: block;
		position: relative;
		font-size: 18px;
		line-height: 27px;
	}


	.pager li a span::after {
		content: "";
		display: block;
		position: absolute;
		width: 100%;
		height: 0;
		bottom: 0;
		left: 0;
		background: #0F1A51;
		opacity: 1;
	}

	.pager li a:hover span::after {
		height: 2px;
		opacity: 1;
		animation: lineappear 0.2s forwards;
	}

	@keyframes lineappear {
		0% {
			height: 0%;
		}

		100% {
			height: 2px;
		}
	}

	nav.white .pager li a span::after {
		background: #fff;
	}

	.area_move {
		right: 30px;
		bottom: 30px;
		width: 60px;
		height: 60px;
		background: url(../img/arrow_pc.svg) no-repeat center center / 24px;
	}

	.area_move:hover {
		transform: translateY(8px);
	}

	.area_move.reverse {
		background: url(../img/arrow_pc_wh.svg) no-repeat center center / 24px;
	}

	.area_move.reverse:hover {
		transform: translateY(-8px);
	}

	/*------------------------------------------------------------
  [PC] #greeting
------------------------------------------------------------ */
	#greeting .section-content {
		width: 75%;
		margin: 3.75vh 0 0;
	}

	#greeting h2.logomark {
		margin: 0 auto;
		width: 48vh;
		height: 31.9333333333333vh;
	}

	#greeting p.message {
		display: block;
		text-align: center;
		margin: 70px auto 0;
		font-size: 4.6666666666667vh;
		line-height: 1.5;
		font-weight: normal;
	}

	/*------------------------------------------------------------
  [PC] #about
------------------------------------------------------------ */
	#about .section-content {
		width: 60%;
		margin: 7.5vh 0 0;
	}

	#about p.explanation {
		margin: 50px 0 0 32%;
		line-height: 1.8;
		font-size: 20px;
	}

	#about p.explanation+p {
		margin-top: 20px;
	}

	/*------------------------------------------------------------
  [PC] #outline
------------------------------------------------------------ */
	#outline .section-content {
		width: 60%;
		margin: 7.5vh 0 0;
	}

	#outline h2 .txt_s_jp {
		margin-right: -2em;
	}

	#outline .tb_com {
		width: fit-content;
		margin: 50px 0 0 20%;
	}

	.tb_com th {
		padding: 10px 70px 10px 0;
		white-space: nowrap;
		line-height: 1.5;
		font-size: 18px;
		font-weight: normal;
	}

	.tb_com td {
		padding: 10px 0;
		line-height: 1.5;
		font-size: 20px;
	}

	.tb_com td a.tel {
		pointer-events: none;
	}

	/*------------------------------------------------------------
  [PC] #contact
------------------------------------------------------------ */
	#contact .section-content {
		width: 60%;
		margin: 5vh 0 0;
	}

	#contact .mail {
		display: block;
		margin: 0 auto;
		width: fit-content;
	}

	#contact .mail a {
		display: block;
		padding: 7px 20px;
		font-size: 18px;
		border: 1px solid #fff;
		border-radius: 1px;
		color: #fff;
		position: relative;
	}

	#contact .mail a::after {
		content: '';
		position: absolute;
		z-index: -1;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 0;
		background: #fff;
		opacity: 0;
	}

	#contact .mail a:hover {
		color: #0F1A51;
	}

	#contact .mail a:hover::after {
		height: 100%;
		opacity: 1;
		animation: bgappear 0.5s forwards;
	}

	@keyframes bgappear {
		0% {
			height: 0%;
		}

		100% {
			height: 100%;
		}
	}

	#contact .logomark {
		margin: 25vh auto 0;
		width: 32.5vh;
		height: 24.25vh;
	}

	#contact footer {
		display: block;
		width: 100%;
		position: absolute;
		bottom: 40px;
		left: 0;
		margin: 0;
	}

	#contact .policy_link {
		display: block;
		width: 100%;
		margin: 0 0 20px;
	}

	#contact .policy_link a {
		display: block;
		width: fit-content;
		margin: 0 auto;
		padding: 3px 0;
		font-size: 14px;
		border-bottom: 1px solid rgba(255, 255, 255, 0);
	}

	#contact .policy_link a:hover {
		border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	}

	#contact .copyright {
		font-weight: normal;
		text-align: center;
		font-size: 12px;
	}

}