@charset "UTF-8";

/**************************/
/* root */
/**************************/
:root {
	--base1: #1D2088;
	--base2: #00A0EA;
	--base3: #FFF100;
	--base1b: rgba(17, 28, 60, 0.25);
	--base2b: rgba(0, 160, 234, 0.25);
	--base3b: rgba(255, 241, 0, 0.25);
	--base0: #1B274A;
	--blue: #1D2088;
	--sky: #00A0EA;
	--navy: #1B274A;
	--yellow: #FFF100;
	--text: #26365b;
	--muted: #5f6d86;
	--pale-blue: #dff7ff;
	--white: #fff;
	--max: 1100px;
	--break: 750px;
}

/**************************/
/* base */
/**************************/
html {
	background: #dff7ff;
}

body {
	position: relative;
	color: var(--text);
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.02em;
	background: transparent;
	/*background:
	linear-gradient(155deg, rgba(214, 246, 255, 0.95) 0%, rgba(243, 253, 239, 0.92) 48%, rgba(255, 250, 218, 0.96) 100%);*/
	@media (max-width: 750px) {
		font-size: 14px;
	}
}

body::before {
	content: "";
	position: fixed;
	inset: -20vmax;
	z-index: 0;
	pointer-events: none;
	background: url(../../images/bg.jpg) center top / cover no-repeat;
	animation: backgroundSway 9s ease-in-out infinite alternate;
	will-change: transform;
	@media (max-width: 750px) {
		inset: -24vmax;
		animation-duration: 12s;
	}
}

@keyframes backgroundSway {
	0% {
		transform: translate3d(-3%, -1.5%, 0) scale(1.06);
	}
	35% {
		transform: translate3d(-6.5%, 4.5%, 0) scale(1.12);
	}
	70% {
		transform: translate3d(6.8%, -4%, 0) scale(1.09);
	}
	100% {
		transform: translate3d(2.6%, 5.4%, 0) scale(1.14);
	}
}

@media (prefers-reduced-motion: reduce) {
	body::before {
		animation: none;
	}
}

/**************************/
/* layout */
/**************************/
.siteWrap {
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.container {
	width: min(calc(100% - 48px), var(--max));
	margin: 0 auto;
	@media (max-width: 750px) {
		width: min(calc(96%), var(--max));
	}
}

/**************************/
/* header */
/**************************/
.siteHeader {
	padding: 0px 0 0;
	@media (max-width: 750px) {
		padding-top: 0px;
	}
}

.headerInner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0px;
}

.logo {
	display: inline-block;
	width: 350px;
	@media (max-width: 750px) {
		width: 300px;
	}
}

.logo img {
	width: 100px;
	height: auto;
	float: left;
	margin: 0 10px 0 0;
	@media (max-width: 750px) {
		width: 80px;
	}
}
.logo strong {
	display: block;
	font-size: 20px;
	font-weight: bold;
	margin: 20px 0px 0 0;
	@media (max-width: 750px) {
		font-size: 18px;
	}
}
.logo span {
	display: block;
	font-size: 14px;
	@media (max-width: 750px) {
		font-size: 12px;
	}
}

.globalNav {
	display: flex;
	align-items: center;
	gap: 44px;
	color: #273962;
	font-size: 16px;
	font-weight: 700;
	gap: clamp(0.625rem, -3.393rem + 8.57vw, 2.5rem);
	@media (max-width: 750px) {
		position: fixed;
		top: 74px;
		right: 16px;
		left: 16px;
		z-index: 10;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		border-radius: 8px;
		background: rgba(255, 255, 255, 0.96);
		box-shadow: 0 10px 30px rgba(20, 37, 77, 0.12);
	}
}

.globalNav a {
	transition: color 0.2s ease, border-color 0.2s ease;
	@media (max-width: 750px) {
		padding: 16px 20px;
		border-bottom: 1px solid rgba(24, 47, 145, 0.1);
	}
}

.globalNav a:hover {
	color: var(--sky);
}

.globalNav .navContact {
	border: 2px solid rgba(24, 47, 145, 0.45);
	padding: 8px 15px;
	@media (max-width: 750px) {
		padding: 16px 20px;
		border: 0;
	}
}
.globalNav a.navContact:hover {
	border: 2px solid  var(--sky);
	@media (max-width: 750px) {
		border: 0;
	}
}

.menuButton {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid var(--base1);
	border-radius: 4px;
	position: relative;
	@media (max-width: 750px) {
		display: block;
		position: fixed;
		top: 15px;
		right: 15px;
		z-index: 1000;
	}
}

