@charset "UTF-8";
/*
Template: swell
Theme Name: TOKAI NET SWELL CHILD
Theme URI: https://tokai-net.com/
Description: トーカイネット株式会社 公式サイト用SWELL子テーマ
Version: 2.1.2
Author: TOKAI NET Co., Ltd.
License: GNU General Public License
License URI: http://www.gnu.org/licenses/gpl.html
*/

:root {
	--tn-blue: #215a78;
	--tn-blue-deep: #174963;
	--tn-navy: #16384d;
	--tn-navy-dark: #0e2b3e;
	--tn-green: #3c8d83;
	--tn-orange: #e38a43;
	--tn-text: #24343d;
	--tn-text-sub: #5d6b72;
	--tn-white: #fff;
	--tn-bg-soft: #f5f8fa;
	--tn-bg-blue: #eef5f8;
	--tn-line: #d9e3e8;
	--tn-header-height: 82px;
	--tn-container: 1180px;
	--tn-space-section: clamp(4.5rem, 8vw, 7.5rem);
	--tn-font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--tn-header-height) + 1.5rem);
}

body.tn-site {
	margin: 0;
	background: var(--tn-white);
	color: var(--tn-text);
	font-family: var(--tn-font);
	font-size: 16px;
	line-height: 1.8;
	letter-spacing: .02em;
	-webkit-font-smoothing: antialiased;
}

.tn-site *,
.tn-site *::before,
.tn-site *::after {
	box-sizing: border-box;
}

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

.tn-site a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: .18em;
}

.tn-site a:hover {
	color: var(--tn-blue);
}

.tn-site :where(a, button, input, textarea, select, summary):focus-visible {
	outline: 3px solid #f0a15f;
	outline-offset: 3px;
}

.tn-site button,
.tn-site input,
.tn-site textarea,
.tn-site select {
	font: inherit;
}

.tn-site button {
	cursor: pointer;
}

.tn-site h1,
.tn-site h2,
.tn-site h3,
.tn-site p {
	margin-top: 0;
}

.tn-site h1,
.tn-site h2,
.tn-site h3 {
	color: var(--tn-navy);
	font-weight: 750;
	letter-spacing: .03em;
	line-height: 1.42;
}

.tn-site h1 {
	font-size: clamp(2.25rem, 4.4vw, 4.25rem);
}

.tn-site h2 {
	font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.tn-site h3 {
	font-size: clamp(1.15rem, 1.7vw, 1.4rem);
}

.tn-container {
	width: min(calc(100% - 48px), var(--tn-container));
	margin-inline: auto;
}

.tn-main {
	min-height: 60vh;
	padding-top: var(--tn-header-height);
	overflow: clip;
}

.tn-section {
	padding-block: var(--tn-space-section);
}

.tn-section--soft {
	background: var(--tn-bg-soft);
}

.tn-section--line {
	border-block: 1px solid var(--tn-line);
}

.tn-section--navy {
	background: var(--tn-navy);
	color: rgba(255, 255, 255, .85);
}

.tn-section--navy :where(h2, h3) {
	color: var(--tn-white);
}

.tn-eyebrow {
	margin-bottom: .65rem;
	color: var(--tn-blue);
	font-size: .76rem;
	font-weight: 800;
	letter-spacing: .18em;
}

.tn-eyebrow--light {
	color: #a9d6e5;
}

.tn-section-heading {
	max-width: 780px;
	margin-bottom: clamp(2.25rem, 5vw, 4rem);
}

.tn-section-heading h2 {
	margin-bottom: 1rem;
}

.tn-section-heading > p:last-child {
	margin-bottom: 0;
	color: var(--tn-text-sub);
}

.tn-section--navy .tn-section-heading > p:last-child {
	color: rgba(255, 255, 255, .72);
}

.tn-icon {
	width: 1.3em;
	height: 1.3em;
	flex: 0 0 auto;
	vertical-align: -.2em;
}

.tn-skip-link {
	position: fixed;
	top: -100px;
	left: 1rem;
	z-index: 9999;
	padding: .75rem 1rem;
	background: var(--tn-navy);
	color: #fff;
}

.tn-skip-link:focus {
	top: 1rem;
	color: #fff;
}

/* Header */
.tn-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 1000;
	height: var(--tn-header-height);
	border-bottom: 1px solid rgba(22, 56, 77, .1);
	background: rgba(255, 255, 255, .97);
	transition: height .2s ease, box-shadow .2s ease;
}

.tn-header.is-scrolled {
	height: 68px;
	box-shadow: 0 8px 28px rgba(22, 56, 77, .08);
}

.tn-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(calc(100% - 40px), 1320px);
	height: 100%;
	margin-inline: auto;
	gap: 2rem;
}

.tn-logo {
	display: inline-flex;
	align-items: center;
	gap: .75rem;
	color: var(--tn-navy);
	text-decoration: none;
}

.tn-logo:hover {
	color: var(--tn-navy);
}

.tn-logo img {
	width: auto;
	max-width: 255px;
	height: 54px;
	object-fit: contain;
}

.tn-header.is-scrolled .tn-logo img {
	height: 46px;
}

.tn-logo__mark {
	display: grid;
	width: 45px;
	height: 45px;
	place-items: center;
	background: var(--tn-blue);
	color: #fff;
	font-weight: 800;
	letter-spacing: -.05em;
}

.tn-logo__text {
	display: grid;
	line-height: 1.3;
}

.tn-logo__text strong {
	font-size: 1rem;
}

.tn-logo__text small {
	margin-top: .2rem;
	color: var(--tn-text-sub);
	font-size: .62rem;
}

.tn-desktop-nav > ul {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
	gap: clamp(1rem, 2.4vw, 2.1rem);
}

.tn-desktop-nav > ul > li {
	position: relative;
}

.tn-desktop-nav > ul > li > a {
	display: flex;
	align-items: center;
	min-height: 48px;
	border-bottom: 2px solid transparent;
	color: var(--tn-navy);
	font-size: .9rem;
	font-weight: 700;
	text-decoration: none;
}

