@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Zen+Kaku+Gothic+Antique&family=Zen+Maru+Gothic&family=Zen+Old+Mincho&display=swap');

/* 基本設定 */

body {
	font-family: 'Zen Maru Gothic', sans-serif;
	margin: 0;
	background-color: #fffefd;
	color: #444444;
}

a {
	text-decoration: none;
	color: inherit;
}

a:hover {
	opacity: 0.7;
}

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

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/*表示切替用*/
.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

/*コンテンツフェードイン*/
.fadein-target {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadein-target.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ヘッダー */
header {
	background-color: #65bbe9;
	color: white;
	padding: 4px 0;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1920px;
	margin: 0 auto;
	padding: 0 40px;
}

h1 {
	margin: 0;
}

.logo {
	height: 83px;
}

header nav ul {
	display: flex;
	gap: 30px;
}

header nav a {
	font-size: 20px;
}

.nav-logo {
	display: none;
}

.header-contact {
	display: flex;
	align-items: center;
	gap: 20px;
}

.header-contact .tel {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 32px;
	font-weight: 500;
}

.header-contact .tel img {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.contact-button {
	background-color: #e4007f;
	padding: 0 40px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 24px;
	height: 100px;
	box-sizing: border-box;
	margin-top: -20px;
	margin-bottom: -20px;
}

.contact-button img {
	width: 37px;
	height: 37px;
	flex-shrink: 0;
}

.sp-contact-buttons {
	display: none;
}

/* ヒーローセクション */
.hero {
	position: relative;
	height: 650px;
	color: white;
}

.swiper {
	width: 100%;
	height: 100%;
}

.slide-1 {
	background-image: url('img/top-hero.webp');
}

.slide-2 {
	background-image: url('img/slide-dummy.webp');
}

.slide-3 {
	background-image: url('img/slide-dummy.webp');
}

.swiper-slide {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 10;
	width: 100%;
}

.hero-text h1 {
	font-size: 40px;
	line-height: 1.6;
	text-shadow: 0px 0px 9.6px rgba(0, 0, 0, 0.62);
	font-weight: 500;
}

.hero-text .large {
	font-size: 48px;
	font-weight: 500;
}

/* セクション共通 */
.section-title {
	text-align: center;
	margin-bottom: 40px;
}

.section-title img {
	width: 36px;
	height: 28px;
}

.section-title .sub-title {
	font-size: 32px;
	font-weight: 700;
	color: #e4007f;
	margin: 0 0 5px;
	letter-spacing: 2.56px;
}

.section-title h2 {
	font-size: 32px;
	margin: 0;
	letter-spacing: 2.56px;
	color: #444444
}

.midori {
	color: #16902e !important;
}

.details-button {
	display: block;
	width: fit-content;
	margin: 60px auto 0;
	background-color: #e4007f;
	color: white;
	padding: 16px 64px;
	font-size: 24px;
	text-align: center;
}


/* Aboutセクション */
.about {
	padding: 100px 0;
	background-color: #fffaf0;
	text-align: center;
	background-image: url(img/tree.webp);
	background-repeat: no-repeat;
	background-position: left 10% bottom;
	background-size: 250px;
}

.about-description {
	font-size: 20px;
	line-height: 2;
	max-width: 880px;
	margin: 0 auto;
	letter-spacing: 1.6px;
}

/* Serviceセクション */
.service {
	padding: 100px 0;
	background-color: #ffffff;
}

.service .section-title h2 {
	color: #444444;
}

.service-grid {
	max-width: 1200px;
	margin: 80px auto 0;
}

.service-item {
	display: flex;
	gap: 50px;
	text-align: left;
	margin: 50px 0;
}

.reverse {
	flex-direction: row-reverse;
}

.service-number {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}

.service-number p {
	font-size: 64px !important;
	color: #16902e;
	line-height: 1 !important;
	margin: 0;
	margin-bottom: 0 !important;
}

.service-number span:first-child {
	color: #444444;
}

.service-number img {
	width: 26px;
	height: 24px;
}

.service-item h3 {
	font-size: 28px;
	color: #16902e;
	margin-bottom: 20px;
}

.service-item p {
	font-size: 20px;
	line-height: 2;
	margin-bottom: 20px;
	letter-spacing: 1.28px;
}

.service-image {
	width: 400px;
	height: 230px;
	margin-top: 20px;
	object-fit: cover;
}

/* Flowセクション */
.flow {
	padding: 100px 0;
	background-image: url('img/flow-bg.webp');
	background-size: cover;
}

.flow .section-title h2 {
	color: #444444;
}

.flow-steps {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 80px;
	flex-wrap: wrap;
}

.flow-step {
	background-image: url('img/flow-item-bg.webp');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 539px;
	height: 262px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
	box-sizing: border-box;
	color: #ff9500;
}

.flow-step img {
	height: 58px;
	flex-shrink: 0;
	margin-bottom: 20px;
}

.flow-step h3 {
	font-size: 32px;
	margin: 0 0 10px;
}

.flow-step p {
	font-size: 16px;
	max-width: 480px;
	margin: 0;
}

.flow-arrow {
	background-image: url('img/line1.webp');
	background-size: contain;
	background-repeat: no-repeat;
	width: 14px;
	height: 115px;
	margin: 0 auto;
}

/* Areaセクション */
.area {
	padding: 100px 0;
	text-align: center;
}

.area .section-title h2 {
	color: #444444;
}

.area-content {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 60px;
	margin-top: 80px;
}

.area-list-container {
	text-align: left;
	letter-spacing: 1.92px;
}

.area-list-title {
	background-color: #16902e;
	color: white;
	font-size: 24px;
	padding: 15px 30px;
	text-align: center;
	margin-bottom: 20px;
}

.area-list-container ul {
	font-size: 24px;
	line-height: 2;
}

.area-map {
	max-width: 800px;
	height: auto;
}

.area-note {
	font-size: 20px;
	line-height: 2;
	margin-top: 40px;
}

/* Contactセクション */
.contact {
	padding: 100px 0;
	background-color: #FFFAF0;
	text-align: center;
	background-image: url(img/deco.webp);
	background-repeat: no-repeat;
	background-position: bottom 20px center;
	background-size: 100%;
}

.contact .section-title h2 {
	color: #444444;
}

.contact>p {
	font-size: 20px;
	margin-top: 40px;
}

.contact-buttons {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-top: 40px;
}

.contact-tel-button,
.contact-mail-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 316px;
	height: 88px;
	font-size: 24px;
	gap: 10px;
}

.contact-tel-button {
	border: 1px solid #16902e;
	color: #16902e;
	font-size: 32px;
	background: #fff;
	font-weight: 600;
}

.contact-tel-button img {
	height: 24px;
	flex-shrink: 0;
}

.contact-mail-button {
	background-color: #e4007f;
	color: white;
}

.contact-mail-button img {
	height: 37px;
	flex-shrink: 0;
}

/* フッター */
footer {
	position: relative;
	background-color: #65bbe9;
	color: white;
	padding: 60px 0 20px;
}

.footer-container {
	max-width: 1920px;
	margin: 0 auto;
	padding: 0 40px;
}

.footer-top {
	text-align: center;
	margin-bottom: 40px;
	position: relative;
}

.footer-logo {
	height: 83px;
}

.page-top-button {
	position: absolute;
	right: 40px;
	top: 20px;
}

.page-top-button img {
	width: 52px;
	height: 52px;
}

.footer-main {
	display: flex;
	gap: 50px;
	justify-content: center;
	align-items: center;
	margin-bottom: 40px;
}

.footer-nav ul {
	display: flex;
	gap: 40px;
}

.footer-nav a {
	font-size: 20px;
}

.footer-contact {
	display: flex;
	align-items: center;
	gap: 30px;
}

.footer-contact .tel {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 32px;
	font-weight: 500;
}

.footer-contact .tel img {
	height: 24px;
	width: auto;
}

.footer-contact .contact-button {
	background-color: #e4007f;
	padding: 20px 40px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 24px;
	height: 130px;
	box-sizing: border-box;
	margin-top: -40px;
	margin-bottom: -40px;
}

.footer-contact .contact-button img {
	height: 37px;
	flex-shrink: 0;
}

.copyright {
	text-align: center;
	font-size: 15px;
	margin-top: 60px;
}

/* 下層ページ共通 */
.page-hero {
	background-image: url('img/top-hero.webp');
	background-size: cover;
	background-position: center;
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
}

.page-hero h1 {
	font-size: 40px;
	line-height: 1.6;
	text-shadow: 0px 0px 9.6px rgba(0, 0, 0, 0.62);
}

/* 業務内容 */
.service-details {
	padding: 100px 0;
	background-color: #fffefd;
}

.service-section {
	margin-bottom: 80px;
}

.service-container {
	max-width: 660px;
	margin: 0 auto;
	padding: 0 20px;
}

.service-title-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	padding-bottom: 10px;
	margin-bottom: 40px;
}

