@charset "UTF-8";


/*=======================================================*/
/*					セクション毎のCSS					  */
/*======================================================*/

/*============ 共通 =========== */

/* 親要素からはみ出して画面いっぱいに */
.full {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}
@media print {
	.full {
		margin: 0;
		width: 100%;
	}
}

.spot-heading02{
	text-align: center;
	position: relative;
	top:calc((var(--v-space2) + 3em) * -1);
	display: block;
	z-index: 3;
	margin-bottom: calc((var(--v-space2) + 1em) * -1);
}
.spot-heading02 .heading-line {
	width: 1px;
	height: 100px;
	background-color: var(--main-color);
	margin: 0 auto;
}
.spot-heading02 p {
	position: relative;
	font-size: clamp(35px,5vw,50px);
	font-family: "Corinthia", cursive;
	line-height: 1.2;
	color: var(--accent-color1);
	font-weight: 400;
}
.spot-heading02 h2 {
	position: relative;
	top:-13px;
	font-size: clamp(25px, 2.4vw, 33px);
	line-height: 1.2;
	color: #444;
	font-weight: normal;
	margin-bottom: 25px;
}

.line{
	width: 1px;
	height: auto;
	padding-top: 35px;
	background-color: #222222;
	margin: 1.1% auto;	/*今回のみ*/
}
@media only screen and (max-width: 767px) {
	.line {
		padding-top: 10%;
	}
}
.line2{
	width: 1px;
	height: auto;
	padding-top: 5.8%;
	background-color: #FFF;
	margin: 1.9607% auto;
}
@media only screen and (max-width: 767px) {
	.line2 {
		padding-top: 10%;
	}
}
.hline {
	display: inline-block;
	width: 40px; /* 横棒の長さ（調整可） */
	height: 1px; /* 横棒の太さ（調整可） */
	background-color: #2d2d2d; /* 横棒の色 */
	vertical-align: middle;
	margin: 0 0.1em; /* 文章と横棒の間隔 */
}

/*パンくず*/
.sec_pankuzu{
	padding: 0px;
	background-color: var(--base-color);
	position: relative;
	z-index: 1;
}

/*タグ*/
/* タグ（左右が揃う）  */
.kakomi-tag01 {
	display: flex;
	flex-wrap: wrap; /* 子要素を折り返す */
	gap: 10px;
	width: 100%;
	justify-content: space-between; /* 左右のボックスを揃える */
	margin-bottom: 30px;
}
.kakomi-tag01 p {
	background-color: #FFF;
	color: var(--txt-color);
	padding: 5px;
	font-size: clamp(14px, 1.6vw, 16px);
	font-family: Arial, sans-serif;
	flex-grow: 1; /* ボックスのサイズを自動調整 */
	min-width: 50px; /* ボックスの最小幅を設定 */
	box-sizing: border-box;
	text-align: center; /* 水平方向の中央揃え */
	border-radius: 5px;
	border: 1px dotted var(--main-color);
}
.kakomi-tag01 p.head {
	background-color: var(--main-color);
	color: #FFF;
	padding: 5px;
	font-size: clamp(14px, 1.6vw, 16px);
	font-family: Arial, sans-serif;
	width: 150px;
	max-width: 150px;
	box-sizing: border-box;
	text-align: center; /* 水平方向の中央揃え */
	border-radius: 5px;
}
.kakomi-tag01 p.end{		/* などを末尾につけたい場合に */
	background-color:transparent;
	color:var(--txt-color);
	padding: 0px;
	font-size: clamp(14px, 1.3vw, 15px);
	font-family: Arial, sans-serif;
	width: 20px;
	min-width: 40px; /* ボックスの最小幅を設定 */
	box-sizing: border-box;
	text-align: right; /* 水平方向の中央揃え */
	border:transparent;
	display: flex;
	align-items: flex-end;
}

/* タイトル */
.spot-heading01 {
	font-family: 'Lato', sans-serif;
	margin: 0;
	padding: 0 0 5px;
	font-size: clamp(22px,2.6vw,30px);
	font-weight: 900;
	font-style: normal;
	line-height: 1;
	letter-spacing: 0.2rem;
	text-align: center;
	color: var(--accent-color1);
}
.spot-heading01 + p {
	font-family: 'Lato', sans-serif;
	margin-top: -0.5em;
	margin-bottom: 2em;
	color: var(--txt-color);
	text-align: center;
	font-size: 17px;
	font-weight: 400;
	font-style: normal;
}