.tn-desktop-nav > ul > li > a:hover,
.tn-desktop-nav > ul > li > a[aria-current="page"] {
	border-color: var(--tn-blue);
	color: var(--tn-blue);
}

.tn-desktop-nav .tn-nav-contact {
	min-height: auto;
	padding: .85rem 1.15rem;
	border: 1px solid var(--tn-navy);
	background: var(--tn-navy);
	color: #fff;
}

.tn-desktop-nav .tn-nav-contact:hover {
	border-color: var(--tn-blue);
	background: var(--tn-blue);
	color: #fff;
}

.tn-nav-services {
	display: flex;
	align-items: center;
}

.tn-nav-services__toggle {
	width: 32px;
	height: 32px;
	margin-left: -.3rem;
	border: 0;
	background: transparent;
}

.tn-nav-services__toggle::before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	margin: auto;
	border-right: 2px solid var(--tn-navy);
	border-bottom: 2px solid var(--tn-navy);
	transform: rotate(45deg) translate(-2px, -2px);
}

.tn-service-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	width: 520px;
	padding: 1rem;
	border: 1px solid var(--tn-line);
	background: #fff;
	box-shadow: 0 20px 50px rgba(15, 45, 62, .14);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

.tn-nav-services:hover .tn-service-menu,
.tn-nav-services:focus-within .tn-service-menu,
.tn-nav-services.is-open .tn-service-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.tn-service-menu ul {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin: 0;
	padding: 0;
	list-style: none;
	gap: 0;
}

.tn-service-menu a {
	display: block;
	padding: .8rem .9rem;
	border-bottom: 1px solid var(--tn-line);
	color: var(--tn-text);
	font-size: .86rem;
	text-decoration: none;
}

.tn-service-menu a:hover {
	background: var(--tn-bg-soft);
}

.tn-menu-button,
.tn-mobile-menu {
	display: none;
}

/* Buttons and links */
.tn-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: .85rem 1.5rem;
	border: 1px solid var(--tn-blue);
	background: var(--tn-blue);
	color: #fff;
	font-weight: 750;
	text-decoration: none;
	gap: .55rem;
	transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.tn-button:hover {
	border-color: var(--tn-navy);
	background: var(--tn-navy);
	color: #fff;
	transform: translateY(-2px);
}

.tn-button--white {
	border-color: #fff;
	background: #fff;
	color: var(--tn-navy);
}

.tn-button--white:hover {
	border-color: #fff;
	background: transparent;
	color: #fff;
}

.tn-button--outline {
	background: transparent;
	color: var(--tn-blue);
}

.tn-button--outline:hover {
	color: #fff;
}

.tn-text-link,
.tn-section-link a {
	display: inline-flex;
	align-items: center;
	color: var(--tn-blue);
	font-size: .9rem;
	font-weight: 750;
	text-decoration: none;
	gap: .35rem;
}

.tn-section-link {
	margin: 2.5rem 0 0;
	text-align: right;
}

/* Hero */
.tn-hero {
	position: relative;
	min-height: calc(760px - var(--tn-header-height));
	padding: clamp(3rem, 6vw, 5.5rem) 0 4rem;
	background:
		linear-gradient(90deg, #fff 0%, #fff 62%, rgba(238, 245, 248, .72) 62%, rgba(238, 245, 248, .72) 100%);
}

.tn-hero::after {
	content: "";
	position: absolute;
	right: -8%;
	bottom: 5%;
	width: 48%;
	height: 34%;
	border: 1px solid rgba(33, 90, 120, .12);
	border-radius: 50%;
	transform: rotate(-8deg);
	pointer-events: none;
}

.tn-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(370px, .75fr);
	align-items: center;
	gap: 3rem;
}

.tn-hero__content {
	position: relative;
	z-index: 2;
}

.tn-hero__label {
	display: inline-flex;
	align-items: center;
	margin-bottom: 1.5rem;
	padding: .55rem .75rem;
	border: 1px solid #b9d1dd;
	background: #fff;
	color: var(--tn-blue);
	font-size: .83rem;
	font-weight: 700;
	gap: .4rem;
}

.tn-hero__mobile-break {
	display: none;
}

.tn-hero h1 {
	max-width: 760px;
	margin-bottom: 1.4rem;
	font-size: clamp(2.35rem, 3.4vw, 3.05rem);
	line-height: 1.45;
}

.tn-hero h1 span {
	display: block;
}

.tn-hero__lead {
	margin-bottom: 1.8rem;
	color: var(--tn-text-sub);
	font-size: clamp(1rem, 1.6vw, 1.16rem);
}

.tn-feature-tags {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 2rem;
	padding: 0;
	list-style: none;
	gap: .55rem;
}

.tn-feature-tags li {
	display: inline-flex;
	align-items: center;
	padding: .55rem .7rem;
	background: var(--tn-bg-soft);
	color: var(--tn-navy);
	font-size: .78rem;
	font-weight: 700;
	gap: .35rem;
}

.tn-feature-tags .tn-icon {
	color: var(--tn-blue);
}

