/*
Theme Name: SHIZGAS-CREDIT
Author: Your Name
Description: Original theme for Shiz Gas Finance & Insurance.
Version: 1.0.0
*/

@charset "UTF-8";
/* ==========================================================================
	1. Variables & Reset
========================================================================== */
:root {
	/* Colors : theme.json */
	--primary-color:    var(--wp--preset--color--primary);
	--accent-color:     var(--wp--preset--color--accent);
	--finance-color:    var(--wp--preset--color--finance);
	--insurance-color:  var(--wp--preset--color--insurance);
	--info-color:       var(--wp--preset--color--info);
	--bg-light:         var(--wp--preset--color--bg-light);
	--text-color:       var(--wp--preset--color--text);
	--white:            var(--wp--preset--color--white);
	--bg-white:         var(--wp--preset--color--white);
	/* theme.json 未定義色 */
	--dark:             #545454;
	--other-color:      #F7D53C;
	--warning-color:    #C33;
	--link-color:       #1D8EE7;
	--hover:            rgba(93, 161, 233, 0.3);
	--bg-gray:          #EEE;
	--border-color:     #E0E0E0;
	/* Fonts */
	--font-ja-sans: 'Noto Sans JP', sans-serif;
	--font-en-sans:  "Lato", sans-serif;;
	/* Animation & Transition */
	--transition: all 0.3s ease;
	--smooth-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
	font-size: clamp(14px, 1vw + 12px, 16px);
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	color: var(--base-color);
	font-family: var(--font-ja-sans);
	font-size: 1rem;
	line-height: 1.8;
	letter-spacing: 0.5px;
	background-color: var(--bg-white);
	overflow-x: hidden;
}
a {
	color: inherit;
	text-decoration: none;
	transition: var(--transition);
}
a.text-link {
	color: var(--link-color) !important;
}
a.underline {
	color: var(--accent-color);
	text-decoration: underline !important;
}
img {
	max-width: 100%;
	display: block;
}
.img-responsive {
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	height: auto;
	display: block;
}