/* =========================================================
	見出しセクション：半円かぶりデザイン
========================================================= */

.sec-service {
	position: relative;
	background-color: #b7d970; /* セクション全体の背景色（お好きな色に） */
	padding-top: 120px; /* 上部に余白を確保 */
	margin-top: 120px; /* 前のセクションと重なりを作る */
}

/* 半円背景部分 */
.sec-heading {
	position: absolute;
	top: calc((var(--v-space) + 7em) * -1);
	left: 50%;
	transform: translateX(-50%);
	width: 300px;
	height: 150px;
	background-color: var(--accent-color1);
	border-top-left-radius: 150px;
	border-top-right-radius: 150px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	text-align: center;
}

/* タイトル文字 */
.sec-heading h2 {
	margin: 0;
	padding-bottom: 20px;
	font-size: clamp(25px, 3vw, 30px);
	color: var(--main-color); /* 文字色 */
	font-weight: bold;
	line-height: 1.4;
}

.sec-heading-en {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	letter-spacing: 0.08em;
}

.sec-heading-ja {
	display: block;
	color: var(--accent-color2);
	font-weight: bold;
	letter-spacing: 0.05em;
}

/* 肉球アイコン（中央上） */
.paw-icon {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}


/* レスポンシブ調整 */
@media (max-width: 600px) {
	.sec-heading {
		width: 200px;
		top: calc((var(--v-space) + 5em) * -1);
	}
	.sec-heading h2 {
		font-size: 22px;
	}
}



/*======= TOPページ ======*/
/*ご挨拶*/
.greeting {
	padding: clamp(40px, 6vw, 90px) 0 clamp(120px, 10vw, 200px);
	background-color: #FFF;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
.greeting-haba{
	margin: 0 auto;
	max-width: 900px;
	padding: 2% 0 0 0;
}

/* =========================================================
	サービスリンク（ペットショップ・トリミング・葬祭）
	わんわん村上田店 TOPページ内
========================================================= */

/* 共通：円形ギャラリーコンテナ */
.gr-item-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin: 50px 0 50px 0;
	box-sizing: border-box;
}

/* 各アイテム（PC：3～4分割想定） */
.gr-item-container article,
.gr-item-container a.gr-item {
	width: calc((100% - 60px) / 3);
	box-sizing: border-box;
	text-decoration: none;
	color: inherit;
}

/* 円形画像 */
.gr-item img {
	border-radius: 50%;
	object-fit: cover;
	display: block;
	width: 100%;
	height: auto;
}

/* =========================================================
	サービスリンク専用デザイン（常時タイトル表示）
========================================================= */

.service-links .gr-item {
	position: relative;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border-radius: 50%;
	overflow: hidden;
}

.service-links .gr-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.service-links figure {
	position: relative;
	margin: 0;
}

.service-links img {
	border-radius: 50%;
	object-fit: cover;
	width: 100%;
	height: auto;
	vertical-align: middle;
	/* filter: brightness(0.9); */
	transition: filter 0.3s ease;
}

.service-links .gr-item:hover img {
	filter: brightness(1);
}

/* タイトル（常時下部表示） */
.service-links figcaption {
	position: absolute;
	bottom: 10%;
	left: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.55);
	color: #fff;
	font-weight: bold;
	font-size: clamp(13px, 2vw, 17px);
	letter-spacing: 0.05em;
	padding: 10px 0;
	text-align: center;
	box-sizing: border-box;
}

/* =========================================================
	レスポンシブ対応
========================================================= */

/* タブレット対応：3カラム */
@media only screen and (max-width: 868px) {
	.gr-item-container {
		gap: 10px 15px;
		margin: 30px 0 50px 0;
	}
	.gr-item-container article,
	.gr-item-container a.gr-item {
		width: calc((100% - 30px) / 3);
	}
}

/* スマホ対応：2カラム */
@media only screen and (max-width: 568px) {
	.gr-item-container article,
	.gr-item-container a.gr-item {
		width: calc((100% - 15px) / 2);
	}
}