.tn-hero__contact {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.tn-hero__phone {
	display: flex;
	align-items: center;
	color: var(--tn-navy);
	text-decoration: none;
	gap: .7rem;
}

.tn-hero__phone > .tn-icon {
	width: 2.6rem;
	height: 2.6rem;
	color: var(--tn-blue);
}

.tn-hero__phone span {
	display: grid;
	line-height: 1.25;
}

.tn-hero__phone strong {
	font-size: clamp(1.8rem, 3vw, 2.35rem);
	letter-spacing: .02em;
}

.tn-hero__phone small {
	color: var(--tn-text-sub);
	font-size: .7rem;
}

.tn-hero__visual {
	display: grid;
	position: relative;
	z-index: 1;
	grid-template-columns: minmax(0, 1.18fr) minmax(130px, .82fr);
	grid-template-rows: repeat(3, minmax(0, 1fr));
	min-height: 510px;
	padding: 1rem;
	border: 1px solid rgba(33, 90, 120, .12);
	background: var(--tn-bg-blue);
	gap: .8rem;
}

.tn-hero-product {
	display: grid;
	min-width: 0;
	min-height: 0;
	padding: .8rem;
	place-items: center;
	border: 1px solid rgba(33, 90, 120, .1);
	background: #fff;
	box-shadow: 0 10px 28px rgba(22, 56, 77, .06);
	overflow: hidden;
}

.tn-hero-product .tn-image-placeholder,
.tn-hero-product img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.tn-hero-product--main {
	grid-row: 1 / -1;
	padding: 1.25rem;
}

.tn-hero-product--main img {
	max-width: 92%;
	max-height: 96%;
}

.tn-image-placeholder {
	display: grid;
	min-height: 180px;
	place-content: center;
	padding: 1.25rem;
	border: 1px dashed #9eb9c7;
	background: rgba(255, 255, 255, .75);
	color: var(--tn-blue);
	text-align: center;
}

.tn-image-placeholder small {
	display: block;
	margin-top: .4rem;
	color: var(--tn-text-sub);
	font-size: .7rem;
}

/* Cards */
.tn-service-grid {
	display: grid;
	gap: 1.25rem;
}

.tn-service-grid--primary {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tn-service-grid--support {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tn-service-grid--all {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tn-service-grid--single {
	grid-template-columns: minmax(0, 580px);
}

.tn-service-card {
	display: grid;
	min-width: 0;
	border: 1px solid var(--tn-line);
	background: #fff;
	color: var(--tn-text);
	text-decoration: none;
	transition: border-color .2s ease, transform .2s ease;
}

.tn-service-card:hover {
	border-color: var(--tn-blue);
	color: var(--tn-text);
	transform: translateY(-3px);
}

.tn-service-card--primary {
	grid-template-columns: minmax(180px, .8fr) minmax(0, 1.2fr);
	min-height: 290px;
}

.tn-service-card--support {
	grid-template-rows: 190px 1fr;
}

.tn-service-card--support .tn-service-card__media {
	position: relative;
}

.tn-service-card--support .tn-service-card__image {
	position: absolute !important;
	inset: 1.25rem !important;
	width: calc(100% - 2.5rem) !important;
	height: calc(100% - 2.5rem) !important;
}

.tn-service-card--catalog {
	grid-template-columns: 200px minmax(0, 1fr);
}

.tn-service-card__media {
	display: grid;
	min-height: 180px;
	place-items: center;
	padding: 1.25rem;
	background: var(--tn-white);
	overflow: hidden;
}

.tn-service-card__image {
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	max-height: 100% !important;
	object-fit: contain !important;
	object-position: center !important;
}

.tn-service-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: clamp(1.25rem, 3vw, 2rem);
}

.tn-service-card__category {
	margin-bottom: .5rem;
	color: var(--tn-blue);
	font-size: .68rem;
	font-weight: 800;
	letter-spacing: .1em;
}

.tn-service-card h3 {
	margin-bottom: .8rem;
}

.tn-service-card__body > p:not(.tn-service-card__category) {
	color: var(--tn-text-sub);
	font-size: .9rem;
}

.tn-service-card .tn-text-link {
	margin-top: auto;
}

.tn-service-group + .tn-service-group {
	margin-top: 4.5rem;
}

.tn-service-group > h2 {
	margin-bottom: 1.5rem;
	padding-bottom: .8rem;
	border-bottom: 1px solid var(--tn-line);
	font-size: 1.35rem;
}

.tn-price-banner {
	display: grid;
	grid-template-columns: 1fr auto auto;
	align-items: center;
	margin-top: 3rem;
	padding: 1.5rem 1.75rem;
	background: var(--tn-navy);
	color: #fff;
	text-decoration: none;
	gap: 1rem;
}

.tn-price-banner:hover {
	background: var(--tn-blue);
	color: #fff;
}

.tn-price-banner > span:first-child {
	display: grid;
}

.tn-price-banner strong {
	font-size: 1.35rem;
}

.tn-problem-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid var(--tn-line);
}

.tn-problem-grid a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 74px;
	padding: 1rem 1.25rem;
	border-right: 1px solid var(--tn-line);
	border-bottom: 1px solid var(--tn-line);
	color: var(--tn-text);
	font-weight: 650;
	text-decoration: none;
	gap: 1rem;
}

.tn-problem-grid a:nth-child(even) {
	border-right: 0;
}

.tn-problem-grid a:hover {
	background: var(--tn-bg-soft);
	color: var(--tn-blue);
}

.tn-problem-grid .tn-icon {
	color: var(--tn-blue);
}

/* Reasons and flow */
.tn-reason-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
}

.tn-reason-grid article {
	position: relative;
	padding: 2rem;
	border-left: 1px solid var(--tn-line);
}

.tn-reason-grid article:last-child {
	border-right: 1px solid var(--tn-line);
}

.tn-icon-box {
	display: grid;
	width: 52px;
	height: 52px;
	margin-bottom: 1.75rem;
	place-items: center;
	background: var(--tn-bg-blue);
	color: var(--tn-blue);
}

.tn-icon-box .tn-icon {
	width: 27px;
	height: 27px;
}

.tn-number {
	position: absolute;
	top: 1.4rem;
	right: 1.5rem;
	color: #c7d9e2;
	font-size: 1.05rem;
	font-weight: 800;
}

.tn-reason-grid article p:not(.tn-number) {
	color: var(--tn-text-sub);
	font-size: .92rem;
}

.tn-flow-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0;
	padding: 0;
	list-style: none;
}

.tn-flow-list li {
	position: relative;
	padding: 2rem 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, .22);
	border-bottom: 1px solid rgba(255, 255, 255, .22);
	border-left: 1px solid rgba(255, 255, 255, .22);
}

.tn-flow-list li:last-child {
	border-right: 1px solid rgba(255, 255, 255, .22);
}

.tn-flow-list li > span {
	display: inline-block;
	margin-bottom: 1.4rem;
	color: #9ecbdc;
	font-size: .8rem;
	font-weight: 800;
}

.tn-flow-list p {
	margin-bottom: 0;
	color: rgba(255, 255, 255, .72);
	font-size: .88rem;
}

/* Area */
.tn-area__grid {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(440px, 1.05fr);
	align-items: center;
	gap: clamp(2rem, 6vw, 5rem);
}