/* ==========================================================================
	2. Typography
========================================================================== */
h1, h2, h3, .h1, .h2, .h3 {
	margin-bottom: 1rem;
	font-weight: 700;
}
h2, .h2 {
	margin-bottom: 2rem;
	font-weight: 700;
	font-size: clamp(2.5rem, calc(2.255813953488372rem + 0.9302325581395349vw), 3rem);
	line-height: 1.2;
}
h2.text-en {
	margin-bottom: 2rem;
	font-family: var(--font-en-sans);
	font-weight: 800;
	font-size: clamp(2.5rem, calc(2.255813953488372rem + 0.9302325581395349vw), 3rem);
	line-height: 1.2;
}
h3, .h3 {
	font-size: clamp( 1.375rem, calc( 0.8665254237288136rem + 1.059322033898305vw ), 1.6875rem )
}
h4, .h4 {
	font-size: clamp(1.25rem, calc(1.127906976744186rem + 0.46511627906976744vw), 1.5rem);
}
h5, .h5 {
	font-size: clamp( 1.125rem, calc( 0.9216101694915254rem + 0.423728813559322vw ), 1.25rem );
}
h6 {
	font-size: clamp(1rem, calc(0.9023255813953488rem + 0.3720930232558139vw), 1.2rem);
}
h4, h5, h6, .h4, .h5, .h6 {
	margin: 0 0 1rem;
	font-weight: 700 !important;
}
p {
	margin-bottom: 1rem;
	text-align: left;
}
strong, .strong {
	font-weight: 600 !important;
}
small, .small {
	font-size: .85em !important;
	line-height: 1.5;
	letter-spacing: 0;
	opacity: .8;
}
.small > span {
	font-size: .7em !important;
}
ul {
	list-style: none;
}
ul.check-list {
	margin: 0 0 1rem;
}
ul.check-list li {
	margin: 0 0 .5rem;
	position: relative;
	display: flex;
	align-items: flex-start;
}
ul.check-list li::before {
	margin-top: 7px !important;
	margin-right: 1px;
	position: static !important;
	display: inline-flex;
	align-items: center;
	transform: none !important;
	height: auto;
	font-family: 'Material Icons';
	line-height: 1;
	content: "\e834";
	color: var(--info-color);
	line-height: 1;
}
ul.arrow-list {
	margin: 0 0 1rem;
}
ul.arrow-list li {
	margin: 0 0 .5rem;
	position: relative;
	display: flex;
	align-items: center;
}
ul.arrow-list li small {
	display: inline-flex;
	font-size: .8em !important;
	letter-spacing: 0 !important;
}
ul.arrow-list li::before {
	margin-top: 7px !important;
	margin-right: 3px;
	position: static !important;
	display: inline-flex;
	align-items: center;
	transform: none !important;
	height: auto;
	font-family: 'Material Icons';
	line-height: 1;
	content: "\e315";
	color: rgba(0, 0, 0, 0.3);
	line-height: 1;
}
.text-left,
.has-text-align-left {
	text-align: left !important;
}
.text-center,
.has-text-align-center {
	text-align: center !important;
}
.text-right,
.has-text-align-right {
	text-align: right !important;
}
.text-en {
	font-family: var(--font-en-sans);
}
.text-en_strong {
	font-family: var(--font-en-sans);
	font-weight: 900;
}
.phone-number {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	font-size: 1.5em;
	font-weight: 700 !important;
	font-family: var(--font-en-sans);
	color: var(--link-color) !important;
	letter-spacing: 0 !important;
}
.phone-number .material-icons {
	margin-right: 3px;
	font-size: 1.2em;
}
.warning {
	color: var(--warning-color) !important;
}
.fw-500 {
	font-weight: 500 !important;
}
.fw-600 {
	font-weight: 600 !important;
}
.br-sp {
	display: none;
}
.icn-title {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.icn-title .material-icons {
	margin-right: 3px;
	font-size: 1.2em;
}
a:hover {
	color: var(--accent-color);
}
hr {
	margin-top: 2.5rem !important;
	margin-bottom: 2rem !important;
	border: 0;
	border-top: 3px dotted rgba(0,0,0,.2) !important;
}

/* ------------------------------------
// Custom Color Pallet
------------------------------------ */
.text-base { color: var(--base-color) !important;}
.text-primary { color: var(--primary-color) !important;}
.text-accent { color: var(--accent-color) !important;}
.text-finance { color: var(--finance-color) !important;}
.text-insurance { color: var(--insurance-color) !important;}
.text-info { color: var(--info-color) !important;}
.text-other { color: var(--other-color) !important;}
.text-white { color: var(--white) !important;}
.has-white-color {color: var(--white) !important;}
.has-insurance-color {color: var(--insurance-color) !important;}
.has-primary-color {color: var(--primary-color) !important;}
.has-finance-color {color: var(--finance-color) !important;}
.has-info-color {color: var(--info-color) !important;}
.has-pale-pink-color{color: #f78da7 !important;}
.color-cyan {color: #37b9bd !important;}
/* ==========================================================================
	3. Layout Utility
========================================================================== */
section {
	padding: 3.5rem 0;
}
section.odd {
	background-color: var(--white);
}
section.even {
	background-color: var(--bg-light);
}
.container {
	margin: 0 auto;
	padding: 0;
	width: 100%;
	max-width: 1240px;
}

/* ==========================================================================
	4. Header & Navigation
========================================================================== */
header {
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	background-color: var(--bg-white);
}
.header-inner {
	height: 80px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo-link {
	display: flex;
	align-items: center;
}
.logo-svg {
	width: auto;
	height: 40px;
	transition: var(--transition);
}
.header-logo {
	width: auto;
	height: 40px;
	transition: var(--transition);
}
/* Nav Menu (PC) */
.nav-menu {
	display: flex;
	gap: 30px;
}
.nav-item {
	position: relative;
	color: var(--primary-color);
	font-weight: 600;
	letter-spacing: 0.5px;
	cursor: pointer;
}
.nav-item > a:hover {
	color: var(--accent-color);
}
.arrow {
	margin-left: 0px;
	margin-bottom: 2px;
	display: inline-block;
	color: var(--primary-color);
	font-size: 1.2rem;
	vertical-align: middle;
	transition: transform 0.3s ease;
}
.nav-item > a:hover .arrow {
	color: var(--accent-color);
}
/* Dropdown */
.dropdown-menu {
	margin: 0;
	padding: 10px 0;
	min-width: 180px;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 10;
	border-radius: 5px;
	background: var(--bg-white);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: var(--transition);
}
.dropdown-menu li a {
	padding: 10px 20px;
	display: block;
	white-space: nowrap;
	color: var(--base-color);
	font-size: 0.9rem;
}
.dropdown-menu li a:hover {
	color: var(--accent-color);
	background-color: var(--bg-light);
}
/* Buttons */
.btn-contact {
	padding: 10px 20px 12px;
	color: var(--bg-white) !important;
	line-height: 1;
	border-radius: 50px;
	background-color: var(--primary-color);
}
.btn-contact:hover {
	background-color: var(--accent-color);
	transform: translateY(-2px);
}
/* Hamburger */
.hamburger {
	display: none;
	position: relative;
	z-index: 1002;
	cursor: pointer;
}
.bar {
	margin: 5px auto;
	width: 25px;
	height: 3px;
	display: block;
	background-color: var(--primary-color);
	transition: var(--transition);
}
.hamburger.active .bar:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}
.hamburger.active .bar:nth-child(2) {
	opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}
/* Overlay */
.overlay {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.4);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease;
}
.overlay.active {
	opacity: 1;
	visibility: visible;
}

/* ==========================================================================
	5. Main Visual
========================================================================== */
.main-visual {
	position: relative;
	overflow: hidden;
	background-color: var(--bg-white);
}
.main-visual-bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url('assets/images/header/pagehead.jpg');
	background-size: cover;
	background-position: center;
	filter: brightness(0.85);
}
.webp .main-visual-bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url('assets/images/header/pagehead.webp');
	background-size: cover;
	background-position: center;
	filter: brightness(0.85);
}
.main-visual-bg-finance {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url('assets/images/header/finance_head.jpg');
	background-size: cover;
	background-position: center;
	filter: brightness(0.85);
}
.webp .main-visual-bg-finance {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url('assets/images/header/finance_head.webp');
	background-size: cover;
	background-position: center;
	filter: brightness(0.85);
}
.main-visual-bg-hoken {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url('assets/images/header/hoken_head.jpg');
	background-size: cover;
	background-position: center;
	filter: brightness(0.85);
}
.webp .main-visual-bg-hoken {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url('assets/images/header/hoken_head.webp');
	background-size: cover;
	background-position: center;
	filter: brightness(0.85);
}
.main-visual .container {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 2;
	color: var(--bg-white);
}
/* Variant: Top Page */
.main-visual--top {
	height: calc(100vh - 80px);
	min-height: 500px;
}
.main-visual--top .main-visual-bg {
	background-image: url('assets/images/mv.jpg');
}
.main-visual--top .container {
	padding: 0 40px;
	align-items: flex-start;
}
.main-title {
	margin-bottom: 20px;
	font-weight: 700;
	font-size: clamp(2rem, 5vw + 1rem, 4.5rem);
	line-height: 1.2;
	opacity: 0;
	animation: fadeInUp 1s ease forwards;
	animation-delay: 0.5s;
}
.main-subtitle {
	font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
	opacity: 0;
	text-align: center;
	animation: fadeInUp 1s ease forwards;
	animation-delay: 1.0s;
}
.delay-300 {
	transition-delay: 0.3s;
}
/* Variant: Sub Page */
.main-visual--sub {
	height: 30vh;
	min-height: 250px;
}
.main-visual--sub .container {
	align-items: center;
	text-align: center;
}
.title-en {
	margin-bottom: 10px;
	display: inline-block;
	font-family: var(--font-en-sans);
	font-weight: 900;
	font-size: clamp( 2.5rem, calc( 0.8728813559322033rem + 3.389830508474576vw ), 3.5rem );
	line-height: 1.1;
	letter-spacing: 1px;
}
.main-title.title-ja {
	margin-bottom: 20px;
	display: inline-block;
	font-family: var(--font-ja-sans);
	font-weight: 900;
	font-size: clamp(2.5rem, 5vw, 4rem);
	line-height: 1.3;
	letter-spacing: 1px;
}
.title-ja span {
	display: inline-block;
	opacity: 0;
	transform: translateY(15px);
	animation: fadeInChar 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.title-ja span.space {
	width: 0.3em;
}
.single .title-ja {
	margin-bottom: 10px;
	display: inline-block;
	font-family: var(--font-en-sans);
	font-weight: 900;
	font-size: clamp( 2.5rem, calc( 0.8728813559322033rem + 3.389830508474576vw ), 3.5rem );
	line-height: 1.1;
	letter-spacing: 1px;
}
.title-ja {
	font-weight: 700;
	font-size: clamp( 0.8rem, calc( 0.4745762711864408rem + 0.6779661016949151vw ), 1rem );
	letter-spacing: 1px;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 1s ease, transform 1s ease;
}
.title-ja.visible {
	opacity: 0.9;
	transform: translateY(0);
}
.main-visual--sub .title-ja {
	margin-bottom: 10px;
	display: inline-block;
	font-family: var(--font-ja-sans);
	font-weight: 700;
	font-size: clamp( 2.5rem, calc( 1.6864406779661016rem + 1.694915254237288vw ), 3rem );
	line-height: 1.1;
	letter-spacing: 1px;
	opacity: 1;
	transform: none;
}
.main-visual--sub .title-ja span {
	display: inline-block;
	opacity: 0;
	transform: translateY(15px);
	animation: fadeInChar 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.main-visual--sub .title-ja span.space {
	width: 0.3em;
}
.main-visual--sub .title-en {
	display: block;
	font-family: var(--font-en-sans);
	font-weight: 700;
	font-size: clamp( 0.8rem, calc( 0.4745762711864408rem + 0.6779661016949151vw ), 1rem );
	letter-spacing: 1px;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 1s ease, transform 1s ease;
}
.main-visual--sub .title-en.visible {
	opacity: 0.9;
	transform: translateY(0);
}
@media (max-width: 768px) {
	.main-visual-bg {
		background-image: url('assets/images/header/pagehead_sp.jpg') !important;
		background-size: cover;
		background-position: center;
		filter: brightness(0.85);
	}
	.webp .main-visual-bg {
		background-image: url('assets/images/header/pagehead_sp.webp') !important;
		background-size: cover;
		background-position: center;
		filter: brightness(0.85);
	}
	.main-visual-bg-finance {
		background-image: url('assets/images/header/finance_head_sp.jpg') !important;
		background-size: cover;
		background-position: center;
		filter: brightness(0.85);
	}
	.webp .main-visual-bg-finance {
		background-image: url('assets/images/header/finance_head_sp.webp') !important;
		background-size: cover;
		background-position: center;
		filter: brightness(0.85);
	}
	.main-visual-bg-hoken {
		background-image: url('assets/images/header/hoken_head_sp.jpg') !important;
		background-size: cover;
		background-position: center;
		filter: brightness(0.85);
	}
	.webp .main-visual-bg-hoken {
		background-image: url('assets/images/header/hoken_head_sp.webp') !important;
		background-size: cover;
		background-position: center;
		filter: brightness(0.85);
	}
}

/* ==========================================================================
	6. Sections - Top Page
========================================================================== *
/* section.greeting */
.stylish-greeting {
	padding: 100px 20px;
	position: relative;
	overflow: hidden;
}
.greeting-container {
	margin: 0 auto;
	max-width: 900px;
	position: relative;
	z-index: 2;
}
.greeting-head {
	margin-bottom: 30px;
	text-align: center;
}
.greeting-head h2 {
	margin-bottom: 30px;
	font-size: 2.8rem;
	line-height: 1.5;
	color: #004098;
	font-feature-settings: "palt";
	letter-spacing: 0.1em;
}
.greeting-head .lead-text {
	padding: 15px 40px;
	font-size: 1.1rem;
	color: var(--dark);
	letter-spacing: 0.1em;
	display: inline-block;
	border-top: 1px solid #CCC;
	border-bottom: 1px solid #CCc;
}
.greeting-body {
	margin: 0 auto;
	padding: 40px;
	max-width: 700px;
	font-size: 1rem;
	line-height: 2.2;
	color: #444;
	text-align: justify;
	background: #FFF;
	box-shadow: 0 15px 30px rgba(0,0,0,0.03);
	border-radius: 5px;
}
.stylish-greeting::before {
	content: "MISSON";
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	font-family: var(--font-en-sans);
	font-weight: 900;
	font-size: clamp( 6rem, calc( 1.1186440677966099rem + 10.16949152542373vw ), 9rem );
	color: rgba(140, 194, 23, 0.15);
	letter-spacing: -0.5px !important;
	z-index: 1;
	pointer-events: none;
	white-space: nowrap;
}
/* --- スマホ対応 --- */
@media (max-width: 768px) {
	.stylish-greeting {
		padding: 60px 10px;
	}
	.greeting-head h2 {
		font-size: 1.65rem;
		line-height: 1.45;
		letter-spacing: 0.5px;
	}
	.greeting-head .lead-text {
		font-size: 0.9rem;
		padding: 10px 0;
		width: 100%;
		border-left: none;
		border-right: none;
	}
	.stylish-greeting::before {
		font-size: 2.8rem;
		top: 20px;
	}
	.greeting-body {
		padding: 25px;
		text-align: left;
	}
}
/* Hero Split */
.hero-split {
	padding: 0;
	width: 100%;
	min-height: 600px;
	display: flex;
	flex-wrap: wrap;
}
.split-item {
	min-width: 300px;
	min-height: 600px;
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
}
.split-item img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	transition: transform 0.8s ease;
}
.split-item:hover img {
	transform: scale(1.05);
}
.split-item::after {
	width: 100%;
	height: 100%;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background-color: rgba(41, 66, 102, 0.35);
	opacity: 0;
	transition: var(--transition);
	pointer-events: none;
}
.split-item.split-insurance::after {
	width: 100%;
	height: 100%;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background-color: rgba(27, 73, 29, 0.35);
	opacity: 0;
	transition: var(--transition);
	pointer-events: none;
}
.split-item:hover::after {
	opacity: 1;
}
.split-caption {
	padding: 40px;
	max-width: 80%;
	position: relative;
	z-index: 2;
	color: var(--bg-white);
	text-align: center;
	border-radius: 8px;
	backdrop-filter: blur(5px);
}
.split-caption h2 {
	margin-bottom: 15px;
	font-size: clamp( 36px, calc( 34.26589595375722px + 0.46242774566473993vw ), 40px );
}
.split-finance .split-caption {
	background: rgba(29, 142, 231, 0.85);
}
.split-insurance .split-caption {
	background: rgba(140, 194, 23, 0.85);
}
.split-caption p {
	margin-bottom: .5rem;
	text-align: left;
}
/* News Section */
.news-section {
	width: 100%;
	background-color: var(--bg-light);
}
.news-section .container {
	padding-top: 4rem;
	padding-bottom: 4rem;
}
.section-title {
	margin-bottom: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: var(--primary-color);
	text-align: center;
}
.section-title-en {
	margin-bottom: 10px;
	font-family: var(--font-en-sans);
	font-weight: 900;
	font-size: clamp(2.5rem, 5vw, 3rem);
	line-height: 1;
	letter-spacing: 1px;
}
.section-title-ja {
	font-weight: 500;
	font-size: 0.9rem;
	letter-spacing: 1px;
	opacity: 0.8;
	display: block;
}
.tabs {
	margin-bottom: 30px;
	display: flex;
	justify-content: center;
	gap: 10px;
}
.tab-btn {
	padding: 10px 30px;
	color: var(--primary-color);
	font-weight: 500;
	font-size: 1rem;
	border: 1px solid var(--primary-color);
	border-radius: 5px;
	background-color: #FFF;
	cursor: pointer;
	transition: var(--transition);
}
.tab-btn.active,
.tab-btn:hover {
	color: var(--bg-white);
	background-color: var(--primary-color);
}
.category-news .tab-news {
	padding: 10px 30px;
	color: var(--white);
	font-weight: 500;
	font-size: 1rem;
	border: 1px solid var(--primary-color);
	border-radius: 5px;
	background-color: var(--primary-color);
	cursor: pointer;
	transition: var(--transition);
}
.tab-finance,
.tab-finances-news {
	color: var(--finance-color);
	border-color: var(--finance-color);
}
.tab-finance.active,
.tab-finance:hover,
.tab-finances-news.active,
.tab-finances-news:hover {
	color: var(--bg-white);
	background-color: var(--finance-color) !important;
}
.tab-insurance,
.tab-insurance-news {
	color: var(--insurance-color);
	border-color: var(--insurance-color);
}
.tab-insurance.active,
.tab-insurance:hover,
.tab-insurance-news.active,
.tab-insurance-news:hover {
	color: var(--bg-white);
	background-color: var(--insurance-color) !important;
}
.tab-other {
	color: var(--other-color);
	border-color: var(--other-color);
}
.tab-other.active,
.tab-other:hover {
	color: var(--bg-white);
	background-color: var(--other-color) !important;
}
.tab-content {
	padding: 30px;
	display: none;
	border-radius: 8px;
	background: var(--bg-white);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	animation: fadeIn 0.5s;
}
.tab-content.active {
	display: block;
}
.news-list li {
	padding: 15px 0;
	display: flex;
	align-items: center;
	gap: 20px;
	border-bottom: 1px solid #EEE;
}
.news-list li:last-child {
	border-bottom: none;
}
.news-date {
	color: #888;
	font-size: 0.9rem;
	font-family: var(--font-en-sans);
	white-space: nowrap;
}
.news-title {
	font-weight: 500;
	font-size: 1rem;
}
.news-tag {
	padding: 4px 8px;
	color: #FFF;
	font-size: 0.75rem;
	border-radius: 5px;
	background: #CCC;
}
.other-tag {
	padding: 4px 8px;
	color: #FFF;
	font-size: 0.75rem;
	border-radius: 5px;
	background: #CCC;
}
.tag-fin {
	color: var(--white);
	background: var(--finance-color);
}
.tag-ins {
	color: var(--white);
	background: var(--insurance-color);
}
.tag-other {
	color: var(--white);
	background: var(--other-color);
}
/* Grid Section */
.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.grid-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
/* Insurance Section */
.insurance-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.insurance-grid .custom-card {
	background-color: #FFF;
}
.insurance-grid .custom-card .card-header {
	background-color: var(--finance-color) !important;
}
.insurance-grid .custom-card .card-header .card-title {
	margin: 0;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	color: #FFF !important;
	line-height: 1.2;
	font-size: 1.3em;
	font-weight: 500 !important;
	text-align: center !important;
}
.insurance-grid .custom-card .card-header .card-title .material-icons {
	margin-right: 3px;
	font-size: 1.3em;
}
.insurance-grid .custom-card .card-body {
	padding: 10px 20px;
}
.insurance-grid .custom-card .card-body ul {
	margin: 0;
}
.insurance-grid .custom-card .card-body ul li {
	margin: 0 0 5px;
}
.insurance-grid .custom-card .card-body a:has(img) {
	display: inline-block;
	overflow: hidden;
}
.insurance-grid .custom-card .card-body a img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
}
.insurance-grid .custom-card .card-body a:hover img {
	transform: scale(1.02);
	opacity: 0.85;
}
/* Banner Section */
.banner-section {
	width: 100%;
}
.banner-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}
.banner-grid.w-100 {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 0px;
}
.banner-grid.w-50 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}
.banner-item {
	margin: 0 0 .5rem;
	display: blaock;
	color: var(--dark);
	font-size: .8rem;
	transition: var(--transition);
}
.banner-item:hover {
	transform: translateY(-5px);
}
.banner-item img.plus-border-orange {
	border: 3px solid var(--info);
}
.banner-item img.plus-border-green {
	border: 3px solid var(--insurance-color);
}

