/*
Theme Name: cooppands 2026 theme
Theme URI: https://kyodopress.co.jp/
Author: Kyodopress.Co.,Ltd
Author URI: https://kyodopress.co.jp/
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
/* ============================================
   基本設�?
============================================ */
:root {
	--bg: #fff;
	--text: #222;
	--header-h: 64px;
}

* {
	box-sizing: border-box;
	scroll-margin-top: 115px;
}

body {
	margin: 0;
	font-family: 'Zen Maru Gothic', sans-serif;
	color: var(--text);
	background: var(--bg);
	overflow-x: hidden;
	text-align: center;
	-webkit-text-size-adjust: 100%;
}

.section-group .bg:nth-child(even) {
	background-color: #f0eddf;
	padding: 0;
}

.section-group > .bg .section-inner,
.section-group > .bg .inner {
	padding-left: 20px;
	padding-right: 20px;
}

p {
	font-weight: bold;
	font-size: 18px;
}

p.top-text {
	font-size: 24px;
	font-weight: normal;
	margin: 28px 0;
}

a {
	text-decoration: none;
	color: #333333;
	font-size: 18px;
	font-weight: 500;
}

a * {
	user-select: none;
	-webkit-user-drag: none;
}

a.link {
	font-size: 20px;
}

a.link.top {
	text-align: left;
}

.btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 50px;
	text-decoration: none;
	position: relative;

	transition: all 0.15s ease 0s;
}

/* 丸矢印 */
.btn::after {
	content: '';
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	flex-shrink: 0;
}

.btn:hover,
.bk-btn:hover {
	transform: scale(1.05);
}
.btn:active,
.bk-btn:active {
	box-shadow: 0 0;
	transform: scale(1.05) translateY(3px);
}

/* ============================================
   オーバ�?�レイ
============================================ */
#overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	opacity: 0;
	display: block;
	height: 100%;
	width: 100vw;
	pointer-events: none;
	transition:
		opacity 0.3s ease 0s,
		left 0s;
	z-index: 10000;
}

#overlay.open {
	opacity: 1;
	pointer-events: auto;
	left: 0;
	transition:
		opacity 0.3s ease 0s,
		left 0s linear 0.3s;
}
/* ============================================
   ヘッダー
============================================ */
.header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	z-index: 7000;
}

.header-container {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 120px;
	box-sizing: border-box;
	padding: 24px;
	padding-right: 248px;
	column-gap: 20px;
}

.header,
.header-container,
.header-container a {
	pointer-events: auto;
}

.logo img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
}

.logo {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	column-gap: 0.75em;
}
.logo img {
	width: auto;
	height: 3.75em;
	margin-top: -0.35em;
}
.logo span {
	font-size: 1.2em;
	font-weight: 800;
	white-space: nowrap;
	transition: all 0.15s ease;
}
@media (max-width: 1180px) {
	.logo span {
		font-size: 16px;
	}
}
@media (max-width: 640px) {
	.logo {
		column-gap: 0.5em;
	}
	.logo span {
		font-size: 14px;
	}
}

/* ============================================
   トグル?��メニュー開閉ボタン?�?
============================================ */
.toggle-fixed {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 10002 !important;
	pointer-events: auto;
}

/* トグルの中身 */
.toggle-box {
	display: flex;
	align-items: center;
	min-width: 200px;
	gap: 8px;
	pointer-events: none;
}

.toggle-fixed .toggle-box {
	width: 120px;
}

/* トグルの外枠 */
.toggle-track {
	height: 60px;
	top: 10px;
	width: auto;
	padding: 0 160px 0 40px;
	background: #ffffff;
	outline: 2px solid #333333;
	outline-offset: -2px;
	border-radius: 50px;
	position: relative;
	transition: 0.3s ease;
	display: flex;
	align-items: center;
	box-sizing: border-box;

	overflow: hidden;
	pointer-events: auto;
	cursor: pointer;
}

/* 「メニュー」ラベル */
.toggle-track .label {
	position: absolute;
	font-size: 20px;
	font-weight: bold;
	left: 25px;
	top: 50%;
	transform: translateY(-50%);
	color: #333333;
	transition: 0.3s;
	pointer-events: none;
}

/* 丸ボタン?��中に三本線�? */
.toggle-circle {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #f0eddf;
	border: 2px solid #333333;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	right: 0;
	top: 0;
	transition: right 0.3s ease;
	pointer-events: auto;
	cursor: pointer;
}

/* ハンバ�?�ガー�?3本 */
.toggle-circle .bar {
	width: 24px;
	height: 2px;
	background: #333;
	margin: 3px 0;
	transition: 0.3s;
}

/* ===== トグルが開�?たとき�?�変化 ===== */
.toggle-box.open .toggle-track .label {
	left: 95px;
}

.toggle-box.open .toggle-circle {
	right: 140px;
}

.toggle-box.open .toggle-circle .bar {
	width: 20px;
}

/* 3本�? �? ×�?��?�ク */
.toggle-box.open .bar:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}
.toggle-box.open .bar:nth-child(2) {
	opacity: 0;
}
.toggle-box.open .bar:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   ナビ?�?PC時�?�み表示?�?
============================================ */
.nav {
	display: flex;
	align-items: stretch;
	flex-direction: row;
	flex-wrap: nowrap;
	margin-right: 0;
}

.nav ul {
	display: flex;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav a {
	font-size: clamp(12px, 1.395vw, 18px);
	white-space: nowrap;
	display: flex;
	align-items: center;
	height: 48px;
	text-decoration: none;
	color: inherit;
}

/* ナビとトグルが干渉し始める�?で�?り替�? */
@media (max-width: 1080px) {
	.logo {
		width: 35%;
	}
	.nav ul li:first-child {
		display: none;
	}
}

@media (max-width: 960px) {
	.nav {
		display: none;
	}
	.logo img {
		width: auto;
		height: 64px;
	}
}
/* =====================================
   サービス「�? �? −」トグル
===================================== */
.service-toggle {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	user-select: none;
}

.toggle-icon {
	position: relative;
	width: 16px;
	height: 16px;
}

/* 共通バー */
.toggle-icon .bar {
	position: absolute;
	left: 50%;
	top: 50%;
	background: #333333;
	transform-origin: center;
	transition: transform 0.3s ease;
}

/* 横棒（固定�? */
.toggle-icon .horizontal {
	width: 16px;
	height: 2px;
	transform: translate(-50%, -50%);
}

/* 縦棒（回転?�? */
.toggle-icon .vertical {
	width: 2px;
	height: 16px;
	transform: translate(-50%, -50%) rotate(0deg);
}

/* 開いたとき：縦棒だけ回転 */
.service-toggle.open .vertical {
	transform: translate(-50%, -50%) rotate(90deg);
}

/* ============================================
   サービス?�?PCのヘッダーポップア�?プ�?
============================================ */
#service-popup {
	position: fixed;
	overflow: hidden;
	opacity: 0;
	padding: 40px;
	background: #f0eddf;
	border-radius: 12px;
	transition:
		max-height 0.35s ease,
		opacity 0.35s ease;
	z-index: 9999;
	pointer-events: none;
	visibility: hidden;
	max-height: 0;
	pointer-events: none;
}