.service-title-container img {
	width: 26px;
	height: 24px;
}

.service-title-container h2 {
	font-size: 32px;
	color: #16902e;
	margin: 0;
}

.service-section h3 {
	font-size: 24px;
	color: #16902e;
	margin-bottom: 20px;
	text-align: center;
}

.service-section p {
	font-size: 20px;
	line-height: 2;
	margin-bottom: 40px;
}

.manager-work {
	margin-bottom: 40px;
}

.manager-work:last-child {
	margin-bottom: 0;
}

/* flow.html */
.flow-section {
	padding: 80px 0;
	background-color: #fffaf0;
}

.flow-timeline {
	position: relative;
	max-width: 930px;
	margin: 40px auto 0;
	padding: 40px 0;
}

.flow-item {
	position: relative;
	width: 100%;
}

.flow-item-content {
	position: relative;
}

.flow-item-number-wrapper {
	position: absolute;
	top: -35px;
	left: -20px;
	order: 2;
	flex-shrink: 0;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background-color: #FF9500;
	;
	z-index: 1;
	color: #FFCB83;
	text-align: center;
	font-family: "Josefin Sans";
	font-size: 48px;
	font-style: italic;
	font-weight: 500;
	line-height: 160%;
}

.flow-card {
	background-color: white;
	border-radius: 11px;
	border: 3px solid #FFCB83;
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 20px;
	height: 100%;
}

