@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Hind:wght@500;600&family=Noto+Sans+JP:wght@700&display=swap');

/*動き
-------------------------------------------*/

/*move-01*/
.move-01-active .move-01-shade {
	animation-name:bgLRextendAnime;
	animation-duration:.8s;
	animation-fill-mode:forwards;
	content: "";
	position: absolute;
	animation-timing-function: cubic-bezier(1, 0, 0, 1);
	/*width: 100%;
	height: 100%;*/
}

@keyframes bgLRextendAnime{
  0% {
    transform-origin:right;
    transform:scaleX(1);
  }
  100% {
    transform-origin:right;
    transform:scaleX(0);
  }
}

.move-01-delay-01,
.move-01-delay-02 {
	opacity: 0;
}

.move-01-active .move-01-delay-01 {
	animation-name:fadeInDelay;
	animation-duration:1s;
	animation-delay:0.8s;
	animation-fill-mode:forwards;
}

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

/*move-02*/
.move-02 li {
	opacity: 0;
}

.move-02-active li {
	animation-name:fadeUpStep;
	animation-duration:0.8s;
	animation-delay:0;
	animation-fill-mode:forwards;
	animation-delay: 0.1s;
}

.move-02-active li:nth-child(2) {
	animation-delay: 0.2s;
}

.move-02-active li:nth-child(3) {
	animation-delay: 0.3s;
}

.move-02-active li:nth-child(4) {
	animation-delay: 0.4s;
}
.move-02-active li:nth-child(5) {
	animation-delay: 0.5s;
}
.move-02-active li:nth-child(6) {
	animation-delay: 0.6s;
}
.move-02-active li:nth-child(7) {
	animation-delay: 0.7s;
}
.move-02-active li:nth-child(8) {
	animation-delay: 0.8s;
}
@media (min-width:900px) {
	.move-02-active li:nth-child(1),
	.move-02-active li:nth-child(2) {
		animation-delay: 0.1s;
	}
	.move-02-active li:nth-child(3),
	.move-02-active li:nth-child(4) {
		animation-delay: 0.3s;
	}
	.move-02-active li:nth-child(5),
	.move-02-active li:nth-child(6) {
		animation-delay: 0.5s;
	}
	.move-02-active li:nth-child(7),
	.move-02-active li:nth-child(8) {
		animation-delay: 0.7s;
	}

}


@keyframes fadeUpStep{
	0% {
		opacity: 0;
		transform: translate(0, 80px);
		-webkit-transform: translate(0, 80px);
	}
	100% {
		opacity: 1;
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
	}
}


/*fade*/
.fadeIn{
	opacity: 0;
	transition: 1s;
}

.fadeIn-active{
	opacity: 1.0;
}

.fadeUp {
	opacity: 0;
	transition: 1s;
	transform: translate(0, 80px);
	-webkit-transform: translate(0, 80px);
}

.fadeUp-active {
	opacity: 1.2;
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
}

.fadeLeft {
	opacity: 0;
	transition: 1s;
	transform: translate(80px, 0);
	-webkit-transform: translate(80px, 0);
}

.fadeLeft-active {
opacity: 1;
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
}

.fadeRight {
	opacity: 0;
	transition: 1s;
	transform: translate(-80px, 0);
	-webkit-transform: translate(-80px, 0);
}

.fadeRight-active {
opacity: 1;
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
}



/*共通
-------------------------------------------*/
html {
	scroll-behavior: smooth;
}



body {
	font-size: 14px;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: 500;
	line-height: 1.7em;
}

@media (min-width:900px) {
	body {
		font-size: 17px;
	}
}

a:hover {
	opacity: .5;
	transition: .3s;
}

main a:link, main a:visited {
	text-decoration: underline;
}

* {
	box-sizing: border-box;
}

/*----------------------------------------------------
ヘッダー 
-----------------------------------------------------*/

/*PC*/

header {
	position: absolute;
	width: 100%;
	z-index: 100;
	font-weight: 600;
	font-style: normal;
	background: #fff;
}

header a:hover {
	text-decoration: none;
}

@media (min-width:900px) {
	header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
	}
	
	main {
		padding-top: 80px;
	}

	.h-sp-menu, .h-sp-tel {
		display: none;
	}

	.h-container {
		padding: 0 0 0 50px;
		transition: .3s;
		display: flex;
		background: #fff;
	}

	.h-nav {
		margin-left: auto;
	}
	
	.h-nav li {
		display: table-cell;
		line-height: 1.3em;
		vertical-align: bottom;
		font-weight: bold;
	}
	
	
	.h-nav-01 li a {
		display: block;
		padding: 30px 20px;
	}
	
	.h-nav-01-contact a {
		background: #002851;
		color: #fff;
	}
	.h-logo {
		padding-top: 17px;
	}
	
	.h-logo img {
		width: 270px;
	}
	
}


