@charset "UTF-8";

body {
	font-family: 'Noto Sans JP', sans-serif;
	background-color: #FCFCFC;
}

:root {
	font-size: 16px;
	line-height: 1.6;
	color: #505050;
}



/* 共通仕様 */
.liner-color {
	background: linear-gradient(to bottom right, #004C99, #0676c6);
}

.shadow{
	box-shadow: 0px 0px 8px #00000010;
}

.main {
	margin-top: 70px;
}

.scroll-fade-in{
	opacity: 0;
	transform: translateY(40px);
	transition: opacity .6s ease, transform .6s ease;
}

.scroll-fade-in.visible{
	opacity: 1;
	transform: translateY(0);
}

/* ボタン＿白 */
.white-btn {
	width: clamp(200px, 35vw, 300px);
	height: clamp(60px, 8vw, 65px);
	position: relative;
	border: solid 1px #004C99;
	box-shadow: 0px 0px 8px #00000010;
	background-color: #FCFCFC;
	transition: scale .3s ease;
}

.btn__a {
	display: block;
	width: 100%;
	height: 100%;
}

.white-btn-text {
	font-size: 1.3em;
	font-weight: bold;
	color: #004C99;
	position: absolute;
	top: 50%;
	left: 7%;
	transform: translateY(-50%);
}

.white-btn-icon {
	width: 11px;
	height: 11px;
	border-top: solid #004C99 3px;
	border-right: solid #004C99 3px;
	position: absolute;
	top: 50%;
	right: 7%;
	transform: translateY(-50%) rotate(45deg);
}

.white-btn:hover{
	background-color: #004C99;
	scale: .98;
}

.white-btn:hover .white-btn-text{
	color: #FCFCFC;
}

.white-btn:hover .white-btn-icon{
	border-top: solid #FCFCFC 3px;
	border-right: solid #FCFCFC 3px;
}


/* ボタン＿青 */
.blue-btn {
	width: clamp(200px, 35vw, 300px);
	height: clamp(60px, 8vw, 65px);
	position: relative;
	box-shadow: 0px 0px 8px #00000010;
	background: linear-gradient(to bottom right, #004C99, #0676c6);
	transition: scale .3s ease;
}

.blue-btn-text {
	font-size: 1.3em;
	font-weight: 500;
	color: #FCFCFC;
	position: absolute;
	top: 50%;
	left: 7%;
	transform: translateY(-50%);
}

.blue-btn-icon {
	width: 11px;
	height: 11px;
	border-top: solid #FCFCFC 3px;
	border-right: solid #FCFCFC 3px;
	position: absolute;
	top: 50%;
	right: 7%;
	transform: translateY(-50%) rotate(45deg);
}

.blue-btn:hover{
	background: none;
	background-color: #FCFCFC;
	border: solid 1px #004C99;
	scale: .98;
}

.blue-btn:hover .blue-btn-text{
	color: #004C99;
}

.blue-btn:hover .blue-btn-icon{
	border-top: solid #004C99 3px;
	border-right: solid #004C99 3px;
}




.outer {
	padding: clamp(30px,7vw,130px) 5vw;
}

.inner {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

.under-bar {
	padding-bottom: 7px;
	position: relative;
}

.under-bar::after {
	content: "";
	width: 50px;
	height: 6px;
	background: linear-gradient(to bottom right, #004C99, #0676c6);
	position: absolute;
	bottom: 0;
	left: 0;
}

.left-bar {
	padding-left: 15px;
	position: relative;
}

.left-bar::before {
	content: "";
	width: 6px;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: linear-gradient(to bottom right, #004C99, #0676c6);
}




/* ヘッダー */
.header {
	padding-left: 3vw;
	background-color: #fcfcfca8;
	box-shadow: 0px 0px 8px #00000010;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	box-shadow: 0px 0px 8px #00000010;
}

.header.active {
	background-color: #fcfcfc;
}

.header-inner {
	width: 100%;
	position: relative;
	height: 70px;
}

.header__logo {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: opacity .3s ease;
}

.header__logo:hover{
	opacity: 0.8;
}


.header__logo a {
	display: flex;
	align-items: center;
	gap: 10px;
}

.header__logo--img {
	width: 35px;
	height: auto;
}

.header__logo--text {
	font-size: 1.2em;
	font-weight: bold;
}

.header__nav {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 100%;
}

.header__nav-inner {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	gap: 2vw;
}

.header__nav-inner li a {
	font-size: 1em;
	font-weight: bold;
	padding: 0.5vw;
	transition: opacity .3s ease;
}

.header__nav-inner li a:hover{
	opacity: .8;
}


.header__nav--contact {
	height: 100%;
	width: 200px;
	transition: opacity .3s ease;
}

.header__nav--contact:hover{
	opacity: .8;
}


.header__nav--contact a {
	display: block;
	height: 100%;
	position: relative;
}

.header__nav--contact a span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #FCFCFC;
	font-weight: 500;
	font-size: 0.95em;
}


/* レスポンシブ　ハンバーガーメニュー */
.header__hum-icons {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	height: 35px;
	cursor: pointer;
}


.header__hum-icon--01,
.header__hum-icon--02,
.header__hum-icon--03 {
	width: 33px;
	height: 3px;
	transition: transform 0.3s ease;
}


.header__hum-icons.active .header__hum-icon--01 {
	transform: translate(0, 4px) rotate(-45deg);
}

.header__hum-icons.active .header__hum-icon--02 {
	display: none;
}

.header__hum-icons.active .header__hum-icon--03 {
	transform: translate(0, -5px) rotate(45deg);
}

.header__hum-menu {
	width: 100%;
	height: calc(100vh - 60px);
	position: fixed;
	z-index: 100;
	top: 60px;
	left: 100%;
	transition: translate 0.3s ease;
	background-color: #FCFCFC;
	transition: transform 0.3s ease;
}


.header__hum-menu.show {
	transform: translateX(-100%);
}

.hum-menu-inner {
	margin-top: 7vw;
}

.hum-menu-inner li {
	width: 100%;
	height: clamp(65px, 10vh, 100px);
	position: relative;
}

.hum-menu-inner li:hover {
	background-color: #CAD9E9;
}

.hum-menu-inner a {
	display: block;
	width: 100%;
	height: 100%;
}

.header__hum-menu-text {
	position: absolute;
	width: 100%;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.3em;
	font-weight: bold;
	color: #1361ae;
}



/* フッター */
.footer {
	padding: 5vw 3vw clamp(70px, 7vw, 130px);
	color: #FCFCFC;
	position: relative;
}

.footer-inner {
	width: 100%;
	max-width: 900px;
	display: flex;
	margin: 0 auto;
}

.footer__about-group {
	width: 50%;
	padding-right: 5%;
	border-right: solid 1px #FCFCFC;
}

.footer__logo-group {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}

.footer__logo-group p {
	font-size: 1.2em;
	font-weight: bold;
}

.footer__logo-group img {
	width: 35px;
	height: auto;
}

.footer-about-text a {
	text-decoration: underline;
  text-underline-offset: 10%;
}

.footer-about-text li:not(:last-of-type) {
	margin-bottom: clamp(10px, 4%, 15px);
}

.footer__contact-group {
	width: 50%;
	padding-left: 5%;
	transform: translateY(-5%);
}

.footer__contact--title {
	font-size: 2em;
	font-weight: 600;
}

.footer__contact-text {
	margin: clamp(10px, 10%, 30px) 0;
}

.footer__btn {
	border: none;
}

.footer__btn:hover{
	background-color: rgb(221, 221, 221);
}

.footer__btn:hover .footer__btn--text{
	color: #004C99;
}

.footer__btn:hover .footer__btn--icon{
	border-top: solid #004C99 3px;
	border-right: solid #004C99 3px;
}

.footer__btn a{
	display: block;
	width: 100%;
	height: 100%;
}

.footer__copyright {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, -20%);
	white-space: nowrap;
}


@media (max-width:780px) {

	/* 共通仕様 */
	:root {
		font-size: 14px;
	}

	.blue-btn {
		width: 210px;
		height: 50px;
	}

	.white-btn {
		width: 210px;
		height: 50px;
	}

	/* ヘッダー */
	.header {
		padding: 0 3vw;
	}

	.header-inner {
		height: 60px;
	}

	.header__logo {}

	.header__logo a {
		gap: 8px;
	}

	.header__logo--img {
		width: 30px;
	}

	.header__logo--text {
		font-size: 1.2em;
	}

	.header__nav {
		width: 40px;
	}

	.header__nav-inner * {
		display: none;
	}

	.header__hum-icons {
		display: flex;
	}


	/* メインコンテンツ */
	.main {
		margin-top: 60px;
	}


	/* フッター */
	.footer {
		padding: 5vw 5vw clamp(60px, 12vw, 80px);
	}

	.footer-inner {
		flex-direction: column-reverse;
	}

	.footer__about-group {
		width: 100%;
		padding-right: 0;
		border-right: none;
		margin-top: 5vw;
	}

	.footer__contact-group {
		width: 100%;
		padding: 0 0 clamp(20px, 5vw, 33px) 0;
		transform: translateY(0);
		border-bottom: solid 1px #FCFCFC;
	}




}