/* 超小型デバイス（1カラム） */
@media only screen and (max-width: 370px) {
	.gr-item-container article,
	.gr-item-container a.gr-item {
		width: 100%;
	}
}



/*TELバナー*/
.tel_bnr{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 10px;
}
@media only screen and (max-width: 568px) {
	.tel_bnr{
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 10px;
	}
}



/*======= ペットショップ ======*/
.pe_sec1{
	padding: var(--v-space) 0 var(--v-space2);
	background-color: #FFF;
	
	background-image: url(../img/bg_01.png);
	background-repeat: repeat;
	background-position: top;
	
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
@media print, screen and (min-width: 768px) {
	.pe_sec1 {
		background-size: 50%;
	}
}
@media only screen and (max-width: 767px) {
	.pe_sec1 {
		background-size: 150%;
		background-position: right;
	}
}

.pe_sec2{
	padding: var(--v-space) 0;
	background-image: radial-gradient(#ffdf5f54 15%, transparent 16%),
	radial-gradient(#ffdf5f54 15%, transparent 16%);
	background-size: 20px 20px;
	background-position: 0 0, 10px 10px;
	
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.pe_sec2 img{
	border-radius: 20px;
}


/* リード文 */
.goods-lead {
	margin: 0 auto clamp(30px, 5vw, 40px);
	font-size: 15px;
	line-height: 1.9;
	text-align: justify;
}

.goods-lead p {
	margin: 0;
}

/* グリッドカード */
.goods-grid {
	display: grid;
	grid-template-areas:
		"food"
		"goods"
		"wear";
	grid-template-columns: 1fr;
	gap: clamp(16px, 3vw, 22px);
	margin-bottom: clamp(30px, 5vw, 40px);
}

/* カード共通 */
.goods-item {
	position: relative;
	background: #fff;
	border-radius: 18px;
	border: 2px solid color-mix(in srgb, var(--accent-color1, #ffda9e) 50%, #fff 50%);
	padding: 18px 18px 20px;
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

.goods-item::before {
	content: "";
	position: absolute;
	top: -24px;
	right: -24px;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 35%, #fff 12%, transparent 13%),
		color-mix(in srgb, var(--accent-color2, #eb6d94) 70%, #fff 30%);
	opacity: 0.19;
}

.goods-item h3 {
	margin: 0 0 8px;
	font-size: 17px;
	font-weight: 700;
	color: color-mix(in srgb, var(--main-color, #F49C14) 80%, #333 20%);
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
}

.goods-item h3::before {
	content: "●";
	font-size: 0.7em;
	color: color-mix(in srgb, var(--accent-color2, #eb6d94) 70%, #333 30%);
}

.goods-item p {
	margin: 0;
	font-size: 14px;
	line-height: 1.9;
	text-align: justify;
}

/* 各カードのエリア名 */
.goods-item:nth-child(1) {
	grid-area: food;
}
.goods-item:nth-child(2) {
	grid-area: goods;
}
.goods-item:nth-child(3) {
	grid-area: wear;
}

/* スタッフサポート文 */
.goods-support {
	font-size: 14px;
	line-height: 1.9;
	color: #555;
}

.goods-support p {
	margin: 0;
}

/* ホバーちょいアニメーション（PC） */
@media (hover: hover) and (pointer: fine) {
	.goods-item {
		transition: transform 0.25s ease, box-shadow 0.25s ease;
	}
	.goods-item:hover {
		transform: translateY(-3px);
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
	}
}

/* タブレット以上：3カラム */
@media print, screen and (min-width: 768px) { 
	.goods-grid {
		grid-template-areas: "food goods wear";
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media print {
	/* 1カードをページ途中で割らないようにする */
	.goods-grid {
		break-inside: avoid;
		page-break-inside: avoid;
		-webkit-column-break-inside: avoid;
	}
}



/*======= トリミング＆ホテル ======*/
.th_sec1{
	padding: var(--v-space) 0;
	background:
		repeating-linear-gradient(
			135deg,
			rgba(255,255,255,0.9) 0,
			rgba(255,255,255,0.9) 12px,
			rgba(255,255,255,0.6) 12px,
			rgba(255,255,255,0.6) 24px
		),
		color-mix(in srgb, var(--accent-color1, #ffda9e) 35%, #fff 65%);
	position: relative;
	z-index: 1;
}

.trimming-card-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

/* 印刷対応 */
@media print {
	.trimming-card-container {
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
	}
	/* 1カードをページ途中で割らないようにする */
	.trimming-card-container {
		break-inside: avoid;
		page-break-inside: avoid;
		-webkit-column-break-inside: avoid;
	}
}

.trimming-card {
	background-color: #FFF;
	border-radius: 12px;
	box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: 0.3s ease;
	padding-bottom: 10px;
}

.trimming-card:hover {
	box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
	transform: translateY(-2px);
}

.trimming-card h4 {
	font-size: 18px;
	margin: 15px 15px 5px;
	color: var(--accent-color1);
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}

.trimming-card h4 span {
	font-size: 12px;
	color: var(--accent-color2);
	font-weight: normal;
}

.trimming-card p {
	font-size: 15px;
	line-height: 1.6;
	padding: 0 15px 15px;
	color: #333;
}

.trimming-haba{
	margin: 30px auto;
	max-width: 1000px;
}

.th_sec2{
	padding: var(--v-space) 0;
	background-color: #FFF;
	position: relative;
	z-index: 1;
}

/* ============================
	ペットホテル カード
============================ */

.pethotel-card-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

/* 印刷時 */
@media print {
	.pethotel-card-container {
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
	}
	/* 1カードをページ途中で割らないようにする */
	.pethotel-card-container {
		break-inside: avoid;
		page-break-inside: avoid;
		-webkit-column-break-inside: avoid;
	}
}

.pethotel-card {
	background-color: #FFF;
	border-radius: 12px;
	box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: 0.3s ease;
	padding-bottom: 10px;
}

.pethotel-card:hover {
	box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
	transform: translateY(-2px);
}

/* タイトル */
.pethotel-card h4 {
	font-size: 18px;
	margin: 15px 15px 5px;
	color: var(--main-color);
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}

/* 英語 */
.pethotel-card h4 span {
	font-size: 12px;
	color: var(--accent-color1);
	font-weight: normal;
}

/* テキスト */
.pethotel-card p {
	font-size: 15px;
	line-height: 1.6;
	padding: 0 15px 15px;
	color: #333;
}

/* ============================
	ペットホテル：お預かりできるペット
============================ */


/* カードコンテナ */
.pethotel-animal-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
	gap: 10px;
}

/* カード本体 */
.pethotel-animal-card {
	background-color: #fff;
	border-radius: 16px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
	padding: 16px 10px 18px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

/* ホバー */
@media (hover: hover) and (pointer: fine) {
	.pethotel-animal-card:hover {
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
		transform: translateY(-2px);
	}
}

/* イラスト部分 */
.pethotel-animal-figure {
	margin: 0 0 8px;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background-color: color-mix(in srgb, var(--accent-color1, #69bd83) 20%, #fff 80%);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.pethotel-animal-figure img {
	display: block;
	width: 80%;
	height: auto;
	object-fit: contain;
}

/* テキスト */
.pethotel-animal-card h4 {
	margin: 6px 0 0;
	font-size: 15px;
	color: var(--txt-color, #333);
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.pethotel-animal-card h4 span {
	font-size: 11px;
	letter-spacing: 0.08em;
	color: var(--accent-color2, #eb6d94);
	text-transform: uppercase;
}

/* 印刷用：3列固定 */
@media print {
	.pethotel-animal-container {
		grid-template-columns: repeat(8, 1fr);
		gap: 5px;
	}
}

/* チェックイン・チェックアウト */
/* 外枠カード */
.pethotel-time-card {
	background-color: #fff;
	border-radius: 18px;
	padding: 20px;
	box-shadow: 0 6px 18px rgba(0,0,0,0.15);
	border: 2px solid color-mix(in srgb, var(--accent-color1) 35%, #fff 65%);

	display: grid;
	grid-template-columns: 2.5fr 1fr 1fr; /* PC：テキスト・写真・写真 */
	gap: 24px;
	align-items: center;
}

/* テキストカード（デザイン） */
.pethotel-time-box {
	background-color: #fff;
	display: grid;
	gap: 14px;
}

.pethotel-time-row {
	display: grid;
	grid-template-columns: minmax(90px, 120px) 1fr;
	gap: 10px;
	align-items: center;
	font-size: 15px;
}

.pethotel-time-label {
	font-weight: 700;
	padding: 6px 10px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--accent-color1) 20%, #fff 80%);
	color: color-mix(in srgb, var(--main-color) 80%, #333 20%);
	text-align: center;
}
.pethotel-time-row:nth-child(3) .pethotel-time-label {
	background: color-mix(in srgb, var(--accent-color2) 20%, #fff 80%);
}

/* 写真 */
.pethotel-time-photo {
	margin: 0;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.pethotel-time-photo img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

/* SP：テキスト → 写真2枚横並び */
@media only screen and (max-width: 768px) {
	.pethotel-time-card {
		grid-template-columns: 1fr 1fr; /* 2カラムグリッド */
		row-gap: 20px;
	}

	/* テキストは2カラムぶち抜き */
	.pethotel-time-box {
		grid-column: 1 / 3;
	}

	/* ラベルと時間を縦並びにする */
	.pethotel-time-row {
		grid-template-columns: 1fr; /* 1カラムに変更 */
		grid-row-gap: 4px;
		text-align: center;
	}

	/* ラベルを左寄せ or 中央寄せ調整可能 */
	.pethotel-time-label {
		justify-self: center; /* 左寄せ（自然） */
		width: 96%;
	}

	/* 写真2枚はその下で横並び（col1, col2に自然に入る） */
}


/*======= ペット葬祭 ======*/

.pf_sec1{
	padding: var(--v-space2) 0 var(--v-space);
	background-color: #f9e9fc;
	
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */ 
}
@media print, screen and (min-width: 768px) {
	.pf_sec1 {
		background-image: url(../img/bg_02.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}
@media only screen and (max-width: 767px) {
	.pf_sec1 {
		background-image: url(../img/bg_02_sp.jpg);
		background-repeat: no-repeat;
		background-position: bottom;
		background-size: cover;
	}
}

.pf_sec1-haba{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
	gap: 1rem;
}


.pf_sec2 {
	padding: var(--v-space2) 0 var(--v-space);
	background-color: #f5faf4;
	position: relative;
	z-index: 1;
}

@media print, screen and (min-width: 768px) {
	.pf_sec2 {
		background-image: url(../img/bg_03.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}
@media only screen and (max-width: 767px) {
	.pf_sec2 {
		background-image: url(../img/bg_03_sp.jpg);
		background-repeat: no-repeat;
		background-position: bottom;
		background-size: cover;
	}
}


/* リスト */
.pf_sec2-list {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	max-width: 720px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	counter-reset: list;
}

.pf_sec2-list li {
	font-size: 16px;
	line-height: 1.8;
	padding: 14px 20px 14px 50px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
	position: relative;
	display: flex;
	align-items: flex-start;
}

/* 丸+チェックのアイコン部分 */
.pf_sec2-list li:before {
	content: "";
	position: absolute;
	top: 1em;
	left: 0.75em;
	width: 25px;
	height: 25px;
	background-color: var(--main-color);
	border-radius: 15px;
}

.pf_sec2-list li:after {
	content: "";
	position: absolute;
	width: 7px;
	height: 14px;
	top: 1.1em;
	left: 1.3em;
	transform: rotate(50deg);
	border-right: 3px solid #FFF;
	border-bottom: 3px solid #FFF;
}

/* ホバー */
.pf_sec2-list li:hover {
	background-color: #fff8e4;
}

/* SP 調整 */
@media only screen and (max-width: 568px) {
	.pf_sec2-list {
		gap:10px;
	}
	.pf_sec2-list li {
		font-size: 14px;
		padding: 8px 5px 8px 30px;
	}
	.pf_sec2-list li:before {
		top: .7em;
		left: 0.4em;
		width: 20px;
		height: 20px;
	}
	.pf_sec2-list li:after {
		width: 5px;
		height: 10px;
		top: .8em;
		left: .85em;
		border-right: 2px solid #FFF;
		border-bottom: 2px solid #FFF;
	}
}

/* 下矢印 */
.arrow-down {
	position: absolute;
	top: calc((var(--v-space2) + 4em) * -1);
	left:50%;
	width: 80px;
	height: 80px;
	transform: translateX(-50%) rotate(-45deg);
}
.arrow-down::before {
	content:"";
	display:block;
	width:80px;
	height:80px;
	border-left:4px solid;
	border-bottom:4px solid;
	border-image: linear-gradient(90deg, #11bfeb, #007ECD);
	border-image-slice:1;
}

/* 下の余白ライン */
.pf_btm {
	margin: 0 auto 0;
}

@media only screen and (max-width: 767px) {
	.pf_btm {
		margin-bottom: 30px;
	}
}

.pf_sec3 {
	padding: var(--v-space2) 0;
	background-color: #FFF;
	
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}


/* キャッチ01 */
.pf_sec3__catch01 {
	font-size: clamp(18px,5vw,22px);
	text-align: center;
	width: 220px;
	margin-inline: auto;
	border: 1.5px solid var(--main-color);
	font-weight: 700;
	margin-bottom: 10px;
}

/* キャッチ02（グラデ文字） */
.pf_sec3__catch02 {
	text-align: center;
	font-size: clamp(20px, 2vw, 23px);
	font-weight: 700;
	background: linear-gradient(to right, #3da53f, #9fb828);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	margin: 0 auto 1rem auto;
	max-width: fit-content;
	line-height: 1.4;
}

/* 冒頭文章 */
.pf_sec3__tx-c {
	text-align: center;
}
@media only screen and (max-width:568px) {
	.pf_sec3__tx-c {
		text-align: left;
	}
}


/* 手配の手順 */
.pf-flow {
	list-style: none;
	padding: 0;
	margin: 8px 0 16px;
	counter-reset: pf-flow;
}

.pf-flow li {
	position: relative;
	padding-left: 1.7em;
	margin-bottom: 10px;
	font-size: 15px;
}

.pf-flow li::before {
	counter-increment: pf-flow;
	content: counter(pf-flow);
	position: absolute;
	left: 0;
	top: 0.2em;
	width: 1.6em;
	height: 1.6em;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	background-color: var(--main-color);
	color: #fff;
	font-weight: 700;
}


/*======= 会社案内ページ ======*/
/*会社案内*/
.info_sec1{
	padding: var(--v-space) 0;
	background-color: var(--accent-color1);

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

/* 概要部分のテーブル */

.info_sec1__haba{
	max-width: 1000px;
	margin: 0 auto;
}
.info_sec1_container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	font-family: 'Arial', sans-serif;
}

.info_sec1_container .item {
	border: 1px solid #ddd;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	border-radius: 6px;
	background-color: #fff;
	padding: 12px 16px;
	display: grid;
	grid-template-columns: 220px 1fr;
	align-items: stretch;
	gap: 20px;
}

.info_sec1_container .label {
	display: flex;
	align-items: center;
	font-weight: bold;
	color: #FFF;
	white-space: nowrap;
	background-color: var(--accent-color2);
	padding: 5px 7px;
}

.info_sec1_container .content {
	/* display: flex; */
	align-items: center;
	color: #333;
	padding: 5px 7px;
}


/* レスポンシブ：568px以下で縦並び＋枠内レイアウトも縦に */
@media only screen and (max-width: 568px) {
	.info_sec1_container .item {
		grid-template-columns: 1fr;
		gap:0px;
		padding: 10px 14px;
	}

	.info_sec1_container .label {
		line-height: 1.6;
		font-size: 14px;
	}

	.info_sec1_container .content {
		font-size: 14px;
	}
}


.access_sec1{
	padding: var(--v-space) 0;
	background-color: #FFF;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
/* アクセス部分のテーブル */
.access1 {
	font-weight: bold;
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 5.25em;
}
.access2 {
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 400px;
}
@media screen and (max-width: 568px) {
	.access1 {
		display: block;
		padding: 8px 2px 2px 2px;
		width: 100%;
		border-bottom: 1px solid rgba(255,255,255,0);
	}
	.access2 {
		display: block;
		padding: 2px;
		width: 99%;
	}
}