.tn-area-lists {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-top: 2rem;
	gap: 1.5rem;
}

.tn-area-lists h3 {
	margin-bottom: .75rem;
	font-size: 1rem;
}

.tn-area-lists ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style: none;
	gap: .45rem;
}

.tn-area-lists li {
	padding: .35rem .55rem;
	border: 1px solid var(--tn-line);
	background: #fff;
	font-size: .78rem;
}

.tn-note {
	margin: 1.5rem 0 0;
	color: var(--tn-text-sub);
	font-size: .78rem;
}

.tn-area-map {
	display: grid;
	grid-template-columns: 1fr 1.35fr 1.2fr;
	align-items: stretch;
	min-height: 310px;
	padding: 2.5rem;
	background: #edf4f7;
	gap: .55rem;
	transform: skewX(-7deg);
}

.tn-map-region {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 120px;
	padding: 1rem;
	border: 1px solid rgba(22, 56, 77, .15);
	text-align: center;
	transform: skewX(7deg);
}

.tn-map-region strong {
	color: var(--tn-navy);
	font-size: .9rem;
}

.tn-map-region span {
	margin-top: .4rem;
	color: var(--tn-text-sub);
	font-size: .72rem;
}

.tn-map-region--aichi {
	align-self: end;
	background: #dbeadf;
}

.tn-map-region--west {
	background: #a9d2e3;
}

.tn-map-region--central {
	align-self: start;
	background: #d7e8ef;
}

.tn-map-base {
	display: inline-flex;
	align-items: center;
	color: var(--tn-navy) !important;
	font-weight: 800;
	gap: .2rem;
}

/* FAQ / News */
.tn-faq-list {
	border-top: 1px solid var(--tn-line);
}

.tn-faq-list details {
	border-bottom: 1px solid var(--tn-line);
	background: #fff;
}

.tn-faq-list summary {
	display: flex;
	align-items: center;
	min-height: 78px;
	padding: 1.1rem 1.25rem;
	color: var(--tn-navy);
	font-weight: 700;
	list-style: none;
	cursor: pointer;
	gap: .9rem;
}

.tn-faq-list summary::-webkit-details-marker {
	display: none;
}

.tn-faq-mark {
	display: grid;
	width: 32px;
	height: 32px;
	flex: 0 0 32px;
	place-items: center;
	background: var(--tn-blue);
	color: #fff;
	font-size: .78rem;
	font-weight: 800;
}

.tn-faq-toggle {
	position: relative;
	width: 18px;
	height: 18px;
	margin-left: auto;
}

.tn-faq-toggle::before,
.tn-faq-toggle::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 2px;
	background: var(--tn-blue);
	transform: translate(-50%, -50%);
}

.tn-faq-toggle::after {
	transform: translate(-50%, -50%) rotate(90deg);
	transition: transform .2s ease;
}

.tn-faq-list details[open] .tn-faq-toggle::after {
	transform: translate(-50%, -50%) rotate(0);
}

.tn-faq-answer {
	display: flex;
	padding: 0 1.25rem 1.5rem;
	gap: .9rem;
}

.tn-faq-answer .tn-faq-mark {
	background: var(--tn-green);
}

.tn-faq-answer p {
	margin: .2rem 0 0;
	color: var(--tn-text-sub);
}

.tn-news-list {
	border-top: 1px solid var(--tn-line);
}

.tn-news-list a {
	display: grid;
	grid-template-columns: 130px 1fr auto;
	align-items: center;
	min-height: 74px;
	padding: 1rem 1.25rem;
	border-bottom: 1px solid var(--tn-line);
	color: var(--tn-text);
	text-decoration: none;
	gap: 1.5rem;
}

.tn-news-list a:hover {
	background: var(--tn-bg-soft);
}

.tn-news-list time {
	color: var(--tn-text-sub);
	font-size: .78rem;
}

.tn-news-list .tn-icon {
	color: var(--tn-blue);
}

.tn-empty {
	padding: 3rem;
	background: var(--tn-bg-soft);
	text-align: center;
}

/* Page hero / breadcrumbs */
.tn-page-hero {
	position: relative;
	padding: clamp(4rem, 7vw, 6.5rem) 0;
	background:
		linear-gradient(90deg, #fff 0%, #fff 60%, var(--tn-bg-blue) 60%, var(--tn-bg-blue) 100%);
	border-bottom: 1px solid var(--tn-line);
}

.tn-page-hero::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 6%;
	width: 28%;
	height: 55%;
	border-top: 1px solid rgba(33, 90, 120, .14);
	border-bottom: 1px solid rgba(33, 90, 120, .14);
	transform: translateY(-50%) skewY(-9deg);
}

.tn-page-hero__inner {
	position: relative;
	z-index: 1;
}

.tn-page-hero h1 {
	max-width: 850px;
	margin-bottom: 1.25rem;
}

.tn-page-hero__lead {
	max-width: 760px;
	margin-bottom: 0;
	color: var(--tn-text-sub);
	font-size: 1.05rem;
}

.tn-breadcrumbs {
	display: flex;
	align-items: center;
	padding-block: 1rem;
	color: var(--tn-text-sub);
	font-size: .72rem;
	gap: .55rem;
}

.tn-breadcrumbs a {
	color: var(--tn-blue);
}

/* Detail pages */
.tn-service-intro__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
	align-items: center;
	gap: 4rem;
}

.tn-service-intro__media {
	min-height: 360px;
	padding: 1.5rem;
	background: var(--tn-bg-blue);
}

.tn-service-detail-image {
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: contain;
}

.tn-check-list {
	display: grid;
	margin: 1.5rem 0 0;
	padding: 0;
	list-style: none;
	gap: .8rem;
}

.tn-check-list--inline {
	grid-template-columns: repeat(3, max-content);
	gap: .75rem 1.3rem;
}

.tn-check-list li {
	display: flex;
	align-items: flex-start;
	gap: .5rem;
}

.tn-check-list .tn-icon {
	margin-top: .22rem;
	color: var(--tn-green);
}

.tn-detail-section {
	display: grid;
	grid-template-columns: minmax(240px, .36fr) minmax(0, .64fr);
	gap: clamp(2.5rem, 7vw, 6rem);
}

