@charset "UTF-8";
/****************************************
	共通
****************************************/
:root {
	--z-base: 0;
	--z-content: 10;
	--z-overlay: 100;
	--z-menu: 300;
	--z-header: 400;
	--z-max: 999;
}

html,
body,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
}

ul,
ol,
li {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	border: none;
}

a {
	text-decoration: none;
	color: #2c4fff;
}

a:hover {
	text-decoration: underline;
	color: #062fff;
}
.clearfix {
	clear: both;
}

/****************************************
	html
****************************************/
html {
	min-height: 100%;
	position: relative;
}

html.is-loading {
	overflow: hidden;
}

/****************************************
	body
****************************************/
body {
    font-family: 'Poppins', 'Zen Maru Gothic', sans-serif;
	word-wrap: break-word;
	overflow-wrap: break-word;
	margin: 0;
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

body.menu-open {
	overflow: hidden;
}

/****************************************
	common
****************************************/
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

.content {
	width:100%;
	margin:0px auto;
	max-width:1080px;
}

h1 {
	position: relative;
	padding:0 7%;
	font-size:36px;
	font-weight:400;
	letter-spacing:0.1em;
}

h1 strong {
	display:block;
	font-weight:400;
}

h1 small {
	display:block;
	letter-spacing:0.05em;
	font-size:12px;
}


h2 {
	position: relative;
	margin: 0 7%;
	padding: 0;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.1em;
}

h2 .en {
	position: relative;
	display: inline-block;
	padding-left: 20px;
}

h2 .en::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: linear-gradient(
		90deg,
		#5AA9E6 0%,
		#5AA9E6 50%,
		#7EC8E3 50%,
		#7EC8E3 100%
	);
}

h2 strong {
	display:block;
	font-weight:400;
}

h2 small {
	display: block;
	letter-spacing: 0.05em;
	font-size: 12px;
	font-weight: 400;
	padding-left: 20px; /* ← 左揃え維持 */
}

h2.p2 {
	font-size:clamp(50px, 5.5vw, 64px);
	margin: 0;
	background: rgba(0,0,0,.7);
	color: #fff;
	padding: 26px 10px;
	text-align: right;
}
h2.p2 .en {
	display: block;
	padding: 0;
}
h2.p2 .en::before {
	content: "";
	position: relative;
	left: auto;
	top: auto;
	transform: none;
	width: 0;
	height: 0;
	border-radius: 0;
	background: none;
}
h2.p2 small {
	font-size:18px;
	margin: 0;
	line-height: 1.5em;
}


h3 {
	position: relative;
	font-size: clamp(22px, 4.5vw, 36px);
	font-weight:600;
	color:#333;
	text-align:left;
	letter-spacing:0.1em;
	line-height: 1.4em;
}

h3 span {
	display:block;
}

h4 {
	position: relative;
	max-width:1080px;
	margin:10px;
	padding:5px 3px 5px 15px;
	letter-spacing:0.1em;
	font-size:14px;
	width:100%;
	border-bottom:1px solid #888;
	text-align:left;
}

.clear {
	clear:both;
}

.flex {
	display:flex;
	flex-wrap:wrap;
}

p {
	margin:0;
	letter-spacing:0.05em;
	line-height:1.5em;
}

.list-disc li {
	margin:0px 0px 0px 20px;
}

.list-disc li {
	list-style-type:disc;
}

.list-decimal li {
	margin:0px 0px 0px 20px;
}

.list-decimal li {
	list-style-type:decimal;
}

.visually-hidden {
	position:absolute;
	width:1px;
	height:1px;
	margin:-1px;
	padding:0;
	overflow:hidden;
	clip:rect(0 0 0 0);
	border:0;
}


@media screen and (max-width:768px){

	p {
		line-height:1.8em;
	}

}

@media screen and (max-width:480px){

}


/****************************************
	nav
****************************************/
nav#hb-menu {
	position: fixed;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	border-radius: 130px 0px 0px 0px;
	box-shadow: 0 0px 10px rgba(255,255,255,0.9);
	background: #fff3cb;

	display: flex;
	justify-content: center;
	align-items: center;

	opacity: 0;
	visibility: hidden;
	pointer-events: none;

	transform: translateY(100%);

	transition:
		transform .5s cubic-bezier(.2,1,.2,1),
		opacity .3s ease,
		visibility 0s linear .3s;

	overflow: hidden;
	z-index: 98;
}

body.menu-open nav#hb-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;

	transform: translateY(0);

	transition:
		transform .6s cubic-bezier(.2,1.2,.2,1),
		opacity .3s ease,
		visibility 0s;
}