@media (min-width:1200px) {
	.h-nav-01 li a {
		display: block;
		padding: 30px 50px;
	}
}

/*SP*/
@media (max-width:899.9px) {
	.h-container {
		height: 52px;
	}

	main {
		padding-top: 52px;
	}
	
	.h-logo {
		padding: 13px 0 0 15px;
		text-align: left;
	}
	
	.header a {
		color: #fff;
	}

	.h-logo img {
		width: auto;
		width: 160px;
	}

.h-sp-menu {
		position: fixed;
		top: 0px;
		right:  0px;
		width: 60px;
		height: 52px;
		z-index: 10;
	}

	.h-sp-menu-btn {
		background:none;
		border:none;
		cursor:pointer;
		display: block;
		width: 30px;
		height: 32px;
		position: absolute;
		top: 15px;
		left: 15px;
	}

	.h-sp-menu-btn span {
		position: absolute;
		left: 0;
		width: 30px;
		height: 2px;
		background-color: #002851;
		z-index: 10;
	}

	.h-sp-menu-btn.active span {
		background: #fff;
	}

	.h-sp-menu-btn span:nth-of-type(1) {
		top: 0;
	}

	.h-sp-menu-btn span:nth-of-type(2) {
		top: 10px;
	}

	.h-sp-menu-btn span:nth-of-type(3) {
		top: 20px;
	}

	.h-sp-menu-btn.active span:nth-of-type(1) {
		-webkit-transform: translateY(11px) rotate(45deg);
		transform: translateY(11px) rotate(45deg);
		transition: .2s;
	}

	.h-sp-menu-btn.active span:nth-of-type(2) {
		opacity: 0;
	}

	.h-sp-menu-btn.active span:nth-of-type(3) {
		-webkit-transform: translateY(-10px) rotate(-45deg);
		transform: translateY(-10px) rotate(-45deg);
		transition: .2s;
	}

	.h-nav {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 10;
		width:100vw;
		height: 100vh;
		opacity: 0;
		background: rgba(255, 255, 255, 0.95);
		transition: all 0.3s ease-in-out;
		visibility:hidden;
		display: flex;
		flex-direction: column-reverse;
		justify-content: center;
		padding: 0 20px 0 20px;
	}

	.h-nav.active{
		right: 0;
		opacity: 1;
		-moz-transform: translateX(0);
		-webkit-transform: translateX(0);
		transform: translateX(0);
		visibility: visible;
		background: #002851;

	}

	.h-nav li{
		list-style-type: none;
		border-bottom:1px solid rgba(255,255,255,0.3);
	}

	.h-nav li a{
		display: block;
		padding: 15px;
		color: #fff;
		text-decoration: none;
	}

}


/*----------------------------------------------------
フッター
-----------------------------------------------------*/

footer {
	line-height: 1.4em;
	color: #FFF;
	background: #002851;
}

.f-container {
	max-width: auto;
	padding: 20px 0;
}

	footer a:link, footer a:visited {
		color: #fff !important;
		text-decoration: none;
	}

.f-box-01 {
	padding: 30px 25px;
	text-align: left;
}

.f-box-copyright {
	text-align:center;
	font-size: 13px;
}
.f-logo-01 {
	text-align: center;
	padding-bottom: 15px;
}

.f-logo-01 img {
	width: 50vw;
	max-width: 252px;
}

.f-pm-01 img {
	width: 10vw;
	max-width: 50px;
	margin-left: 30px;
}

footer li {
	line-height: 2em;
}

.f-nav-01 {
	text-align: left;
}

.f-nav-01 li {
	width: 49%;
	display: inline-block;
	letter-spacing: 0;
}

.f-copyright {
	font-size: 60%;
	text-align: center;
}

@media (min-width:900px) {
	footer {
		font-size: 16px;
	}
	
	.f-container {
		display: flex;
	}

	.f-logo-01, .f-pm-01 {
		display: inline-block;
	}	

	.f-box-01 {
		padding: 50px 50px 20px 50px;
		display: flex;
		align-items: center;
	}
	
	.f-nav-01 {
		text-align: right;
		margin-left: auto;
	}

	.f-nav-01 li {
		width: auto;
		padding-left:4em;
	}
	
	.f-copyright {
		font-size: 15px;
		text-align: right;
		padding: 0 40px 40px 0;
	}
}

/*----------------------------------------------------
ページタイトル、見出し、文字、画像、リスト
-----------------------------------------------------*/

/*ページタイトル*/
.page-ttl {
	padding: 30px 0;
	text-align: center;
	color: #002851;
}

