/*
Theme Name: BlankSlate Child
Theme URI: 
Description: RAIZE GOLF Corporate Theme
Author: Antigravity
Author URI: 
Template: blankslate
Version: 1.0.0
*/

:root {
	--color-white: #ffffff;
	--color-black: #1a1a1a;
	--color-greige: #cec7bf;
	--color-main: #152A4A;
	/* Naval Blue */
	--color-main-light: #2c4973;
	--color-gray-soft: #fcfcfc;
	--color-bg-base: #F5F6F8;
	/* Light beige/gray background */
	--color-gray-medium: #888888;
	--color-gray-light: #eeeeee;

	--font-sans: 'Noto Sans JP', 'Inter', "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
	--font-serif: var(--font-sans);
	/* Use sans for everything now */

	--spacing-xs: 0.5rem;
	--spacing-sm: 1rem;
	--spacing-md: 2rem;
	--spacing-lg: 4rem;
	--spacing-xl: 5rem;

	--container-width: 1200px;
	--transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html,
body {
	overflow-x: hidden;
}

body {
	font-family: var(--font-sans);
	background-color: var(--color-bg-base);
	color: var(--color-black);
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
	padding-top: 80px;
}

h1,
h2,
h3,
h4,
.font-serif {
	font-family: var(--font-sans);
	font-weight: 700;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--transition-smooth);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--spacing-md);
}

section {
	padding: var(--spacing-xl) 0;
}

.section-title {
	text-align: center;
	/* margin-bottom: var(--spacing-lg); */
	margin-bottom: var(--spacing-md);
}

.section-title h2 {
	font-size: 2.5rem;
	letter-spacing: 0.1em;
	margin-bottom: var(--spacing-sm);
}

.section-title p {
	font-size: 0.875rem;
	color: var(--color-gray-medium);
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.btn {
	display: inline-block;
	padding: 1rem 3rem;
	background-color: var(--color-main);
	color: var(--color-white);
	font-weight: 700;
	letter-spacing: 0.1em;
	border: none;
	cursor: pointer;
	transition: var(--transition-smooth);
}

.btn:hover {
	background-color: var(--color-black);
	transform: translateY(-2px);
}

.btn-outline {
	background-color: transparent;
	border: 1px solid var(--color-main);
	color: var(--color-main);
}

.btn-outline:hover {
	background-color: var(--color-main);
	color: var(--color-white);
}

/* Header */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	padding: 1.5rem 0;
	transition: var(--transition-smooth);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-family: var(--font-sans);
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: var(--color-main);
}

.logo a {
	color: var(--color-main);
	text-decoration: none;
}

.logo img{
	width: 110px;
}

nav ul {
	display: flex;
	list-style: none;
	gap: 2.5rem;
	align-items: center;
}

nav ul li a {
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	position: relative;
}

nav ul li a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--color-main);
	transition: var(--transition-smooth);
}

nav ul li a:hover::after {
	width: 100%;
}

/* Hamburger Menu Toggle */
.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 21px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
}

.menu-toggle span {
	width: 100%;
	height: 2px;
	background-color: var(--color-black);
	transition: var(--transition-smooth);
}