.tn-detail-section__heading {
	position: relative;
}

.tn-detail-section__heading h2 {
	font-size: clamp(1.6rem, 2.7vw, 2.25rem);
}

.tn-section-number {
	margin-bottom: .7rem;
	color: var(--tn-blue);
	font-size: .8rem;
	font-weight: 800;
	letter-spacing: .14em;
}

.tn-detail-lead {
	margin-bottom: 1.8rem;
	color: var(--tn-text-sub);
	font-size: 1.02rem;
}

.tn-check-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--tn-line);
}

.tn-check-grid li {
	display: flex;
	align-items: flex-start;
	min-height: 58px;
	padding: .85rem 1rem;
	border-right: 1px solid var(--tn-line);
	border-bottom: 1px solid var(--tn-line);
	gap: .55rem;
}

.tn-check-grid li:nth-child(even) {
	border-right: 0;
}

.tn-check-grid .tn-icon {
	margin-top: .2rem;
	color: var(--tn-green);
}

.tn-info-columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 1.5rem;
	border-top: 1px solid var(--tn-line);
	border-left: 1px solid var(--tn-line);
}

.tn-info-columns:has(article:nth-child(3)) {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tn-info-columns article {
	padding: 1.5rem;
	border-right: 1px solid var(--tn-line);
	border-bottom: 1px solid var(--tn-line);
	background: #fff;
}

.tn-info-columns h3 {
	margin-bottom: .7rem;
	font-size: 1.05rem;
}

.tn-info-columns p {
	margin-bottom: 0;
	color: var(--tn-text-sub);
	font-size: .88rem;
}

.tn-table-wrap {
	margin-top: 1.5rem;
	overflow-x: auto;
}

.tn-table {
	width: 100%;
	min-width: 620px;
	border-collapse: collapse;
	background: #fff;
	font-size: .86rem;
}

.tn-table th,
.tn-table td {
	padding: .85rem 1rem;
	border: 1px solid var(--tn-line);
	text-align: left;
}

.tn-table thead th {
	background: var(--tn-navy);
	color: #fff;
}

.tn-table tbody th {
	background: var(--tn-bg-soft);
	color: var(--tn-navy);
}

.tn-mini-steps {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	margin: 1.5rem 0 0;
	padding: 0;
	list-style: none;
}

.tn-mini-steps li {
	padding: 1rem;
	border: 1px solid var(--tn-line);
	border-right: 0;
	font-size: .82rem;
}

.tn-mini-steps li:last-child {
	border-right: 1px solid var(--tn-line);
}

.tn-mini-steps span {
	display: block;
	margin-bottom: .6rem;
	color: var(--tn-blue);
	font-size: .75rem;
	font-weight: 800;
}

.tn-phone-only {
	display: grid;
	margin-top: 1.5rem;
	padding: 1.25rem;
	border-left: 4px solid var(--tn-orange);
	background: #fff8f1;
}

.tn-phone-only p {
	margin-bottom: .3rem;
	font-weight: 700;
}

.tn-phone-only a {
	display: inline-flex;
	align-items: center;
	color: var(--tn-navy);
	text-decoration: none;
	gap: .5rem;
}

.tn-phone-only strong {
	font-size: 1.8rem;
}

.tn-phone-only small {
	color: var(--tn-text-sub);
}

.tn-service-contact {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 2rem;
	background: var(--tn-bg-soft);
	gap: 2rem;
}

.tn-service-contact > div {
	display: grid;
}

.tn-service-contact p {
	margin-bottom: .25rem;
	color: var(--tn-text-sub);
	font-size: .85rem;
}

.tn-service-contact a:not(.tn-button) {
	display: inline-flex;
	align-items: center;
	color: var(--tn-navy);
	text-decoration: none;
	gap: .5rem;
}

.tn-service-contact strong {
	font-size: 2rem;
}

.tn-service-contact small {
	color: var(--tn-text-sub);
}

.tn-price-highlight {
	padding-block: 2.75rem;
	background: var(--tn-navy);
	color: #fff;
	text-align: center;
}

.tn-price-highlight h2 {
	margin-bottom: .4rem;
	color: #fff;
	font-size: 1.3rem;
}

.tn-price-highlight p {
	margin-bottom: .3rem;
	color: rgba(255, 255, 255, .72);
	font-size: .82rem;
}

.tn-price-highlight__value strong {
	font-size: clamp(2.25rem, 5vw, 4.2rem);
}

.tn-price-highlight__value span {
	margin-left: .45rem;
}

.tn-two-column {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(350px, .75fr);
	align-items: center;
	gap: 4rem;
}

.tn-price-card {
	display: block;
	padding: 2.2rem;
	border-top: 4px solid var(--tn-orange);
	background: #fff;
	color: var(--tn-text);
	text-decoration: none;
}

.tn-price-card p {
	margin-bottom: .4rem;
	color: var(--tn-text-sub);
	font-size: .78rem;
}

.tn-price-card h2 {
	margin-bottom: .8rem;
	font-size: 1.4rem;
}

.tn-price-card > strong {
	display: inline-block;
	color: var(--tn-navy);
	font-size: 2.25rem;
}

.tn-price-card > small {
	display: block;
	margin: .4rem 0 1.5rem;
	color: var(--tn-text-sub);
}

/* Company */
.tn-company-intro {
	max-width: 900px;
	text-align: center;
}

.tn-company-intro p:last-child {
	color: var(--tn-text-sub);
	font-size: 1.05rem;
}

.tn-message {
	display: grid;
	grid-template-columns: .35fr .65fr;
	gap: 4rem;
}

.tn-message__body p {
	color: var(--tn-text-sub);
}

.tn-message__signature {
	margin-top: 2rem;
	color: var(--tn-navy) !important;
	font-weight: 700;
	text-align: right;
}

.tn-company-profile {
	border-top: 1px solid var(--tn-line);
}

.tn-company-profile dl {
	margin: 0;
}

.tn-company-profile dl > div {
	display: grid;
	grid-template-columns: 180px 1fr;
	border-bottom: 1px solid var(--tn-line);
}

.tn-company-profile dt,
.tn-company-profile dd {
	margin: 0;
	padding: 1rem 1.25rem;
}

.tn-company-profile dt {
	background: #eaf1f4;
	color: var(--tn-navy);
	font-weight: 700;
}

.tn-company-profile a {
	color: var(--tn-blue);
}

.tn-office-grid {
	display: grid;
	grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr);
	align-items: start;
	gap: 3rem;
}

