*, *::before, *::after {
	margin: 0;
	padding: 0;
	font-size: 100%;
	font-style: normal;
	box-sizing: border-box;
}

html {
	scroll-padding-top: 80px; /* ★ ヘッダー高さに合わせて変更 */
	overflow-x: hidden;
	overflow-y: scroll;
}

body {
	font-size: 100%;
}

img {
	vertical-align: bottom;
	max-width: 100%;
}

li {
	list-style: none;
}
@charset "UTF-8";

/* Google Fonts */

body {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	color: #333;
	background: #fff;
}

a { color: #000; text-decoration: none; }
a:hover { color: #000; }

p, li {
	line-height: 1.8;
}

@media screen and (min-width: 768px) {
	img { width: auto; }
}

@media screen and (max-width: 767px) {
	.pcOnly { display: none !important; }
}
@media screen and (min-width: 768px) {
	.spOnly { display: none !important; }
}

.sec_inner {
	margin: 0 auto;
	max-width: 1200px;
}

.sec_inner100 {
	margin: 0 auto;
	max-width: 100%;
}

@media screen and (max-width: 1200px) {
	.sec_inner { max-width: 96%; }
	.sec_inner100 { max-width: 100%; }
}

@media screen and (max-width: 768px) {
	.sec_inner { max-width: 90%; }
	.sec_inner100 { max-width: 100%; }
}

/* マージンユーティリティ */
.mt00  { margin-top:   0 !important; }
.mt10  { margin-top:  10px !important; }
.mt20  { margin-top:  20px !important; }
.mt30  { margin-top:  30px !important; }
.mt40  { margin-top:  40px !important; }
.mt50  { margin-top:  50px !important; }
.mt60  { margin-top:  60px !important; }
.mt70  { margin-top:  70px !important; }
.mt80  { margin-top:  80px !important; }
.mt90  { margin-top:  90px !important; }
.mt100 { margin-top: 100px !important; }

.mb00  { margin-bottom:   0 !important; }
.mb10  { margin-bottom:  10px !important; }
.mb20  { margin-bottom:  20px !important; }
.mb30  { margin-bottom:  30px !important; }
.mb40  { margin-bottom:  40px !important; }
.mb50  { margin-bottom:  50px !important; }
.mb60  { margin-bottom:  60px !important; }
.mb70  { margin-bottom:  70px !important; }
.mb80  { margin-bottom:  80px !important; }
.mb90  { margin-bottom:  90px !important; }
.mb100 { margin-bottom: 100px !important; }


/* ============================================
   ヘッダー共通
============================================ */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	background: transparent;
	transition: background 0.3s, border-color 0.3s;
}

.header_inner {
	display: flex;
	align-items: center;
	height: 70px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ロゴ */
.header_logo {
	flex-shrink: 0;
	margin-right: 40px;
}

.header_logo a {
	display: block;
}

.header_logo img {
	height: 44px;
	width: auto;
}

/* PCナビ */
.gnavi {
	flex: 1;
}

.nav_list {
	display: flex;
	gap: 0;
}

.nav_item a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 20px;
	font-size: 0.9375rem;
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
	position: relative;
	transition: color 0.3s;
}

/* 下線アニメーション */
.nav_item a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 20px;
	right: 20px;
	height: 2px;
	background: #56ace1;
	width: 0;
	transition: width 0.3s ease;
}

.nav_item a:hover::after {
	width: calc(100% - 40px);
}

/* ●ドット装飾 */
.nav_item a::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #56ace1;
	flex-shrink: 0;
}

.nav_item a:hover {
	color: #fff;
}

/* ハンバーガー（SP用・PC時は非表示） */
.hamburger {
	display: none;
	overflow: hidden;
}

/* SPナビ */
.gnavi_sp {
	display: none;
	position: fixed;
	top: 60px;
	left: 0;
	width: 100%;
	background: #0d1f3c;
	z-index: 9998;
	border-top: 1px solid rgba(255,255,255,0.15);
}