.menu-toggle.active span:nth-child(1) {
	transform: translateY(9.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
	transform: translateY(-9.5px) rotate(-45deg);
}

/* Hero Section New */
.hero-new {
	position: relative;
	min-height: 80vh;
	display: flex;
	align-items: center;
	background-color: var(--color-bg-base);
	overflow: hidden;
	padding: var(--spacing-lg) 0;
}

.hero-bg-accent {
	position: absolute;
	top: -20%;
	right: -10%;
	width: 70%;
	height: 140%;
	background: radial-gradient(circle, rgba(230, 232, 236, 1) 0%, rgba(245, 246, 248, 0) 70%);
	border-radius: 50%;
	z-index: 0;
}

.hero-container {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.hero-left {
	position: relative;
	width: 100%;
	z-index: 2;
	left: 0;
	padding-left: 20px;
}

.hero-title {
	color: var(--color-main);
	font-size: 3.25rem;
	line-height: 1.35;
	margin-bottom: 2rem;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.hero-description-strong {
	color: var(--color-main);
	font-size: 1.15rem;
	line-height: 1.8;
	margin-bottom: 2.5rem;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.hero-btns-new {
	display: flex;
	gap: 1rem;
	margin-bottom: 2.5rem;
	flex-direction: column;
	max-width: 400px;
}

.btn-hero-main {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--color-main);
	color: var(--color-white);
	padding: 1.25rem 1.5rem;
	border-radius: 4px;
	font-weight: 700;
	text-decoration: none;
	transition: var(--transition-smooth);
	border: 2px solid var(--color-main);
	flex: 1;
	font-size: 1rem;
}

.btn-hero-main span {
	margin-right: 0.5rem;
}

.btn-hero-main:hover {
	background: var(--color-main-light);
	border-color: var(--color-main-light);
	color: var(--color-white);
}

.btn-hero-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--color-white);
	color: var(--color-main);
	padding: 1.25rem 1.5rem;
	border-radius: 4px;
	font-weight: 700;
	text-decoration: none;
	transition: var(--transition-smooth);
	border: 2px solid var(--color-main);
	flex: 1;
	font-size: 1rem;
}

.btn-hero-outline span {
	margin-right: 0.5rem;
}

.btn-hero-outline:hover {
	background: var(--color-bg-base);
}

.hero-tags {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.hero-tag {
	background: var(--color-white);
	color: var(--color-gray-dark);
	font-size: 0.85rem;
	font-weight: 700;
	padding: 0.6rem 1.25rem;
	border-radius: 30px;
	border: 1px solid #EAEAEA;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.hero-right {
	width: 50vw;
	position: absolute;
	right: calc(50% - 50vw);
	top: 50px;
	height: calc(100% - 100px);
}

.hero-visual {
	width: 100%;
	height: 100%;
	background-color: #e2e8f0;
	background-image: var(--hero-bg);
	background-size: cover;
	background-position: left center;
	border-radius: 12px 0 0 12px;
	box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05);
}

.hero-visual img {
	width: 100%;
	max-width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Issues Section New */
.issues-new {
	position: relative;
	background-color: var(--color-white);
	padding: var(--spacing-xl) 0;
	z-index: 1;
	overflow: hidden;
}

.issues-new::before {
	content: '';
	position: absolute;
	top: 55%;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--color-bg-base);
	z-index: -1;
}

.issues-container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.issues-left {
	width: 35%;
	position: sticky;
	top: 120px;
}

.issues-title-area .section-en {
	color: var(--color-main-light);
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-bottom: 0.5rem;
}

.issues-title-area .section-jp {
	color: var(--color-main);
	font-size: 2.25rem;
	line-height: 1.4;
	margin-bottom: 2rem;
}

.issues-lead {
	color: var(--color-black);
	font-size: 1rem;
	line-height: 1.8;
	font-weight: 500;
}

.issues-icon-wrap {
	margin-top: 4rem;
}

.issues-icon-circle {
	width: 140px;
	height: 140px;
	background-color: #EBEBE6;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.issues-right {
	width: 60%;
}

.issues-list-new {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.issues-list-new li {
	display: flex;
	align-items: center;
	width: 100%;
}

.issue-card-content {
	flex: 1;
	display: flex;
	align-items: center;
	background: var(--color-white);
	border: 1px solid #eaeaea;
	padding: 1.5rem 2rem;
	border-radius: 4px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
	border-left: 4px solid var(--color-main);
}

.issue-icon {
	width: 48px;
	height: 48px;
	background-color: #F5F6F8;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 1.5rem;
	color: var(--color-gray-dark);
}

.issue-icon span {
	font-size: 24px;
	width: 24px;
	height: 24px;
}

.issue-card-content p {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--color-black);
	margin: 0;
}

.issues-num {
	font-size: 1rem;
	font-weight: 700;
	color: #A0B2C9;
	width: 60px;
	text-align: right;
	flex-shrink: 0;
}

/* Solution Section New */
.solution-new {
	position: relative;
	background-color: #FAFAFA;
	padding: 6rem 0;
	z-index: 1;
	overflow: hidden;
}

.solution-new::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 30%;
	background-color: #EBEBE6;
	z-index: -1;
}

/* Background Blobs removed to prevent horizontal scroll bugs */

.container-solution {
	position: relative;
	z-index: 2;
	max-width: 1000px;
}

.solution-card {
	background: var(--color-white);
	padding: 4.5rem 5rem;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
	position: relative;
}

.sol-decor-left {
	position: absolute;
	left: 0;
	top: 4rem;
	bottom: 4rem;
	width: 6px;
	background-color: var(--color-main);
}

.sol-decor-bottom {
	position: absolute;
	/* right: -50vw; */
	bottom: 0;
	width: calc(50vw + 250px);
	height: 2px;
	background-color: var(--color-main);
}

.solution-header {
	text-align: left;
	margin-bottom: 2.5rem;
}

.solution-header .section-en {
	color: var(--color-main-light);
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
}

.solution-header .section-jp {
	color: var(--color-main);
	font-size: 2.25rem;
	line-height: 1.4;
	margin-bottom: 0;
}

.solution-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #F8F9FA;
	padding: 2.5rem 5rem;
	border-radius: 8px;
	border: 1px solid #EAEAEA;
	margin-bottom: 2.5rem;
}

.sol-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.sol-item-label {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--color-gray-medium);
}

.sol-item-text {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--color-black);
}

.sol-item.highlight .sol-item-text {
	color: var(--color-main);
}

.sol-arrow span {
	font-size: 1.5rem;
	color: var(--color-main-light);
	margin: 0;
	display: flex;
	align-items: center;
}