.tn-alert {
	margin-top: 1.5rem;
	padding: 1rem 1.2rem;
	border-left: 4px solid var(--tn-orange);
	background: #fff8f1;
	color: var(--tn-text-sub);
	font-size: .85rem;
}

.tn-map-embed iframe {
	display: block;
	width: 100%;
	max-width: none;
}

/* Contact */
.tn-contact-guide {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border: 1px solid var(--tn-line);
}

.tn-contact-guide > div {
	padding: clamp(1.5rem, 4vw, 2.5rem);
}

.tn-contact-guide__phone {
	background: var(--tn-navy);
	color: #fff;
}

.tn-contact-guide__phone :where(h2, a) {
	color: #fff;
}

.tn-contact-guide__phone a {
	display: inline-flex;
	align-items: center;
	margin: .5rem 0;
	text-decoration: none;
	gap: .6rem;
}

.tn-contact-guide__phone strong {
	font-size: clamp(2rem, 4vw, 3.1rem);
}

.tn-contact-guide__phone .tn-note {
	color: rgba(255, 255, 255, .68);
}

.tn-contact-shell {
	max-width: 920px;
}

.tn-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.4rem;
}

.tn-field--full {
	grid-column: 1 / -1;
}

.tn-field label,
.tn-field legend {
	display: block;
	color: var(--tn-navy);
	font-weight: 700;
}

.tn-field input:not([type="checkbox"]),
.tn-field textarea,
.tn-field select {
	width: 100%;
	margin-top: .45rem;
	padding: .85rem 1rem;
	border: 1px solid #b9c9d1;
	border-radius: 0;
	background: #fff;
	color: var(--tn-text);
}

.tn-field textarea {
	min-height: 220px;
	resize: vertical;
}

.tn-field input:focus,
.tn-field textarea:focus,
.tn-field select:focus {
	border-color: var(--tn-blue);
	box-shadow: 0 0 0 2px rgba(33, 90, 120, .12);
}

.tn-required,
.tn-optional {
	display: inline-block;
	margin-left: .35rem;
	padding: .12rem .35rem;
	font-size: .65rem;
	line-height: 1.4;
	vertical-align: .1em;
}

.tn-required {
	background: #9c372f;
	color: #fff;
}

.tn-optional {
	background: #e7eef1;
	color: var(--tn-text-sub);
}

.tn-field fieldset,
fieldset.tn-field {
	min-width: 0;
	margin: 0;
	padding: 1.2rem;
	border: 1px solid var(--tn-line);
}

.tn-field .wpcf7-list-item {
	display: inline-flex;
	margin: .55rem 1rem .2rem 0;
}

.tn-field .wpcf7-list-item label {
	display: inline-flex;
	align-items: center;
	font-weight: 500;
	gap: .4rem;
}

.tn-form-notice {
	padding: 1rem 1.2rem;
	border-left: 4px solid var(--tn-orange);
	background: #fff8f1;
}

.tn-form-notice p {
	margin: 0;
	color: var(--tn-text-sub);
	font-size: .82rem;
}

.tn-privacy-agreement {
	text-align: center;
}

.tn-privacy-agreement label {
	display: inline-flex;
	align-items: center;
	font-weight: 500;
	gap: .45rem;
}

.tn-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.tn-submit-wrap {
	text-align: center;
}

.tn-submit-wrap input[type="submit"] {
	width: min(100%, 420px);
	min-height: 58px;
	border: 1px solid var(--tn-blue);
	background: var(--tn-blue);
	color: #fff;
	font-weight: 750;
	cursor: pointer;
}

.tn-submit-wrap input[type="submit"]:hover {
	background: var(--tn-navy);
}

.tn-contact-form .wpcf7-not-valid-tip {
	display: block;
	margin-top: .35rem;
	color: #9c2e25;
	font-size: .8rem;
}

.tn-contact-form .wpcf7-response-output {
	margin: 1.5rem 0 0 !important;
	padding: 1rem 1.2rem !important;
	border: 2px solid #9c2e25 !important;
}

.tn-contact-success {
	padding: clamp(2rem, 6vw, 4rem);
	background: #fff;
	text-align: center;
}

.tn-success-icon {
	display: grid;
	width: 72px;
	height: 72px;
	margin: 0 auto 1.5rem;
	place-items: center;
	background: var(--tn-green);
	color: #fff;
}

.tn-success-icon .tn-icon {
	width: 36px;
	height: 36px;
}

/* Prose / editor */
.tn-prose {
	max-width: 860px;
}

.tn-prose h2 {
	margin: 3rem 0 1rem;
	padding-bottom: .6rem;
	border-bottom: 1px solid var(--tn-line);
	font-size: 1.6rem;
}

.tn-prose h2:first-of-type {
	margin-top: 2rem;
}

.tn-prose li {
	margin-bottom: .4rem;
}

/* CTA / Footer */
.tn-contact-cta {
	padding-block: clamp(3.5rem, 7vw, 5.5rem);
	background: var(--tn-blue);
	color: rgba(255, 255, 255, .82);
}

.tn-contact-cta__inner {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 3rem;
}

.tn-contact-cta h2 {
	margin-bottom: .8rem;
	color: #fff;
}

.tn-contact-cta__actions {
	display: flex;
	align-items: stretch;
	gap: 1rem;
}

.tn-phone-link {
	display: flex;
	align-items: center;
	min-width: 320px;
	padding: .75rem 1rem;
	border: 1px solid rgba(255, 255, 255, .4);
	color: #fff;
	text-decoration: none;
	gap: .65rem;
}

.tn-phone-link:hover {
	border-color: #fff;
	color: #fff;
}

.tn-phone-link > .tn-icon {
	width: 2.2rem;
	height: 2.2rem;
}