#service-popup:after {
	content: '';
	display: block;
	border-top: transparent;
	border-left: solid 12px transparent;
	border-right: solid 12px transparent;
	border-bottom: solid 16px #f0eddf;
	width: 24px;
	box-sizing: border-box;
	position: absolute;
	top: -13px;
}

#service-popup.open {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
	max-height: 400px;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 7px 10px;
}

@media (max-width: 768px) {
	.service-grid {
		display: none;
	}
}

/* サービス�?目?��四角�?�ボタン?�? */
.mm-btn {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	padding: 10px 8px 10px 16px;
	border: 2px solid #333333;
	border-radius: 10px;
	color: #333;
	text-decoration: none;
	text-align: left;
	width: 100%;
	transition: all 0.15s ease 0s;
}

/* 右端の丸矢印 */
.mm-btn::after {
	content: '';
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 2px solid #333333;
	box-shadow: 0 1px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;

	/* 矢印画�? */
	background-image: url('img/arrow_forward_black.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 15px 15px;

	flex-shrink: 0;
}

.mm-btn:hover {
	box-shadow: 1px 2px;
	transform: translateY(-3px);
}
.mm-btn:active {
	box-shadow: 0 0;
	transform: translateY(0);
}

/* 色�?�? */
.mm-btn.health {
	background: #e1f2ca;
}
.mm-btn.sousai {
	background: #e9e3f8;
}
.mm-btn.life {
	background: #fbe8c6;
}
.mm-btn.travel {
	background: #daedf5;
}
.mm-btn.event {
	background: #d9f0eb;
}
.mm-btn.reform {
	background: #f9f6d0;
}
.mm-btn.fitness {
	background: #f6d5d5;
}
.mm-btn.hall {
	background: #d5e5f9;
}
.mm-btn.cafe {
	background: #f2d9e7;
}

/* ============================================
   ハンバ�?�ガーメニュー?��スマ�?��?�?�?
============================================ */
#hamburger {
	position: fixed;
	top: 0;
	bottom: unset;
	height: auto;
	max-height: 100svh;
	display: flex;
	flex-direction: column;
	right: -120vw;
	max-width: 100%;
	padding: 110px 120px 60px 80px;
	transition: right 0.3s ease-out 0s;
	background: #f0eddf;
	border-radius: 60px 0 0 60px;
	transform: none !important;
	overflow-y: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
	will-change: right;
	z-index: 10001 !important;
	gap: 20px;
}

#hamburger::-webkit-scrollbar {
	display: none;
}

#hamburger.open {
	display: flex;
	flex-direction: column;
	right: 0;
	z-index: 10001 !important;

	pointer-events: fill;
	box-shadow: 0 0 16px 0 #33333333;
}

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

/* コープ加入ボタン */
.btn.coop {
	background: #e7242f;
	color: #ffffff;
	margin: 0;
	padding: 18px 10px 18px 20px;
}