.gnavi_sp.is-open {
	display: block;
}

.gnavi_sp .nav_list {
	flex-direction: column;
}

.gnavi_sp .nav_item {
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.gnavi_sp .nav_item a {
	padding: 16px 5%;
	font-size: 0.9375rem;
}


/* ============================================
   ヘッダー：初期透明 → スクロールで白背景
   （トップページ・下層ページ共通）
============================================ */

/* スクロール後：白背景に（全ページ共通） */
header.is-scrolled {
	background: #fff;
	border-bottom: 1px solid #e0e0e0;
}

/* スクロール後：ナビ文字色を黒に */
header.is-scrolled .nav_item a {
	color: #333;
}

header.is-scrolled .nav_item a:hover {
	color: #333;
}

/* スクロール後：ハンバーガー線を紺に */
header.is-scrolled .hamburger_line {
	background: #0d1f3c;
}

/* スクロール後：SPナビを白背景・紺テキストに */
.gnavi_sp.is-scrolled {
	background: #fff;
	border-top: 1px solid #e0e0e0;
}

.gnavi_sp.is-scrolled .nav_item a {
	color: #0d1f3c;
}

.gnavi_sp.is-scrolled .nav_item {
	border-bottom: 1px solid #e0e0e0;
}

/* トップページ固有の初期状態（透明）は body.page-top で上書き済み */


/* ============================================
   main上部余白（PC）
   ★ トップページはMVがヘッダーに被るため余白なし
============================================ */
@media screen and (min-width: 769px) {
	/* tmpl_page_header / MVがヘッダーに被るため全ページ余白なし */
	main {
		margin-top: 0;
	}
}


/* ============================================
   ヘッダー SP
============================================ */
@media screen and (max-width: 768px) {
	header {
		height: 60px;
	}

	.header_inner {
		height: 60px;
		padding: 0 16px;
		justify-content: space-between;
	}

	.header_logo {
		margin-right: 0;
	}

	.header_logo img {
		height: 34px;
	}

	/* PCナビ非表示 */
	.gnavi {
		display: none;
	}

	/* ハンバーガー表示 */
	.hamburger {
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 6px;
		width: 60px;
		height: 60px;
		padding: 0 18px;
		cursor: pointer;
		flex-shrink: 0;
	}

	.hamburger_line {
		display: block;
		width: 24px;
		height: 2px;
		background: #fff;
		border-radius: 2px;
		transition: all 0.3s;
	}

	.hamburger.is-open .hamburger_line--top {
		transform: translateY(8px) rotate(45deg);
	}

	.hamburger.is-open .hamburger_line--mid {
		opacity: 0;
		width: 0;
		transform: scaleX(0);
	}

	.hamburger.is-open .hamburger_line--btm {
		transform: translateY(-8px) rotate(-45deg);
	}

	main {
		margin-top: 0;
	}
}


/* ============================================
   フッター本体
============================================ */
.footer_body {
	background: linear-gradient(to bottom right, #3f435f, #0d122f);
	margin-top: 90px;
}

.footer_body_inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 20px;
	display: flex;
	gap: 0;
	align-items: stretch;
}

/* 左カラム */
.footer_left {
	flex: 0 0 400px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-right: 60px;
}

.footer_company {
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 24px;
	letter-spacing: 0.05em;
}

.footer_address {
	font-size: 1rem;
	color: #fff;
	line-height: 1.9;
	margin-bottom: 16px;
}

.footer_tel,
.footer_fax {
	font-size: 1rem;
	color: #fff;
	line-height: 1.8;
}

.footer_copy {
	font-size: 1rem;
	color: #fff;
	margin-top: 40px;
}

/* 区切り線：上下パディングを無視して背景全体に伸ばす */
.footer_divider {
	width: 2px;
	background: #423f57;
	flex-shrink: 0;
	align-self: stretch;
	margin: -80px 0;
}

/* 右カラム */
.footer_right {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-left: 60px;
}

/* ナビ */
.footer_nav {
	display: flex;
	gap: 0;
	flex: 1;
}

.footer_nav_col {
	flex: 1;
}

/* カラム見出し */
.footer_nav_heading {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.125rem;
	font-weight: 400;
	color: #fff;
	margin-bottom: 20px;
	letter-spacing: 0.05em;
}

.footer_nav_heading a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s;
}