.flow-card-text {
	flex: 1;
}

.flow-card-text h3 {
	color: #FF9500;
	text-align: center;
	font-family: "Zen Maru Gothic";
	font-size: 32px;
	font-style: normal;
	font-weight: 500;
	line-height: 160%;
	letter-spacing: 2.56px;
	text-align: left;
}

.flow-card-text p {
	color: #FF9500;
	text-align: center;
	font-family: "Zen Maru Gothic";
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 160%;
	letter-spacing: 1.28px;
	text-align: left;
}

.flow-card-image {
	flex-shrink: 0;
	width: 220px;
	height: 171px;
}

.flow-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
}

.about-insurance-section {
	padding: 80px 0;
	background-color: #fff;
}

.insurance-flow {
	max-width: 970px;
	margin: 40px auto 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.insurance-step,
.insurance-result {
	flex: 1;
	border-radius: 11px;
	border: 3px solid#16902E;
	background: #FFF;
	padding: 20px 0;
	text-align: center;
}

.insurance-step h4,
.insurance-result p {
	margin: 0;
	font-size: 24px;
	font-weight: bold;
	color: #16902E;
}

.insurance-step p {
	margin-top: 10px;
	font-size: 16px;
}

.insurance-desk {
	flex: 1;
}

.insurance-desk p {
	color: #000;
	font-family: "Zen Maru Gothic";
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: 160%;
	letter-spacing: 1.92px;
	margin: 0 0 1em;
}

.insurance-desk p span {
	color: #16902e;
	font-size: 20px;
}

.insurance-details {
	display: flex;
	align-items: flex-start;
	gap: 50px;
}

.insurance-detail-card {
	flex: 1;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	padding: 20px;
}

.insurance-detail-card h5 {
	font-size: 18px;
	margin: 0 0 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
}

.insurance-detail-card p {
	margin: 0 0 10px;
	line-height: 1.7;
}

.insurance-step-group {
	display: flex;
	gap: 50px;
}

.insurance-step-group .insurance-step {
	flex: 1;
}

.insurance-step-group-item {
	flex: 1;
}

.insurance-step-group-item p {
	font-size: 24px;
	text-align: center;
}

.insurance-note {
	text-align: center;
	margin-top: -25px;
	font-size: 15px;
	color: #555;
	line-height: 1.8;
}

.about-arrow {
	background-image: url(img/line2.webp);
	background-size: contain;
	background-repeat: no-repeat;
	width: 40px;
	height: 107px;
	margin: 0 auto;
}

.about-arrow_l {
	background-image: url(img/line3.webp);
	background-size: contain;
	background-repeat: no-repeat;
	width: 40px;
	height: 273px;
	margin: 0 auto;
}

.arrow-group {
	display: flex;
	align-items: center;
	gap: 20px;
}

/* 会社概要ページ */
.greeting-section {
	padding: 80px 0;
	background-color: #fffaf0;
}

.greeting-text {
	max-width: 880px;
	margin: 40px auto 0;
	text-align: center;
	line-height: 2;
}

.company-info-section {
	padding: 80px 0;
}

.company-table {
	width: 100%;
	max-width: 709px;
	margin: 40px auto 0;
	border-collapse: separate;
	border-spacing: 0 20px;
}

.company-table th,
.company-table td {
	padding: 20px;
	text-align: left;
	font-size: 20px;
	font-weight: 500;
	background-color: #FFFDF8;
}

.company-table th {
	background-color: #fffaf0;
	width: 248px;
}

.disclosure-section {
	padding: 80px 0;
}

.disclosure-title {
	font-size: 24px;
	text-align: center;
	margin-bottom: 30px;
}

.disclosure-section p {
	max-width: 984px;
	margin: 0 auto 30px;
	line-height: 2;
}

.text-center {
	text-align: center !important;
}

.download-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 549px;
	height: 70px;
	margin: 0 auto 40px;
	background: #E4007F;
	color: white;
	text-decoration: none;
	font-size: 18px;
	font-weight: bold;
}