.btn.coop::after {
	width: 30px;
	height: 30px;

	/* 丸の色・�?�? */
	background-color: #ffffff;
	color: #e7242f;

	/* 矢印画�? */
	background-image: url('img/arrow_forward_red.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 18px 18px; /* 矢印のサイズ */
}

@media (max-width: 640px) {
	.info {
		display: flex;
		align-items: flex-start;
		width: auto;
		flex-direction: column;
		gap: 28px;
	}
	.btn.coop {
		width: 100%;
		max-width: 280px;
	}
	.btn.coop {
		max-width: 280px;
		padding: 15px;
		font-size: 15px;
	}
}

/* ============================================
   共通�?�タン
============================================ */
/* 「詳しく見る」や「詳細はこちら」などのボタン */
.bk-btn {
	background-color: #333;
	border-radius: 9999px;
	width: 280px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 24px;
	margin: 0 auto;

	transition: all 0.15s ease 0s;
}

.bk-btn p {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 24px;
	font-weight: normal;
	text-align: left;
	color: #fff;
	margin: 0;
}

.bk-btn img {
	width: 24px;
	height: auto;
}

.contact {
	background-color: #ffffff;
	border-radius: 20px;
	border: 2px solid #333333;
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
	gap: 10px;
}

.contact-title {
	font-weight: bold;
	margin: 0;
}
.phone-number {
	font-weight: bold;
	margin: 0;
}

.phone-number a {
	font-size: 32px;
	font-weight: bold;
	margin: 0;
}

.contact-time {
	width: fit-content;
	font-weight: bold;
	padding: 4px 30px;
	background: #f0eddf;
	border-radius: 25px;
	display: inline-block;
	margin: 0 auto;
}

/* 右・お問�?合わせフォー�? */
.contact-form {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.contact-label {
	font-weight: bold;
	margin: 0;
}

.btn.form {
	background: #ffffff;
	color: #333333;
	border: 2px solid #333333;
	box-shadow: 1px 3px;
	font-family: 'Noto Sans JP', sans-serif;
	height: auto;
}
.btn.form::after {
	width: 30px;
	height: 30px;

	/* 丸の色・�?�? */
	background-color: #f0eddf;
	border: 2px solid #333333;

	/* 矢印画�? */
	background-image: url('img/arrow_forward_black.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 18px 18px; /* 矢印のサイズ */
}
.btn.top,
.btn.hm {
	width: 49%;
	justify-content: space-between;
}

@media (min-width: 768px) {
	/* ============================================
   ハンバ�?�ガーメニュー�?の Contact ブロ�?ク
============================================ */
	.contact {
		align-items: center;
		padding: 20px 16px;
	}

	/* 左・電話部�? */
	.contact-phone {
		text-align: center;
		flex: 1;
		padding: 12px;
		box-sizing: border-box;
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 6px;
		border-top: 2px solid #333333;
		border-bottom: 2px solid #333333;
	}

	.contact-title {
		font-size: 18px;
	}
	.phone-number {
		font-size: 32px;
	}
	.contact-time {
		font-size: 16px;
	}

	.contact-label {
		font-size: 18px;
	}

	.btn.form {
		padding: 10px 8px 10px 15px;
		font-size: 18px;
	}
}

/* =========================================
   トップエリア?��メインビジュアル?�?
========================================= */
.top-wrapper {
	/*margin-bottom: 150px;*/
	height: 100dvh; /* ビューポ�?�ト高さに合わせる */
	min-height: 100dvh; /* 小さな画面でも最低高さを確�? */
	position: relative;
	background-color: #ebf6fb;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: -120px;
}

.fastview {
	width: 100%;
	min-height: unset;
	height: 40svh;
	background-image: url(img/top/fastview.svg);
	background-size: auto 101%;
	background-repeat: repeat-x;
	background-position: center center;
}

.sky {
	position: relative;
	width: 100%;
	height: 75vh;
}

/* 雲と太陽の親 */
.cloud-wrapper {
	position: absolute;
	width: 200%;
	height: 100%;
}

/* 雲 */
.cloud {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: url(img/top/cloud.png);
	background-repeat: repeat-x;
	background-size: 750px auto;
	animation: cloud-move 70s linear infinite;
}

@keyframes cloud-move {
	from {
		background-position: 0 0;
	}
	to {
		background-position: -750px 0;
	}
}

/* 太陽 */
.sun {
	position: relative;
	top: -4%;
	left: 37%;
	width: 120px;
}

.sun::before {
	content: '';
	position: absolute;
	inset: -40px;
	border-radius: 50%;

	/*background: radial-gradient(
		circle,
		rgba(235, 246, 251, 1) 0%,
		rgba(235, 246, 251, 0.8) 25%,
		rgba(235, 246, 251, 0) 35%
	);*/

	z-index: 0;
}

.sun img {
	position: relative;
	z-index: 1;
	width: 100%;
	display: block;
}
/* トップ�?�キャ�?チコピ�?�周�? */
.top_text {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 1000px;
	padding-left: 20px;
	padding-right: 20px;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 20px;
	z-index: 1;
}

h2.top {
	font-size: clamp(28px, calc(28px + (56 - 28) * ((100vw - 375px) / (1366 - 375))), 56px);
	margin: 0;
}

h3.cooppands {
	font-size: clamp(16px, calc(16px + (32 - 16) * ((100vw - 375px) / (1366 - 375))), 32px);
	margin: 0;
}

/*h3.cooppands:before {
	content: '';
	display: inline-block;
	width: 1em;
	height: 1em;
	vertical-align: middle;
	background: url('../img/logo_cooppands.svg') center center no-repeat;
	background-size: 100% auto;
	margin-top: -0.4em;
	margin-right: 0.125em;
}*/

/* トップ画�? */
.top_img {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: flex-end;
}

/* ============================================
   はじめての方・コープ加入ボタン
============================================ */
.side-band {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: fixed;
	right: 0;
	width: auto;
	height: 40vh;
	padding: 8px 12px;
	line-height: 1.2;
	border-radius: 20px 0 0 20px;
	text-decoration: none;
	transition: all 0.15s ease-in;
	z-index: 1000;
	transform: unset;
}

.side-band:hover {
	padding: 10px 20px;
}

.side-band img {
	width: 5vh;
	height: auto;
}

.side-band p,
.side-band span {
	font-size: 2vh;
	margin: 0.5vh 0;
	text-align: center;
}

/* ============================================
   個別の背景・位置設�?
============================================ */
.side-band.beginner {
	background: #f0eddf;
	color: #333333;
	outline: 2px solid #333333;
	border-right: none;
	bottom: calc(2vh + 40vh);
}

.side-band.coop {
	background: #e7242e;
	color: #fff;
	bottom: 0;
}

/* ============================================
   縦書きテキス�?
============================================ */
.side-text {
	writing-mode: vertical-rl;
	letter-spacing: 0.3em;
	font-size: 2vh;
}

/* ============================================
   丸の中の矢印
============================================ */
.arrow-circle {
	width: 5vh;
	height: 5vh;
	border-radius: 50%;
	color: #fff;
	background: #333333 url(img/arrow_forward_white.svg) no-repeat center/18px 18px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}

.side-band.coop .btn.coop {
	padding: 0;
}

.side-band.coop .btn.coop::after {
	width: 5vh;
	height: 5vh;
}

/* ============================================
   レスポンシブ調整
============================================ */
@media (min-width: 768px) and (max-height: 500px) {
	.side-band.beginner,
	.side-band.coop {
		height: 35vh;
	}

	.side-band.beginner {
		bottom: calc(2vh + 35vh);
	}

	.side-band img {
		width: 27px;
	}

	.side-band p,
	.side-band span {
		font-size: 12px;
	}

	.arrow-circle,
	.side-band.coop .btn.coop::after {
		width: 30px;
		height: 30px;
		background-size: 15px;
	}

	.top_text {
		gap: 8px;
	}

	h2.top {
		font-size: 30px;
	}

	h3.cooppands {
		font-size: 16px;
	}
}

@media (max-width: 1080px) {
	/* ヘッダー */
	.header {
		/* top: calc(60px + env(safe-area-inset-top)); */
		background-color: #fff;
	}

	.header-container {
		width: 100%;
		height: 60px;
		padding: 15px;
		padding-right: 172px;
	}

	.logo {
		width: auto;
	}

	.logo img {
		height: 40px;
	}

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

	/* トグル調整?��小さく�? */
	.toggle-fixed {
		top: 12px;
		right: 12px;
		pointer-events: none;
	}

	.toggle-box {
		min-width: auto;
	}

	.toggle-fixed .toggle-box {
		width: auto;
	}

	/* トグル外枠 */
	.toggle-track {
		top: 58px;
		height: 40px;
		padding: 0 105px 0 16px;
		border-radius: 30px;
		pointer-events: auto;
	}

	/* メニュー�?�? */
	.toggle-track .label {
		font-size: 14px;
		transform: translate(-10px, -45%);
	}

	/* 丸ボタン */
	.toggle-circle {
		width: 40px;
		height: 40px;
		pointer-events: auto;
	}

	/* ハンバ�?�ガー�? */
	.toggle-circle .bar {
		width: 18px;
		height: 2px;
		margin: 2px 0;
	}

	/* open時�?�ラベル位置 */
	.toggle-box.open .toggle-track .label {
		left: 55px;
	}
	.toggle-box.open .toggle-circle {
		right: 81px;
		margin-right: 0;
	}
	body.menu-open .toggle-fixed {
		top: 12px;
		right: 12px;
	}

	/* ×�?��?�ク時�?�調整 */
	.toggle-box.open .bar:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
	}
	.toggle-box.open .bar:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
	}

	/* ハンバ�?�ガーメニュー */
	#hamburger {
		width: 100%;
		height: 100%;
		border-radius: 0;
		right: -100%;
		gap: 20px;
		box-sizing: border-box;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		pointer-events: none;
	}

	#hamburger.open {
		right: 0;
		pointer-events: auto;
	}

	/* サービスポップア�?�? */
	#service-popup {
		display: none;
	}

	/* =========================================
   はじめての方・コープ加入ボタン
========================================= */

	/* メニュー表示中は非表示 */
	/* body.menu-open .side-band-wrapper {
		opacity: 0;
		pointer-events: none;
	} */

	.side-band-wrapper {
		position: sticky;
		top: env(safe-area-inset-top);
		left: 0;
		right: 0;
		z-index: 10002;
		display: flex;
		pointer-events: none;
	}

	/* 共通：サイドバン�? */
	.side-band {
		position: static;
		transform: none;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 6px;
		padding: 10px;
		width: auto;
		border-radius: 0;
		flex-wrap: nowrap;
		pointer-events: auto;
	}

	.side-band:hover {
		padding: 10px;
	}

	/* 縦書き解除?���?�通�? */
	.side-text {
		writing-mode: horizontal-tb;
		letter-spacing: 0;
	}

	/* =========================
   並び�?・比率
========================= */
	.side-band.coop {
		order: 1;
		flex: 10;
		height: 60px;
		gap: 8px;
		flex-wrap: wrap;
		align-content: space-between;
	}

	.side-band.beginner {
		order: 2;
		flex: 1;
		height: 64px;
		justify-content: center;
		outline: none;
		border: 2px solid #333333;
		box-sizing: border-box;
	}

	/* =========================
   コープ加入
========================= */

	.side-band.coop .btn.coop {
		width: fit-content;
		max-width: none;
		margin-left: auto;
		background-color: transparent;
	}

	.side-band.coop .btn.coop::after {
		width: 40px;
		height: 40px;
	}

	/* =========================
   はじめての方?��丸ボタン?�?
========================= */
	.side-band.beginner {
		position: fixed;
		right: 20px;
		bottom: calc(16px + env(safe-area-inset-bottom));
		width: 15vw;
		height: 15vw;
		max-width: 100px;
		max-height: 100px;
		border-radius: 50%;
		background-color: #f0eddf;
		z-index: 1000;
		box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
		overflow: visible;
	}

	.side-band.beginner:hover {
		transform: scale(1.05);
	}

	.side-band.beginner:active {
		box-shadow: 0 0;
		transform: scale(1.05);
	}

	/* 不要要�?を非表示 */
	.side-band.beginner .arrow-circle {
		display: none;
	}

	/* アイコン */
	.side-band.beginner img {
		width: 100%;
		height: auto;
	}

	/* 吹き�?��? */
	.side-band.beginner .side-text {
		display: block;
		position: absolute;
		bottom: calc(100%);

		left: 50%;
		transform: translateX(-50%);
		/*bottom: calc(100% + 8px);
		background: #fff;
		border-radius: 20px;
		padding: 6px 10px;
		box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);*/
		white-space: nowrap;
		font-size: 0;
		z-index: 2;
	}

	/*.side-band.beginner .side-text::after {
		content: '';
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translateX(-50%);
		border: 6px solid transparent;
		border-top-color: #fff;
	}*/

	.side-band.beginner .side-text::before {
		content: 'はじめての方';
		font-size: clamp(12px, 3vw, 16px);
	}
}