.solution-text {
	text-align: left;
	font-size: 1.05rem;
	line-height: 2;
	color: #333;
}

.solution-text p {
	margin: 0;
}

.solution-text strong {
	color: var(--color-main);
	font-size: 1.1rem;
	font-weight: 700;
}

/* Services, Products Grid base */
.services,
.products,
.flow-diagram,
.strengths,
.process,
.comparison,
.differentiators,
.company,
.contact {
	padding: var(--spacing-xl) 0;
}

.services {
	background-color: var(--color-white);
}

.products {
	background-color: var(--color-gray-soft);
}

.services-grid,
.products-grid,
.strengths-grid,
.diff-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--spacing-lg);
}

/* Base Grid Overrides */
/* Services Section New */
.services-new {
	background-color: var(--color-bg-base);
	padding: var(--spacing-xl) 0;
}

.services-list-new {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: var(--spacing-lg);
}

.service-card-new {
	background: var(--color-white);
	border-radius: 12px;
	padding: 3rem 2rem;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
	transition: var(--transition-smooth);
	border-top: 4px solid var(--color-main-light);
}

.service-card-new:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-bg-num {
	position: absolute;
	top: -20px;
	right: -10px;
	font-size: 10rem;
	font-weight: 800;
	color: var(--color-bg-base);
	line-height: 1;
	z-index: 0;
}

.service-card-inner {
	position: relative;
	z-index: 1;
}

.service-icon span {
	font-size: 2.5rem;
	color: var(--color-main);
	width: 40px;
	height: 40px;
	margin-bottom: 1.5rem;
}

.service-title {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--color-main);
	margin-bottom: 1rem;
}

.service-desc {
	color: var(--color-gray-medium);
	font-size: 1rem;
	line-height: 1.8;
}

.service-cta {
	margin-top: 3rem;
	background: var(--color-white);
	padding: 1.5rem;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
	color: var(--color-main);
	font-weight: 700;
}

.service-cta span {
	vertical-align: middle;
	margin-right: 0.5rem;
	margin-top: -3px;
}


/* Products Section New */
.products-new {
	position: relative;
	background-color: var(--color-white);
	padding: 6rem 0;
	overflow: hidden;
	z-index: 1;
}

.products-bg-blob {
	position: absolute;
	top: -10vw;
	right: -10vw;
	width: 50vw;
	height: 50vw;
	background: #FAFBFC;
	border-radius: 50%;
	z-index: -1;
}

.products-grid-new {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-top: 4rem;
	margin-bottom: 2rem;
}

.product-card-new {
	background: var(--color-white);
	border-radius: 8px;
	padding: 2.5rem 2rem;
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
	transition: var(--transition-smooth);
	border: 1px solid #eaeaea;
}

.product-card-new:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.product-icon-new {
	width: 80px;
	height: 80px;
	background: #F5F6F8;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.product-icon-new svg {
	width: 40px;
	height: 40px;
}

.product-text-new h3 {
	font-size: 1.25rem;
	color: var(--color-black);
	font-weight: 800;
	margin-bottom: 0.75rem;
	letter-spacing: 0.05em;
}

.product-text-new p {
	font-size: 0.95rem;
	color: var(--color-gray-dark);
	line-height: 1.6;
	margin: 0;
}

.products-bottom-box {
	background: var(--color-main);
	color: var(--color-white);
	padding: 2rem 3rem;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	box-shadow: 0 10px 30px rgba(21, 42, 74, 0.15);
}

.products-bottom-box .dashicons {
	width: 32px;
	height: 32px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	flex-shrink: 0;
	color: #a8bce0;
}

.products-bottom-box p {
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0;
	letter-spacing: 0.05em;
}

.products-bottom-box .underline-text {
	text-decoration: none;
	border-bottom: 2px solid var(--color-white);
	padding-bottom: 2px;
}

/* Flow Diagram Section New */
.flow-diagram-new {
	position: relative;
	padding: 6rem 0;
	background-color: var(--color-bg-base);
	z-index: 1;
}