/* ==========================================================================
	7. Sections - Pages
========================================================================== */
.page-content {
	padding: 20px 0;
}
.content-block {
	margin-bottom: 20px;
}
.content-block:last-child {
	margin-bottom: 0;
}
.block-title {
	margin-bottom: 20px;
	padding-bottom: 10px;
	color: var(--primary-color);
	font-size: 1.8rem;
	border-bottom: 2px solid var(--primary-color);
}
.map-container {
	width: 100%;
	height: 400px;
	border-radius: 8px;
	background-color: #EEE;
	overflow: hidden;
}
.map-container iframe {
	width: 100%;
	height: 100%;
	border: 0;
}
/* company */
.notice-grid {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	margin-top: 30px;
}
.notice-col {
	width: 48%;
}
.sub-title,
.notice-sub-title {
	padding-left: 10px;
	border-left: 5px solid var(--finance-color);
}
.notice-list li {
	margin-bottom: 10px;
}
.notice-list li a {
	padding: 1rem 1rem;
	width: 100%;
	line-height: 1.2;
	background-color: var(--bg-gray);
	border: 2px solid rgba(0, 0, 0, 0.1);
	border-radius: 5px;
}
.notice-list li a:hover {
	color: #FFF !important;
	background-color: var(--finance-color);
}
@media (max-width: 768px) {
	.notice-grid {
		display: block;
	}
	.notice-col {
		margin-bottom: 40px;
		width: 100%;
	}
	.notice-col:last-child {
		margin-bottom: 0;
	}
}
/* joint-use */
.joint-use .page-content h4 {
	margin-bottom: .5rem;
}
.joint-use .page-content p {
	margin-bottom: .5rem;
}