/* =========================================
   セクション共通タイトル
========================================= */
p.title {
	text-align: left;
	font-size: 28px;
	font-weight: 700;
	padding: 0 20px;
	margin: 80px 0 20px;
	background: transparent;
	border-left: solid 10px #333333;
}

/* =========================================
   サービス一覧セクション
========================================= */
.top_service {
	padding: 28px 20px 80px;
}

/* グリ�?ド�?�体�?�横�?制御 */
.service-inner {
	max-width: 100%;
	margin: 0 auto;
	padding-top: 18px;
}

.top_service .box-title {
	margin: 60px 0 6px;
}
/* サービスボタンのグリ�?ド（レスポンシブ�? */
.service-card {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	row-gap: 28px;
	column-gap: 32px;
	max-width: 660px;
	justify-content: center;
	margin: 0 auto;
	justify-items: center;
}

/* �?サービスボタン */
.mm-tbtn {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 250px;
	padding: 30px 12px 20px;
	border: 4px solid #333333;
	border-radius: 20px;
	box-shadow: 0 4px;
	color: #333333;
	text-decoration: none;
	font-weight: bold;
	background: #ffffff;

	transition: all 0.15s ease 0s;
}

.mm-tbtn:hover {
	transform: scale(1.05);
}
.mm-tbtn:active {
	box-shadow: 0 0;
	transform: scale(1.05) translateY(6px);
}

/* 不要な疑似要�?を無効�? */
.service-card .mm-tbtn::after {
	display: none;
}

/* 上部コン�?ン�? */
.mm-top {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

/* サービス画�? */
.mm-top img {
	width: 120px;
}

/* サービス�?キス�? */
.mm-text {
	text-align: center;
	max-width: 100%;
	line-height: 1.2;
	white-space: normal;
	font-size: clamp(16px, 2.5vw, 24px);
}
.mm-text span {
	display: inline-block;
}

/* =========================
   サービス別 色�?�?
========================= */
.mm-tbtn.health {
	background: #e1f2ca;
}

.mm-tbtn.sousai {
	background: #e9e3f8;
}

.mm-tbtn.life {
	background: #fbe8c6;
}

.mm-tbtn.travel {
	background: #daedf5;
}

.mm-tbtn.event {
	background: #d9f0eb;
}

.mm-tbtn.reform {
	background: #f9f6d0;
}

.mm-tbtn.fitness {
	background: #f6d5d5;
}

.mm-tbtn.hall {
	background: #d5e5f9;
}

.mm-tbtn.cafe {
	background: #f2d9e7;
}

/* =========================================
   お知らせ
========================================= */
.information.inner {
	max-width: 1000px;
	margin: 58px auto 113px;
}

.all-news {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.all-news .btn.form {
	background: #f0eddf;
	font-family: 'Zen Maru Gothic', sans-serif;
	height: 60px;
	padding: 17px 24px;
	gap: 22px;
}

.all-news .btn.form p {
	font-size: 18px;
}

.all-news .btn.form::after {
	background-color: #fff;
	width: 36px;
	height: 36px;
	background-size: 24px 24px;
}

.news-item {
	display: flex;
	flex-direction: row;
	margin-bottom: 20px;
	border-bottom: 2px solid #333;
	margin-left: 35px;
	align-items: center;
}

.news-item p {
	font-size: 22px;
	width: 90%;
	max-width: 800px;
	text-align: left;

	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;

	overflow: hidden;
}

.news-item a {
	display: flex;
	align-items: center;
	width: 100%;
	gap: 15px;
	justify-content: space-between;
}

.news-item .info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
}

.news-item .date {
	font-size: 18px;
	font-weight: 500;
	color: #333;
	margin-right: 14px;
}

.news-item .news-wrapper {
	display: flex;
	width: 100%;
	align-items: center;
}
.news-item .category-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
}

.news-item .info-wrapper {
	display: flex;
	gap: 10px;
	width: 100%;
	align-items: baseline;
}

.news-item .category {
	padding: 5px 10px;
	margin-top: 5px;
	width: fit-content;
	font-size: 16px;
	font-weight: 500;
	color: #333;
	border: 1px solid #333;
	display: inline-block;
}

.news-item .arrow {
	width: 24px;
	height: auto;
	margin-left: -20px;
}

/* 色�?�? */
.news-item .category.health {
	background: #e1f2ca;
}
.news-item .category.sousai {
	background: #e9e3f8;
}
.news-item .category.life {
	background: #fbe8c6;
}
.news-item .category.travel {
	background: #daedf5;
}
.news-item .category.event {
	background: #d9f0eb;
}
.news-item .category.reform {
	background: #f9f6d0;
}
.news-item .category.fitness {
	background: #f6d5d5;
}
.news-item .category.hall {
	background: #d5e5f9;
}
.news-item .category.cafe {
	background: #f2d9e7;
}

.news-item .category.limited {
	background: #e7242e;
	color: #ffffff;
	border: 1px solid #e7242e;
}

/* =========================================
   よくある質問�?Q&A?�?
========================================= */
.qa-content.inner {
	max-width: 1000px;
	margin: 0 auto;
	font-size: 24px;
	font-weight: 400;
}

.qa-content {
	max-width: 700px;
	margin: 0 auto;
	padding: 20px 0;
}

/* 各Q&A�? */
.qa-item {
	border: 2px solid #333333;
	border-radius: 20px;
	margin-bottom: 24px;
	overflow: hidden;
}