.footer_nav_heading a:hover {
	color: rgba(255,255,255,0.7);
}

.footer_nav_dot {
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #56ace1;
	flex-shrink: 0;
}

/* ナビリスト：見出しのドット幅+gap分だけ左にインデント */
.footer_nav_list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-left: 17px;
}

.footer_nav_list li a {
	font-size: 1rem;
	color: rgba(255,255,255,0.65);
	text-decoration: none;
	transition: color 0.3s;
	letter-spacing: 0.03em;
}

.footer_nav_list li a:hover {
	color: #fff;
}

/* ポリシーリンク */
.footer_policy {
	display: flex;
	justify-content: flex-end;
	gap: 40px;
	margin-top: 40px;
}

.footer_policy_link {
	font-size: 1rem;
	color: rgba(255,255,255,0.5);
	text-decoration: none;
	letter-spacing: 0.05em;
	transition: color 0.3s;
}

.footer_policy_link:hover {
	color: #fff;
}


/* ============================================
   フッター本体 SP
============================================ */
@media screen and (max-width: 768px) {

	.footer_body {
		margin-top: 0;
	}

	.footer_body_inner {
		flex-direction: column;
		padding: 60px 5% 40px;
		gap: 40px;
	}

	.footer_left {
		flex: none;
		padding-right: 0;
	}

	.footer_company {
		font-size: 5.5vw;
		margin-bottom: 16px;
	}

	.footer_address,
	.footer_tel,
	.footer_fax {
		font-size: 3.8vw;
	}

	.footer_copy {
		font-size: 3.5vw;
		margin-top: 24px;
	}

	.footer_divider {
		width: 100%;
		height: 2px;
		margin: 0;
		align-self: auto;
	}

	.footer_right {
		flex: none;
		padding-left: 0;
	}

	.footer_nav {
		flex-direction: column;
		gap: 32px;
	}

	.footer_nav_heading {
		font-size: 4.5vw;
		margin-bottom: 14px;
	}

	.footer_nav_list {
		padding-left: 17px;
	}

	.footer_nav_list li a {
		font-size: 3.8vw;
	}

	.footer_policy {
		justify-content: flex-start;
		gap: 24px;
		margin-top: 32px;
	}

	.footer_policy_link {
		font-size: 3.5vw;
	}
}


/* ============================================
   フッターCTA
============================================ */
.footer_cta {
	background: #fff;
	margin-top: 80px;
}

.footer_cta_inner {
	max-width: 1200px;
	margin: 0 auto;
	background: #edf0fa;
	padding: 80px 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* 見出しエリア */
.footer_cta_head {
	text-align: center;
	margin-bottom: 48px;
}

.footer_cta_en {
	font-size: 1.25rem;
	font-weight: 500;
	color: #56ace1;
	letter-spacing: 0.25em;
	margin-bottom: 14px;
}

.footer_cta_title {
	font-size: 2rem;
	font-weight: 400;
	color: #0d1f3c;
	letter-spacing: 0.05em;
	margin-bottom: 20px;
}

.footer_cta_lead {
	font-size: 1.25rem;
	color: #333;
	line-height: 1.8;
}

/* ボタンエリア */
.footer_cta_btns {
	display: flex;
	gap: 24px;
	margin-bottom: 24px;
	width: 100%;
	max-width: 700px;
}

/* ボタン */
.footer_cta_btn {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	border: 1px solid #0d1f3c;
	border-radius: 50px;
	background: transparent;
	color: #0d1f3c;
	font-size: 1rem;
	font-weight: 500;
	padding: 18px 28px;
	letter-spacing: 0.05em;
	text-decoration: none;
	transition: background 0.3s, color 0.3s;
}

.footer_cta_btn:hover {
	background: #0d1f3c;
	color: #fff;
}

.footer_cta_btn:hover .footer_cta_btn_arrow img {
	filter: invert(1) brightness(10);
}

/* ボタン左：青ドット */
.footer_cta_btn_dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #56ace1;
	flex-shrink: 0;
}