nav#hb-menu .inner {
	width: 100%;
	max-height: 100%;
	min-height:100%;
	border-radius: 20px;
	overflow-y: auto;
	padding-top: 150px;
	transition: .4s;
}

nav#hb-menu .nav-logo {
	text-align:center;
	padding:30px;
}

nav#hb-menu .nav-logo img {
	width:70px;
}

nav#hb-menu ul {
	width:100%;
	max-width:300px;
	margin:30px auto 30px;
}
nav#hb-menu li {
	position:relative;
	border-top:1px solid #111;
	text-align:center;
	margin:0px 15px;
	transition:.4s;
}

nav#hb-menu li:last-child {
	border-bottom:1px solid #111;
}


nav#hb-menu li a {
	display:block;
	color:#111;
	padding:15px;
	transition:.4s;
}

nav#hb-menu li a:hover {
	text-decoration:none;
	background:#f5f5f5;
	color:#333;
	transition:.4s;
}

nav#hb-menu .nav-sns {
	text-align:center;
	margin:20px 0px 80px;
}

nav#hb-menu .nav-sns a {
	color:#111;
}

nav#hb-menu .nav-sns a:hover {
	text-decoration:none;
}

nav#hb-menu .nav-sns svg {
	margin:0px 10px;
	width:50px;
	fill: #111;
	transition: 0.4s;
}

nav#hb-menu .nav-sns svg:hover {
	fill: #c0c0c0;
}

@media screen and (max-width:768px){

	nav#hb-menu {
		width: 90%;
	}

}

@media screen and (max-width:480px){

	nav#hb-menu .inner {
		padding-top: 90px;
	}

}


/****************************************
	header
****************************************/

header {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	z-index:99;
	transition:0.4s;
}

header .header-content {
	position:relative;
	width:100%;
}

header .header-content .h-logo {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100px;
	height: 160px;
	vertical-align:middle;
	background:#fff;
	border-radius: 0 0 22px 0;
	transition: 0.4s;
}

header .header-content .h-logo img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width:80%;
	margin-right:10px;
	padding:3px;
}

header .header-content .h-logo a {
	color:#fff;
	transition: 0.4s;
}

header .header-content .h-logo a:hover {
	color:#fff;
	text-decoration:none;
	transition: 0.4s;
}


#menu-bar {
	position:absolute;
	top:30px;
	right:30px;
	width: 70px;
	height: 70px;
	padding:0px;
	border-radius: 50%;
	cursor:pointer;
	z-index:999;
	background:#211871;
	transition: 0.4s;
}


#menu-bar:hover {
	transition: all .6s;

}

#menu-trigger {
	position: absolute;
	top:13px;
	left:8px;
	width: 100%;
	height:44px;
}

#menu-trigger,
#menu-trigger span {
	display: inline-block;
	transition: all .4s;
}
#menu-trigger span {
	position: absolute;
	left: 6.5px;
	width: 58%;
	height:1px;
	background-color: #fff;
	border-radius: 4px;
}

#menu-trigger span:nth-of-type(1) {
	top: 9px;
}
#menu-trigger span:nth-of-type(2) {
	top: 20px;
}
#menu-trigger span:nth-of-type(3) {
	top: 31px;
}

body.menu-open #menu-trigger span:nth-of-type(1) {
	-webkit-transform: translateY(11px) rotate(-45deg);
	transform: translateY(11px) rotate(-45deg);
	height:2px;
}
body.menu-open #menu-trigger span:nth-of-type(2) {
	opacity: 0;
}
body.menu-open #menu-trigger span:nth-of-type(3) {
	-webkit-transform: translateY(-11px) rotate(45deg);
	transform: translateY(-11px) rotate(45deg);
	height:2px;
}


@media screen and (max-width:768px){


}

@media screen and (max-width:480px){

	header .header-content .h-logo {
		width: 70px;
		height: 110px;
	}

	#menu-bar {
		top:15px;
		right:15px;
	}

}

/****************************************
	main-content
****************************************/
.main-content {
	transform:translateX(0%);
	transition:.5s;
	display:flex;
	flex-flow:column;
	min-height:100vh;
}

body.menu-open .main-content {
	overflow: hidden;
	filter: brightness(0.45) blur(2px);
}

/*
body.menu-open .main-content {
	transform:translateX(-50%);
	transition:.5s;
}
*/

@media screen and (max-width:768px){

	/*
	body.menu-open .main-content {
		transform:translateX(-100%);
	}
	*/

}


/****************************************
	main
****************************************/
main {
	position:relative;
	flex: 1;
}

/****************************************
	footer
****************************************/
footer {
	background:#f5f5f5;
	color:#111;
}