/* summaryの�?フォルト表示をリセ�?�? */
summary {
	list-style: none;
	cursor: pointer;
}
summary::-webkit-details-marker {
	display: none;
}

/* Qの�? */
.qa-summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 23px 24px 22px;
	background: #fff;
}

.qa-left {
	display: flex;
	gap: 11px;
}

.qa-q {
	font-size: 28px;
}

/* ?��／�?? アイコン */
.qa-icon {
	position: relative;
	width: 30px;
	height: 30px;
	flex-shrink: 0;
}

.qa-icon::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 3px;
	background: #333333;
	border-radius: 999px;
	transform: translateY(-50%);
}

.qa-icon::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	width: 3px;
	height: 100%;
	background: #333333;
	border-radius: 999px;
	transform: translateX(-50%);
	transition: 0.3s;
}

/* 開いた時は?��を−に */
.qa-item.is-open .qa-icon::after {
	transform: translateX(-50%) rotate(90deg);
}

/* A?��回答）部�? */
.qa-answer {
	overflow: hidden;
	line-height: 1.6;
	text-align: left;
}

.qa-answer > div {
	background: #fff;
	padding: 16px 68px 32px 68px;
	line-height: 1.6;

	opacity: 0;
	transition: opacity 0.2s ease 0.1s;
}

/* <details>のオープンアニメーション */
details > .qa-answer {
	overflow: hidden;
	transition: height 0.3s ease;
	/*height: 0;*/
}
details > .qa-answer.open {
	opacity: 1;
}
details > .qa-answer > div {
	opacity: 1;
}
@media (max-width: 768px) {
	details > .qa-answer > div {
		font-size: 16px;
		padding: 0 24px 24px;
	}
}
/* =========================================
   アクセス
========================================= */
.access {
	max-width: 1000px;
	margin: 0 auto;
	padding: 48px 0 142px;
}

/* Googleマッ�? */
iframe {
	width: 100%;
	max-width: 1000px;
	aspect-ratio: 1000 / 605.99;
	height: auto;
	margin: 0 auto 20px;
	display: block;
}

