@charset "utf-8";
/* CSS Document -----------------------------

 2025.03.19

--------------------------------------------*/
/* ----------------------------------------------

 * タグの設定

---------------------------------------------- */
a {
	display: inline-block;
	outline:none;
	color: #222;
	cursor: pointer;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
    transition: all .3s ease;
}
a.link {position: absolute;top: 0;left: 0;z-index: 2;width: 100%;height: 100%;}
input,
input[type="submit"],
input[type="button"],
button {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	box-sizing: border-box;
	outline: none;
	color: #222;
	font-style: normal;
	font-weight: 400;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="button"],
input[type="text"],
input[type="submit"],
input[type="image"],
textarea {
   -webkit-appearance: none;
   appearance: none;
   border-radius: 0;
   color: #222;
}
select {
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
    -webkit-appearance: none;
	 -moz-appearance: none;
    appearance: none;
}
select::-ms-expand{
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
}
/*------------------------------------------------*/
html {
	margin: 0;
	padding: 0;
	background: #fff;
	color: #222;
	font-style: normal;
	font-weight: 400;
	font-size: 62.5%;
	line-height: 1.7;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
	-webkit-font-smoodting: antialiased;
	-moz-osx-font-smoodting: grayscale;
	word-break: break-all;
}
body {font-size: clamp(14px, calc(14px + 2 * ((100vw - 375px) / 1545)), 16px);line-height: 1.7;}
h3,h4,h5 {line-height: 1.4;}
p {font-size: clamp(14px, calc(14px + 2 * ((100vw - 375px) / 1545)), 16px);line-height: 1.7;}
ul,li,th,td,dt,dd,figcaption {line-height: 1.7;}
.inner {width: 90%;max-width: 1120px;margin: 0 auto;}
.blank {
	padding-top: clamp(50px, calc(50px + 50 * ((100vw - 375px) / 1545)), 100px);
	padding-bottom: clamp(50px, calc(50px + 50 * ((100vw - 375px) / 1545)), 100px);
}
.flexbox {display: flex;flex-wrap: wrap;justify-content: space-between;}
.title_common {margin-bottom: clamp(40px, calc(40px + 10 * ((100vw - 375px) / 1545)), 50px);}
.title_common h2 {
	color: #005AAB;
	font-weight: bold;
	font-size: clamp(18px, calc(18px + 12 * ((100vw - 375px) / 1545)), 30px);
	letter-spacing: .2em;
	text-align: center;
}
a[href^="tel:"] {pointer-events: none;}
.pc,.pc2 {display: block;}
.sp,.sp2 {display: none;}
@media only screen and ( max-width : 1024px ) {
	.pc2 {display: none;}
	.sp2 {display: block;}
}
@media only screen and ( max-width : 767px ) {
	a[href^="tel:"] {pointer-events: visible;}
	.pc {display: none;}
	.sp {display: block;}
}
/*--------------------------------------------------

    header

--------------------------------------------------*/
header {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9;
	width: 100%;
	transition: .3s;
}
header .logo {width: clamp(113px, calc(113px + 100 * ((100vw - 375px) / 1545)), 213px);}
header nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(20px, calc(20px + 10 * ((100vw - 375px) / 1545)), 30px);
	width: 100%;
	padding: 10px;
}
header nav ul {
	display: flex;
	gap: clamp(20px, calc(20px + 60 * ((100vw - 375px) / 1545)), 80px);
	padding: clamp(20px, calc(20px + 10 * ((100vw - 375px) / 1545)), 30px);
	padding-right: clamp(20px, calc(20px + 60 * ((100vw - 375px) / 1545)), 80px);
	padding-left: clamp(20px, calc(20px + 60 * ((100vw - 375px) / 1545)), 80px);
	border-radius: 20px;
	background: #fff;
}
header nav ul li a {position: relative;font-size: .85vw;text-align: center;}
header nav ul li a:hover {color: #00459F;}
header nav ul li a::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: #00459F;
	transition: .3s;
}
header nav ul li a.link-current::after {width: 100%;}
header nav p a {
	position: relative;
	z-index: 1;
	padding: clamp(20px, calc(20px + 10 * ((100vw - 375px) / 1545)), 30px) 4vw;
	overflow: hidden;
	border-radius: 4em;
	background: linear-gradient(90deg, #436BD6, #00459F);
	color: #fff;
	font-weight: bold;
	font-size: .85vw;
	text-align: center;
}
header nav p a:hover {background-position: 99% 50%;color: #00459F;}
header nav p a::before {
	content: '';
	position: absolute;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
	z-index: -5;
	transform-origin: left top;
	transform: scale(0, 1);
	background: #fff;
	transition: transform .3s;
}
header nav p a:hover::before {transform-origin: left top;transform: scale(1, 1);}
#sp-menu {display: none;}
@media only screen and ( max-width : 1024px ) {
	#js-black-bg {
		display: block;
		opacity: 0;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 5;
		width: 100%;
		height: 100%;
		overflow: hidden;
		background: #005AAB;
		visibility: hidden;
		transition: opacity 0.4s, visibility 0.4s;
		cursor: pointer;
		user-select: none;
	}
	#js-black-bg.clicked {opacity: .5;visibility: visible;}
	header {height: 70px;padding: 5px 0;box-shadow: 0 0 20px rgba(0, 0, 0, 16%);background: #fff;}
	header .logo {width: 120px;}
	header nav {
		display: block;
		position: absolute;
		top: 120%;
		right: -100vw;
		z-index: 10;
		width: 70%;
		max-width: 400px;
		padding: 30px 20px 20px;
		border-radius: 10px;
		background: #fff;
		text-align: center;
		transition: all .5s linear;
	}
	header nav.clicked {right: 20px;}
	header nav ul {display: block;padding-top: 0;}
	header nav ul li {width: 100%;margin: 0;border-bottom: 1px solid #D9D9D9;}
	header nav.clicked ul li {opacity: 0;animation: fadeRigth .5s ease forwards;}
	header nav.clicked p {opacity: 0;animation: fadeRigth .5s ease forwards;animation-delay: .65s;}
	@keyframes fadeRigth {
		from {
			opacity: 0;
			-webkit-transform: translate3d(50px, 0, 0);
			transform: translate3d(50px, 0, 0);
		}
		to {
			opacity: 1;
			-webkit-transform: translate3d(0, 0, 0);
			transform: translate3d(0, 0, 0);
		}
	}
	header nav.clicked ul li:nth-of-type(1) {animation-delay: .35s;}
	header nav.clicked ul li:nth-of-type(2) {animation-delay: .4s;}
	header nav.clicked ul li:nth-of-type(3) {animation-delay: .45s;}
	header nav.clicked ul li:nth-of-type(4) {animation-delay: .5s;}
	header nav.clicked ul li:nth-of-type(5) {animation-delay: .55s;}
	header nav.clicked ul li:nth-of-type(6) {animation-delay: .6s;}
	header nav ul li a {display: block;width: 100%;padding: 15px 0;font-size: 1.2rem;}
	header nav ul li a::after {bottom: 0;}
	header nav p a {width: 100%;font-size: 1.2rem;}
	#sp-menu {
		display: flex;
		justify-content: center;
		align-items: center;
		position: absolute;
		top: 50%;
		right: 10px;
		transform: translateY(-50%);
		z-index: 20;
		width: 40px;
		height: 40px;
		cursor: pointer;
	}
	#sp-menu a {display: block;position: relative;width: 20px;height: 14px;}
	#sp-menu span {
		display: inline-block;
		position: absolute;
		left: 0;
		z-index: 2;
		width: 100%;
		height: 2px;
		background: #00459F;
		transition: all .4s;
	}
	#sp-menu span:nth-child(1) {top: 0;}
	#sp-menu span:nth-child(2) {top: 6px;}
	#sp-menu span:nth-child(3) {bottom: 0;}
	#sp-menu span:nth-child(2)::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 2px;
		background: #00459F;
		transition: all .4s;
	}
	#sp-menu.clicked span:nth-child(2) {transform: rotate(-45deg);}
	#sp-menu.clicked span:nth-child(2)::after {transform: rotate(90deg);}
	#sp-menu.clicked span:nth-child(1) {transform: translateY(20px) scale(0);}
	#sp-menu.clicked span:nth-child(3) {transform: translateY(-20px) scale(0);}
}
@media only screen and ( min-width : 1024px ) {
	#js-black-bg {display: none;}
}
/*--------------------------------------------------

    Fix Bottom

--------------------------------------------------*/
#fix_bottom {display: none;}
@media only screen and ( max-width : 500px ) {
	#fix_bottom {display: block;position: sticky;bottom: 0;z-index: 1;padding: 10px;background: #005AAB;}
	#fix_bottom ul {display: flex;justify-content: space-around;}
	#fix_bottom ul li{width: 49.8%;text-align: center;}
	#fix_bottom ul li:nth-of-type(1){border-right: 1px solid #fff;}
	#fix_bottom ul li a {color: #fff;font-weight: bold;}
}
/*--------------------------------------------------

    Footer

--------------------------------------------------*/
footer {padding: 30px 0 20px;background: #005AAB;}
footer ul {display: flex;justify-content: center;margin-bottom: 20px;}
footer ul li {line-height: 1;}
footer ul li:nth-child(1) {
	margin-right: clamp(20px, calc(20px + 10 * ((100vw - 375px) / 1545)), 30px);
	padding-right: clamp(20px, calc(20px + 10 * ((100vw - 375px) / 1545)), 30px);
	border-right: 1px solid #fff;
}
footer ul li a {color: #fff;font-size: clamp(10px, calc(10px + 3 * ((100vw - 375px) / 1545)), 13px);}
footer small {
	display: block;
	color: #fff;
	font-size: clamp(10px, calc(10px + 3 * ((100vw - 375px) / 1545)), 13px);
	text-align: center;
}
/*--------------------------------------------------

　   back top

--------------------------------------------------*/
.wrapper {position: relative;}
.page_top {
	display: block;
	position: fixed;
	bottom: 5%;
	right: 2%;
	z-index: 10;
	font-size: 1.4rem;
	letter-spacing: .14em;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
.page_top #goToTop:after {
	content: '';
	display: block;
	position: absolute;
	top: -55px;
	left: 50%;
	transform: translateX(-50%);
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #005AAB;	
	transition: .3s ease all;
}
.page_top #goToTop:before {
	content: '';
	display: block;
	position: absolute;
	top: -44px;
	left: 49.5%;
	width: 1px;
	height: 38px;
	background: #005AAB;
	transition: 0.3s ease all;
}
.page_top #goToTop:hover:after {top: -60px;}
.page_top #goToTop:hover:before {height: 43px;top: -50px;}