.page-ttl-jp {
	font-size: 26px;
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: 0.1em;
	filter: drop-shadow(0 0 0.75rem white);	
}

.page-ttl-en {
	font-size: 13px;
	padding-top: 10px;
	font-family: 'Century Gothic', 'Hind', sans-serif;
	font-weight: bold;
	filter: drop-shadow(0 0 0.75rem white);	
}

@media (min-width:900px) {
	.page-ttl {
		padding: 110px 0;
		text-align: left;
	}
	
	.page-ttl-jp {
		font-size: 35px;
	}

	.page-ttl-en {
		font-size: 16px;
	}
}

/*見出し*/

.sec-ttl-jp {
	font-size: 24px;
	color: #002851;
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: 0.1em;
}

.sec-ttl-jp h2 {
	display: inline-block;
	padding: 0 0.1em 0.7em 0.1em;
	border-bottom: 2px solid #002851;
	margin-bottom: 1.7em;
}

.sec-ttl-en {
	transform: rotate(90deg);
	transform-origin:top left;
	color: #002851;
	font-family: 'Century Gothic', 'Hind', sans-serif;
	font-size: 80%;
	padding-right: 10em;
	position: absolute;
	left: 25px;
	vertical-align: middle;
	display: inline-block;
}

.sec-ttl-en p::after {
	content: "";
	height: 1px;
	width: 1em;
	position: absolute;
	right: 8em;
	top: 50%;
	background:#002851;
	display: inline-block;
	opacity: 0.6;
}

.sec-ttl-en.sec-ttl-en-active p::after {
		animation-name:Nobiru;
		animation-duration:1s;
		animation-fill-mode:forwards;
		content: "";
		position: absolute;
}

@keyframes Nobiru{
  0% {
    transform-origin:left;
    transform:scaleX(0);
  }
  100% {
    transform-origin:left;
    transform:scaleX(9);
  }
}

@media (min-width:900px) {
	.sec-ttl-jp {
		font-size: 31px;
	}
	
	.sec-ttl-en {
		left: 60px;
	}
}

/*フォントサイズ*/

/*改行スマホはなし*/
.br-d-lg-block br {
	display: none;
}
@media (min-width:900px) {
	.br-d-lg-block br {
		display: block;
	}
}

/*リストなど*/
.att-02 dt,
.att-02 dd {
	line-height: 1.6em;
}
.att-02 dd {
	margin: -1.6em 0 0 2.2em;
}



/*----------------------------------------------------
セクションの余白、背景
-----------------------------------------------------*/
.sec {
	position: relative;
}
.inner {
	padding-left: 25px;
	padding-right: 25px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-width: 1250px;
	position: relative;
	text-align: left;
}

.inner.w-max {
	max-width: 1320px;
}

.inner.w-narrow {
	max-width: 900px;
}

.sec-pt {
	padding-top: 50px;
}

.sec-pb {
	padding-bottom: 60px;
}

.bg-gray {
	background: #F6F6F6;
}

@media (min-width:900px) {
	.inner {
		padding-left: 80px;
		padding-right: 80px;
	}
	.sec-pt {
		padding-top: 120px;
	}

	.sec-pb {
		padding-bottom: 140px;
	}

}



@media (max-width:899.9px) {
	.

}


/*----------------------------------------------------
ボタン
-----------------------------------------------------*/

.btn-01 {
	display: inline-block;
	background: #002851;
	color: #fff !important;
	text-decoration: none !important;
	width: 290px;
	padding: 1em 1.5em;
	text-align: left;
	line-height: 1.1em;
	position: relative;
}

.btn-01::after {
	content: "";
	width: 1em;
	height: 1.1em;
	position: absolute;
	top: 1em;
	right: 1.2em;
	background: url("../img/arrow-01.svg") no-repeat center center;
	background-size: contain;
}

.btn-02 {
	display: inline-block;
	text-decoration: none !important;
	line-height: 1.5em;
}

.btn-02::after {
	content: "";
	display: inline-block;
	width: 1em;
	height: 1em;
	background: url("../img/arrow-03.svg") no-repeat center center;
	background-size: contain;
	margin-left: 0.5em;
}

.btn-03 {
	background: #002851;
	border-radius: 50px;
	padding: 1em;
	color: #fff;
	width: 70%;
	margin-left: 2%;
	margin-right: 2%;
	max-width: 280px;
	text-align: center;
	border: none;
	font-weight: bold;
}

.link-ext {	vertical-align: bottom;}
.link-ext::after {
	content: "";
	display: inline-block;
	background: url("../img/icn-link-ext.svg") no-repeat center bottom;
	width: 0.9em;
	height: 0.9em;
	margin-left: 0.1em;
	background-size: contain;
}
