@charset "utf-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");

/* ---------- design tokens ---------- */
:root {
	--cr-primary: #3aaecc;
	--cr-primary-light: #5bc8e8;
	--cr-primary-dark: #2a9ab8;
	--cr-orange: #f4874b;
	--cr-yellow: #f5c531;
	--cr-text-dark: #1e2939;
	--cr-text-body: #364153;
	--cr-text-muted: #4a5565;
	--cr-text-light: #6a7282;
	--cr-text-pale: #99a1af;
	--cr-tag-bg: #fff0d6;
	--cr-tag-text: #c47a1a;
	--cr-bg-light: #eef8fc;
	--cr-bg-white: #ffffff;
	--cr-inner-max: 1200px;
	--cr-header-height: 97px;
	--cr-font-body: 'Noto Sans JP', "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	--cr-font-heading: 'Zen Maru Gothic', 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
	--cr-gradient-teal: linear-gradient(135deg, var(--cr-primary-light) 0%, var(--cr-primary) 50%, var(--cr-primary-dark) 100%);
	--cr-gradient-orange: linear-gradient(135deg, #f9a86b 0%, var(--cr-orange) 50%, #e06a2e 100%);
	--cr-gradient-topbar: linear-gradient(90deg, var(--cr-primary-dark) 0%, var(--cr-primary) 50%, var(--cr-primary-light) 100%);
	--cr-shadow-sm: 0 2px 12px rgba(30, 41, 57, 0.08);
	--cr-shadow-md: 0 8px 32px rgba(30, 41, 57, 0.12);
	--cr-radius-sm: 8px;
	--cr-radius-md: 16px;
	--cr-radius-lg: 24px;
	--cr-radius-pill: 999px;
	--cr-section-pad: clamp(48px, 5.83vw, 112px);
}
/*
html{
	scroll-behavior: smooth;
}
*/
body{
	font-family: var(--cr-font-body);
	background-color: var(--cr-bg-white);
	color: var(--cr-text-body);
	padding-top: var(--cr-header-height);
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
}
body.font-sans-serif{
	font-family: var(--cr-font-body);
}

h1, h2, h3, h4, h5, h6{
	font-family: var(--cr-font-heading);
	font-weight: 900;
	color: var(--cr-text-dark);
	line-height: 1.4;
}
.main-wrap{overflow: hidden;}
body .bg_img_wrap {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
body.on .bg_img_wrap .bg_img{
	display: none;
}
body .bg_img_wrap2 {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
body.on .bg_img_wrap2 > img{
	display: none;
}

body.gjs-dashed{}
body:not(.gjs-dashed){}


a{
	display: inline-block;
	transition: ease 0.3s;
}
a:hover{
	opacity: 0.5;
}
a p,a,a i,a h1,a h2,a h3,a h4,a h5,a h6,a:hover{
	color: inherit;
}
h1,h2,h3,h4,h5,h6{
	font-family: var(--cr-font-heading);
}
/* ---------- inner container ---------- */
.cr-inner{
	max-width: var(--cr-inner-max);
	margin: 0 auto;
	padding: 0 24px;
	width: 100%;
	box-sizing: border-box;
}

/* ---------- common buttons & labels ---------- */
.btn-primary-teal,
.btn-outline-teal,
.btn-orange{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 12px 28px;
	border-radius: var(--cr-radius-pill);
	font-family: var(--cr-font-body);
	font-size: clamp(13px, 0.83vw, 16px);
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
	white-space: nowrap;
}
.btn-primary-teal{
	background: var(--cr-gradient-teal);
	color: #fff;
	box-shadow: 0 4px 16px rgba(58, 174, 204, 0.35);
}
.btn-outline-teal{
	background: transparent;
	color: var(--cr-primary);
	border: 2px solid var(--cr-primary);
}
.btn-orange{
	background: var(--cr-gradient-orange);
	color: #fff;
	box-shadow: 0 4px 16px rgba(244, 135, 75, 0.35);
}
.btn-primary-teal:hover,
.btn-outline-teal:hover,
.btn-orange:hover{
	opacity: 0.85;
	transform: translateY(-2px);
}
.btn-primary-teal p,
.btn-outline-teal p,
.btn-orange p{
	color: inherit;
	font-weight: inherit;
	font-size: inherit;
	margin: 0;
}

/* section-label base — full BEM styles below in alias section */
.section-label,
.section-label-center {
	/* styled in BEM aliases section */
}

.tag-pill{
	display: inline-block;
	padding: 6px 16px;
	border-radius: var(--cr-radius-pill);
	background-color: var(--cr-tag-bg);
	color: var(--cr-tag-text);
	font-size: clamp(12px, 0.73vw, 14px);
	font-weight: 500;
	line-height: 1.4;
}
.tag-pill p{
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	margin: 0;
}

.txt-accent-orange{color: var(--cr-orange);}
.txt-primary{color: var(--cr-primary);}
.txt-muted{color: var(--cr-text-muted);}
.txt-light{color: var(--cr-text-light);}
.txt-pale{color: var(--cr-text-pale);}

.pd_wrap{
	padding: 150px 80px 0;
}
.pd_wrap_all{
	padding: 150px 80px 150px;
}
.pd_wrap_side{
	padding-left: 80px;
	padding-right: 80px;
}
.pd_wrap_t{
	padding-top: 150px;
}
.pd_wrap_b{
	padding-bottom: 150px;
}

.cate_wrap > .cate{
	padding-top: 150px;
}

.mg_t_1{margin-top: 150px;}
.mg_t_2{margin-top: 100px;}
.mg_t_3{margin-top: 80px;}
.mg_t_4{margin-top: 50px;}
.mg_t_5{margin-top: 30px;}
.mg_b_1{margin-bottom: 150px;}
.mg_b_2{margin-bottom: 100px;}
.mg_b_3{margin-bottom: 80px;}
.mg_b_4{margin-bottom: 50px;}
.mg_b_5{margin-bottom: 30px;}
.pd_t_1{padding-top: 150px;}
.pd_t_2{padding-top: 100px;}
.pd_t_3{padding-top: 80px;}
.pd_t_4{padding-top: 50px;}
.pd_t_5{padding-top: 30px;}
.pd_b_1{padding-bottom: 150px;}
.pd_b_2{padding-bottom: 100px;}
.pd_b_3{padding-bottom: 80px;}
.pd_b_4{padding-bottom: 50px;}
.pd_b_5{padding-bottom: 30px;}

.en_title1{
}
.en_title2{
}

.default_title1{
	font-size: clamp(22px,3.0vw,42px);
}
.default_title2{
	font-size: clamp(20px,2.2vw,34px);
}
.default_title3{
	font-size: clamp(18px,2.2vw,28px);
}
.default_txt1{
	font-size: clamp(14px,1.6vw,18px);
}
.default_txt2{
	font-size: clamp(13px,1.4vw,16px);
}
.default_txt3{
	font-size: clamp(12px,1.2vw,14px);
}
.default_txt4{
	font-size: clamp(16px,2.0vw,22px);
}

.font-light{font-weight: lighter;}
.font-normal{font-weight: normal;}
.font-medium{font-weight: 500;}
.font-semibold{font-weight: 600;}
.font-bold{font-weight: bold;}
.font-black{font-weight: 900;}


/* ---------- common ---------- */
.tb_br br{display: none;}
.sp_br br{display: none;}
/* ---------- header ---------- */
.header{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--cr-header-height);
	background: var(--cr-bg-white);
	box-shadow: var(--cr-shadow-sm);
}
.header-top{
	background: var(--cr-gradient-topbar);
	color: #fff;
	height: 32px;
	display: flex;
	align-items: center;
}
.header-top .cr-inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	gap: 16px;
}
.header-top-info,
.header-top-contact{
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}
.header-top p{
	color: #fff;
	font-size: clamp(10px, 0.63vw, 12px);
	font-weight: 500;
	line-height: 1.4;
	margin: 0;
	white-space: nowrap;
}
.header-top a p{
	color: #fff;
}
.header-main{
	height: calc(var(--cr-header-height) - 32px);
	background: var(--cr-bg-white);
}
.header-main .cr-inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	gap: 24px;
}
.header-logo{
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}
.header-logo-img{
	width: clamp(36px, 2.5vw, 48px);
	flex-shrink: 0;
}
.header-logo-img img{
	width: 100%;
	height: auto;
	display: block;
}
.header-logo-text p{
	font-family: var(--cr-font-heading);
	font-size: clamp(14px, 0.94vw, 18px);
	font-weight: 900;
	color: var(--cr-text-dark);
	margin: 0;
	line-height: 1.3;
}
.header-nav{
	flex: 1;
	display: flex;
	justify-content: center;
}
.header-nav-list{
	display: flex;
	align-items: center;
	gap: clamp(16px, 1.67vw, 32px);
	list-style: none;
	margin: 0;
	padding: 0;
}
.header-nav-item a p{
	font-size: clamp(12px, 0.73vw, 14px);
	font-weight: 500;
	color: var(--cr-text-body);
	transition: color 0.3s ease;
	margin: 0;
	line-height: 1.4;
}
.header-nav-item a:hover p,
.header-nav-item.is-active a p{
	color: var(--cr-primary);
}
.header-cta{
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}
.header-cta .btn-recruit,
.header-cta .btn-contact{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 8px 20px;
	border-radius: var(--cr-radius-pill);
	font-size: clamp(11px, 0.68vw, 13px);
	font-weight: 700;
	transition: opacity 0.3s ease, transform 0.3s ease;
}
.header-cta .btn-recruit{
	background: var(--cr-gradient-orange);
	color: #fff;
}
.header-cta .btn-contact{
	background: var(--cr-gradient-teal);
	color: #fff;
}
.header-cta .btn-recruit p,
.header-cta .btn-contact p{
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	margin: 0;
}
.header-cta .btn-recruit:hover,
.header-cta .btn-contact:hover{
	opacity: 0.85;
	transform: translateY(-1px);
}