.tn-phone-link span {
	display: grid;
	line-height: 1.2;
}

.tn-phone-link strong {
	font-size: 1.8rem;
}

.tn-phone-link small {
	font-size: .65rem;
}

.tn-footer {
	background: var(--tn-navy-dark);
	color: rgba(255, 255, 255, .72);
}

.tn-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr .8fr 1.05fr;
	padding-block: 4.5rem;
	gap: 3rem;
}

.tn-footer__brand {
	display: inline-block;
	margin-bottom: 1rem;
	color: #fff;
	font-size: 1.25rem;
	font-weight: 800;
	text-decoration: none;
}

.tn-footer__company > p {
	font-size: .83rem;
}

.tn-footer__company dl {
	margin: 1.5rem 0;
	font-size: .8rem;
}

.tn-footer__company dl > div {
	display: grid;
	grid-template-columns: 58px 1fr;
	margin-bottom: .45rem;
}

.tn-footer__company dt {
	color: #fff;
	font-weight: 700;
}

.tn-footer__company dd {
	margin: 0;
}

.tn-footer__notice {
	color: rgba(255, 255, 255, .55);
	font-size: .72rem !important;
}

.tn-footer h2 {
	margin-bottom: 1rem;
	color: #fff;
	font-size: .95rem;
}

.tn-footer__links ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.tn-footer__links li {
	margin-bottom: .55rem;
}

.tn-footer__links a {
	color: rgba(255, 255, 255, .72);
	font-size: .8rem;
	text-decoration: none;
}

.tn-footer__links a:hover {
	color: #fff;
	text-decoration: underline;
}

.tn-footer__contact {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.tn-footer__contact > p {
	margin-bottom: .35rem;
	font-size: .75rem;
}

.tn-footer__contact > a:not(.tn-button) {
	display: flex;
	align-items: center;
	color: #fff;
	text-decoration: none;
	gap: .45rem;
}

.tn-footer__contact strong {
	font-size: 1.5rem;
}

.tn-footer__contact small {
	margin-bottom: 1rem;
}

.tn-footer__contact .tn-button {
	width: 100%;
}

.tn-footer__bottom {
	padding-block: 1rem;
	border-top: 1px solid rgba(255, 255, 255, .12);
	text-align: right;
}

.tn-mobile-cta {
	display: none;
}

@media (max-width: 1080px) {
	:root {
		--tn-header-height: 72px;
	}

	.tn-desktop-nav {
		display: none;
	}

	.tn-menu-button {
		display: grid;
		width: 44px;
		height: 44px;
		place-content: center;
		border: 0;
		background: transparent;
		gap: 5px;
	}

	.tn-menu-button > span:not(.screen-reader-text) {
		display: block;
		width: 24px;
		height: 2px;
		background: var(--tn-navy);
		transition: transform .2s ease, opacity .2s ease;
	}

	.tn-menu-button[aria-expanded="true"] > span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.tn-menu-button[aria-expanded="true"] > span:nth-child(2) {
		opacity: 0;
	}

	.tn-menu-button[aria-expanded="true"] > span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.tn-mobile-menu {
		position: fixed;
		inset: var(--tn-header-height) 0 auto;
		display: block;
		max-height: calc(100dvh - var(--tn-header-height));
		padding-bottom: 1rem;
		background: #fff;
		box-shadow: 0 20px 30px rgba(22, 56, 77, .12);
		overflow-y: auto;
	}

	.tn-mobile-menu[hidden] {
		display: none;
	}

	.tn-mobile-menu__inner {
		width: min(calc(100% - 40px), 760px);
		margin-inline: auto;
	}

	.tn-mobile-menu__inner > a,
	.tn-mobile-services-toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		min-height: 54px;
		padding: .75rem 0;
		border: 0;
		border-bottom: 1px solid var(--tn-line);
		background: #fff;
		color: var(--tn-navy);
		font-weight: 700;
		text-decoration: none;
	}

	.tn-mobile-services {
		padding: .4rem 1rem;
		background: var(--tn-bg-soft);
	}

	.tn-mobile-services[hidden] {
		display: none;
	}

	.tn-mobile-services a {
		display: block;
		padding: .65rem 0;
		border-bottom: 1px solid var(--tn-line);
		color: var(--tn-text);
		font-size: .85rem;
		text-decoration: none;
	}

	.tn-mobile-menu__contact {
		justify-content: center !important;
		margin-top: 1rem;
		padding: .8rem 1rem !important;
		border: 0 !important;
		background: var(--tn-navy) !important;
		color: #fff !important;
	}

	.tn-hero__grid {
		grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
		gap: 2rem;
	}

	.tn-hero__visual {
		min-height: 440px;
	}

	.tn-hero h1 {
		font-size: clamp(2.1rem, 4vw, 2.65rem);
	}

	.tn-hero__contact {
		align-items: flex-start;
		flex-direction: column;
	}

	.tn-area__grid {
		grid-template-columns: 1fr 1fr;
	}

	.tn-contact-cta__inner {
		grid-template-columns: 1fr;
	}

	.tn-footer__grid {
		grid-template-columns: 1.4fr 1fr 1fr;
	}

	.tn-footer__contact {
		grid-column: 1 / -1;
		flex-direction: row;
		align-items: center;
		gap: 1rem;
	}

	.tn-footer__contact > p,
	.tn-footer__contact > small {
		display: none;
	}

	.tn-footer__contact .tn-button {
		width: auto;
	}
}