.flow-bg-top {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 55%;
	background-color: var(--color-white);
	background-image:
		linear-gradient(#f0f0f0 1px, transparent 1px),
		linear-gradient(90deg, #f0f0f0 1px, transparent 1px);
	background-size: 40px 40px;
	z-index: -1;
}

.flow-header {
	margin-bottom: 4rem;
}

.flow-header .section-en {
	color: var(--color-main-light);
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
}

.flow-header .section-jp {
	color: var(--color-main);
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.4;
}

.flow-tree-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 5rem;
}

.flow-node {
	background: var(--color-white);
	border-radius: 8px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.node-icon {
	margin-bottom: 0.75rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.node-title {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--color-black);
	margin-bottom: 0.25rem;
}

.node-desc {
	font-size: 0.8rem;
	color: var(--color-gray-medium);
}

/* node-supplier */
.node-supplier {
	width: 200px;
	padding: 1.5rem 1rem;
	border: 1px solid #eaeaea;
}

/* Arrow 1 */
.flow-line.dashed {
	width: 30px;
	height: 0;
	border-top: 3px dashed var(--color-main);
}

/* node-raize */
.node-raize {
	width: 260px;
	padding: 2.5rem 1rem;
	background: var(--color-main);
	color: var(--color-white);
	border: none;
	box-shadow: 0 15px 40px rgba(21, 42, 74, 0.2);
}

.node-raize .node-title {
	color: var(--color-white);
	font-size: 1.5rem;
	letter-spacing: 0.05em;
	margin-top: 0.5rem;
}

.node-divider {
	width: 40px;
	height: 1px;
	background: rgba(255, 255, 255, 0.3);
	margin: 1rem 0;
}

.node-raize .node-desc {
	color: rgba(255, 255, 255, 0.8);
}

/* branching lines */
.flow-branch-lines {
	position: relative;
	width: 20px;
	height: 150px;
	border-top: 2px solid var(--color-main-light);
	border-bottom: 2px solid var(--color-main-light);
	border-left: 2px solid var(--color-main-light);
	border-right: none;
	margin-left: 20px;
}

.flow-branch-lines::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -20px;
	width: 20px;
	height: 2px;
	background: var(--color-main-light);
	transform: translateY(-50%);
}

/* nodes 3 & 4 */
.flow-col-markets {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1.5rem;
}

.node-market {
	width: 200px;
	padding: 1.5rem 1rem;
	border: 1px solid var(--color-main-light);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

/* bracket */
.flow-bracket {
	position: relative;
	width: 15px;
	height: 150px;
	border-top: 2px solid var(--color-main-light);
	border-bottom: 2px solid var(--color-main-light);
	border-right: 2px solid var(--color-main-light);
	margin-right: 15px;
}

.flow-bracket::before {
	content: '';
	position: absolute;
	top: 50%;
	right: -15px;
	width: 15px;
	height: 2px;
	background: var(--color-main-light);
	transform: translateY(-50%);
}

.flow-bracket::after {
	content: '';
	position: absolute;
	top: 50%;
	right: -25px;
	transform: translateY(-50%);
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 10px solid var(--color-main-light);
}

/* node 5 customer */
.node-customer {
	width: 200px;
	padding: 2.5rem 1rem;
	border: 2px solid var(--color-black);
}

.node-customer .node-title {
	margin-bottom: 0;
}

/* Message box */
.flow-message-box {
	background: var(--color-gray-soft);
	border-left: 6px solid var(--color-main);
	padding: 1.5rem 2.5rem;
	margin: 0 auto;
	max-width: 900px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.flow-message-box p {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--color-black);
	margin-bottom: 0.5rem;
}

.flow-message-box p:last-child {
	margin-bottom: 0;
}

.highlight-text {
	color: var(--color-main);
	font-size: 1.3rem;
	margin: 0 0.2rem;
}

/* Strengths Section New */
.strengths-new {
	position: relative;
	background-color: var(--color-white);
	padding: 6rem 0;
	z-index: 1;
	overflow: hidden;
}

.strengths-new::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		linear-gradient(#f0f0f0 1px, transparent 1px),
		linear-gradient(90deg, #f0f0f0 1px, transparent 1px);
	background-size: 40px 40px;
	z-index: -2;
}

.strengths-bg-left {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 38%;
	background-color: #F8F9FA;
	z-index: -1;
	border-right: 1px solid #eaeaea;
}

.strengths-bg-icon {
	position: absolute;
	bottom: 3rem;
	left: 3rem;
	opacity: 0.8;
}

.strengths-container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 3rem;
}

.strengths-left {
	width: 30%;
	position: sticky;
	top: 120px;
}

.strengths-left .section-en {
	color: var(--color-main-light);
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
}

.strengths-left .section-jp {
	color: var(--color-main);
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 2rem;
}

.strengths-lead {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #333;
	font-weight: 500;
}

.strengths-right {
	width: 68%;
}

.strengths-grid-new {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
}

.strength-card-new {
	background: var(--color-white);
	border: 1px solid #eaeaea;
	border-radius: 4px;
	padding: 2.5rem 2rem;
	width: calc(33.333% - 1rem);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
	transition: var(--transition-smooth);
}

.str-card-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 2rem;
}

.str-icon {
	width: 48px;
	height: 48px;
	background: rgba(21, 42, 74, 0.05);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.str-num {
	font-size: 2.5rem;
	font-weight: 800;
	color: #EFEFEF;
	line-height: 1;
}

.strength-card-new h3 {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--color-black);
	line-height: 1.5;
	margin-bottom: 1rem;
}

.strength-card-new p {
	color: var(--color-gray-dark);
	font-size: 0.9rem;
	line-height: 1.6;
	margin: 0;
}

/* Benefits Section New */
.benefits-new {
	position: relative;
	padding: 6rem 0;
	background-color: var(--color-white);
	overflow: hidden;
	z-index: 1;
}

.benefits-bg-blob {
	position: absolute;
	width: 50vw;
	height: 50vw;
	background: #FAFBFC;
	border-radius: 50%;
	z-index: -1;
}

.benefits-bg-blob.top-left {
	top: -15vw;
	left: -20vw;
}

.benefits-bg-blob.bottom-right {
	bottom: -20vw;
	right: -20vw;
}

.benefits-grid-new {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin-top: 4rem;
}

.benefit-card-new {
	position: relative;
	background: var(--color-white);
	border-radius: 8px;
	padding: 3rem 2.5rem;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
	border: 1px solid #eaeaea;
	border-top: 4px solid var(--color-main);
	transition: var(--transition-smooth);
}

.benefit-card-new:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.benefit-bg-num {
	position: absolute;
	top: 10px;
	right: 20px;
	font-family: 'Times New Roman', Times, serif;
	font-size: 5rem;
	font-weight: 700;
	color: #F0F2F5;
	line-height: 1;
	z-index: 0;
}

.benefit-card-header {
	position: relative;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
	z-index: 1;
}

.benefit-icon {
	width: 60px;
	height: 60px;
	background: #F5F6F8;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.benefit-card-header h3 {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--color-black);
	margin: 0;
	letter-spacing: 0.05em;
}

.benefit-card-desc {
	position: relative;
	z-index: 1;
}

.benefit-card-desc p {
	color: var(--color-gray-dark);
	font-size: 0.95rem;
	line-height: 1.7;
	margin: 0;
}

.products-new+.benefits-new {
	padding-top: 0;
}

/* Process Section New */
.process-new {
	position: relative;
	background-color: var(--color-white);
	padding: 6rem 0;
	overflow: hidden;
	z-index: 1;
}

.process-bg-blob {
	position: absolute;
	top: -10vw;
	right: -10vw;
	width: 50vw;
	height: 50vw;
	background: #FAFBFC;
	border-radius: 50%;
	z-index: -1;
}

.process-flow-container {
	position: relative;
	margin-top: 5rem;
	margin-bottom: 4rem;
	padding: 0 1rem;
}

.process-line {
	position: absolute;
	top: 60px;
	left: 10%;
	right: 10%;
	height: 3px;
	background-color: var(--color-main);
	z-index: 0;
}

.process-steps-new {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	z-index: 1;
}

.step-item-new {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 10px;
}

.step-circle-new {
	width: 120px;
	height: 120px;
	background-color: var(--color-white);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 3px solid var(--color-main);
	margin-bottom: 1.5rem;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.step-circle-new.final {
	background-color: var(--color-main);
	border: none;
	box-shadow: 0 15px 30px rgba(21, 42, 74, 0.2);
}

.step-num-new {
	font-size: 0.9rem;
	font-weight: 800;
	color: var(--color-main);
	letter-spacing: 0.05em;
	margin-bottom: 0.25rem;
}

.step-circle-new.final .step-num-new {
	color: var(--color-white);
	opacity: 0.9;
}

.step-icon svg {
	display: block;
}

.step-item-new h3 {
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--color-black);
	margin-bottom: 0.75rem;
}

.step-item-new p {
	font-size: 0.85rem;
	color: var(--color-gray-dark);
	line-height: 1.6;
	margin: 0;
}

/* Final Step Dashed Box Outline */
.step-item-new.step-final {
	position: relative;
	padding: 0 5px;
}

.step-final-wrapper {
	background: #FCFCFC;
	border: 1px dashed var(--color-main);
	border-radius: 12px;
	padding: 24px 1rem 1rem;
	margin-top: -24px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.step-final-wrapper .step-circle-new.final {
	margin-bottom: 1.5rem;
}

.process-bottom-box {
	background: #F8F9FA;
	border-left: 6px solid var(--color-main);
	padding: 1.5rem 2rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	border-radius: 4px;
}

.process-icon-info {
	width: 32px;
	height: 32px;
	background: var(--color-main);
	color: var(--color-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.process-icon-info .dashicons {
	font-size: 1.2rem;
	width: auto;
	height: auto;
}

.process-bottom-box p {
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--color-black);
	margin: 0;
}

.highlight-bold {
	font-weight: 800;
	color: var(--color-black);
}

/* Company & Contact Section New Split */
.company-contact-split {
	position: relative;
	display: flex;
	background-color: var(--color-white);
}

.split-left-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	background-color: var(--color-white);
	z-index: 0;
}

.split-right-bg {
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background-color: var(--color-main);
	background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
	background-size: 20px 20px;
	z-index: 0;
}

.split-container {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 0 1rem;
}

/* Left Side Company */
.company-content-split {
	width: 50%;
	padding: 6rem 4rem 6rem 0;
	box-sizing: border-box;
}

.company-message-box {
	background: #F8F9FA;
	border-radius: 0 8px 8px 0;
	border-left: 4px solid var(--color-main);
	padding: 3rem 2.5rem 2rem;
	margin-bottom: 3rem;
	position: relative;
}

.quote-mark {
	position: absolute;
	top: 10px;
	left: 15px;
	font-family: var(--font-serif);
	font-size: 4rem;
	line-height: 1;
	color: #E2E6EC;
	font-weight: 800;
}

.message-text {
	position: relative;
	z-index: 1;
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--color-main);
	line-height: 1.8;
	margin-bottom: 2rem;
}

.message-author {
	text-align: right;
	font-size: 0.85rem;
	font-weight: 700;
	color: #555;
	margin: 0;
}

.company-table {
	width: 100%;
	border-collapse: collapse;
}

.company-table th,
.company-table td {
	padding: 1.5rem 0;
	border-bottom: 1px solid #F0F0F0;
	text-align: left;
	line-height: 1.6;
}

.company-table tr:first-child th,
.company-table tr:first-child td {
	border-top: 1px solid #F0F0F0;
}

.company-table th {
	width: 25%;
	font-weight: 800;
	color: var(--color-main);
	vertical-align: top;
}

.company-table td {
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--color-black);
}