/* hamburger */
.menu-bt{
	display: none;
	position: relative;
	width: 44px;
	height: 44px;
	background: transparent;
	border: none;
	cursor: pointer;
	flex-shrink: 0;
	z-index: 1002;
}
.menu-bt span{
	display: block;
	position: absolute;
	left: 10px;
	width: 24px;
	height: 2px;
	background: var(--cr-text-dark);
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}
.menu-bt span:nth-child(1){top: 14px;}
.menu-bt span:nth-child(2){top: 21px;}
.menu-bt span:nth-child(3){top: 28px;}
.menu-bt.active span:nth-child(1){
	top: 21px;
	transform: rotate(45deg);
}
.menu-bt.active span:nth-child(2){
	opacity: 0;
}
.menu-bt.active span:nth-child(3){
	top: 21px;
	transform: rotate(-45deg);
}
.menu-bt.point-none{
	pointer-events: none;
}

/* mobile menu overlay */
.menu-wrap{
	display: none;
	position: fixed;
	inset: 0;
	z-index: 999;
	background: rgba(30, 41, 57, 0.6);
	backdrop-filter: blur(4px);
}
.menu-wrap-inner{
	position: absolute;
	top: 0;
	right: 0;
	width: min(320px, 85vw);
	height: 100%;
	background: var(--cr-bg-white);
	padding: calc(var(--cr-header-height) + 24px) 32px 40px;
	overflow-y: auto;
	box-shadow: -4px 0 24px rgba(30, 41, 57, 0.15);
}
.menu-wrap-nav{
	list-style: none;
	margin: 0;
	padding: 0;
}
.menu-wrap-nav li{
	border-bottom: 1px solid var(--cr-bg-light);
}
.menu-wrap-nav a{
	display: block;
	padding: 16px 0;
}
.menu-wrap-nav a p{
	font-size: 15px;
	font-weight: 500;
	color: var(--cr-text-dark);
	margin: 0;
}
.menu-wrap-nav a:hover p{
	color: var(--cr-primary);
}
.menu-wrap-cta{
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 32px;
}
.menu-wrap-cta a{
	width: 100%;
	text-align: center;
}

/* ---------- footer ---------- */