/* 住所・交通案�??�?キス�? */
.access_text p {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.access_text p {
	text-align: left;
	font-size: 20px;
	font-weight: 400;
	margin: 5px 0;
	line-height: 1.5;
}

/* ============================================
   フッター全�?
============================================ */
.footer-wrapper {
	position: relative;
	background-color: #f0eddf;
}

.footer-inner {
	max-width: 900px;
	margin: 0 auto;
	margin-bottom: 50px;
	padding: 0 15px;
	text-align: center;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
}

/* ============================================
   フッター �?お問�?合わ�?
============================================ */
.box-title {
	font-weight: bold;
	font-size: 28px;
	min-width: 445px;
	max-width: 600px;
	border-radius: 60px;
	padding: 15px;
	margin: 80px 0 30px;
	display: inline-block;
}

.box-title.top-page {
	border: 2px solid #333333;
	background: #fff;
}

.all-service {
	min-width: 350px;
	margin: 66px 0 0;
}
.sub-text {
	font-size: 18px;
	font-weight: 300;
	margin: 8px 0;
}
.footer-date {
	width: fit-content;
	margin: 8px auto 0;
	text-align: left;
	line-height: 35px;
}
.footer-date .left {
	padding-left: 107px;
}
.company {
	font-size: 32px;
	font-weight: bold;
	margin: 0;
}

/* ============================================
   フッター ② 電話・FAX
============================================ */
.tel-box {
	text-align: center;
}

.tel a {
	font-size: 48px;
	font-weight: bold;
	margin: 0;
}

.tel.top {
	margin-bottom: 35px;
}

.tel.service {
	margin-top: 0;
	margin-bottom: 10px;
}

.tel.service a {
	font-size: 40px;
}

.tel.travel {
	margin-top: 20px;
	margin-bottom: 6px;
}

.tel.event {
	margin-top: 20px;
	margin-bottom: 24px;
}

.tel img {
	position: relative;
	width: 40px;
	top: 5px;
	left: -10px;
}

/* ============================================
   フッター ③ Webお問�?合わ�?
============================================ */
.web-title {
	font-size: 24px;
	font-weight: bold;
	margin-top: 40px;
	margin-bottom: 10px;
}

.web-contact {
	margin: 0 auto;
}

.btn.form p {
	font-size: 24px;
	font-weight: bold;
	margin: 0;
}

/* ============================================
   フッター ④ リンク横並び
============================================ */
.links {
	display: flex;
	justify-content: center;
	gap: 32px;
	align-items: flex-end;
	margin-top: 40px;
}

.links img {
	position: relative;
	top: 5px;
	left: -5px;
}

.links a:hover {
	text-decoration: underline;
}

nav a,
.links a,
a.link {
	transition: all 0.3s ease 0s;
	text-decoration-color: transparent;
}

.links a,
nav a:hover,
a.link:hover {
	text-decoration: underline;
	text-underline-offset: 0.3em;
	text-decoration-color: inherit;
}

/* ============================================
   フッター画�?
============================================ */
.full-width-image {
	width: 100%;
	min-height: unset;
	height: 40svh;
	background-image: url(img/top/fastview_bg.svg);
	background-size: auto 101%;
	background-repeat: repeat-x;
	background-position: center center;
}
.center-image {
	width: 100%;
	/*min-height: 104px;*/
	background-color: #e9ddc8;
	/*background-image: url('img/top_btn.png');*/
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.center-image img {
	width: 100px;
}

.foooter_text {
	font-size: 12px;
	font-weight: 400;
	background: #e9ddc8;
	margin: 0;
	padding: 10px 0;
}

.sp_br {
	display: none;
}
.pc_br {
	display: block;
}

.h_br {
	display: none;
}

.divider {
	display: none;
}

@media (max-width: 960px) {
	.full-width-image {
		height: 30svh;
	}
}

@media (max-width: 640px) {
	.logo img {
		width: auto;
		height: 40px;
	}
}
/* ============================================
   フッター背景?��くらし・リフォー�??�?
============================================ */
.kurashi .footer-wrapper {
	background-color: #fff5e1;
}
.reform .footer-wrapper {
	background-color: #f9f6d0;
}

/* ======================================
   他�?�サービスはこち�?
====================================== */
.others {
	width: auto;
	margin: 0 auto;
	padding: 0 20px 72px;
}
.others p {
	text-align: left;
	font-size: 28px;
	font-weight: 700;
	padding: 0 20px;
	margin: 40px 0 64px;
	background: transparent;
	border-left: solid 10px #333333;
}

.servicefooter-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

/* サービス�?目?��四角�?�ボタン?�? */
.servicefooter-grid .mm-btn {
	flex-wrap: wrap;
	font-size: 24px;
	font-weight: 700;
	height: auto;
	min-height: 96px;
	padding: 19px 20px;
	border-radius: 20px;
	box-shadow: 0 3px;
}

.servicefooter-grid .mm-left {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-basis: calc(100% - 80px);
}

.servicefooter-grid .mm-left img {
	width: 100px;
	height: auto;
}

.servicefooter-grid .mm-text {
	text-align: left;
}
.servicefooter-grid .mm-text span {
	display: inline-block;
}

/* 右端の丸矢印 */
.servicefooter-grid .mm-btn::after {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #333;
	background-image: url('./img/arrow_forward_white.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 24px 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}

/* ======================================
   共通�?��?�ジタイトル
====================================== */

.page-top-title {
	text-align: center;
	padding: 50px;
}
.page-top-title.reform {
	background-color: #f9f6d0;
}
.page-top-title.kurashi {
	background-color: #fbe8c6;
}
.page-top-title.hoken {
	background: #e1f2ca;
}
.page-top-title.hall {
	background: #d5e5f9;
}
.page-top-title.sousai {
	background: #f5efff;
}
.page-top-title.fitness {
	background: #f6d5d5;
}
.page-top-title.cafe {
	background: #f2d9e7;
}
.page-top-title.travel {
	background: #daedf5;
}
.page-top-title.event {
	background: #d9f0eb;
}

.page-top-title .img-circle {
	position: relative;
	display: inline-block;
}
.page-top-title .img-circle::before {
	content: '';
	position: absolute;
	inset: -10px;
	background: #fff;
	border-radius: 50%;
	z-index: 0;
}
.page-top-title .img-circle svg,
.page-top-title .img-circle img {
	display: block;
	position: relative;
	z-index: 1;
	width: 100px;
	height: auto;
}

.section-inner {
	max-width: 1040px;
	margin: 0 auto;
	text-align: center;
}

.section-inner.service {
	padding-bottom: 128px;
}

/* ============================================
   ハンバ�?�ガーメニュー�?のサービス一覧スタイル変更(769px�?)
============================================ */
@media screen and (min-width: 769px) {
	#hamburger .servicefooter-grid {
		gap: 7px 10px;
	}
	#hamburger .servicefooter-grid .mm-btn {
		gap: 10px;
		padding: 10px 8px 10px 16px;
		border-radius: 10px;
		min-height: unset;
		box-shadow: 0 0;
	}
	#hamburger .servicefooter-grid .mm-btn:hover {
		box-shadow: 1px 2px;
		transform: translateY(-3px);
	}
	#hamburger .servicefooter-grid .mm-btn:active {
		box-shadow: 0 0;
		transform: translateY(0);
	}
	#hamburger .servicefooter-grid .mm-left {
		flex-basis: unset;
	}
	#hamburger .servicefooter-grid .mm-text {
		font-size: 18px;
		font-weight: 500;
	}
	#hamburger .servicefooter-grid .mm-btn::after {
		content: '';
		width: 30px;
		height: 30px;
		border-radius: 50%;
		border: 2px solid #333333;
		box-shadow: 0 1px;
		display: flex;
		justify-content: center;
		align-items: center;
		background-color: #fff;
		background-image: url(./img/arrow_forward_black.svg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: 15px 15px;
		flex-shrink: 0;
	}
	#hamburger .servicefooter-grid .mm-btn img {
		display: none;
	}
}
/* ============================================
   ここからスマ�??(�?768px)
============================================ */
@media (max-width: 768px) {
	p {
		font-size: 16px;
	}

	p.title {
		font-size: 18px;
		border-left: solid 4px #333333;
		margin: 40px 0 20px;
	}

	p.top-text {
		font-size: 16px;
		margin: 16px 0 24px;
	}

	a {
		font-size: 16px;
		font-weight: 500;
	}

	#hamburger {
		padding: 35px 20px 20px;
		gap: 28px;
	}

	/* Contact?��縦並び?�? */
	.contact {
		flex-direction: column;
		align-items: stretch;
		padding: 16px;
	}
	.contact-phone {
		width: 100%;
		text-align: center;
		border-top: 2px solid #333333;
		border-bottom: 2px solid #333333;
		padding: 12px 0;
	}
	.contact-form .btn.form {
		font-size: 14px;
	}

	.phone-number {
		font-size: 28px;
		margin: 3px 0;
	}
	.contact-title,
	.contact-label {
		font-size: 16px;
		margin: 3px 0;
	}

	.contact-time {
		font-size: 13px;
		padding: 4px 15px;
	}

	.btn {
		width: 100%;
		max-width: 280px;
		margin: 0 auto;
	}

	.btn.form {
		max-width: 335px;
		font-size: 16px;
		padding: 11px 10px 11px 20px;
		justify-content: space-between;
	}

	a.btn.top {
		margin: 102px 0 0 0;
	}

	.info a {
		font-size: 16px;
	}

	a.link {
		font-size: 16px;
	}
	/* =========================================
   トップエリア?��メインビジュアル?�?
========================================= */
	.top-wrapper {
		min-height: 100vh; /* fallback */
		min-height: 100dvh; /* 最新ブラウザ */

		padding-top: 0;
	}

	.top_text {
		top: 50%;
	}

	.sky {
		height: 50vh;
	}

	.cloud {
		background-size: 550px auto;
	}

	.sun {
		left: 45%;
	}

	/* =========================================
   サービス一覧セクション
========================================= */
	.top_service {
		padding: 0 20px 40px;
	}

	.service-inner {
		padding-top: 24px;
	}

	/*.service-card {
		gap: 16px;
		grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	}

	.mm-tbtn {
		border-width: 3px;
		border-radius: 16px;
		height: 200px;
	}

	.mm-top img {
		width: 96px;
	}*/

	.mm-tbtn {
		padding: 0;
		width: 100%;
		height: 110px;
		border: 2px solid #333333;
	}

	.mm-top {
		gap: 0;
	}

	.mm-top img {
		width: 60px;
	}

	.mm-text {
		font-size: clamp(14px, 3vw, 22px);
	}

	.service-card {
		gap: 10px;
		row-gap: 15px;
		grid-template-columns: repeat(3, minmax(100px, 1fr));
	}

	/* =========================================
   お知らせ
========================================= */
	.information.inner {
		margin: 128px auto 80px;
	}

	.information.inner .title {
		display: none;
	}

	/* 見�?�し＋一覧ボタン */
	.all-news {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.all-news .btn.form {
		width: 240px;
		height: 60px;
		margin: 0 0 40px;
		padding: 10px 24px;
	}

	.all-news .btn.form p {
		font-size: 18px;
		text-align: center;
	}

	/* ニュース1件 */
	.news-item {
		flex-direction: column;
		align-items: flex-start;
		margin-left: 0;
		gap: 10px;
	}

	/* 日付＋カ�?ゴリ */
	.news-item .info,
	.news-item .date {
		font-size: 16px;
		margin-right: 0;
		align-items: flex-start;
	}
	.news-item .info-wrapper {
		gap: 5px;
		flex-direction: column;
	}
	.news-item .info {
		width: 130%;
	}
	.news-item .date {
		display: flex;
		flex-direction: column;
		line-height: 1.4;
	}
	.news-item .category {
		width: fit-content;
		padding: 5px;
		font-size: 14px;
	}

	.news-item a {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	/* タイトル */
	.news-item p {
		max-width: 600px;
		font-size: 18px;
		margin: 10px 0;
	}
	/* =========================================
   よくある質問�?Q&A?�?
========================================= */
	.qa.inner {
		padding: 40px 0 0;
	}

	.qa .title {
		margin: 0;
	}
	.qa-item {
		margin-bottom: 20px;
	}

	.qa-summary {
		padding: 21px 20px 20px;
	}

	.qa-q {
		font-size: 18px;
		font-weight: 500;
	}

	.qa-icon {
		width: 20px;
		height: 20px;
	}

	.qa-icon::before {
		height: 2px;
	}

	.qa-icon::after {
		width: 2px;
	}

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

	.access {
		padding: 0 0 128px;
	}

	.access_text {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		gap: 10px;
	}

	.access_text p {
		font-size: 16px;
		text-align: left;
		margin: 0;
	}

	.box-title {
		min-width: auto;
		max-width: none;
		width: 100%;
		font-size: 20px;
		padding: 3px 15px;
		border-radius: 60px;
		margin: 40px auto 20px;
		text-align: center;
		box-sizing: border-box;
	}
	.all-service {
		width: 73%;
		margin: 0 0 20px;
	}
	.company {
		font-size: 28px;
		font-weight: bold;
		margin-bottom: 16px;
	}
	.sub-text {
		font-size: 16px;
	}

	.tel a {
		font-size: 32px;
	}
	.tel img {
		width: 30px;
		left: -5px;
	}

	.tel.service a {
		font-size: 24px;
	}
	.tel.travel {
		margin-bottom: 10px;
	}
	.tel.travel a {
		font-size: 32px;
	}

	.web-title {
		font-size: 20px;
		margin-top: 40px;
		margin-bottom: 16px;
	}

	.btn.form p {
		font-size: 20px;
	}

	.links {
		flex-direction: column;
		gap: 10px;
		align-items: center;
	}

	.sp_br {
		display: block;
	}
	.pc_br {
		display: none;
	}

	.divider {
		display: block;
		border-top: 2px solid #333;
	}

	/* ======================================
   他�?�サービスはこち�?
====================================== */

	.others {
		width: 100%;
		padding: 128px 20px;
	}

	.others p {
		font-size: 16px;
		margin: 0 0 24px;
		border-left-width: 6px;
		padding: 0px 10px;
	}
	#hamburger .servicefooter-grid {
		display: grid;
	}
	.servicefooter-grid {
		/*grid-template-columns: 1fr;
		gap: 16px;*/
		row-gap: 16px;
		column-gap: 8px;
		grid-template-columns: repeat(3, minmax(100px, 1fr));
	}

	.servicefooter-grid .mm-btn {
		/*width: 100%;
		height: auto;
		font-size: 18px;
		padding: 16px;
		border-radius: 16px;*/
		padding: 0;
		min-height: 110px;
		border: 2px solid #333333;
		justify-content: center;
	}

	.servicefooter-grid .mm-left {
		/*gap: 10px;*/
		gap: 0;
		flex-direction: column;
		flex-basis: unset;
	}

	.servicefooter-grid .mm-left img {
		/*width: 64px;*/
		width: 60px;
	}

	.servicefooter-grid .mm-text {
		/*font-size: 18px;
		line-height: 1.4;*/
		font-size: clamp(14px, 3vw, 22px);
		text-align: center;
	}

	/* 丸矢印を少し小さ�? */
	.servicefooter-grid .mm-btn::after {
		/*width: 44px;
		height: 44px;
		font-size: 14px;*/
		display: none;
	}
}