/* ==========================================================================
	8. content parts
========================================================================== *
/* card */
.custom-card {
	border: none;
	border-radius: 5px !important;
	background: #FFF;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	overflow: hidden;
	height: 100%;
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards;
	box-shadow: 0 7px 14px rgba(0,0,0,0.1);
}
.custom-card.insurance-list {
	background-color: #F5F5F5;
}
.custom-card:hover,
.products-list .card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.custom-card figure {
	display: flex;
}
.custom-card img {
	margin-bottom: 0 !important;
}
.img-link {
	display: block;
	overflow: hidden;
	height: 240px;
	position: relative;
}
.img-link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.custom-card:hover .img-link img {
	transform: scale(1.1);
}
.img-link::after {
	content: '';
	position: absolute;
	top: 0; left: 0; width: 100%; height: 100%;
	background: rgba(0,0,0,0.1);
	opacity: 0;
	transition: opacity 0.3s;
}
.custom-card:hover .img-link::after {
	opacity: 1;
}
.custom-card .card-header {
	margin: 0 !important;
	padding: 1.2rem .5rem !important;
}
.custom-card .card-title {
	margin: 0 !important;
	color: #FFF;
	font-weight: 700 !important;
}
.custom-card .card-body {
	padding: 1.8rem;
	display: flex;
	flex-direction: column; /* ボタンを下に配置するため */
}
.custom-card .card-text {
	color: #666;
	margin-bottom: 20px;
	flex-grow: 1;
}
.custom-card .card-body button.learn-more {
	margin-left: auto;
	margin-bottom: 0 !important;
}
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/* section Design */
.overlap-wrapper {
	margin-bottom: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
/* 最後の要素だけ下の余白を消す */
.overlap-wrapper:last-child {
	margin-bottom: 0;
}
/* --- 2つ目（偶数番目）の反転設定 --- */
.overlap-wrapper.reverse {
	flex-direction: row-reverse;
}
.overlap-wrapper.reverse .overlap-content {
	margin-left: 0;
	margin-right: -10%;
}
.js-anim {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
	will-change: opacity, transform;
}
.js-anim.delay {
	transition-delay: 0.2s;
}
.js-anim.is-active {
	opacity: 1;
	transform: translateY(0);
}
.overlap-img {
	width: 80%;
	position: relative;
	z-index: 1;
}
.overlap-img img {
	margin-bottom: 0 !important;
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	aspect-ratio: 16 / 9;
	border-radius: 5px;
}
.overlap-content {
	margin-left: -10%;
	padding: 50px;
	width: 60%;
	background-color: #FFFfff;
	box-sizing: border-box;
	z-index: 2;
	position: relative;
	border-radius: 5px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}
.overlap-content .en-sub {
	margin-bottom: 15px;
	display: block;
	font-family: var(--font-en-sans);
	color: #005bac;
	font-size: 0.85rem;
	letter-spacing: 0.2em;
	font-weight: 700;
}
.overlap-content .jp-title {
	margin: 0 0 25px;
	font-size: 2rem;
	line-height: 1.4;
	color: #333;
}
.overlap-content .desc {
	margin-bottom: 40px;
	font-size: 0.95rem;
	line-height: 2;
	color: #666;
}
.btn-arrow {
	padding: 15px 40px;
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: #FFF;
	font-size: 0.9rem;
	letter-spacing: 0.1em;
	font-family: "Montserrat", sans-serif;
	transition: all 0.3s ease;
	border-radius: 50px;
	background-color: var(--insurance-color);
}
.btn-arrow .icon-arrow {
	margin-left: 10px;
	transition: transform 0.3s ease;
	display: inline-block;
}
.btn-arrow:hover {
	color: #FFF !important;
	transform: translateY(-2px);
	background-color: var(--finance-color);
	box-shadow: 0 5px 15px rgba(0, 91, 172, 0.3);
}
.btn-arrow:hover .icon-arrow {
	transform: translateX(5px);
}
@media (max-width: 768px) {
	.overlap-wrapper,
	.overlap-wrapper.reverse {
		margin-bottom: 80px;
		display: block;
	}
	.overlap-img {
		width: 100%;
		margin-bottom: 0;
	}
	.overlap-content,
	.overlap-wrapper.reverse .overlap-content {
		margin: 0 auto;
		margin-top: -40px;
		padding: 40px 30px;
		margin-right: auto;
		margin-left: auto;
		width: 90%;
	}
	.overlap-content .jp-title {
		font-size: 1.6rem;
	}
}
/* page fv content */
.fv-content {
	padding: 20px 0;
	position: relative;
	overflow: hidden;
}
.fv-content .container {
	margin: 0 auto;
	max-width: 900px;
	position: relative;
	z-index: 2;
}
.fv-content .fv-head {
	margin-bottom: 30px;
	text-align: center;
}
.fv-head h2 {
	margin-bottom: 30px;
	font-size: 2.8rem;
	line-height: 1.5;
	color: #004098;
	font-feature-settings: "palt";
	letter-spacing: 0.1em;
}
.fv-head .lead-text {
	padding: 15px 40px;
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--dark);
	letter-spacing: 0.1em;
	display: inline-block;
	border-top: 1px solid #CCC;
	border-bottom: 1px solid #CCc;
}
.fv-body {
	margin: 0 auto;
	padding: 40px;
	max-width: 700px;
	font-size: 1rem;
	line-height: 2.2;
	color: #444;
	text-align: justify;
	background: #FFF;
	box-shadow: 0 15px 30px rgba(0,0,0,0.03);
	border-radius: 5px;
}
/* --- スマホ対応 --- */
@media (max-width: 768px) {
	.fv-content {
		padding: 60px 10px;
	}
	.fv-head h2 {
		font-size: 1.65rem;
		line-height: 1.45;
		letter-spacing: 0.5px;
	}
	.fv-head .lead-text {
		font-size: 0.9rem;
		padding: 10px 0;
		width: 100%;
		border-left: none;
		border-right: none;
	}
	.fv-body {
		padding: 25px;
		text-align: left;
	}
}
.button {
	padding: 10px 30px;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	color: var(--base-color);
	font-weight: 500;
	font-size: .95em;
	background-color: var(--bg-gray);
	border: 1px solid var(--dark);
	border-radius: 5px;
	cursor: pointer;
	transition: var(--transition);
}
.button .material-icons {
	margin-right: 2px;
	font-size: 1.2em;
	color: #C33;
}
.button.active, .button:hover {
	color: var(--bg-white);
	background-color: var(--primary-color);
}