.download-button img {
	margin-left: 15px;
}

.regulation-details {
	max-width: 1138px;
	margin: 0 auto;
	padding: 40px;
	background-color: white;
}

.accordion-title {
	cursor: pointer;
	position: relative;
	font-size: 24px;
	text-align: center;
	margin-bottom: 30px;
	padding-right: 2em;
}

/* 閉じている時（上アイコン） */
.accordion-title::after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background-image: url("img/minus.png");
	background-size: contain;
	background-repeat: no-repeat;
	transition: transform 0.3s, background-image 0.3s;
}

/* 開いた時（下アイコン） */
.accordion-title.active::after {
	background-image: url("img/plus.png");
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.accordion-content.open {
	max-height: 2500px;
	/* 必要に応じて調整 */
}

/*対応エリアページ*/
.voice {
	padding: 100px 0;
	text-align: center;
}

.voice-cards {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	margin-top: 80px;
}

.voice-card {
	flex: 1;
	padding: 15px;
	border-radius: 16px;
	background: #FFFAF0;
	height: 408px;
}

.voixe-image {
	max-width: 100%;
}

.voice-author {
	font-size: 20px;
	font-weight: 500;
	color: #16902e
}

.voice-text {
	font-size: 16px;
	line-height: 2;
	margin-top: 20px;
	text-align: left;
}

/*お問い合わせページ*/
.form {
	padding: 100px 0;
}

.contact-form-wrapper {
	width: 100%;
	max-width: 700px;
	margin: 60px auto;
}

/* ラベルと入力欄の横並び */
.form-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 15px;
}

.form-label {
	width: 170px;
	/* ラベル固定幅 */
	font-size: 16px;
	color: #333;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.badge--required {
	background: #F00;
	color: #fff;
	font-size: 16px;
	padding: 0 5px;
	border-radius: 2px;
	margin-left: 6px;
}

.form-field {
	flex: 1;
	border-radius: 4px;
	padding: 10px;
	font-size: 14px;
	box-sizing: border-box;
	border: 1px solid #D5D5D5;
	background: #FAFAFA;
}

textarea.form-field {
	height: 250px;
	width: 338px;
	resize: vertical;
}

/* 送信ボタン */
.form-submit {
	text-align: center;
	margin-top: 30px;
}

.submit-button {
	background-color: #e4007f;
	color: #fff;
	font-size: 20px;
	border: none;
	padding: 20px 60px;
	cursor: pointer;
	transition: 0.3s;
}