.menuButton span,
.menuButton::before,
.menuButton::after {
	content: "";
	position: absolute;
	left: 11px;
	width: 20px;
	height: 2px;
	background: var(--blue);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.menuButton::before {
	top: 13px;
}

.menuButton span {
	top: 20px;
}

.menuButton::after {
	top: 27px;
}

.menuOpen .menuButton::before {
	transform: translateY(7px) rotate(45deg);
}

.menuOpen .menuButton span {
	opacity: 0;
}

.menuOpen .menuButton::after {
	transform: translateY(-7px) rotate(-45deg);
}

.menuOpen .globalNav {
	@media (max-width: 750px) {
		display: flex;
	}
}

/**************************/
/* page hero */
/**************************/
.pageHero {
	padding: 84px 0 80px;
	@media (max-width: 750px) {
		padding: 50px 10px;
		position: relative;
	}
}

.pageHeroInner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	@media (max-width: 750px) {
		display: block;
	}
}

.eyebrow {
	display: block;
	margin-bottom: 18px;
	color: #a5eeff;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.12em;
}

.sectionLabel {
	display: block;
	margin-bottom: 8px;
	color: var(--base2);
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.1em;
	font-family: "Barlow Semi Condensed", sans-serif;
}

.headingXl {
	color: var(--blue);
	font-size: clamp(36px, 5vw, 58px);
	font-weight: bold;
	line-height: 1.35;
}

.headingLg {
	color: var(--blue);
	font-size: clamp(34px, 4.3vw, 52px);
	font-weight: bold;
	line-height: 1.3;
	background: linear-gradient(180deg, var(--base1), var(--base2));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.lead {
	margin-top: 24px;
	color: #35446c;
	font-size: 16px;
	font-weight: normal;
	line-height: 2;
	@media (max-width: 750px) {
		margin-top: 5px;
		margin-bottom: 10px;
		font-size: 16px;
		line-height: 1.8;
	text-shadow : 
       2px  2px 1px #FFFEE5,
      -2px  2px 1px #FFFEE5,
       2px -2px 1px #FFFEE5,
      -2px -2px 1px #FFFEE5,
       2px  0px 1px #FFFEE5,
       0px  2px 1px #FFFEE5,
      -2px  0px 1px #FFFEE5,
       0px -2px 1px #FFFEE5;        /* 文字の影 */
	}
}

.heroPhoto {
	overflow: hidden;
	border-radius: 0;
	@media (max-width: 750px) {
		margin-top: 32px;
		position: absolute;
		top: 30px;
		right: -50px;
		z-index: -1;
	}
}

.heroPhoto img {
	width: 100%;
	height: 250px;
	@media (max-width: 750px) {
		width: 200px;
		height: auto;
	}
}

/**************************/
/* contact */
/**************************/
.contactBand {
	position: relative;
	margin-top: 50px;
	padding: 70px 0;
	overflow: hidden;
	background: var(--navy);
	color: var(--white);
	@media (max-width: 750px) {
		margin-top: 0px;
		padding: 48px 0;
	}
}

.contactBand::after {
	content: "CONTACT";
	position: absolute;
	top: -60px;
	right: 5%;
	color: rgba(255, 255, 255, 0.08);
	font-size: clamp(72px, 12vw, 138px);
	font-family: "Barlow Semi Condensed", sans-serif;
	font-weight: bold;
	letter-spacing: 0.02em;
	@media (max-width: 750px) {
		top: -40px;
		right: 0px;
	}
}

.contactInner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 80px;
	@media (max-width: 750px) {
		display: block;
		gap: 32px;
	}
}

.contactLabel {
	font-family: "Barlow Semi Condensed", sans-serif;
	display: block;
	margin-bottom: 22px;
	color: #00aeef;
	font-size: 17px;
	font-weight: bold;
	letter-spacing: 0.12em;
}

.contactTitle {
	font-size: clamp(28px, 4.3vw, 52px);
	font-weight: bold;
	line-height: 1.45;
}

.contactText {
	margin-top: 28px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 16px;
	line-height: 2;
	@media (max-width: 750px) {
		margin-top: 15px;
		font-size: 14px;
	}
}

.phoneCard {
	display: flex;
	flex: 0 0 430px;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 116px;
	padding: 40px 34px;
	border-radius: 12px;
	background: var(--white);
	color: var(--blue);
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
	@media (max-width: 750px) {
		margin-top: 20px !important;
		padding: 22px;
	}
}

.phoneNumber {
	font-family: "Barlow Semi Condensed", sans-serif;
	letter-spacing: 0.05em;
	font-size: clamp(30px, 4vw, 46px);
	font-weight: bold;
	line-height: 1;
}

.receptionTime {
	margin-top: 10px;
	color: #b4bbc9;
	font-size: 14px;
	font-weight: normal;
	display: inline-block;
}