/* Right Side Contact */
.contact-content-split {
	width: 50%;
	padding: 6rem 0 6rem 4rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-sizing: border-box;
}

.contact-title-split {
	text-align: center;
	margin-bottom: 3rem;
}

.contact-title-split .contact-en {
	font-family: var(--font-en);
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: #E2E6EC;
	margin-bottom: 1rem;
}

.contact-title-split .contact-jp {
	font-size: 2rem;
	font-weight: 800;
	color: var(--color-white);
	line-height: 1.4;
	margin: 0;
}

.contact-buttons-split {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	max-width: 440px;
	margin: 0 auto 2.5rem;
	width: 100%;
}

.btn-contact-primary,
.btn-contact-secondary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 1.25rem 2rem;
	border-radius: 6px;
	text-decoration: none;
	transition: var(--transition-smooth);
}

.btn-contact-primary {
	background: var(--color-white);
	color: var(--color-main);
}

.btn-contact-primary:hover {
	background: #F0F2F5;
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-contact-secondary {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: var(--color-white);
}

.btn-contact-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.4);
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
}

.btn-text {
	flex: 1;
	text-align: center;
	font-weight: 800;
	font-size: 1.1rem;
	letter-spacing: 0.05em;
}

.btn-text small {
	font-size: 0.8rem;
	font-weight: 600;
}