/* ==========================================================================
	9. Single Post & Archive Styles
========================================================================== *
//* Single Post */
.single-container {
	margin: 0 auto;
	max-width: 100%;
}
.single-header {
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border-color);
	box-shadow: none;
}
.single-meta {
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 15px;
	font-family: var(--font-en-sans);
}
.single-date {
	color: #888;
	font-weight: 500;
}
.single-cat {
	padding: 4px 10px;
	color: var(--bg-white);
	font-size: 0.8rem;
	border-radius: 5px;
	background: var(--primary-color);
}
.single-title {
	margin-bottom: 0;
	font-size: clamp(1.5rem, 3vw, 2rem);
	line-height: 1.4;
}
.post-content h2 {
	font-size: clamp( 2.2rem, calc( 1.8745762711864413rem + 0.6779661016949143vw ), 2.4rem );
}
.post-content p {
	margin-bottom: 1.5rem;
	line-height: 1.8;
}
.post-content img {
	margin-bottom: 20px;
	height: auto;
	border-radius: 5px;
}
.post-content figure.m-0 img {
	margin: 0 0 10px !important;
}
.post-content figure.img-responsive img {
	margin: 0 auto 5px !important;
}
.post-navigation {
	margin-top: 60px;
	padding-top: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	border-top: 1px solid var(--border-color);
}
.post-navigation a {
	padding: 10px 20px;
	display: inline-block;
	color: var(--base-color);
	font-size: 0.9rem;
	border: 1px solid var(--border-color);
	border-radius: 5px;
	transition: var(--transition);
}
.post-navigation a:hover {
	color: var(--primary-color);
	border-color: var(--primary-color);
	background-color: var(--bg-light);
}
.nav-prev,
.nav-next {
	flex: 1;
}
.nav-next {
	text-align: right;
}
.nav-btn-list {
	text-align: center;
}
/* Archive Card Grid */
.news-card-grid {
	margin-bottom: 60px;
	display: block;
	/*display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));*/
	gap: 20px;
}
.news-card {
	height: 100%;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	background: var(--bg-white);
	overflow: hidden;
	transition: var(--transition);
}
.news-card {
	cursor: default;
}
.news-card:hover {
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	border-color: var(--hover);
	transform: translateY(-5px);
}
.news-card-img {
	width: 100%;
	aspect-ratio: 16 / 9;
	background-color: #EEE;
}
.news-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.news-card-body {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.news-card-meta {
	margin: 0 0 .5rem;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
}
.news-card-meta time {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #757575;
	font-size: 0.9rem;
	font-family: var(--font-en-sans);
	font-weight: 400;
}
.news-card-meta time .material-icons {
	margin-bottom: 2px;
	font-size: 1.1rem;
	color: var(--primary-color);
}
.news-card-cat {
	color: var(--primary-color);
	font-weight: 400;
}
.news-card-cat {
	margin-left: 1rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem;
}
/* ニュースカード内のカテゴリリンクのベーススタイル */
.news-card-cat-link {
	padding: 0.35rem 0.5rem;
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 400;
	border-radius: 5px;
	color: var(--bg-white, #FFFFFF) !important;
	text-decoration: none;
	line-height: 1.2;
}
.cat-slug-finances-news {
	background-color: var(--finance-color, #1B8EE7);
}
.cat-slug-insurance-news {
	background-color: var(--insurance-color, #8BC217);
}
.cat-slug-other {
	background-color: var(--other-color, #F7B53C);
}
/* 新規カテゴリの色（新しいカテゴリのスラッグと色をここに追加してください） */
/* .cat-slug-new-category {
	background-color: #FF7700;
} */
.news-card-title {
	margin-bottom: 10px;
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 1.4;
}
.news-card-title a {
	color: var(--primary-color);
	text-decoration: none;
	transition: var(--transition);
}
.news-card-title a:hover {
	color: var(--finance-color);
}
/* READ MORE ボタン */
.read-more-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--primary-color);
	font-family: var(--font-en-sans);
	font-weight: 400;
	font-size: 0.85rem;
	letter-spacing: 0;
	text-decoration: none;
	background: transparent;
	border: none;
	transition: color 0.3s ease;
}
/* マテリアルアイコンの調整 */
.icn {
	display: flex;
	align-items: center;
	justify-content: center;
}
.icn-left {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.icn-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.icn .material-icons,
.icn-left .material-icons,
.icn-right .material-icons {
	margin-right: 3px;
	font-size: 1.2em;
}
.read-more-link .material-icons {
	font-size: 1.2rem;
	transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/* ホバー時の挙動 */
.read-more-link:hover {
	color: var(--accent-color);
	opacity: 0.8;
}
.read-more-link:hover .material-icons {
	transform: translateX(6px);
}
.news-card-excerpt {
	margin-top: auto;
	color: #666;
}
.news-card-footer {
	margin: 1rem 0 0;
	text-align: right;
}
/* Pagination */
.pagination {
	margin-top: 40px;
	display: flex;
	justify-content: center;
	gap: 10px;
}
.pagination .page-numbers {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--base-color);
	font-family: var(--font-en-sans);
	font-weight: 700;
	border: 1px solid var(--border-color);
	border-radius: 5px;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	color: var(--bg-white);
	border-color: var(--primary-color);
	background-color: var(--primary-color);
}
.pagination .dots {
	border: none;
}

/* ==========================================================================
	10. Footer
========================================================================== */
footer {
	padding: 40px 0;
	color: var(--bg-white);
	text-align: center;
	font-size: 0.9rem;
	background-color: var(--primary-color);
}
footer p {
	margin: 0 0 .5rem;
}
footer small,
footer .small {
	font-size: .85em;
}
footer nav.footer-nav {
	margin: 0 0 1.5rem;
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 10px;
	text-align: left;
}
footer nav.footer-nav ul {
	width: 100%;
}
footer nav.footer-nav ul li {
	margin: 0 0 .45rem;
	position: relative;
	list-style: none;
	font-size: .95em;
}
footer nav.footer-nav ul li::before {
	margin-right: 3px;
	font-family: 'Material Icons';
	content: "\e5cc";
	vertical-align: middle;
}
footer nav.footer-nav ul li a {
	color: var(--bg-light) !important;
}
footer nav.footer-nav ul.child {
	margin: .45rem 0 0;
	padding-left: 1em;
}
footer .footer-info {
	width: 100%;
}
footer .footer-logo-link {
	display: flex;
	width: 100%;
}
footer .footer-logo {
	margin: 0 auto 1rem 0;
	width: 80%;
	max-width: 200px;
	height: auto;
}
footer .footer-phone {
	font-size: 1.8em;
	font-weight: 700;
	font-family: var(--font-en-sans);
	letter-spacing: 0;
}
footer .footer-phone small {
	font-weight: 400 !important;
	font-size: .8em !important;
}
footer .copyright {
	font-size: .75rem;
	font-weight: 400;
	font-weight: var(--font-en-sans);
}
/* メインコンテンツ（波の上の白い部分） */
.main-content {
	padding: 20px;
	height: 80vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #FFF;
	}
.wave-divider {
	margin-bottom: -1px;
	width: 100%;
	position: relative;
	overflow: hidden;
	line-height: 0;
	background-color: var(--bg-light);
}
.page .wave-divider {
	background-color: transparent !important;
}
.company.page .wave-divider {
	background-color: var(--bg-light) !important;
}
.wave-divider svg {
	width: calc(100% + 1.3px);
	height: 150px;
	position: relative;
	display: block;
	transform: scaleY(-1);
}
.shape-fill {
	fill: #F4F5F7;
	fill: var(--primary-color);
}

/* ==========================================================================
	11. Animations
========================================================================== */
/* fadein animation */
.fadein {
	opacity: 0;
	animation: fadeInUp 1s ease forwards;
	animation-delay: 0.5s;
}
/* 1. 大きく動く (80px下から出現) */
.js-anim.anim-large {
	transform: translateY(80px);
}
.js-anim.anim-large.is-active {
	transform: translateY(0);
}
/* 2. 上から下へ (40px上から出現) */
.js-anim.anim-down {
	transform: translateY(-40px);
}
.js-anim.anim-down.is-active {
	transform: translateY(0);
}
/* 3. 右から左へ (40px右から出現) */
.js-anim.anim-right {
	transform: translateX(40px);
}
.js-anim.anim-right.is-active {
	transform: translateX(0);
}
/* 4. 左から右へ (40px左から出現) */
.js-anim.anim-left {
	transform: translateX(-40px);
}
.js-anim.anim-left.is-active {
	transform: translateX(0);
}
/* 5. フェードインのみ (移動なし) */
.js-anim.anim-fade {
	transform: translateY(0);
}
.js-anim.anim-fade.is-active {
	transform: translateY(0);
}
/* Fade In animation */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fadeInChar {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/* -- Underline Animation -- */
.anim-underline {
	position: relative;
	display: inline-block;
	padding-bottom: 10px;
}
.anim-underline::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px; /* 線の太さ */
	background-color: var(--finance-color);
	/* アニメーションの速度と動き（1秒かけて伸びる） */
	transition: width 1s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
.anim-underline.is-active::after {
	width: 100%;
}
/* 中央揃えの場合はこちらを有効に */
.anim-underline::after {
	left: 50%;
	transform: translateX(-50%);
}

/* ==========================================================================
	12. Snow Monkey Form
========================================================================== */
.snow-monkey-form {
	margin: 0 0 2rem;
	padding: 0;
	color: var(--dark);
}
.smf-form--simple-table .smf-item {
	margin-bottom: 1rem !important;
	padding: .8rem 0 1.5rem !important;
	align-items: center;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.smf-form--simple-table .smf-item__col--label,
.smf-form--simple-table .smf-item__col--controls {
	margin-bottom: 0;
}
.smf-item__label__text {
	font-weight: 400 !important;
}
.smf-item:has([data-validations~="required"]) .smf-item__label__text::after {
	padding: .3rem .5rem .4rem !important;
	position: absolute;
	top: 50%;
	right: -50px;
	transform: translateY(-50%);
	display: grid;
	place-items: center;
	content: "必須";
	font-size: .7em !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	color: #FFF;
	background: #CC3333;
	border-radius: 3px;
}
.smf-form .smf-textarea-control__control {
	border-radius: 0 !important;
}
.snow-monkey-form .smf-item label,
.snow-monkey-form .smf-label label {
	padding: 0;
	line-height: 1.4;
	text-transform: none;
	letter-spacing: 0.5px;
	background: none !important;
	border-radius: 5px;
}
.snow-monkey-form .smf-label {
	text-align: left;
}
.smf-form .smf-checkboxes-control--horizontal .smf-checkboxes-control__control>.smf-label {
	display: block;
	text-align: center !important;
}
.smf-form .smf-text-control__control {
	border-radius: 5px !important;
}
.smf-item__label__text {
	position: relative;
}
.smf-form .smf-radio-button-control {
	align-items: center;
}
.smf-form .smf-radio-button-control__control {
	margin-top: 0 !important;
}
.smf-control-description {
	font-size: .8em;
	color: var(--dark);
}
/* プログレストラッカーのカスタマイズ */
form .smf-progress-tracker {
	list-style-type: none;
	display: flex;
	width: 100%;
	padding: 0;
	margin: 2em auto 2em;
	overflow: hidden;
}
.smf-progress-tracker__item[aria-current=true] .smf-progress-tracker__item__number {
	color: var(--primary-color) !important;
	background-color: #FFF;
}
.smf-progress-tracker__item[aria-current=true] .smf-progress-tracker__item__text {
	color: #FFF !important;
}
form .smf-progress-tracker li {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 33.33%;
	padding: 1em 0 1em 1em;
	text-align: center;
	background: #F3F3F3;
}
form .smf-progress-tracker li:last-child {
	padding-right: 1em;
}
form .smf-progress-tracker li:before {
	display: none;
}
form .smf-progress-tracker li:after {
	content: "";
	position: absolute;
	z-index: 2;
	width: 0;
	height: 100%;
	top: 0;
	bottom: 0;
	right: -0.95em;
	left: auto;
	margin: auto;
	background: none;
	border-style: solid;
	border-width: 2.5em 0 2.5em 1.2em;
	border-color: transparent transparent transparent #F3F3F3;
}
form .smf-progress-tracker li:last-child:after {
	display: none;
}
form[data-screen="input"] .smf-progress-tracker__item--input,
form[data-screen="invalid"] .smf-progress-tracker__item--input,
form[data-screen="back"] .smf-progress-tracker__item--input,
form[data-screen="confirm"] .smf-progress-tracker__item--confirm,
form[data-screen="complete"] .smf-progress-tracker__item--complete {
	color: #FFF;
	background: var(--finance-color);
}
form[data-screen="input"] .smf-progress-tracker__item--input:after,
form[data-screen="invalid"] .smf-progress-tracker__item--input:after,
form[data-screen="back"] .smf-progress-tracker__item--input:after,
form[data-screen="confirm"] .smf-progress-tracker__item--confirm:after,
form[data-screen="complete"] .smf-progress-tracker__item--complete:after {
	right: -1em;
	border-color: transparent transparent transparent var(--finance-color);
}
form .smf-progress-tracker li .smf-progress-tracker__item__number {
	margin: 0 0.5em 0 0;
}
form .smf-progress-tracker li .smf-progress-tracker__item__text {
	margin: 0 0 0 0;
}
/* 送信ボタン等のカスタマイズ */
form .smf-action {
	display: flex;
	justify-content: space-between;
}
form .smf-action .smf-button-control {
	margin: 0 auto;
}
form .smf-action .smf-button-control button {
	padding: 1em 2em;
	position: relative;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	font-weight: 400;
	font-size: 1.15rem;
	text-align: center;
	color: #FFF;
	background: var(--primary-color);
	border: none;
	border-radius: .3rem;
	transition: .3s;
}
form .smf-action .smf-button-control button:hover {
	transition: .3s;
	opacity: .7;
}
form .smf-action .smf-button-control button[data-action="back"] {
	background: #e3e3e3;
}
/* 確認画面へボタン */
button[data-action="confirm"] {
	font-weight: 600;
}
button[data-action="back"]  {
	font-weight: 600;
}
button[data-action="complete"]  {
	font-weight: 600;
}

/* ==========================================================================
	13.Block Editer
========================================================================== */
.img-title {
	margin: 0 auto 1rem;
	width: 80%;
	max-width: 768px;
	height: auto;
}
.w-50 {
	margin-left: auto;
	margin-right: auto;
	width: 50%;
}
.w-75 {
	margin-left: auto;
	margin-right: auto;
	width: 75%;
}
table {
	margin: 0;
}
table th,
table td {
	font-weight: 400;
	border-color: rgba(0, 0, 0, 0.1);
}
table th small {
	margin-top: 2px;
	display: block;
	line-height: 1.2;
	font-weight: 400 !important;
}
.table-plan,
.table-sm {
	font-size: .9em !important;
}
.table-sm thead th {
	font-weight: 700;
}
.table-plan thead th:nth-child(2) {
	width: 15% !important;
}
.table-plan thead th:nth-child(3) {
	width: 40% !important;
}
.table-sm td img {
	margin: 0 auto !important;
	display: block;
}
.wp-block-table td, .wp-block-table th {
	padding: .5rem 1rem;
}
.wp-block-table td:nth-child(1),
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th {
	width: 30%;
}
@media (max-width: 768px) {
	.w-50, .w-75 {
		width: 100%;
	}
}

/* ==========================================================================
	14. Utilities (Pankuzu + Spacing)
========================================================================== */
.breadcrumbs {
	padding: .5rem 0;
	font-size: .75rem;
	color: var(--dark);
}
.m-0 {
	margin: 0 !important;
}
.m-1 {
	margin: 0.25rem !important;
}
.m-2 {
	margin: 0.5rem !important;
}
.m-3 {
	margin: 1rem !important;
}
.m-4 {
	margin: 1.5rem !important;
}
.m-5 {
	margin: 3rem !important;
}
.m-auto {
	margin: auto !important;
}
.mt-0 {
	margin-top: 0 !important;
}
.mt-1 {
	margin-top: 0.25rem !important;
}
.mt-2 {
	margin-top: 0.5rem !important;
}
.mt-3 {
	margin-top: 1rem !important;
}
.mt-4 {
	margin-top: 1.5rem !important;
}
.mt-5 {
	margin-top: 3rem !important;
}
.mt-auto {
	margin-top: auto !important;
}
.mb-0 {
	margin-bottom: 0 !important;
}
.mb-1 {
	margin-bottom: 0.25rem !important;
}
.mb-2 {
	margin-bottom: 0.5rem !important;
}
.mb-3 {
	margin-bottom: 1rem !important;
}
.mb-4 {
	margin-bottom: 1.5rem !important;
}
.mb-5 {
	margin-bottom: 3rem !important;
}
.mb-auto {
	margin-bottom: auto !important;
}
.ml-0 {
	margin-left: 0 !important;
}
.ml-1 {
	margin-left: 0.25rem !important;
}
.ml-2 {
	margin-left: 0.5rem !important;
}
.ml-3 {
	margin-left: 1rem !important;
}
.ml-4 {
	margin-left: 1.5rem !important;
}
.ml-5 {
	margin-left: 3rem !important;
}
.ml-auto {
	margin-left: auto !important;
}
.mr-0 {
	margin-right: 0 !important;
}
.mr-1 {
	margin-right: 0.25rem !important;
}
.mr-2 {
	margin-right: 0.5rem !important;
}
.mr-3 {
	margin-right: 1rem !important;
}
.mr-4 {
	margin-right: 1.5rem !important;
}
.mr-5 {
	margin-right: 3rem !important;
}
.mr-auto {
	margin-right: auto !important;
}
.mx-0 {
	margin-left: 0 !important;
	margin-right: 0 !important;
}
.mx-1 {
	margin-left: 0.25rem !important;
	margin-right: 0.25rem !important;
}
.mx-2 {
	margin-left: 0.5rem !important;
	margin-right: 0.5rem !important;
}
.mx-3 {
	margin-left: 1rem !important;
	margin-right: 1rem !important;
}
.mx-4 {
	margin-left: 1.5rem !important;
	margin-right: 1.5rem !important;
}
.mx-5 {
	margin-left: 3rem !important;
	margin-right: 3rem !important;
}
.mx-auto {
	margin-left: auto !important;
	margin-right: auto !important;
}
.my-0 {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}
.my-1 {
	margin-top: 0.25rem !important;
	margin-bottom: 0.25rem !important;
}
.my-2 {
	margin-top: 0.5rem !important;
	margin-bottom: 0.5rem !important;
}
.my-3 {
	margin-top: 1rem !important;
	margin-bottom: 1rem !important;
}
.my-4 {
	margin-top: 1.5rem !important;
	margin-bottom: 1.5rem !important;
}
.my-5 {
	margin-top: 3rem !important;
	margin-bottom: 3rem !important;
}
.my-auto {
	margin-top: auto !important;
	margin-bottom: auto !important;
}
.p-0 {
	padding: 0 !important;
}
.p-1 {
	padding: 0.25rem !important;
}
.p-2 {
	padding: 0.5rem !important;
}
.p-3 {
	padding: 1rem !important;
}
.p-4 {
	padding: 1.5rem !important;
}
.p-5 {
	padding: 3rem !important;
}
.pt-0 {
	padding-top: 0 !important;
}
.pt-1 {
	padding-top: 0.25rem !important;
}
.pt-2 {
	padding-top: 0.5rem !important;
}
.pt-3 {
	padding-top: 1rem !important;
}
.pt-4 {
	padding-top: 1.5rem !important;
}
.pt-5 {
	padding-top: 3rem !important;
}
.pb-0 {
	padding-bottom: 0 !important;
}
.pb-1 {
	padding-bottom: 0.25rem !important;
}
.pb-2 {
	padding-bottom: 0.5rem !important;
}
.pb-3 {
	padding-bottom: 1rem !important;
}
.pb-4 {
	padding-bottom: 1.5rem !important;
}
.pb-5 {
	padding-bottom: 3rem !important;
}
.pl-0 {
	padding-left: 0 !important;
}
.pl-1 {
	padding-left: 0.25rem !important;
}
.pl-2 {
	padding-left: 0.5rem !important;
}
.pl-3 {
	padding-left: 1rem !important;
}
.pl-4 {
	padding-left: 1.5rem !important;
}
.pl-5 {
	padding-left: 3rem !important;
}
.pr-0 {
	padding-right: 0 !important;
}
.pr-1 {
	padding-right: 0.25rem !important;
}
.pr-2 {
	padding-right: 0.5rem !important;
}
.pr-3 {
	padding-right: 1rem !important;
}
.pr-4 {
	padding-right: 1.5rem !important;
}
.pr-5 {
	padding-right: 3rem !important;
}
.px-0 {
	padding-left: 0 !important;
	padding-right: 0 !important;
}
.px-1 {
	padding-left: 0.25rem !important;
	padding-right: 0.25rem !important;
}
.px-2 {
	padding-left: 0.5rem !important;
	padding-right: 0.5rem !important;
}
.px-3 {
	padding-left: 1rem !important;
	padding-right: 1rem !important;
}
.px-4 {
	padding-left: 1.5rem !important;
	padding-right: 1.5rem !important;
}
.px-5 {
	padding-left: 3rem !important;
	padding-right: 3rem !important;
}
.py-0 {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}
.py-1 {
	padding-top: 0.25rem !important;
	padding-bottom: 0.25rem !important;
}
.py-2 {
	padding-top: 0.5rem !important;
	padding-bottom: 0.5rem !important;
}
.py-3 {
	padding-top: 1rem !important;
	padding-bottom: 1rem !important;
}
.py-4 {
	padding-top: 1.5rem !important;
	padding-bottom: 1.5rem !important;
}
.py-5 {
	padding-top: 3rem !important;
	padding-bottom: 3rem !important;
}

/* ==========================================================================
	15. Icons
========================================================================== */
/* Material Icon */
.pdf-icon {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}
.pdf-icon::before {
	margin-right: 5px;
	font-family: 'Material Icons';
	content: "\e415";
	font-size: 1.2em;
	color: #C33;
	line-height: 1;
}

/* ==========================================================================
	16. Scroll Top
========================================================================== */
#wpfront-scroll-top-container {
	padding: 0 !important;
	width: 42px;
	height: 42px;
	overflow: hidden;
	display: flex !important;
	justify-content: center;
	align-items: center;
	font-family: 'Material Icons' !important;
	font-weight: normal;
	font-style: normal;
	font-size: 28px !important;
	color: #FFF !important;
	line-height: 1 !important;
	opacity: 0.9;
	transition: all 0.3s ease;
	background-color: #005bac !important;
	border-radius: 50%;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
#wpfront-scroll-top-container:hover {
	opacity: 1;
	transform: translateY(-2px);
	background-color: #00447a !important;
}
#wpfront-scroll-top-container .text-holder {
	width: auto !important;
	height: auto !important;
	line-height: 42px;
	color: #FFF;
	background-color: #1D8EE7;
}

/* ==========================================================================
	17. Responsive (Mobile)
========================================================================== */
@media (min-width: 769px) {
	.nav-item:hover .dropdown-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
}
@media (max-width: 768px) {
	body {
		font-size: 0.875rem;
	}
	/* Header & Nav */
	header {
		box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
	}
	.logo-svg {
		height: 32px;
	}
	.logo-link {
		width: 100%;
	}
	.header-logo {
		width: 90%;
		height: auto;
	}
	.hamburger {
		padding-right: 5px;
		display: block;
	}
	.nav-menu {
		padding-top: 90px;
		width: 85%;
		height: 100vh;
		display: flex;
		flex-direction: column;
		gap: 0;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 1001;
		box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
		background: var(--bg-white);
		transform: translateX(100%);
		transition: transform 0.6s var(--smooth-ease);
	}
	.nav-menu.active {
		transform: translateX(0);
	}
	.nav-item {
		padding: 15px 20px;
		width: 100%;
		font-size: .95rem;
		border-bottom: 1px solid #f0f0f0;
	}
	.dropdown-menu {
		margin: 0;
		padding: 0 0 0 20px;
		max-height: 0;
		display: block;
		position: static;
		box-shadow: none;
		background-color: transparent;
		opacity: 0;
		visibility: visible;
		overflow: hidden;
		transform: none;
		transition: max-height 0.5s var(--smooth-ease), opacity 0.4s ease, padding 0.4s ease, background-color 0.4s ease;
	}
	.nav-item.toggled .dropdown-menu {
		padding-top: 10px;
		padding-bottom: 10px;
		max-height: 300px;
		background-color: #FCFCFC;
		opacity: 1;
	}
	.nav-item.toggled .arrow {
		transform: rotate(180deg);
	}
	/* Layout Adjustments */
	section {
		padding: 2.5rem 0;
	}
	.container {
		margin: 0 auto;
		padding: 0 10px;
	}
	.breadcrumbs {
		padding: .5rem 10px !important;
		font-size: .7rem;
	}
	.main-visual--top .container {
		padding: 0 20px;
		align-items: flex-start;
		text-align: left;
	}
	.hero-content {
		margin: 0;
		width: 96%;
		position: absolute;
		top: 40%;
		left: 50%;
	}
	.hero-split {
		flex-direction: column;
	}
	.split-item {
		height: 350px;
		min-height: 350px;
	}
	.news-list li {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}
	.grid-3,
	.grid-4,
	.insurance-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.banner-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.read-more-btn {
		width: 100%;
		display: block;
		text-align: center;
	}
	.read-more-link {
		width: auto;
		display: inline-flex;
	}
	/* Single Post & Archive Mobile */
	.post-navigation {
		display: flex;
		flex-direction: column;
		gap: 10px;
		text-align: center;
	}
	.nav-prev,
	.nav-next,
	.nav-btn-list {
		width: 100%;
		text-align: center;
	}
	.nav-prev a,
	.nav-next a,
	.nav-btn-list a {
		display: block;
		width: 100%;
	}
	.news-card-grid {
		grid-template-columns: 1fr;
	}
	/* News Tabs (1行に収める) */
	.tabs {
		gap: 5px;
	}
	.tab-content {
		padding: 10px;
	}
	.tab-btn {
		padding: 8px 5px;
		flex: 1;
		font-size: 0.8rem;
		white-space: nowrap;
	}
	/* Footer */
	.wave-divider svg {
		height: 50px;
	}
	footer nav.footer-nav {
		display: block;
	}
	footer .footer-info {
		margin-top: 1.75rem;
	}
	footer .copyright {
		font-size: .65rem;
	}
	/* Other */
	table th,
	table td,
	.wp-block-table td,
	.wp-block-table th {
		font-size: 0.8rem;
		padding: 0.5rem 0.3rem;
	}
	li, dt, dd, address {
		font-size: 0.875rem;
	}
	button, input, select, textarea {
		font-size: 0.9rem;
	}
	.br-sp {
		display: inline;
	}
}