/*
section#footer-contact {
	position:relative;
	padding:80px 40px;
	border-top:1px solid #000;
	transition:.4s;
}

section#footer-contact a {
	display:flex;
	align-items: center;
	background:#fff;
	color:#000;
	position:absolute;
	inset:0;
	transition:.4s;
}

section#footer-contact a:hover {
	text-decoration:none;
	background:#181818;
	color:#fff;
	transition:.4s;
}
*/


section#footer-contact #contact-area {
	position: relative;
	display: block;
	width: 100%;
	margin: 0px auto 50px;
	overflow: hidden;
	background: #3eb4dd;
	color:#fff;
	transition: .4s;
}

/*
section#footer-contact #contact-area:hover {
	transform: scale(1.02) translateY(-10px);
	box-shadow: 0 7px 20px rgba(0,0,0,0.4);
}
*/

section#footer-contact .contact-loop {
	position: relative;
	overflow: hidden;
	pointer-events: none;
	padding-top: clamp(120px, 26vw, 180px);
	border-bottom: 1px solid #f5f5f5;
}

section#footer-contact .contact-bg-inner {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	display: inline-flex;
	width: max-content;
	will-change: transform;
	animation: contactScroll linear infinite;
}



section#footer-contact .contact-item {
	position: relative;
	flex-shrink: 0;
	white-space: nowrap;
	padding-right: clamp(10px, 20vw, 160px);
	padding-left: clamp(10px, 15vw, 160px);
}

section#footer-contact .contact-item::before {
	content: "";
	color: #fff;
	position: absolute;
	top: 50%;
	left: 0px;
	width: 1px;
	height:100%;
	background: #fff;
	transform: translateY(-50%);
}

section#footer-contact .contact-item .en {
	font-size:clamp(22px, 4.5vw, 36px);
	letter-spacing: 0.1em;
	font-weight: 800;
}
section#footer-contact .contact-item .ja {
	font-size:clamp(12px, 2.5vw, 14px);
	font-weight: 800;
}
section#footer-contact .contact-item .txt {
	font-size:clamp(14px, 3.5vw, 18px);
	font-weight: 800;
}

@keyframes contactScroll {
	0% {
		transform: translate3d(0, -50%, 0);
	}
	100% {
		transform: translate3d(-50%, -50%, 0);
	}
}
@keyframes contactScrollReverce {
	0% {
		transform: translate3d(0, -50%, 0);
	}
	100% {
		transform: translate3d(50%, -50%, 0);
	}
}



section#footer-contact .contact-info {
	background: #f3f3f3;
	color: #3eb4dd;
	padding: 50px 20px;
	width: 90%;
	max-width: 1080px;
	margin: 40px auto;
	padding: 50px 7%;
	box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}

section#footer-contact .contact-info p {
	font-weight: 600;
}

section#footer-contact .tel-btn {
	position: relative;
	margin: 50px auto 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	background: #fff;
	color: #3eb4dd;
	padding: 14px 24px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 18px;
	text-decoration: none;
	box-shadow: 0 4px 10px rgba(0,0,0,0.2);
	width: 100%;
	max-width: 400px;
	text-align: center;
	letter-spacing: 0.05em;
	
	transition: .3s;
}

section#footer-contact .tel-btn .tel-label {
	font-size: 13px;
	font-weight: 900;
	opacity: 0.7;
	letter-spacing: 0.1em;
}

section#footer-contact .tel-btn .tel-number {
	font-size: 20px;
	font-weight: 700;
}

section#footer-contact .tel-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 18px rgba(0,0,0,0.3);
}







footer .footer-link {
	border-top:1px solid #fff;
	padding:20px 7% 5px;
	font-size:12px;
}

footer .footer-link a {
	display:inline-block;
	position:relative;
	padding-left:15px;
	color:#fff;
}

footer .footer-link a::before {
	content:"";
	margin:auto;
	position:absolute;
	top:0;
	bottom:0;
	left:0px;
	width:7px;
	height:7px;
	border-top:1px solid #fff;
	border-right:1px solid #fff;
	transform:rotate(45deg);
}

footer .copyright {
	display: flex;
	align-items: center;
	padding:5px 7% 20px;
}

footer .copyright img {
	width:50px;
	margin-right:20px;
}


footer .recaptcha {
	text-align:center;
	font-size:12px;
	padding:10px;
}

footer .recaptcha span {
	display:inline-block;
}

footer .recaptcha a {
}

@media screen and (max-width:768px){


}

@media screen and (max-width:480px){


}

/****************************************
	contact
****************************************/
.grecaptcha-badge {
	visibility: hidden;
}