@media (max-width: 640px) {
	.btn.top,
	.btn.hm {
		width: 100%;
	}
	a.btn.top {
		margin: 0 auto;
		margin-top: 102px;
	}
}

/* ======================================
   ↓くらし・住ま�?・葬祭共通CSS
====================================== */

/* -------------------------------
   タイトル・見�?�し�?h1, h2, h3?�?
---------------------------------- */
.page-top-title h1 {
	font-size: 32px;
	gap: 60px;
	display: flex;
	font-size: 32px;
	align-items: center;
	justify-content: center;
	margin: 0;
}

h2.box-title.small {
	width: fit-content;
	min-width: 350px;
	max-width: none;
	height: auto;
	margin: 0;
	padding: 15px 89px;
}
.section-inner.point h3 {
	font-size: 28px;
	margin: 43px 0 24px;
}
/* -------------------------------
   �?キスト�?p、span?�?
---------------------------------- */
.service_normal {
	font-size: 24px;
	font-weight: 400;
	margin: 0;
	padding: 20px 0;
}

.orange {
	color: #e26244;
}

.orange.big {
	width: 100%;
	display: flex;
	font-size: 96px;
	align-items: baseline;
	justify-content: center;
	margin-top: -20px;
}

.orange.underline {
	text-decoration: underline;
	text-underline-offset: 8px;
}

.orange.underline p {
	font-size: 18px;
	padding-top: 20px;
}

.big2 {
	font-size: 56px;
}

.big3 {
	padding-top: 10px;
	font-size: 56px;
}

/* 小テキス�? */
p.small {
	font-size: 18px;
	font-weight: 400;
	margin: 0 auto;
	text-align: justify;
	text-indent: -1em;
}

p.small.ctr {
	text-align: center;
}

.indent-ctr {
	display: flex;
	justify-content: center;
}
.indent-left {
	text-align: left;
}

/* 強調�?キス�? */
p.bold {
	font-weight: 700;
	margin-bottom: 13px;
}

.semibold {
	font-size: 18px;
	font-weight: 500;
}

.bk-btn.orange {
	margin-top: 20px;
	background-color: #e26244;
}

.bk-btn.orange p {
	padding-top: 0;
}

.service.bk-btn {
	margin-top: 40px;
}

.point p.bold {
	font-size: 24px;
}

/* ーーーーーーーーーーーーーーーーーーーーーー
   サービス一覧
ーーーーーーーーーーーーーーーーーーーーーー */
.serviceicon-container {
	display: flex;
	align-items: center;
	min-width: 245px;
	min-height: 200px;
	margin: 0 auto;
}

.service-icon {
	width: 100%;
	margin: 0 auto;
}

.servicelist-text {
	text-align: left;
	padding-bottom: 10px;
	flex-grow: 1;
}

.servicelist-text p.bold {
	font-size: 20px;
}

.service-box {
	padding-bottom: 88px;
}

.service-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	row-gap: 32px;
	column-gap: 20px;
	padding-top: 40px;
	justify-content: center;
}

.service-list li {
	border: 2px solid #333333;
	border-radius: 20px;
	max-width: 360px;
	padding: 18px 18px;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
}

.service-list .bk-btn {
	width: 100%;
	min-width: 245px;
	padding: 12px 20px;
}

@media screen and (max-width: 1024px) {
	.service-list {
		grid-template-columns: repeat(2, auto);
	}
}
@media (max-width: 640px) {
	.section-inner.service {
		margin: 16px 0 80px;
		padding-bottom: 0;
	}
	.service-box {
		padding-bottom: 0;
	}
	.service-list {
		grid-template-columns: 1fr;
		gap: 16px;
		padding-top: 0;
	}

	.service-list li {
		max-width: 100%;
		height: auto;
	}

	.service-list {
		grid-template-columns: auto;
	}

	.service-list .bk-btn {
		width: 100%;

		padding: 17px;
		gap: 20px;
	}
	.inside-btn {
		font-size: 16px !important;
	}
	.servicelist-text {
		height: auto;
	}
	.serviceicon-container {
		width: 280px;
		height: 195px;
	}
}