.phoneIcon {
	display: flex;
	flex: 0 0 62px;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: #e8e8e8;
	color: var(--sky);
	font-size: 32px;
	@media (max-width: 750px) {
		width: 52px;
		height: 52px;
		flex-basis: 52px;
		font-size: 26px;
	}
}

/**************************/
/* footer */
/**************************/
.siteFooter {
	background: rgba(255, 250, 222, 0.95);
	text-align: center;
}

.footerLogo {
	width: 300px;
	justify-content: center;
	margin: 0 auto;
	padding: 42px 0 36px;
}
.footerLogo img {
	width: 100px;
	height: auto;
	float: left;
	margin: 0 10px 0 0;
	@media (max-width: 750px) {
		width: 100px;
	}
}
.footerLogo strong {
	display: block;
	font-size: 20px;
	font-weight: bold;
	margin: 20px 0px 0 0;
}
.footerLogo span {
	display: block;
	font-size: 14px;
}


.copyright {
	border-top: 1px solid rgba(20, 37, 77, 0.22);
	padding: 20px 0;
	color: #69728a;
	font-size: 11px;
	font-weight: 700;
}

/**************************/
/* button */
/**************************/
.btnAL {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	min-width: 200px;
	min-height: 60px;
	justify-content: center;
	padding: 0 20px 0 50px;
	border-radius: 999px;
	background: var(--white);
	color: var(--blue);
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.1em;
}

.btnAL::after {
	content: "→";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #dff7ff;
	color: var(--base0);
}

/**************************/
/* scroll animation */
/**************************/
.jsReady .scrollAnim {
	opacity: 0;
	filter: blur(8px);
	transform: translateY(34px);
	transition:
	opacity 0.9s ease,
	filter 0.9s ease,
	transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.jsReady .scrollAnim.slideLeft {
	transform: translateX(-42px);
}

.jsReady .scrollAnim.slideRight {
	transform: translateX(42px);
}

.jsReady .scrollAnim.blurIn {
	filter: blur(14px);
	transform: translateY(22px) scale(0.98);
}

.jsReady .scrollAnim.zoomIn {
	filter: blur(10px);
	transform: translateY(18px) scale(0.96);
}

.jsReady .scrollAnim.delay1 {
	transition-delay: 0.12s;
}

.jsReady .scrollAnim.delay2 {
	transition-delay: 0.24s;
}

.jsReady .scrollAnim.delay3 {
	transition-delay: 0.36s;
}

.jsReady .scrollAnim.delay4 {
	transition-delay: 0.48s;
}

.jsReady .scrollAnim.isShow {
	opacity: 1;
	filter: blur(0);
	transform: translate(0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
	.jsReady .scrollAnim {
		opacity: 1;
		filter: none;
		transform: none;
		transition: none;
	}
}

/**************************/
/* loading */
/**************************/
.loadingScreen {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100vh;
	background: #111625;
	transition: opacity 0.35s ease;
}

.loadingScreen.fadeOut {
	opacity: 0;
	pointer-events: none;
}

.loadingLogo {
	position: relative;
	width: 250px;
	height: 250px;
	@media (max-width: 750px) {
		width: 180px;
		height: 180px;
	}
}

.loadingLogo img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.loadingLogo-gray {
	filter: grayscale(100%);
	opacity: 0.25;
}

.loadingLogo-color {
	animation: colorFill 0.8s ease-in-out forwards;
}

@keyframes colorFill {
	0% {
		clip-path: inset(100% 0 0 0);
	}
	100% {
		clip-path: inset(0 0 0 0);
	}
}


/* --- pagetop --- */
.pagetop {
	position: fixed;
	bottom: 5px;
	right: 5px;
	opacity: 0;
	filter: alpha(opacity=0);
	transform: scale(0.8);
	transition: all .6s;
	z-index: 100;
	border-radius: 10px;
}

.pagetop a {
	display: table-cell;
	width: 65px;
	height: 65px;
	text-align: center;
	vertical-align: middle;
	color: #fff !important;
	font-size: 14px;
	text-decoration: none;
	background: var(--base0);
	-webkit-border-radius: 0px;
	border: 1px solid #FFF;
	border-radius: 10px;
	line-height: 1.2em;
}
.pagetop a img {
	width: 100%;
}
.pagetop.show {
	opacity: 1;
	filter: alpha(opacity=80);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	transform: scale(1);
}

.pagetop a:hover {
	text-decoration: none;
	opacity: 0.7;
	transition: all .6s;
}


/* PCとスマホの表示ON・OFF */
.pcLayer {
	display: block;
}
.spLayer {
	display: none;
}
/**** PC用の設定ここまで ****/

@media (max-width: 750px) {
	.pcLayer {
		display: none;
	}
	.spLayer {
		display: block;
	}

} /**** END media screen *****/