/* ボタン右：矢印 */
.footer_cta_btn_arrow {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	margin-left: auto;
}

.footer_cta_btn_arrow img {
	width: 20px;
	height: auto;
}

/* 電話番号エリア */
.footer_cta_tel_wrap {
	width: 100%;
	max-width: 700px;
}

.footer_cta_tel_box {
	background: #fff;
	border-radius: 50px;
	padding: 28px 48px;
	display: flex;
	align-items: center;
}

/* 左：ラベル */
.footer_cta_tel_label {
	font-size: 0.875rem;
	color: #333;
	line-height: 1.7;
	flex-shrink: 0;
	text-align: center;
}

/* 区切り線 */
.footer_cta_tel_divider {
	width: 1px;
	height: 48px;
	background: #c0c4d6;
	margin: 0 36px;
	flex-shrink: 0;
}

/* 電話番号リンク・スパン共通 */
.footer_cta_tel_link {
	display: flex;
	align-items: center;
	gap: 16px;
	text-decoration: none;
	flex: 1;
}

.footer_cta_tel_icon {
	width: 32px;
	height: auto;
	flex-shrink: 0;
}

.footer_cta_tel_num {
	font-family: 'Lato', sans-serif;
	font-size: 3rem;
	font-weight: 700;
	color: #56ace1;
	letter-spacing: 0.02em;
	line-height: 1;
}


/* ============================================
   フッターCTA SP
============================================ */
@media screen and (max-width: 768px) {

	.footer_cta {
		margin-top: 50px;
	}

	.footer_cta_inner {
		padding: 60px 5%;
	}

	.footer_cta_head {
		margin-bottom: 36px;
	}

	.footer_cta_en {
		font-size: 3.8vw;
	}

	.footer_cta_title {
		font-size: 5.5vw;
		margin-bottom: 16px;
	}

	.footer_cta_lead {
		font-size: 3.8vw;
	}

	.footer_cta_btns {
		flex-direction: column;
		gap: 16px;
		max-width: 100%;
	}

	.footer_cta_btn {
		font-size: 4vw;
		padding: 16px 24px;
	}

	.footer_cta_tel_wrap {
		max-width: 100%;
	}

	.footer_cta_tel_box {
		border-radius: 24px;
		padding: 24px;
		flex-direction: column;
		gap: 16px;
	}

	.footer_cta_tel_divider {
		width: 80px;
		height: 1px;
		margin: 0;
	}

	.footer_cta_tel_label {
		font-size: 3.8vw;
		white-space: nowrap;
	}

	.footer_cta_tel_num {
		font-size: 8vw;
	}
}

/* ============================================
   tmpl_columns / tmpl_column（Gutenberg columns対応）
   ★ 全ページ共通の構造パーツ
============================================ */
.tmpl_columns {
	display: flex;
	gap: 20px;
}

.tmpl_columns--2 { }
.tmpl_columns--3 { }
.tmpl_columns--4 { }

.tmpl_column {
	flex: 1;
	min-width: 0;
}

/* Gutenberg columns ブロック共存用 */
.wp-block-columns.tmpl_columns {
	gap: 20px;
}

.wp-block-columns.tmpl_columns .wp-block-column {
	flex-basis: auto !important;
	margin: 0 !important;
}

@media screen and (max-width: 768px) {
	.tmpl_columns {
		flex-direction: column;
	}
}