/* ーーーーーーーーーーーーーーーーーーーーーー
   ボタン?��一覧へ戻�?
ーーーーーーーーーーーーーーーーーーーーーー */

.btn.kurashi {
	height: 25px;
	border: 2px solid #333333;
	background: #ffffff;
	color: #333333;
	box-shadow: 2px 2px;
	padding: 25px 10px;
}

.btn.kurashi p {
	font-weight: bold;
}

.btn.kurashi::after {
	width: 30px;
	height: 30px;
	font-size: 14px;
	color: #333333;
	background: #f0eddf;
	border: 2px solid #333333;
	border-radius: 50%;
	background-image: url(img/arrow_forward_black.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 18px 18px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}

@media screen and (max-width: 768px) {
	/* ---------- 見�?��? ---------- */
	.page-top-title {
		padding: 25px;
	}
	.page-top-title h1 {
		font-size: 20px;
		gap: 30px;
		flex-wrap: wrap;
	}
	.page-top-title .img-circle::before {
		inset: -10px;
	}
	.page-top-title .img-circle img {
		width: 40px;
	}

	.section-inner.point {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.section-inner.point h3 {
		font-size: 18px;
		margin: 0 0 8px;
		text-align: left;
		padding-left: 1em;
		text-indent: -1em;
	}

	.section-inner.point h3:not(:first-of-type) {
		margin-top: 40px;
	}

	/* ---------- �?キス�? ---------- */
	.service_normal {
		font-size: 16px;
		padding: 0;
	}

	p.small {
		font-size: 14px;
		max-width: 100%;
		width: 320px;
	}

	.semibold {
		font-size: 16px !important;
	}

	.big2 {
		font-size: 18px;
	}

	.big3 {
		font-size: 40px;
		padding-top: 0;
	}

	.orange.big {
		font-size: 40px;
		flex-wrap: wrap;
		margin-top: 0;
	}

	.orange.underline p {
		font-size: 14px;
		padding-top: 12px;
	}

	.point p.bold {
		font-size: 16px;
		margin-top: 0;
		margin-bottom: 0;
	}

	/* ---------- 白丸付き画�? ---------- */
	.img-circle img {
		width: 56px;
	}

	.img-circle::before {
		inset: -10px;
	}

	h2.box-title.small {
		min-width: 200px;
		font-size: 16px;
		padding: 8px 20px;
		margin-bottom: 22px;
	}
	.bk-btn {
		gap: 5px;
		min-width: 280px;
		padding: 15px 20px;
	}
	.bk-btn p {
		font-size: 18px;
	}
	.bk-btn.orange p {
		font-size: 18px;
	}
}

/* ======================================
   ↓保険・葬祭共通CSS
====================================== */
/* サービス概�??��上部説明�? */
.wrapper {
	max-width: 1000px;
	margin: 0 auto;
	padding: 60px 0;
	text-align: center;
}

.hoken-content {
	width: 100%;
	max-width: 780px;
	border: 4px solid #7bac4e;
	padding: 0 30px 0 18px;
	margin-inline: auto;
	overflow: hidden;
}

.hoken-content:not(:first-child) {
	margin-top: 56px;
}

details::details-content {
	height: 0;
	transition:
		height 500ms ease,
		border 500ms ease,
		content-visibility 500ms ease allow-discrete;
}

details[open]::details-content {
	height: auto;
}

.hoken-summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}

.hoken-left {
	display: flex;
	justify-content: left;
	align-items: center;
	gap: 20px;
}

.hoken-left img {
	width: 100px;
}

.hoken-left p {
	font-size: 24px;
	color: #333;
}

.accordion-icon {
	position: relative;
	width: 30px;
	height: 30px;
	flex-shrink: 0;
}

.accordion-icon::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 3px;
	background: #7bac4e;
	border-radius: 999px;
	transform: translateY(-50%);
}

.accordion-icon::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	width: 3px;
	height: 100%;
	background: #7bac4e;
	border-radius: 999px;
	transform: translateX(-50%);
	transition: 0.3s;
}

.hoken-content[open] .accordion-icon::after {
	transform: translateX(-50%) rotate(90deg);
}

.accordion {
	/*padding-bottom: 30px;*/
	transition: all 0.3s ease 0s;
}

.hoken-item {
	border-top: 2px solid #c7d1ba;
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 28px 0;
	position: relative;
}
.menu-list li .post-edit-link,
.hoken-item .post-edit-link {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 12px;
	font-weight: 400;
	padding: 0.25em 1em;
	border-radius: 8px;
	z-index: 100;
	color: #fff;
	background: #ddd;
	opacity: 0.3;
	transition: all 0.3s ease-out 0s;
}
.menu-list li .post-edit-link:hover,
.hoken-item .post-edit-link:hover {
	opacity: 1;
	background: #777;
}

.hoken-list img {
	width: 35%;
}

.hoken-detail {
	width: 65%;
}

.hoken-name {
	font-size: 24px;
	color: #7bac4e;
	text-align: left;
	margin-top: 0;
}

.hoken-text {
	margin-top: 14px;
}

.hoken-text p {
	font-weight: normal;
	text-align: left;
}

.hoken-text p:not(:first-child) {
	margin-top: 10px;
}

.hoken-link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
	gap: 27px;
}

.hoken-link a {
	border-radius: 9999px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 50%;
	height: 60px;
	padding: 14px;
	transition: all 0.15s ease 0s;
}
.hoken-link a:hover {
	transform: scale(1.05);
}

.detail-btn {
	color: #7bac4e;
	border: 2px solid #7bac4e;
}

.application-btn {
	color: #fff;
	background-color: #7bac4e;
}

.hoken-link p {
	font-family: 'Noto Sans JP, Medium';
	font-weight: normal;
	text-align: left;
}

.hoken-link img {
	width: 24px;
}
@media screen and (max-width: 768px) {
	.wrapper {
		padding: 45px 0;
	}
	.hoken-content {
		width: 90%;
		padding: 0 15px 0 15px;
	}
	.hoken-summary {
		padding: 6px 0;
	}
	.hoken-left {
		gap: 10px;
	}
	.hoken-left p {
		font-size: 16px;
		text-align: left;
	}
	.hoken-left img {
		width: 40px;
	}
	.hoken-item {
		display: block;
		padding: 16px 0 20px;
	}
	.hoken-detail {
		width: 100%;
	}
	.hoken-name {
		font-size: 18px;
		margin-bottom: -15px;
	}
	.hoken-list img {
		width: 22px;
	}
	.hoken-link {
		gap: 13px;
	}
	.hoken-link a {
		width: 50%;
		padding: 0px;
		font-size: 14px;
		height: 40px;
	}
	.hoken-link a p {
		font-size: 14px;
	}

	.accordion-icon::before {
		left: 5px;
		width: 67%;
		height: 2px;
	}
	.accordion-icon::after {
		top: 5px;
		height: 67%;
		width: 2px;
	}
	.hoken-text p:not(:first-child) {
		margin-top: 12px;
	}
	/* フッター */
	.footer-date .left {
		padding-left: 96px;
	}
}