@media (max-width: 781px) {
	:root {
		--tn-space-section: 4.5rem;
	}

	.tn-container {
		width: min(calc(100% - 32px), var(--tn-container));
	}

	.tn-logo__text small {
		display: none;
	}

	.tn-hero {
		min-height: 0;
		padding-top: 2.5rem;
		background: #fff;
	}

	.tn-hero__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.tn-hero__label {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr);
		width: 100%;
		font-size: .74rem;
		line-height: 1.65;
	}

	.tn-hero__mobile-break {
		display: block;
	}

	.tn-hero__label-prefecture {
		display: none;
	}

	.tn-hero h1 {
		font-size: clamp(2rem, 8.5vw, 3.1rem);
	}

	.tn-hero__lead br {
		display: none;
	}

	.tn-hero__lead {
		font-size: .9rem;
	}

	.tn-hero__visual {
		grid-template-columns: minmax(0, 1.12fr) minmax(110px, .88fr);
		min-height: 410px;
	}

	.tn-hero__contact {
		width: 100%;
	}

	.tn-hero__phone {
		width: 100%;
	}

	.tn-hero__contact .tn-button {
		width: 100%;
	}

	.tn-service-grid--primary,
	.tn-service-grid--support,
	.tn-service-grid--all,
	.tn-service-grid--single,
	.tn-problem-grid,
	.tn-reason-grid,
	.tn-flow-list,
	.tn-area__grid,
	.tn-detail-section,
	.tn-service-intro__grid,
	.tn-two-column,
	.tn-message,
	.tn-office-grid,
	.tn-contact-guide,
	.tn-contact-cta__inner,
	.tn-form-grid {
		grid-template-columns: 1fr;
	}

	.tn-service-card--primary,
	.tn-service-card--catalog {
		grid-template-columns: minmax(135px, .72fr) minmax(0, 1.28fr);
		min-height: 240px;
	}

	.tn-service-card--support {
		grid-template-columns: 150px 1fr;
		grid-template-rows: auto;
	}

	.tn-service-card__media {
		min-height: 150px;
	}

	.tn-problem-grid a {
		border-right: 0;
	}

	.tn-reason-grid article,
	.tn-reason-grid article:last-child {
		border-right: 1px solid var(--tn-line);
		border-bottom: 1px solid var(--tn-line);
	}

	.tn-reason-grid article:first-child {
		border-top: 1px solid var(--tn-line);
	}

	.tn-flow-list li,
	.tn-flow-list li:last-child {
		border-right: 1px solid rgba(255, 255, 255, .22);
		border-bottom: 0;
	}

	.tn-flow-list li:last-child {
		border-bottom: 1px solid rgba(255, 255, 255, .22);
	}

	.tn-area-map {
		min-height: 260px;
	}

	.tn-page-hero {
		background: var(--tn-bg-blue);
	}

	.tn-service-intro__media {
		min-height: 300px;
	}

	.tn-check-list--inline {
		grid-template-columns: 1fr;
	}

	.tn-info-columns,
	.tn-info-columns:has(article:nth-child(3)),
	.tn-check-grid {
		grid-template-columns: 1fr;
	}

	.tn-check-grid li {
		border-right: 0;
	}

	.tn-mini-steps {
		grid-template-columns: 1fr;
	}

	.tn-mini-steps li,
	.tn-mini-steps li:last-child {
		display: flex;
		align-items: center;
		border-right: 1px solid var(--tn-line);
		border-bottom: 0;
		gap: 1rem;
	}

	.tn-mini-steps li:last-child {
		border-bottom: 1px solid var(--tn-line);
	}

	.tn-mini-steps span {
		margin-bottom: 0;
	}

	.tn-service-contact {
		align-items: flex-start;
		flex-direction: column;
	}

	.tn-contact-cta__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.tn-phone-link {
		min-width: 0;
	}

	.tn-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.tn-footer__company,
	.tn-footer__contact {
		grid-column: 1 / -1;
	}

	.tn-footer__contact {
		align-items: flex-start;
		flex-direction: column;
	}

	.tn-footer__contact > p,
	.tn-footer__contact > small {
		display: block;
	}

	.tn-mobile-cta {
		position: fixed;
		inset: auto 0 0;
		z-index: 1100;
		display: grid;
		grid-template-columns: 1.15fr .85fr;
		padding: 8px max(8px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
		background: #fff;
		box-shadow: 0 -8px 25px rgba(22, 56, 77, .16);
		gap: 8px;
	}

	.tn-inquiry-page .tn-mobile-cta {
		grid-template-columns: 1fr;
	}

	.tn-mobile-cta a {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 50px;
		color: #fff;
		font-size: .84rem;
		font-weight: 750;
		text-decoration: none;
		gap: .4rem;
	}

	.tn-mobile-cta__phone {
		background: var(--tn-blue);
	}

	.tn-mobile-cta__form {
		background: var(--tn-navy);
	}

	body.tn-site {
		padding-bottom: calc(74px + env(safe-area-inset-bottom));
	}
}

@media (max-width: 560px) {
	.tn-logo__mark {
		width: 40px;
		height: 40px;
	}

	.tn-logo__text strong {
		font-size: .8rem;
	}

	.tn-hero__label {
		align-items: flex-start;
	}

	.tn-feature-tags {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.tn-hero__visual {
		min-height: 340px;
		padding: .6rem;
		gap: .55rem;
	}

	.tn-hero-product {
		padding: .45rem;
	}

	.tn-hero-product--main {
		padding: .7rem;
	}

	.tn-service-card--primary,
	.tn-service-card--support,
	.tn-service-card--catalog {
		grid-template-columns: 1fr;
	}

	.tn-service-card__media {
		min-height: 190px;
	}

	.tn-area-lists {
		grid-template-columns: 1fr;
	}

	.tn-area-map {
		grid-template-columns: 1fr;
		min-height: 0;
		transform: none;
	}

	.tn-map-region,
	.tn-map-region--aichi,
	.tn-map-region--central {
		align-self: auto;
		min-height: 100px;
		transform: none;
	}

	.tn-news-list a {
		grid-template-columns: 1fr auto;
		gap: .4rem 1rem;
	}

	.tn-news-list time {
		grid-column: 1 / -1;
	}

	.tn-company-profile dl > div {
		grid-template-columns: 1fr;
	}

	.tn-company-profile dt {
		padding-bottom: .35rem;
	}

	.tn-company-profile dd {
		padding-top: .35rem;
	}

	.tn-price-banner {
		grid-template-columns: 1fr auto;
	}

	.tn-price-banner > span:nth-child(2) {
		grid-column: 1 / -1;
		grid-row: 2;
	}

	.tn-form-grid {
		gap: 1.2rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.tn-site *,
	.tn-site *::before,
	.tn-site *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}