.btn-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
}

.contact-note {
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.8rem;
	line-height: 1.6;
	margin: 0;
}

/* Contact */
.contact {
	background-color: var(--color-white);
}

.contact-box {
	max-width: 800px;
	margin: 0 auto;
	background: var(--color-white);
	padding: var(--spacing-lg);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	font-size: 0.95rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
}

.form-group label span {
	background: #E53E3E;
	color: white;
	font-size: 0.7rem;
	padding: 0.1rem 0.5rem;
	border-radius: 2px;
	margin-left: 0.5rem;
	vertical-align: middle;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 1rem;
	border: 1px solid #DDD;
	border-radius: 4px;
	font-family: var(--font-sans);
	font-size: 1rem;
	background: #FAFAFA;
	transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--color-main);
	background: var(--color-white);
	box-shadow: 0 0 0 3px rgba(27, 54, 93, 0.1);
}

/* Footer */
footer {
	background-color: var(--color-black);
	color: var(--color-white);
	padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-inner {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: var(--spacing-lg);
	margin-bottom: var(--spacing-lg);
}

.footer-info h3 {
	font-size: 1.5rem;
	margin-bottom: var(--spacing-sm);
}

.footer-info p {
	opacity: 0.7;
	font-size: 0.9rem;
	line-height: 1.6;
}

.footer-links h4 {
	margin-bottom: var(--spacing-md);
	font-size: 1.1rem;
}

.footer-links ul {
	list-style: none;
}

.footer-links ul li {
	margin-bottom: 0.75rem;
	color: var(--color-gray-medium);
}

.footer-links ul li a {
	color: var(--color-gray-medium);
	transition: var(--transition-smooth);
}

.footer-links ul li a:hover {
	color: var(--color-white);
}

.copyright {
	text-align: center;
	font-size: 0.75rem;
	color: var(--color-gray-medium);
	border-top: 1px solid #333;
	padding-top: var(--spacing-md);
}

/* Media Queries */
@media (max-width: 992px) {
	.container {
		padding: 0 var(--spacing-xs);
	}

	.hero-new {
		flex-direction: column-reverse;
		padding-top: 4rem;
		/* Add some top padding so header doesn't overlap */
	}

	.hero-container {
		flex-direction: column;
		align-items: flex-start;
	}

	.hero-left {
		width: 100%;
		margin-bottom: 3rem;
		left: 0;
		padding-left: 0;
	}

	.hero-right {
		position: relative;
		width: 100%;
		left: 0;
		top: auto;
		height: 400px;
	}

	.hero-visual {
		border-radius: 0;
	}

	.hero-btns-new {
		flex-direction: column;
		width: 100%;
		max-width: none;
	}

	.btn-hero-main,
	.btn-hero-outline {
		width: 100%;
	}

	.services-list-new,
	.products-grid-new,
	.benefits-grid-new {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.benefits-bg-blob {
		width: 100vw;
		height: 100vw;
	}

	.benefits-bg-blob.top-left {
		top: -20vw;
		left: -40vw;
	}

	.benefits-bg-blob.bottom-right {
		bottom: -20vw;
		right: -40vw;
	}

	.products-bg-blob {
		width: 100vw;
		height: 100vw;
		top: -20vw;
		right: -30vw;
	}

	.products-bottom-box {
		flex-direction: column;
		text-align: center;
		padding: 1.5rem;
	}

	.strengths-bg-left {
		width: 100%;
		height: 350px;
		border-right: none;
		border-bottom: 1px solid #eaeaea;
	}

	.strengths-bg-icon {
		display: none;
	}

	.strengths-container {
		flex-direction: column;
		gap: 2rem;
	}

	.strengths-left {
		width: 100%;
		position: relative;
		top: 0;
	}

	.strengths-right {
		width: 100%;
	}

	.strengths-grid-new {
		flex-direction: column;
	}

	.strength-card-new {
		width: 100%;
	}

	.issues-container {
		flex-direction: column;
	}

	.issues-left {
		width: 100%;
		position: relative;
		top: 0;
		margin-bottom: 3rem;
	}

	.issues-right {
		width: 100%;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.solution-box {
		flex-direction: column;
		padding: 2rem;
		gap: 1rem;
	}

	.solution-card {
		padding: 3rem 2rem;
	}

	.sol-decor-bottom {
		width: calc(50vw + 100px);
	}

	.sol-arrow span {
		transform: rotate(90deg);
	}

	.split-left-bg,
	.split-right-bg {
		display: none;
	}

	.company-contact-split {
		flex-direction: column;
		padding: 0;
	}

	.split-container {
		padding: 0;
	}

	.company-content-split {
		width: 100%;
		padding: 4rem 1.5rem;
		background: var(--color-white);
	}

	.contact-content-split {
		width: 100%;
		padding: 4rem 1.5rem;
		background-color: var(--color-main);
		background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
		background-size: 20px 20px;
	}

	.flow-tree-wrapper {
		flex-direction: column;
		gap: 1.5rem;
	}

	.flow-line.dashed,
	.flow-branch-lines,
	.flow-bracket {
		display: none;
	}

	.flow-col-markets {
		flex-direction: column;
		width: 100%;
		align-items: center;
	}

	.node-supplier,
	.node-raize,
	.node-market,
	.node-customer {
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
	}

	.flow-message-box {
		padding: 1.5rem;
	}

	.highlight-text {
		font-size: 1.15rem;
	}
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 1.75rem;
	}

	.hero-description-strong {
		font-size: 0.9rem;
	}

	.hero-right {
		height: 300px;
	}

	.section-title h2,
	.issues-title-area .section-jp,
	.solution-header .section-jp,
	.strengths-left .section-jp,
	.flow-header .section-jp,
	.contact-title-split .contact-jp {
		font-size: 1.25rem;
	}

	.product-card-new {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.service-card-new,
	.benefit-card-new {
		padding: 2rem 1.5rem;
	}

	.benefit-card-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.sol-item-text {
		font-size: 1.25rem;
	}

	.sol-item-label {
		font-size: 0.8rem;
	}

	.issues-icon-circle {
		width: 100px;
		height: 100px;
	}

	.issues-icon-circle svg {
		width: 32px;
		height: 32px;
	}

	.issues-icon-wrap {
		margin-top: 2rem;
	}

	.process-bg-blob {
		width: 100vw;
		height: 100vw;
	}

	.process-flow-container {
		margin-top: 3rem;
	}

	.process-line {
		top: 0;
		bottom: 0;
		left: 40px;
		width: 3px;
		height: 100%;
	}

	.process-steps-new {
		flex-direction: column;
		gap: 2rem;
		align-items: flex-start;
	}

	.step-item-new,
	.step-final-wrapper {
		display: grid;
		grid-template-columns: 80px 1fr;
		grid-template-rows: auto auto;
		column-gap: 1.5rem;
		row-gap: 0.25rem;
		text-align: left;
		width: 100%;
	}

	.step-item-new {
		padding: 0;
	}

	.step-item-new .step-circle-new,
	.step-final-wrapper .step-circle-new {
		grid-column: 1;
		grid-row: 1 / 3;
		width: 80px;
		height: 80px;
		margin-bottom: 0;
		border-width: 3px;
	}

	.step-item-new h3,
	.step-final-wrapper h3 {
		grid-column: 2;
		grid-row: 1;
		margin-bottom: 0;
		align-self: end;
	}

	.step-item-new p,
	.step-final-wrapper p {
		grid-column: 2;
		grid-row: 2;
		align-self: start;
	}

	.step-num-new {
		font-size: 0.75rem;
	}

	.step-icon svg {
		width: 24px;
		height: 24px;
	}

	.step-item-new.step-final {
		display: block;
		padding: 0;
		width: 100%;
	}

	.step-final-wrapper {
		margin-top: 0;
		padding: 1.5rem 1rem;
	}

	.step-final-wrapper .step-circle-new.final {
		margin-bottom: 0;
	}

	.process-bottom-box {
		flex-direction: column;
		text-align: center;
	}

	.footer-inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 900px) {
	:root {
		--spacing-xl: 3rem;
		--spacing-lg: 2rem;
	}

	body {
		padding-top: 70px;
	}

	.hero {
		height: 70vh;
	}

	.hero-title {
		font-size: 1.5rem;
	}

	.hero-description {
		font-size: 1rem;
	}

	.hero-bg-text {
		font-size: 40vh;
	}

	/* Mobile Nav */
	.menu-toggle {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		height: 100vh;
		background: var(--color-white);
		padding: 100px 40px;
		transition: var(--transition-smooth);
		box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
		z-index: 1000;
	}

	.nav-menu.active {
		right: 0;
	}

	.nav-menu ul {
		flex-direction: column;
		gap: 2rem;
		align-items: flex-start;
	}

	.nav-menu ul li a {
		font-size: 1.2rem;
	}
}

/* ==========================================================================
Page Template Styles (page.php)
========================================================================== */

/* Page Header */
.page-header-new {
	background-color: var(--color-main);
	padding: 6rem 0 4rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.page-title-new {
	color: var(--color-white);
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	margin: 0;
	position: relative;
	z-index: 2;
}

/* Page Container (narrower for readability) */
.page-container {
	max-width: 900px;
	margin: 0 auto;
}

/* Page Content Wrapper */
.page-content-wrapper {
	padding: var(--spacing-xl) 0;
	background-color: var(--color-bg-base);
}

/* Page Content Styling */
.page-content {
	background: var(--color-white);
	padding: 4rem;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
	font-size: 1.05rem;
	line-height: 1.9;
	color: var(--color-black);
}

/* Headings */
.page-content h2 {
	font-size: 1.75rem;
	color: var(--color-main);
	margin: 3rem 0 1.5rem;
	padding-left: 1rem;
	border-left: 5px solid var(--color-main);
	font-weight: 700;
	line-height: 1.4;
}

.page-content h2:first-child {
	margin-top: 0;
}

.page-content h3 {
	font-size: 1.4rem;
	color: var(--color-black);
	margin: 2.5rem 0 1.25rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid #eaeaea;
	font-weight: 700;
}

.page-content h4 {
	font-size: 1.2rem;
	color: var(--color-main-light);
	margin: 2rem 0 1rem;
	font-weight: 700;
}

/* Paragraphs & Spacing */
.page-content p {
	margin-bottom: 1.5rem;
}

.page-content p:last-child {
	margin-bottom: 0;
}

/* Lists */
.page-content ul,
.page-content ol {
	margin: 0 0 1.5rem 1.5rem;
	padding: 0;
}

.page-content li {
	margin-bottom: 0.5rem;
}

.page-content ul li {
	list-style-type: none;
	position: relative;
}

.page-content ul li::before {
	content: "";
	position: absolute;
	left: -1.25rem;
	top: 0.6rem;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--color-main);
}

/* Tables */
.page-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 2rem 0;
	font-size: 1rem;
}

.page-content th,
.page-content td {
	padding: 1.25rem 1.5rem;
	border: 1px solid #eaeaea;
	text-align: left;
}

.page-content th {
	background-color: #F8F9FA;
	color: var(--color-main);
	font-weight: 700;
	width: 30%;
	vertical-align: top;
}

.page-content tr:nth-child(even) td {
	background-color: #fafbfc;
}

/* Blockquotes */
.page-content blockquote {
	margin: 2rem 0;
	padding: 1.5rem 2rem;
	background-color: #F8F9FA;
	border-left: 4px solid var(--color-main-light);
	font-style: normal;
	color: var(--color-gray-medium);
}

.page-content blockquote p:last-child {
	margin-bottom: 0;
}

/* Links */
.page-content a {
	color: var(--color-main-light);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.page-content a:hover {
	color: var(--color-main);
	text-decoration: none;
}

/* Responsive for Page Content */
@media screen and (max-width: 768px) {
	.page-header-new {
		padding: 4rem 0 3rem;
	}

	.page-title-new {
		font-size: 2rem;
	}

	.page-content {
		padding: 2rem 1.5rem;
		font-size: 1rem;
	}

	.page-content th,
	.page-content td {
		display: block;
		width: 100%;
	}

	.page-content th {
		background-color: #F8F9FA;
		border-bottom: none;
	}
}