.submit-button:hover {
	opacity: 0.8;
}


/* ハンバーガーメニュー */
.hamburger-menu {
	display: none;
	cursor: pointer;
	z-index: 101;
}

.hamburger-menu .bar {
	display: block;
	width: 25px;
	height: 3px;
	margin: 5px auto;
	background-color: white;
	transition: all 0.3s ease-in-out;
}

/* タブレット */
@media (max-width: 1450px) {
	header nav a {
		font-size: 16px;
	}

	.header-contact .tel {
		font-size: 18px;
	}

	.contact-button {
		font-size: 16px;
	}

	.footer-nav a {
		font-size: 16px;
	}

	.footer-contact .tel {
		font-size: 18px;
	}

	.footer-contact .contact-button {
		font-size: 16px;
	}

}

/* スマートフォン */
@media (max-width: 768px) {

	/*表示切替用*/
	.pc-only {
		display: none;
	}

	.sp-only {
		display: block;
	}

	/* ヘッダー */

	header {
		background-color: unset;
		box-shadow: none;
	}

	.header-container {
		padding: 10px;
	}

	.logo {
		display: none;
	}

	header nav {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color: #16902e;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		z-index: 100;
	}

	header nav.nav-active {
		display: flex;
	}

	header nav ul {
		flex-direction: column;
		gap: 30px;
		text-align: center;
		margin-bottom: 80px;
	}

	header nav a {
		font-size: 20px;
		letter-spacing: 1.6px;
	}

	.hamburger-menu {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		position: relative;
		width: 45px;
		height: 45px;
		background-color: #16902e;
		z-index: 101;
		gap: 4px;
	}

	.hamburger-menu .bar {
		background-color: #ffffff;
		width: 30px;
		height: 4px;
		margin: 0;
	}

	.menu-text {
		color: white;
		font-size: 11px;
		font-weight: 500;
		line-height: 1;
	}

	.hamburger-menu.active {
		position: fixed;
		top: 20px;
		right: 20px;
	}

	.hamburger-menu.active .bar {
		background-color: white;
		width: 30px;
		height: 4px;
	}

	.hamburger-menu.active .bar:nth-child(1) {
		transform: translateY(9px) rotate(45deg);
	}

	.hamburger-menu.active .bar:nth-child(2) {
		opacity: 0;
	}

	.hamburger-menu.active .bar:nth-child(3) {
		transform: translateY(-9px) rotate(-45deg);
	}

	.header-contact {
		display: none;
	}

	.nav-logo {
		display: none;
	}

	.nav-active .nav-logo {
		display: block;
		position: absolute;
		bottom: 100px;
		left: 50%;
		transform: translateX(-50%);
		height: 83px;
	}

	.sp-contact-buttons {
		display: flex;
	}

	.sp-tel-button,
	.sp-mail-button {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		flex: 1;
		padding: 20px;
		color: white;
		font-size: 20px;
		font-weight: 500;
	}

	.sp-tel-button {
		background-color: #16902e;
	}

	.sp-mail-button {
		background-color: #e4007f;
	}

	.sp-tel-button img,
	.sp-mail-button img {
		height: 24px;
	}

	/* ヒーローセクション */
	.hero {
		position: relative;
		height: 100vh;
		color: white;
		margin-top: -115px;
	}

	.slide-1 {
		background-image: url('img/top-hero-sp.webp');
	}

	.slide-2 {
		background-image: url('<img/slide-dummy-sp.webp');
	}

	.slide-3 {
		background-image: url('img/slide-dummy-sp.webp');
	}

	.hero-text h1 {
		font-size: 32px;
	}

	.hero-text .large {
		font-size: 28px;
	}

	.sp-contact-buttons {
		display: flex;
	}

	.sp-tel-button,
	.sp-mail-button {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		flex: 1;
		padding: 30px 20px;
		color: white;
		font-size: 20px;
		font-weight: 500;
	}

	.sp-tel-button {
		background-color: #16902e;
	}

	.sp-mail-button {
		background-color: #e4007f;
	}

	.sp-tel-button img,
	.sp-mail-button img {
		height: 24px;
	}

	/* セクション共通 */
	.section-title .sub-title,
	.section-title h2 {
		font-size: 24px;
	}

	.details-button {
		font-size: 18px;
		padding: 12px 48px;
	}

	/* Aboutセクション */
	.about {
		padding: 60px 20px;
		background-size: 100px;
		background-position: left 1% bottom;
	}

	.about-description {
		font-size: 16px;
		text-align: left;
	}

	/* Serviceセクション */
	.service {
		padding: 60px 20px;
	}

	.service-grid {
		margin-top: 40px;
	}

	.service-number p {
		font-size: 48px !important;
	}

	.service-item {
		flex-direction: column !important;
		align-items: center;
		text-align: center;
	}

	.service-item h3 {
		font-size: 22px;
		text-align: left;
	}

	.service-item p {
		font-size: 16px;
		text-align: left;
	}

	.service-image {
		width: 100%;
		max-width: 400px;
		margin-top: -20px;
		height: auto;
	}

	/* Flowセクション */
	.flow {
		padding: 60px 0;
	}

	.flow-step {
		width: 100%;
		height: auto;
	}

	.flow-step img {
		height: 30px;
		margin-bottom: 10px;
	}

	.flow-step h3 {
		font-size: 22px;
	}

	.flow-arrow {
		height: 80px;
	}

	/* Areaセクション */
	.area {
		padding: 60px 20px;
	}

	.area-content {
		flex-direction: column;
		gap: 40px;
	}

	.area-map {
		width: 100%;
	}

	.area-note {
		font-size: 16px;
	}

	/* Contactセクション */
	.contact {
		padding: 60px 20px;
		background-size: 200%;
	}

	.contact>p {
		font-size: 16px;
	}

	.contact-buttons {
		flex-direction: column;
		gap: 20px;
		align-items: center;
	}

	.contact-tel-button,
	.contact-mail-button {
		width: 100%;
		max-width: 316px;
	}

	/* フッター */
	footer {
		padding: 30px 0 20px;
	}

	.footer-container {
		padding: 0;
	}

	.footer-main,
	.footer-nav ul {
		gap: 20px;
		flex-wrap: wrap;
		justify-content: center;
	}

	.footer-nav a {
		font-size: 16px;
	}

	.footer-contact {
		flex-direction: column;
		gap: 20px;
	}

	.footer-contact .contact-button {
		margin: 0;
	}

	.page-top-button {
		right: 25px;
		bottom: 30px;
		top: unset;
	}

	/* 下層ページ */
	.page-hero {
		height: 200px;
		margin-top: -80px;
	}

	.page-hero h1 {
		font-size: 28px;
	}

	.service-details,
	.flow-section,
	.greeting-section,
	.company-info-section,
	.disclosure-section {
		padding: 60px 20px;
	}

	.service-title-container h2 {
		font-size: 24px;
	}

	.service-section h3 {
		font-size: 20px;
	}

	.service-section p,
	.greeting-text,
	.company-table th,
	.company-table td,
	.disclosure-section p {
		font-size: 16px;
	}

	.company-table th {
		width: 100px;
	}

	.regulation-details {
		padding: 40px 0;
	}

	.accordion-title {
		padding-right: 0;
	}

	.flow-card {
		flex-direction: column;
	}

	.flow-card-text h3 {
		font-size: 24px;
	}

	.flow-card-image {
		width: 100%;
		height: auto;
	}

	.insurance-details {
		gap: 20px;
	}

	.insurance-step h4,
	.insurance-result p {
		font-size: 18px;
	}

	.insurance-desk p {
		font-size: 16px;
	}

	.insurance-desk p span {
		font-size: 16px;
	}

	.insurance-step-group-item p {
		font-size: 16px;
	}

	.about-arrow {
		width: 17px;
		height: 57px;
	}

	.about-arrow_l {
		width: 22px;
		height: 200px;
	}

	.download-button {
		width: 100%;
		font-size: 16px;
	}

	.area-list-container ul {
		font-size: 20px;
	}

	.voice-cards {
		flex-direction: column;
	}

	.form-row {
		align-items: baseline;
		flex-direction: column;
	}
	
	.form-field {
    	width: 100%;
	}

	.form-label {
		justify-content: start;
	}

}