.footer_map{
	position: relative;
	overflow: hidden;
	width: 100%;
	height: clamp(300px, 50vh, 500px);
}
.footer_map iframe{
	position: absolute;
	width: calc(100% + 5px);
	height: calc(100% + 5px);
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.footer{
	background: #1e2939;
	padding: 0;
}
.footer-inner{
	display: grid;
	grid-template-columns: minmax(280px, 1.2fr) repeat(3, minmax(140px, 192px));
	gap: clamp(24px, 2.5vw, 48px);
}
.footer-brand{
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.footer-logo{
	display: flex;
	align-items: center;
	gap: 12px;
}
.footer-logo-img{
	width: 48px;
	flex-shrink: 0;
}
.footer-logo-img img{
	width: 100%;
	height: auto;
	display: block;
}
.footer-logo-text p{
	font-family: var(--cr-font-heading);
	font-size: clamp(16px, 1.04vw, 20px);
	font-weight: 900;
	color: var(--cr-text-dark);
	margin: 0;
}
.footer-info p{
	font-size: clamp(12px, 0.73vw, 14px);
	color: var(--cr-text-muted);
	line-height: 1.8;
	margin: 0;
}
.footer-col-title p{
	font-family: var(--cr-font-heading);
	font-size: clamp(13px, 0.83vw, 15px);
	font-weight: 900;
	color: var(--cr-text-dark);
	margin-bottom: 16px;
}
.footer-nav{
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer-nav li{
	margin-bottom: 10px;
}
.footer-nav a p{
	font-size: clamp(12px, 0.73vw, 14px);
	color: var(--cr-text-muted);
	transition: color 0.3s ease;
	margin: 0;
}
.footer-nav a:hover p{
	color: var(--cr-primary);
}
.footer-sns{
	margin-top: 8px;
}
.footer-sns a p{
	font-size: clamp(12px, 0.73vw, 14px);
	color: var(--cr-primary);
	font-weight: 500;
	margin: 0;
}
.copyright{
	background: var(--cr-primary-dark);
	color: rgba(255, 255, 255, 0.8);
	text-align: center;
	font-size: clamp(11px, 0.63vw, 12px);
	padding: 16px;
	margin: 0;
}

/* main wrap offset (alternative to body padding-top) */
.main-wrap{
	padding-top: 0;
}

/* ANIME */
.sc-anime.topin.on{
	opacity:0;
	transform: translateY(-50px);
}
.sc-anime.topin.on.active{
	animation-name: topin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.bottomin.on{
	opacity:0;
	transform: translateY(50px);
}
.sc-anime.bottomin.on.active{
	animation-name: bottomin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.leftin.on{
	opacity:0;
	transform: translateX(-50px);
}
.sc-anime.leftin.on.active{
	animation-name: leftin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.rightin.on{
	opacity:0;
	transform: translateX(50px);
}
.sc-anime.rightin.on.active{
	animation-name: rightin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.fadein.on{
	opacity:0;
}
.sc-anime.fadein.on.active{
	animation-name: fadein;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.blurin.on{
	opacity:0;
	-ms-filter: blur(6px);
	filter: blur(6px);
}
.sc-anime.blurin.on.active{
	animation-name: blurin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.blurin2.on{
	opacity:0;
	transform: translateY(50px);
	-ms-filter: blur(6px);
	filter: blur(6px);
}
.sc-anime.blurin2.on.active{
	animation-name: blurin2;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}

@keyframes topin {
	0% {
		opacity:0;
		transform: translateY(-50px);
	}
	100% {
		opacity:1;
		transform: translateY(0px);
	}
}
@keyframes bottomin {
	0% {
		opacity:0;
		transform: translateY(50px);
	}
	100% {
		opacity:1;
		transform: translateY(0px);
	}
}
@keyframes leftin {
	0% {
		opacity:0;
		transform: translateX(-50px);
	}
	100% {
		opacity:1;
		transform: translateX(0px);
	}
}
@keyframes rightin {
	0% {
		opacity:0;
		transform: translateX(50px);
	}
	100% {
		opacity:1;
		transform: translateX(0px);
	}
}
@keyframes upin {
	0% {
		transform: translateY(100%);
	}
	100% {
		transform: translateY(0);
	}
}
@keyframes fadein {
	0% {
		opacity:0;
	}
	100% {
		opacity:1;
	}
}
@keyframes fadeout {
	0% {
		opacity:1;
	}
	100% {
		opacity:0;
	}
}
@keyframes blurin {
	0% {
		opacity: 0;
		-ms-filter: blur(6px);
		filter: blur(6px);
	}
	100% {
		opacity:1;
		-ms-filter: blur(0px);
		filter: blur(0px);
	}
}
@keyframes blurin2 {
	0% {
		opacity: 0;
		transform: translateY(50px);
		-ms-filter: blur(6px);
		filter: blur(6px);
	}
	100% {
		opacity:1;
		transform: translateY(0px);
		-ms-filter: blur(0px);
		filter: blur(0px);
	}
}

/* color */
.txt-color-normal{color: #000000;}
.txt-white{color: #ffffff;}
.txt-red{color: red;}
.txt-color1{color: #FFE93C}
.txt-color2{color: #F1F1E9}
.txt-color3{color: #021745}
.txt-color4{color: #EBF5E5}
.bg-white{background-color: #ffffff;}
.bg-black{background-color: black}
.bg-color1{background-color: #FFE93C}
.bg-color2{background-color: #F1F1E9}
.bg-color3{background-color: #021745}
.bg-color4{background-color: #EBF5E5}
.border-color1{border-color: #FFE93C}
.border-color2{border-color: #F1F1E9}
.border-color3{border-color: #021745}
.border-color4{border-color: #EBF5E5}

.hvr-txt-color-normal:hover{color: #000000;}
.hvr-txt-white:hover{color: #ffffff;}
.hvr-txt-red:hover{color: red;}
.hvr-txt-color1:hover{color: #FFE93C}
.hvr-txt-color2:hover{color: #F1F1E9}
.hvr-txt-color3:hover{color: #021745}
.hvr-txt-color4:hover{color: #EBF5E5} 
.hvr-bg-white:hover{background-color: #ffffff;}
.hvr-bg-black:hover{background-color: black}
.hvr-bg-color1:hover{background-color: #FFE93C}
.hvr-bg-color2:hover{background-color: #F1F1E9}
.hvr-bg-color3:hover{background-color: #021745}
.hvr-bg-color4:hover{background-color: #EBF5E5}
.hvr-border-color1:hover{border-color: #FFE93C}
.hvr-border-color2:hover{border-color: #F1F1E9}
.hvr-border-color3:hover{border-color: #021745}
.hvr-border-color4:hover{border-color: #EBF5E5}

/* ---------- BEM aliases (header / menu / footer / section-label) ---------- */

/* section-label */
.section-label {
	display: block;
	margin-bottom: clamp(24px, 2.08vw, 40px);
}
.section-label__en-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}
.section-label__en {
	display: block;
	font-family: var(--cr-font-body);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.28em;
	color: var(--cr-primary);
	text-transform: uppercase;
	margin: 0;
	line-height: 1.5;
}
.section-label__marks {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}
.section-label__diamond {
	width: 8px;
	height: 8px;
	border-radius: 2px;
	transform: rotate(45deg);
	flex-shrink: 0;
}
.section-label__diamond--orange {
	background: linear-gradient(135deg, rgb(248, 212, 168) 0%, rgb(244, 184, 122) 100%);
}
.section-label__diamond--yellow {
	background: linear-gradient(135deg, rgb(248, 240, 168) 0%, rgb(244, 220, 106) 100%);
}
.section-label__line {
	width: 24px;
	height: 1px;
	background: var(--cr-primary);
	flex-shrink: 0;
}
.section-label h2 {
	position: relative;
	padding-left: 16px;
	font-size: clamp(28px, 1.98vw, 38px);
	font-weight: 900;
	color: var(--cr-text-dark);
	margin: 0;
}
.section-label h2::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	bottom: 8px;
	width: 4px;
	background: linear-gradient(180deg, var(--cr-primary) 0%, var(--cr-yellow) 100%);
	border-radius: 999px;
}
.section-label-center {
	display: block;
	text-align: center;
	margin-bottom: clamp(24px, 2.08vw, 40px);
}
.section-label-center .section-label__en-wrap {
	justify-content: center;
}
.section-label-center h2 {
	font-size: clamp(24px, 1.98vw, 38px);
	font-weight: 900;
	color: var(--cr-text-dark);
	margin: 0;
	padding-left: 0;
}
.section-label-center h2::before {
	display: none;
}

/* header BEM */
.header__topbar {
	background: var(--cr-gradient-topbar);
	color: #fff;
	height: 32px;
	display: flex;
	align-items: center;
}
.header__topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	gap: 16px;
}
.header__topbar-left,
.header__topbar-right {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}
.header__topbar p {
	color: #fff;
	font-size: clamp(10px, 0.63vw, 12px);
	font-weight: 500;
	line-height: 1.4;
	margin: 0;
	white-space: nowrap;
}
.header__topbar a p {
	color: #fff;
}
.header__tel,
.header__address {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.header__icon {
	width: 11px;
	height: 11px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header__icon img {
	width: 100%;
	height: 100%;
	display: block;
}
.header__main {
	height: calc(var(--cr-header-height) - 32px);
	background: var(--cr-bg-white);
}
.header__main-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	gap: 24px;
}
.header__logo {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}
.header__logo-img {
	width: clamp(36px, 2.5vw, 48px);
	flex-shrink: 0;
}
.header__logo-img img {
	width: 100%;
	height: auto;
	display: block;
}
.header__logo > p {
	font-family: var(--cr-font-heading);
	font-size: clamp(14px, 0.94vw, 18px);
	font-weight: 900;
	color: var(--cr-text-dark);
	margin: 0;
	line-height: 1.3;
}
.header__nav {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: clamp(16px, 1.67vw, 32px);
}
.header__nav-item p {
	font-size: clamp(12px, 0.73vw, 14px);
	font-weight: 500;
	color: var(--cr-text-body);
	transition: color 0.3s ease;
	margin: 0;
	line-height: 1.4;
}
.header__nav-item:hover p,
.header__nav-item.active p {
	color: var(--cr-primary);
}
.header__cta {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}
.header__cta .btn-orange,
.header__cta .btn-primary-teal {
	min-height: 40px;
	padding: 8px 20px;
	font-size: clamp(11px, 0.68vw, 13px);
	gap: 6px;
}
.header__cta a:hover p{color: #fff!important;}
.header__cta-icon {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header__cta-icon img {
	width: 100%;
	height: 100%;
	display: block;
}
.menu-wrap__cta .header__cta-icon {
	width: 14px;
	height: 14px;
}

/* menu-bt BEM (span or div) */
.menu-bt span,
.menu-bt .menu-bt__bar {
	display: block;
	position: absolute;
	left: 10px;
	width: 24px;
	height: 2px;
	background: var(--cr-text-dark);
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}
.menu-bt span:nth-child(1),
.menu-bt .menu-bt__bar:nth-child(1) { top: 14px; }
.menu-bt span:nth-child(2),
.menu-bt .menu-bt__bar:nth-child(2) { top: 21px; }
.menu-bt span:nth-child(3),
.menu-bt .menu-bt__bar:nth-child(3) { top: 28px; }
.menu-bt.active span:nth-child(1),
.menu-bt.active .menu-bt__bar:nth-child(1) {
	top: 21px;
	transform: rotate(45deg);
}
.menu-bt.active span:nth-child(2),
.menu-bt.active .menu-bt__bar:nth-child(2) {
	opacity: 0;
}
.menu-bt.active span:nth-child(3),
.menu-bt.active .menu-bt__bar:nth-child(3) {
	top: 21px;
	transform: rotate(-45deg);
}

/* menu-wrap BEM */
.menu-wrap {
	display: none;
}
.menu-wrap__inner {
	position: absolute;
	top: 0;
	right: 0;
	width: min(320px, 85vw);
	height: 100%;
	background: var(--cr-bg-white);
	padding: calc(var(--cr-header-height)) 32px 40px;
	overflow-y: auto;
	box-shadow: -4px 0 24px rgba(30, 41, 57, 0.15);
}
.menu-wrap__link {
	display: block;
	padding: 10px 0;
	border-bottom: 1px solid var(--cr-bg-light);
}
.menu-wrap__link p {
	font-size: 15px;
	font-weight: 500;
	color: var(--cr-text-dark);
	margin: 0;
}
.menu-wrap__link:hover p,
.menu-wrap__link.active p {
	color: var(--cr-primary);
}
.menu-wrap__cta {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 32px;
}
.menu-wrap__cta a {
	width: 100%;
	text-align: center;
}

/* footer BEM */
.footer__inner {
	display: grid;
	grid-template-columns: minmax(280px, 1.2fr) repeat(3, minmax(140px, 192px));
	gap: clamp(24px, 2.5vw, 48px);
	padding: clamp(48px, 3.33vw, 64px) 0;
}
.footer__brand {
	display: flex;
	flex-direction: column;
	max-width: 432px;
}
.footer__logo {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 0;
}
.footer__logo-img {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	background: #fff;
	border-radius: 50%;
	padding: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.footer__logo-img img {
	width: 44px;
	height: 44px;
	object-fit: contain;
	display: block;
}
.footer__logo > p {
	font-family: var(--cr-font-heading);
	font-size: 20px;
	font-weight: 900;
	color: var(--cr-primary);
	margin: 0;
	line-height: 1;
}
.footer__info {
	padding-top: 24px;
}
.footer__info p {
	font-size: 15px;
	color: var(--cr-text-pale);
	line-height: 1.625;
	margin: 0;
}
.footer__instagram {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 24px;
}
.footer__instagram-icon {
	width: 17px;
	height: 17px;
	flex-shrink: 0;
}
.footer__instagram-icon img {
	width: 100%;
	height: 100%;
	display: block;
}
.footer__instagram p {
	font-size: 14px;
	color: var(--cr-primary);
	font-weight: 400;
	margin: 0;
	line-height: 1.43;
}
.footer__col h3 {
	font-family: var(--cr-font-body);
	font-size: 12px;
	font-weight: 700;
	color: var(--cr-text-pale);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin: 0 0 20px;
	line-height: 1.33;
}
.footer__col a {
	display: block;
	margin-bottom: 0;
	padding-top: 12px;
}
.footer__col a:first-of-type {
	padding-top: 0;
}
.footer__col a p {
	font-size: 15px;
	font-weight: 500;
	color: #d1d5dc;
	transition: color 0.3s ease;
	margin: 0;

	line-height: 1.5;
}
.footer__col a:hover p {
	color: var(--cr-primary);
}
.footer__copyright {
	background: #1e2939;
	border-top: 1px solid #364153;
	color: #4a5565;
	text-align: center;
	font-size: 12px;
	padding: 25px 24px 24px;
}
.footer__copyright p {
	margin: 0;
	color: inherit;
	line-height: 1.33;
}

.cate-wrap .webgene-blog {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: clamp(10px, 2vw, 18px);
}

.cate-wrap .webgene-blog .webgene-item a {
  border: 1px solid #40B2CF;
  padding: 5px 16px;
  border-radius: 100px;
  background: #fff;
  transition: background-color .3s ease, border-color .3s ease, opacity .3s ease;
}

.cate-wrap .webgene-blog .webgene-item a.on {
  background-color: #40B2CF;
  border-color: #40B2CF;
}

.cate-wrap .webgene-blog .webgene-item a p {
  color: #222;
  font-weight: 500;
  line-height: 1.3;
}

.cate-wrap .webgene-blog .webgene-item a.on p {
  color: #fff;
}

.cate-wrap .webgene-blog .webgene-item a:hover {
  opacity: .8;
}

.webgene-pagination {
  width: 100%;
  padding-top: clamp(20px, 5vw, 50px);
}

.webgene-pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: clamp(16px, 3vw, 30px);
}

.webgene-pagination ul a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 46px;
  aspect-ratio: 1 / 1;
  border: 1px solid #3AAECC;
  border-radius: 50%;
  color: #3AAECC;
  font-family: "Outfit", sans-serif;
      font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  transition: background-color .3s ease, color .3s ease, opacity .3s ease;
}

.webgene-pagination ul a:hover {
  opacity: .8;
}

.webgene-pagination ul .selected a {
  pointer-events: none;
  background-color: #3AAECC;
  border-color: #3AAECC;
  color: #fff;
}

@media screen and (max-width: 576px) {
  .cate-wrap .webgene-blog .webgene-item a {
    padding: 4px 12px;
  }
  .webgene-pagination ul a {
    width: 36px;
  }
}
.privacy-bt {
    cursor: pointer;
    margin-left: 10px;
	display: inline-block;
	border-bottom: 1px solid #ccc;
}

.privacypolicy {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    box-sizing: border-box;
    padding: 100px 100px;
    background-color: rgba(51, 51, 51, 0.90);
    color: #ffffff;
    z-index: 99999;
    overflow: auto;
}
.privacypolicy .contents {
    font-family: "Funnel Sans", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.privacypolicy .contents .title {
    font-weight: 900;
    text-align: center;
    margin-bottom: clamp(20px, 5vw, 50px);
    font-size: clamp(18px, 2vw, 24px);
}
.privacypolicy .box-wrap {
    padding-top: 50px;
}
.privacypolicy .box-wrap .box:not(:last-of-type) {
    margin-bottom: 80px;
}
.privacypolicy .box-wrap a {
    display: inline-block;
    opacity: 1;
    transition: ease 0.3s;
}
.privacypolicy .box-wrap a:hover {
    opacity: 0.5;
}
.privacypolicy .box-wrap p {
    color: #fff !important;
}
.privacypolicy .close-bt {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: rgba(51, 51, 51, 1.00);
    transition: ease 0.3s;
    cursor: pointer;
}
.privacypolicy .close-bt:hover {
    opacity: 0.6
}
.privacypolicy .close-bt::before,
.privacypolicy .close-bt::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 42px;
    height: 3px;
    background-color: #ffffff;
}
.privacypolicy .close-bt::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.privacypolicy .close-bt::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.privacypolicy .box-wrap .box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid #ffffff;
    color: #fff !important;
}
.privacypolicy .box-wrap .box p a {
    color: #fff !important;
}

/* ---------- subpage common ---------- */
body.subpage {
	background: #fffdf8;
}
.sub-hero {
	position: relative;
	height: clamp(220px, 25vw, 400px);
}
.sub-hero::before,.sub-hero::after{
	content: "";
	position: absolute;
	width: clamp(100px, 10%, 250px);
	aspect-ratio: 1 / 1;
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 3;
	bottom: 0;
	transform: translateY(30%);
	opacity: 0;
}
.sub-hero::before{
	background-image: url("https://crackup-inc.com/system_panel/uploads/images/pagetitle_item1.png");
	left: 10%;
	animation-name: pagetitle_item1;
	animation-duration: 5s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
	animation-iteration-count: infinite;
}
.sub-hero::after{
	background-image: url("https://crackup-inc.com/system_panel/uploads/images/pagetitle_item2.png");
	right: 10%;
	animation-name: pagetitle_item2;
	animation-duration: 5s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
	animation-iteration-count: infinite;
}
@keyframes pagetitle_item1 {
	0% {
		transform: translateY(30%) rotate(0) translateX(0);
		opacity: 0;
	}
	25% {
		transform: translateY(30%) rotate(3deg) translateX(10%);
		opacity: 1;
	}
	50% {
		transform: translateY(30%) rotate(-3deg) translateX(20%);
	}
	85% {
		transform: translateY(30%) rotate(3deg) translateX(30%);
		opacity: 1;
	}
	100% {
		transform: translateY(30%) rotate(0) translateX(40%);
		opacity: 0;
	}
}
@keyframes pagetitle_item2 {
	0% {
		transform: translateY(30%) rotate(0) translateX(0);
		opacity: 0;
	}
	25% {
		transform: translateY(30%) rotate(-3deg) translateX(-10%);
		opacity: 1;
	}
	50% {
		transform: translateY(30%) rotate(3deg) translateX(-20%);
	}
	85% {
		transform: translateY(30%) rotate(-3deg) translateX(-30%);
		opacity: 1;
	}
	100% {
		transform: translateY(30%) rotate(0) translateX(-40%);
		opacity: 0;
	}
}

.sub-hero--sm { height: clamp(160px, 12vw, 192px); }
.sub-hero--solid {
	background: linear-gradient(135deg, #2a9ab8 0%, #3aaecc 50%, #5bc8e8 100%);
}
.sub-hero--solid .sub-hero__overlay {
	background: transparent;
}
.sub-hero__bg { position: absolute; inset: 0; }
.sub-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.sub-hero__overlay {
	position: absolute; inset: 0;
	background: rgba(58, 174, 204, 0.55);
	display: flex; align-items: center; justify-content: center;
	z-index: 1;
}
.sub-hero__inner { text-align: center; color: #fff; }
.sub-hero__en {
	font-size: 12px; font-weight: 700; letter-spacing: 0.28em;
	opacity: 0.85; margin: 0 0 12px;
}
.sub-hero h1,.sub-hero p:not(.sub-hero__en){
	font-size: clamp(32px, 2.5vw, 48px); font-weight: 900;
	color: #fff; margin: 0; line-height: 1.1;
}
.sub-hero__lead p {
	font-size: clamp(15px, 1.05vw, 18px); color: rgba(255,255,255,0.95);
	margin: 16px 0 0;
}
.sub-section { padding: clamp(60px, 8vw, 100px) 0; }
.sub-section--white { background: #fff; }
.sub-section--cream { background: #fff8ee; }
.sub-breadcrumb {
	display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
	font-size: 14px; color: #6a7282; margin-bottom: 40px;
}
.sub-breadcrumb a p { color: #3aaecc; margin: 0; }
.sub-breadcrumb__sep { color: #99a1af; }
.sub-breadcrumb__current p { color: #4a5565; margin: 0; }
.sub-pagination {
	display: flex; justify-content: center; gap: 12px;
	margin-top: 56px;
}
.sub-pagination__btn {
	width: 48px; height: 48px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	border: 1px solid #d9dee3; background: #fff;
	font-size: 16px; font-weight: 700; color: #4a5565;
}
.sub-pagination__btn.active {
	background: #3aaecc; border-color: #3aaecc; color: #fff;
}
.sub-info-table {
	background: #fff; border-radius: 16px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	overflow: hidden;
}
.sub-info-table__row {
	display: grid; grid-template-columns: 160px 1fr;
	border-bottom: 1px solid #eef2f6;
}
.sub-info-table__row:last-child { border-bottom: none; }
.sub-info-table__th,
.sub-info-table__td { padding: 20px 32px; }
.sub-info-table__th p {
	font-weight: 700; color: #1e2939; margin: 0;
}
.sub-info-table__td p {
	color: #4a5565; margin: 0; line-height: 1.8;
}
.sub-form {
	background: #fff; border-radius: 16px;
	box-shadow: 0 8px 32px rgba(30,41,57,0.08);
	padding: 48px 40px;
}
.sub-form__head { text-align: center; margin-bottom: 56px; }
.sub-form__head-en {
	font-size: 12px; font-weight: 700; letter-spacing: 0.22em;
	color: #3aaecc; margin: 0 0 8px;
}
.sub-form__head h2 {
	font-size: clamp(24px, 1.75vw, 28px); margin: 0 0 12px;
}
.sub-form__head p { font-size: 14px; color: #6a7282; margin: 0; }
.sub-form__group { margin-bottom: 40px; }
.sub-form__label {
	display: flex; align-items: center; gap: 8px;
	margin-bottom: 16px;
}
.sub-form__label p { font-weight: 700; color: #1e2939; margin: 0; }
.sub-form__required {
	font-size: 11px; font-weight: 700; color: #fff;
	background: #3AAECC; border-radius: 4px; padding: 2px 8px;
}
.sub-form__required p{
	color: #fff;
}
.sub-form__radios {
	display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.sub-form__radio {
	display: flex; align-items: center; gap: 12px;
	padding: 14px 18px; border: 1px solid #d9dee3; border-radius: 8px;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease;
}
.sub-form__radio.is-active {
	border-color: #3aaecc;
	background: #eef8fc;
}
.sub-form__radio-input {
	width: 16px; height: 16px; margin: 0; flex-shrink: 0;
	pointer-events: none;
}
.sub-form__radio p { margin: 0; font-size: 15px; color: #4a5565; }
.sub-form__input {
	width: 100%; border: none; border-bottom: 1px solid #d9dee3;
	padding: 8px 0; font-size: 15px; color: #4a5565;
	background: transparent;
}
.sub-form__input--area {
	min-height: 134px;
}
.sub-form__check {
	display: flex; align-items: center; gap: 12px;
}
.sub-form__check-input {
	width: 16px; height: 16px; flex-shrink: 0;
}
.sub-form__check p { margin: 0; font-size: 15px; color: #4a5565; }
.sub-form__submit {
	max-width: 320px;
	margin: 0 auto;
}
.sub-form__submit-btn {
	display: block;
	width: 100%;
	padding: 18px;
	border: none;
	border-radius: 999px;
	background: linear-gradient(135deg, #5bc8e8 0%, #3aaecc 50%, #2a9ab8 100%);
	color: #fff;
	font-size: 16px;
	font-weight: 900;
	font-family: 'Noto Sans JP', sans-serif;
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(58,174,204,0.35);
	text-decoration: none;
	box-sizing: border-box;
}
.sub-form__submit p { color: #fff; margin: 0; }
.sub-faq { max-width: 712px; margin: 0 auto; }
.sub-faq__item {
	border: 1px solid #d9dee3; border-radius: 12px;
	background: #fff; margin-bottom: 16px; overflow: hidden;
}
.sub-faq__q {
	display: flex; align-items: center; justify-content: space-between;
	padding: 24px; width: 100%;
}
.sub-faq__q p { font-size: 16px; font-weight: 700; color: #1e2939; margin: 0; }
.sub-faq__icon {
	width: 20px; height: 20px; flex-shrink: 0;
	border: 2px solid #3aaecc; border-radius: 50%;
	position: relative;
}
.sub-faq__icon::before,
.sub-faq__icon::after {
	content: ""; position: absolute; background: #3aaecc;
	left: 50%; top: 50%; transform: translate(-50%,-50%);
}
.sub-faq__icon::before { width: 10px; height: 2px; }
.sub-faq__icon::after { width: 2px; height: 10px; }
.sub-faq__q { cursor: pointer; }
.sub-faq__a { display: none; padding: 0 24px 24px; }
body.gjs-dashed .sub-faq__a { display: block!important; }
.sub-faq__a p { font-size: 15px; line-height: 1.9; color: #4a5565; margin: 0; }
.sub-faq__a p + p { margin-top: 12px; }
.sub-info-table__td p + p { margin-top: 6px; }
.sub-faq__item.is-open .sub-faq__a { display: block; }
.sub-faq__item.is-open .sub-faq__icon::after { display: none; }
.sub-contact-cards {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.sub-contact-card {
	background: #fff; border: 1px solid #f3f4f6; border-radius: 28px; padding: 33px;
	text-align: center; box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.sub-contact-card__icon {
	width: 56px; height: 56px; border-radius: 16px;
	margin: 0 auto 16px;
	display: flex; align-items: center; justify-content: center;
}
.sub-contact-card__icon--phone { background: #ebf7fb; }
.sub-contact-card__icon--mail { background: #fff4ed; }
.sub-contact-card__icon--location { background: #fffbe6; }
.sub-contact-card__icon img { width: 26px; height: 26px; }
.sub-contact-card h2 { font-size: 14px; font-weight: 700; color: #99a1af; margin: 0 0 8px; }
.sub-contact-card__main p {
	font-size: clamp(18px, 1.25vw, 22px); font-weight: 900;
	color: #1e2939; margin: 0 0 8px;
}
.sub-contact-card__sub p { font-size: 13px; color: #6a7282; margin: 0; line-height: 1.6; }
.sub-list-row {
	display: flex; align-items: center; gap: 0;
	border: 1px solid #eef2f6; border-radius: 12px;
	background: #fff; overflow: hidden; margin-bottom: 16px;
}
.sub-list-row__img { width: 150px; height: 150px; flex-shrink: 0; }
.sub-list-row__img img { width: 100%; height: 100%; object-fit: cover; }
.sub-list-row__body { flex: 1; padding: 0 28px; }
.sub-list-row__date p { font-size: 13px; color: #99a1af; margin: 0 0 8px; }
.sub-list-row__body h2 {
	font-size: 16px; font-weight: 700; color: #1e2939; margin: 0;
}
.sub-list-row__arrow {
	padding-right: 28px; color: #3aaecc; font-size: 18px;
}
.bloglist .webgene-blog {
  --gap: clamp(12px, 1.67vw, 32px);

  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(0, calc((100% - var(--gap) * 2) / 3))
  );
  gap: var(--gap);
  justify-content: center;
}
.sub-card-grid__card {
	background: #fff; border-radius: 16px; overflow: hidden;
	border: 1px solid #eef2f6;
}
.sub-card-grid__img { height: 220px; overflow: hidden; }
.sub-card-grid__img img { width: 100%; height: 100%; object-fit: cover; }
.sub-card-grid__body { padding: 24px; }
.sub-card-grid__meta {
	display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.sub-card-grid__meta p { font-size: 13px; color: #99a1af; margin: 0; }
.sub-card-grid__cat {
	padding: 4px 12px; border-radius: 999px;
	background: #fff0d6; font-size: 12px; color: #c47a1a;
}
.sub-card-grid__cat p { margin: 0; font-size: inherit; color: inherit; }
.sub-card-grid__body h2 {
	font-size: 15px; font-weight: 700; line-height: 1.7; margin: 0;
}
.sub-article__meta {
	display: flex; align-items: center; gap: 16px; margin-bottom: 16px;
}
.sub-article__meta p { font-size: 14px; color: #99a1af; margin: 0; }
.sub-article__cat {
	padding: 4px 12px; border-radius: 999px; background: #e8f7fc;
}
.sub-article__cat p { font-size: 12px; color: #3aaecc; margin: 0; }
.sub-article h1 {
	font-size: clamp(24px, 1.75vw, 28px); margin: 0 0 32px;
}
.sub-article__img {
	border-radius: 12px; overflow: hidden; margin-bottom: 40px;
}
.sub-article__img img { width: 100%; height: auto; display: block; }
.sub-article__body p {
	font-size: 16px; line-height: 2; color: #4a5565; margin: 0 0 24px;
}
.sub-article__hr { height: 1px; background: #eef2f6; margin: 40px 0; }
.sub-article__back {
	display: flex; justify-content: center; margin-top: 40px;
}
.sub-article__back-btn {
	display: inline-flex; align-items: center; justify-content: center;
	padding: 14px 34px; border: 2px solid #3aaecc; border-radius: 999px;
}
.sub-article__back-btn p { font-weight: 700; color: #3aaecc; margin: 0; }

@media screen and (max-width: 1080px) {
	.sub-contact-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
	.bloglist .webgene-blog{ grid-template-columns: 1fr 1fr; }
	.sub-info-table__row { grid-template-columns: 1fr; }
	.sub-info-table__th { padding-bottom: 8px; }
	.sub-form__radios { grid-template-columns: 1fr; }
}
@media screen and (max-width: 768px) {
	.bloglist .webgene-blog{ grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
	.sub-list-row { flex-direction: column; align-items: stretch; }
	.sub-list-row__img { width: 100%; height: 180px; }
	.sub-list-row__arrow { display: none; }
}

/* ---------- fac-contact (共通 CTA) ---------- */
.fac-contact {
	position: relative;
	overflow: hidden;
}
.fac-contact__overlay {
	position: relative;
	padding: clamp(80px, 5.83vw, 112px) 0;
	min-height: clamp(480px, 34vw, 653px);
	inset: 0;
	background: linear-gradient(155.25deg, rgba(58, 174, 204, 0.82) 0%, rgba(91, 200, 232, 0.78) 50%, rgba(125, 212, 239, 0.75) 100%);
	z-index: 1;
}
.fac-contact__inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
}
.fac-contact__label {
	display: block;
	color: rgba(255, 255, 255, 0.85);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.22em;
	margin-bottom: 16px;
}
.fac-contact__inner h2 {
	font-size: clamp(24px, 2.4vw, 46px);
	font-weight: 900;
	color: #fff;
	margin: 0 0 24px;
	line-height: 1.5;
}
.fac-contact__lead {
	max-width: 672px;
	margin-bottom: 40px;
}
.fac-contact__lead p {
	font-size: clamp(15px, 0.99vw, 19px);
	color: rgba(255, 255, 255, 0.95);
	line-height: 1.85;
	margin: 0;
}
.fac-contact__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	width: 100%;
}
.fac-contact__phone {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	padding: 20px 32px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.2);
	transition: opacity 0.3s ease;
}
.fac-contact__phone-icon {
	width: 26px;
	height: 26px;
	flex-shrink: 0;
}
.fac-contact__phone-icon img {
	width: 100%;
	height: 100%;
	display: block;
}
.fac-contact__phone-text {
	text-align: left;
}
.fac-contact__phone-label {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.8);
	margin: 0 0 2px;
	line-height: 1.33;
}
.fac-contact__phone-num {
	font-size: clamp(20px, 1.25vw, 24px);
	font-weight: 900;
	color: #fff;
	margin: 0;
	letter-spacing: 0.025em;
	line-height: 1.33;
}
.fac-contact__form-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 60px;
	min-width: clamp(240px, 15vw, 288px);
	padding: 14px 40px;
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 20px 12.5px rgba(0, 0, 0, 0.1), 0 8px 5px rgba(0, 0, 0, 0.1);
	transition: opacity 0.3s ease;
}
.fac-contact__form-btn p {
	font-size: 18px;
	font-weight: 900;
	color: #3aaecc;
	margin: 0;
	line-height: 1.55;
}
.fac-contact__form-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}
.fac-contact__form-icon img {
	width: 100%;
	height: 100%;
	display: block;
}
@media screen and (max-width: 768px) {
	.fac-contact__phone-num {
		font-size: clamp(20px, 5vw, 24px);
	}
	.fac-contact__form-btn {
		width: 100%;
		max-width: 320px;
	}
	.fac-contact__lead {
		padding: 0 8px;
	}
}
@media screen and (max-width: 350px) {
	.fac-contact__phone {
		flex-direction: column;
		text-align: center;
	}
	.fac-contact__phone-text {
		text-align: center;
	}
}

/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}

/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
	.pd_wrap{
		padding: 150px 60px 0;
	}
	.pd_wrap_all{
		padding: 150px 60px 150px;
	}
	.pd_wrap_side{
		padding-left: 60px;
		padding-right: 60px;
	}
	.cr-inner:not(.footer__inner){
		padding: 0 20px;
	}
	.footer__inner{
		padding-left: 50px;
		padding-right: 50px;
	}
	.header-nav-list{
		gap: 16px;
	}
	.header__nav{
		gap: 16px;
	}
	.footer-inner{
		grid-template-columns: 1.2fr repeat(3, 1fr);
		gap: 24px;
	}
	.footer__inner{
		grid-template-columns: 1.2fr repeat(3, 1fr);
		gap: 24px;
	}
/* ---------- common ---------- */
/* ---------- header ---------- */
/* ---------- footer ---------- */
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
	.mg_t_1{margin-top: 100px;}
	.mg_t_2{margin-top: 80px;}
	.mg_t_3{margin-top: 60px;}
	.mg_t_4{margin-top: 40px;}
	.mg_t_5{margin-top: 30px;}
	.mg_b_1{margin-bottom: 100px;}
	.mg_b_2{margin-bottom: 80px;}
	.mg_b_3{margin-bottom: 60px;}
	.mg_b_4{margin-bottom: 40px;}
	.mg_b_5{margin-bottom: 30px;}
	.pd_t_1{padding-top: 100px;}
	.pd_t_2{padding-top: 80px;}
	.pd_t_3{padding-top: 60px;}
	.pd_t_4{padding-top: 40px;}
	.pd_t_5{padding-top: 30px;}
	.pd_b_1{padding-bottom: 100px;}
	.pd_b_2{padding-bottom: 80px;}
	.pd_b_3{padding-bottom: 60px;}
	.pd_b_4{padding-bottom: 40px;}
	.pd_b_5{padding-bottom: 30px;}
	.footer-inner{
		grid-template-columns: 1fr 1fr;
	}
	.footer__inner{
	}
/* ---------- common ---------- */
/* ---------- header ---------- */
/* ---------- footer ---------- */
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
	.pd_wrap{
		padding: 100px 50px 0;
	}
	.pd_wrap_all{
		padding: 100px 50px 100px;
	}
	.pd_wrap_side{
		padding-left: 50px;
		padding-right: 50px;
	}
	.pd_wrap_t{
		padding-top: 100px;
	}
	.pd_wrap_b{
		padding-bottom: 100px;
	}
	.cate_wrap > .cate{
		padding-top: 100px;
	}
/* ---------- common ---------- */
	.pc_br br{display: none;}
	.tb_br br{display: block;}
	.header-nav{
		display: none;
	}
	.header__nav{
		display: none;
	}
	.header-cta{
		display: none;
	}
	.header__cta{
		display: none;
	}
	.menu-bt{
		display: block;
	}
	.header-top-info{
		display: none;
	}
	.header__topbar-left{
		display: none;
	}
	.header-top .cr-inner{
		justify-content: center;
	}
	.header__topbar-inner{
		justify-content: center;
	}
	.footer-inner{
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.footer__inner{
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.cr-inner:not(.footer__inner){
		padding: 0 16px;
	}
	.footer__col{display: none;}
	.footer__brand{
		align-items: center;
		max-width: 100%;
	}
/* ---------- header ---------- */
/* ---------- footer ---------- */
}
/* ---------- スマートフォン ---------- */
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.pd_wrap{
		padding: 80px 20px 0;
	}
	.pd_wrap_all{
		padding: 80px 20px 80px;
	}
	.pd_wrap_side{
		padding-left: 20px;
		padding-right: 20px;
	}
	.pd_wrap_t{
		padding-top: 80px;
	}
	.pd_wrap_b{
		padding-bottom: 80px;
	}
	.cate_wrap > .cate{
		padding-top: 80px;
	}
	.mg_t_1{margin-top: 80px;}
	.mg_t_2{margin-top: 60px;}
	.mg_t_3{margin-top: 50px;}
	.mg_t_4{margin-top: 30px;}
	.mg_t_5{margin-top: 20px;}
	.mg_b_1{margin-bottom: 80px;}
	.mg_b_2{margin-bottom: 60px;}
	.mg_b_3{margin-bottom: 50px;}
	.mg_b_4{margin-bottom: 30px;}
	.mg_b_5{margin-bottom: 20px;}
	.pd_t_1{padding-top: 80px;}
	.pd_t_2{padding-top: 60px;}
	.pd_t_3{padding-top: 50px;}
	.pd_t_4{padding-top: 30px;}
	.pd_t_5{padding-top: 20px;}
	.pd_b_1{padding-bottom: 80px;}
	.pd_b_2{padding-bottom: 60px;}
	.pd_b_3{padding-bottom: 50px;}
	.pd_b_4{padding-bottom: 30px;}
	.pd_b_5{padding-bottom: 20px;}
/* ---------- common ---------- */
	.pc_br br{display: none;}
	.tb_br br{display: none;}
	.sp_br br{display: block;}
	.header-top{
		display: none;
	}
	.header__topbar{
		display: none;
	}
	.header{
		height: 65px;
	}
	.header-main{
		height: 65px;
	}
	.header__main{
		height: 65px;
	}
	body{
		padding-top: 65px;
	}
	.header-logo-text p{
		font-size: 13px;
	}
	.header__logo > p{
		font-size: 13px;
	}
	.footer__inner{
		padding-left: 20px;
		padding-right: 20px;
	}
/* ---------- header ---------- */
/* ---------- footer ---------- */
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}
