@charset "UTF-8";


/*=======================================================*/
/*					セクション毎のCSS					  */
/*======================================================*/

/*============ 共通 =========== */

/* 親要素からはみ出して画面いっぱいに */
.full {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}
@media print {
	.full {
		margin: 0;
		width: 100%;
	}
}
/*パンくず*/
.sec_pankuzu{
	padding: 0px;
	background-color: var(--base-color);
	position: relative;
	z-index: 1;
}



/*======= TOPページ ======*/
/*ご挨拶*/
.greeting {
	padding: clamp(40px, 6vw, 90px) 0 var(--v-space2);
	background-color: #FFF;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
@media print, screen and (min-width: 768px) {
	.greeting {
		background-image: url(../img/bg_01.jpg);
		background-repeat: no-repeat;
		background-position: top;
		background-size: cover;
	}
}
@media only screen and (max-width: 767px) {
	.greeting {
		background-image: url(../img/bg_01_sp.jpg);
		background-repeat: no-repeat;
		background-position: top;
		background-size: cover;
	}
}

/* ====== Greeting Layout ====== */
.greeting{
	--card-radius: 0px;
	--photo-radius: 0px;
	--gap: 10px;
}
.greeting__inner{
	margin: 0 auto;
	max-width: 1250px;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: var(--gap);
	align-items: start;
}
/* 左：白カード（テキスト） */
.greeting__text{
	background: #ffffffd1;
	padding: clamp(18px, 2.2vw, 26px);
	border-radius: var(--card-radius);
	/* box-shadow: 0 10px 18px rgba(0,0,0,.08); */
}
.greeting__title{
	margin: 0 0 14px;
	color: var(--accent-color1);
	font-size: clamp(18px, 2.2vw, 24px);
	line-height: 1.45;
	letter-spacing: .06em;
}
.greeting__text p{
	margin: 0;
	color: #111;
	font-size: 15px;
	line-height: 1.9;
}
/* 右：2枚の縦長画像を「別々の列」に配置 */
.greeting__media{
	display: contents; /* ←親の3カラム(2fr/1fr/1fr)をそのまま使う */
}
/* 画像共通 */
.greeting__photo{
	margin: 0;
	height: clamp(320px, 42vw, 520px);  /* 縦長の気持ち良さ */
	background: rgba(0,0,0,.06);        /* 読み込み前の下地 */
	overflow: hidden;
	border-radius: var(--photo-radius);
	/* box-shadow: 0 10px 18px rgba(0,0,0,.10); */
}
.greeting__photo img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top; /* 空や余白を上に見せたい時にも効く */
	display: block;
}
/* 右の“段差”を作る：見本っぽく、右端の方を上に/下にずらす */
.greeting__photo.is-a{
	grid-column: 2;             /* 真ん中の1fr */
	margin-top: 5vw;           /* 少し下げる（見本の中段っぽさ） */
}

.greeting__photo.is-b{
	grid-column: 3;             /* 右の1fr */
	margin-top: 0;              /* こちらは上め */
}
/* PC時：テキスト位置を下げる */
@media print, screen and (min-width: 768px) { 
	.greeting__text{
		margin-top: 10vw; /* ← 画像に合わせて調整（40$301C80pxで微調整） */
	}
}
/* ====== SP：縦積み ====== */
@media only screen and (max-width: 767px) {
	.greeting__inner {
		grid-template-columns: 1fr;
	}
	.greeting__media {
		order: 1;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--gap);
	}
	.greeting__text {
		order: 2;	/* 文章を後 */
	}
	.greeting__photo.is-a,
	.greeting__photo.is-b {
		grid-column: auto;
		/* margin-top: 0; */
		height: 320px;
	}
	.greeting__text p{
		text-align: justify;
	}
}

/* 取扱いメーカー */
.top_sec1 {
	padding: 0 0 var(--v-space3);
	background-color: #FFF;
	position: relative;
	z-index: 1;
}
/* ロゴ一覧 */
.maker-list {
	margin-top: 40px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 30px 20px;
	list-style: none;
	padding: 0;
}
.maker-list li {
	display: flex;
	align-items: center;
	justify-content: center;
}
.maker-list img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
	/*filter: grayscale(100%);
	opacity: 0.85;
	transition: filter 0.3s ease, opacity 0.3s ease;*/
}
/* hover（PCのみ） */
/*
@media (hover: hover) {
	.maker-list img:hover {
		filter: grayscale(0%);
		opacity: 1;
	}
}
*/


/**/
.top_sec2 {
	padding: var(--v-space2) 0;
	background-color: #FFF;
	position: relative;
	z-index: 1;
}

/**/
.heading03zz {
	text-align: center;
	font-weight: 400;
	font-size: clamp(23px, 2.5vw, 30px);
	line-height: 1.4;
	margin-bottom: 20px;
	position: relative;
	padding: 1.5rem 0.2rem 0rem 0.2rem;
}
.heading03zz::before {
	content: "";
	border: 0;
	position: absolute;
	left: calc(50% - 60px);
	background-image: url(../img/icon04.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: contain;
	width: 120px;
	height: 60px;
	top: -45px;
}


/**/
.service-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 35px 30px;
	max-width: 1200px;
	margin: 40px auto;
	padding: 0;
}
.service-list li {
	background-color: #fff;
	padding: 37px 23px 20px 23px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	text-align: center;
	position: relative;
	width: calc((100% - 90px) / 4); /* 4列時の幅（gap*3 = 50） */
	box-sizing: border-box;
}

@media (max-width: 1068px) {
	.service-list li {
		width: calc((100% - 30px) / 2); /* 2列 */
	}
}

@media (max-width: 568px) {
	.service-list {
		flex-direction: column;
		align-items: center;
	}

	.service-list li {
		width: 100%;
	}

	.service-list h3 {
		font-size: 20px;
	}
}
/* 印刷用 */
@media print {
	.service-list li {
		background-color: #fff;
		padding: 37px 23px 20px 23px;
		border-radius: 8px;
		box-shadow: 0 2px 8px rgba(0,0,0,0.1);
		text-align: center;
		position: relative;
		width: calc((100% - 90px) / 4); /* 4列時の幅（gap*3 = 50） */
		box-sizing: border-box;
	}
}

.service-list .badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, #b9a580, #685e3f);
	color: #fff;
	font-size: clamp(13px, 1.4vw, 15px);
	line-height: 1.6;
	padding: 6px 12px;
	border-radius: 6px;
	font-weight: bold;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	white-space: nowrap; /* ← 長い文字でも改行されず中央を維持 */
}
.service-list p {
	font-size: clamp(13px, 1.4vw, 15px);
	text-align: justify;
	color: #555;
	line-height: 1.5;
}



/* 案内 カード */
.service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1rem;
}
@media print{
	.service-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
.service-card {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 40px 30px;
	color: white;
	transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
	/* Base shadow and border */
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.1);
}
/* Background Image Setup */
.card-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
/* Overlay - Always present but changes on hover */
.card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
	transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
/* Hover Gradient Effect (40% opacity) */
.service-card:hover .card-overlay {
	background: linear-gradient(
		135deg,
		rgba(230, 162, 60, 0.4) 0%,    /* 左上：ウォームオレンジ */
		rgba(34, 73, 113, 0.7) 100%    /* 右下：落ち着いたブルー */
	);
}

.service-card:hover .card-bg {
	transform: scale(1.1);
}
/* Card Content */
.card-content {
	position: relative;
	z-index: 3;
	text-align: center;
}
.service-card h3 {
	font-size: 1.6rem;
	margin-bottom: 1rem;
	color: white;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.service-card p {
	font-size: 0.95rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}
.btn-link {
	display: inline-block;
	padding: 0.4rem 1.5rem 0.5rem 1.5rem;
	background-color: var(--main-color);
	color: white;
	border-radius: 7px;
	font-size: 0.8rem;
	font-weight: bold;
	transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
	border: 2px solid transparent;
}
.service-card:hover .btn-link {
	background-color: white;
	color: var(--main-color);
	transform: translateY(-3px);
}



/* 新着情報 */
.blog_sec1 {
	padding: var(--v-space) 0 var(--v-space2);
	background-color: #FFF;
	position: relative;
	z-index: 1;
}
/*NEWS*/
.blog_sec1{
	padding: clamp(30px, 5vw, 50px) 0;
	background-color: #f4f3ef;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}

/*タイトル(共通)*/
.spot-heading01{
	font-size: clamp(40px, 4vw, 50px);
	font-family: "Montserrat", sans-serif;
	line-height: 1;
	font-style: italic;
	text-align: center;
	font-weight: 400;
}
.spot-heading01::first-letter{
	color: var(--accent-color1);
}
.line{
	width: 1px;
	height: auto;
	padding-top: 35px;
	background-color: #777;
	margin: 1.1% auto 0.8% auto;
}






/* お問い合わせ */
.contact_sec {
	padding: var(--v-space3) 0;
	background-color: #f2faf8;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
@media print, screen and (min-width: 768px) {
	.conbg-01 {
		background-image: url(../img/bg_02.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}
@media only screen and (max-width: 767px) {
	.conbg-01 {
		background-image: url(../img/bg_02_sp.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}
.contact_sec h2{
	font-size: clamp(20px,2.5vw,25px);
	letter-spacing: 0.28em;
	text-align: center;
	/*text-indent: 0.28em;*/ /* letter-spacing分を補正 */
	font-family: "Montserrat", sans-serif;
	margin: 0;
	font-size: clamp(30px,3vw,40px);
	white-space: nowrap;
	text-transform: lowercase;
	font-weight: normal;
	color: #8f7f6a;
}
.contact_sec p {
	font-size: clamp(13px,1.5vw,16px);
	line-height: 1.5;
	color: var(--txt-color);
	/* text-shadow: 0 0 10px rgba(0, 0, 0, 0.9); */
	text-align: center;
}
.contact_bg{
	background-color: rgba(255, 255, 255, 0.6);
	/*max-width: 1000px;*/
	padding: 40px 40px 40px 40px;
	margin: 0 auto;
	background-image: url(../img/bg_stitch.png);
	background-repeat: no-repeat;
	background-position: 80% center;
	background-size: cover;
}
@media only screen and (max-width: 767px) {
	.contact_sec p {
		text-align: justify;
	}
	.contact_bg{
		background-color: rgba(255, 255, 255, 0.7);
		padding: 30px 15px 40px 15px;
	}
}
/*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: 767px) {
	.tel_bnr{
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 10px;
	}
}
.tel_bnr-contact{
	display: grid;
	grid-template-columns: 1fr 0.3fr;
	grid-template-rows: 1fr;
	grid-column-gap: 50px;
	grid-row-gap: 10px;
	max-width: 700px;
	margin: 0 auto;
}
@media only screen and (max-width: 767px) {
	.tel_bnr-contact{
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 10px;
	}
}
/* ================================
   single（見た目：白い枠だけ）
================================ */
.tel_bnr-single{
	background: #ffffff85;
	/*border: 1px solid #e2e8f0;
	border-radius: 10px;*/
	padding: 20px 40px;
	box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

/* ================================
   ボタン制御
================================ */
.tel_bnr-single .btn-call{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	justify-self: end; /* grid内で右寄せ */
}

/* ================================
   ボタンデザイン
================================ */
.btn-call{
	background: var(--main-color);
	color: #fff;
	padding: 14px 28px;
	border-radius: 8px;
	font-weight: bold;
	font-size: 15px;
	white-space: nowrap;
	text-decoration: none;
	box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
	transition: background 0.2s, transform 0.1s;
	width: auto;          /* auto列を押し広げない */
	max-width: none;
	align-self: center;
}
.btn-call:hover{
	background: var(--accent-color1);
	transform: translateY(-1px);
}

/* SP：押しやすくフル幅 */
@media only screen and (max-width: 767px) {
	.btn-call{
		width: 100%;
		box-sizing: border-box;
	}
	.tel_bnr-single .btn-call{
		justify-self: center; /* grid内で中央寄せ */
	}
	.tel_bnr-single{
		background: #ffffffa6;
		padding: 20px 20px;
	}
}



/*======= ミシン販売ページ ======*/
.sales_sec1 {
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/**/
.sales_sec2 {
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}

/*画像の“内側”に点線（破線）*/
.hasen img {
	outline: 2px dashed var(--accent-color1);
	outline-offset: -10px; /* マイナスで内側に */
}
.hasenW img {
	outline: 2px dashed #fff;
	outline-offset: -10px; /* マイナスで内側に */
}

/*中古ミシン販売*/
.sales_sec3 {
	padding: var(--v-space3) 0;
	/*background-color: #fff;*/
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/**/
.gr-sub2 {
	background-image: url(../img/bg_grsub2.jpg);
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
}
@media (max-width: 568px) {
	.gr-sub2 {
		background-image: url(../img/bg_grsub2.jpg);
		background-size: cover;
		background-position: 70% 100%;
		background-repeat: no-repeat;
	}
}

/*ご購入後のサポートについて*/
.sales_sec4 {
	padding: var(--v-space) 0 var(--v-space2) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/**/
.heading03yy {
	text-align: center;
	font-weight: 400;
	font-size: clamp(23px, 2.5vw, 30px);
	line-height: 1.4;
	margin-bottom: 20px;
	position: relative;
	padding: 1.5rem 0.2rem 0rem 0.2rem;
}
.heading03yy::before {
	content: "";
	border: 0;
	position: absolute;
	left: calc(50% - 60px);
	background-image: url(../img/icon03.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: contain;
	width: 120px;
	height: 60px;
	top: -45px;
}

/**/
.support_list {
	list-style: none;
	padding: 0;
	margin: 20px auto 5px auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(13em, 1fr));
	gap: 12px;
	max-width: 980px;
}
.support_list li {
	padding: 12px 10px;
	border: 1px solid #e5e5e5;
	border-radius: 6px;
	background: #fff;
	font-size: 0.95rem;
	color: #333;
	text-align: center;
}
.support_list li:hover {
	background: #f0e9b445;
}

/**/
.support_note {
	display: flex;
	gap: 20px;
	align-items: center;
	width: 100%;
	max-width: 980px;
	margin: 30px auto 0;
	padding: 20px;
	background: #fffcf1;
	border-radius: 12px;
	justify-content: space-between;
	box-sizing: border-box;
}

/*画像 */
.support_note .img-sm {
	width: 200px;
	flex-shrink: 0;
}
.support_note img {
	width: 100%;
	height: auto;
	transform: rotate(7deg);
	box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
/* レスポンシブ */
@media (max-width: 768px) {
	.support_note {
		flex-direction: column;
		align-items: flex-start;
		padding: 20px 16px;
	}
	.support_note img {
		transform: rotate(0deg);
	}
	.support_note .img-sm {
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
	}
}

/*こんな方におすすめです*/
.sales_sec5 {
	padding: var(--v-space3) 0 var(--v-space2) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}

/**/
.recommend-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 70px 20px;
	margin-top: 50px;
}
/* 各カード */
.recommend-details {
	background-color: #f5f5f5; /* デフォルト */
	padding: 1.8rem;
	border-radius: 8px;
	box-sizing: border-box;
	box-shadow: 0 2px 6px rgba(0,0,0,0.04);
	/*display: flex;
	flex-direction: column;*/
}
.recommend-details figure {
	margin-bottom: 1.2rem;
	margin-top: -17%;
}
.recommend-details img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
}
.recommend-details h3 {
	word-break: keep-all;
}
.recommend-details h3 {
	font-size: clamp(16px,1.6vw,19px);
	text-align: center;
	line-height: 1.5;
	min-height: unset; /* カードごとに高さを自然に */
	display: flex;
	flex-direction: column; /* ← ここで縦並びに */
	align-items: center;
	justify-content: center;
	font-feature-settings: 'palt' 1;
	-webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 1024px) {
	.recommend-list {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 767px) {
	.recommend-list {
		grid-template-columns: 1fr;
	}
	.recommend-details {
		padding: 1.4rem;
	}
}

.recommend-details.industrial figure {
	position: relative;
}
.recommend-details.industrial .ribbon {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: rgba(200, 234, 199, 0.6);
	padding: 5px 8px;
	font-size: clamp(12px,1.2vw,13px);
	text-align: center;
}
/*背景*/
.recommend-details:nth-child(1) {
	background-color: #fff;
	background-image: url(../img/recbg_01.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
}
.recommend-details:nth-child(2) {
	background-color: #fff;
	background-image: url(../img/recbg_02.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
}
.recommend-details:nth-child(3) {
	background-color: #fff;
	background-image: url(../img/recbg_03.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
}
.recommend-details:nth-child(4) {
	background-color: #fff;
	background-image: url(../img/recbg_04.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
}





/*======= ミシン修理ページ ======*/
.repair_sec1 {
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/*お困りではありませんか？*/
.repair_sec2 {
	padding: clamp(100px, 7vw, 170px) 0 var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/**/
.trouble-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin: 40px auto 50px auto;
}
.trouble-bubble {
	background: #ffffffe8;
	border-radius: 15px;
	padding: 1rem 1.2rem;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	position: relative;
	max-width: 235px;
	width: 100%;
	font-size: clamp(15px, 1.7vw, 17px);
	font-weight: 600;
	color: var(--main-color);
	text-align: center;
}
/* レスポンシブ対応 */
@media (max-width: 598px) {
	.trouble-bubble {
		max-width: 90%;
	}
}
/*印刷対応*/
@media print {
	.trouble-list {
		width: 1200px;        /* ← PC表示時と同じ幅 */
		max-width: none;
	}

	.trouble-bubble {
		opacity: 1 !important;
		transform: none !important;
		animation: none !important;
		transition: none !important;
	}
}


/*矢印*/
.arrow_bottom {
	/*display: inline-block;*/
	padding: 1rem 1.2rem;
	width: 30px;
	height: 35px;
	background: var(--accent-color1);
	clip-path: polygon(0 48.2%, 31% 48.2%, 31% 0, 69% 0, 69% 48.2%, 100% 48.2%, 50% 100%);
	margin: 25px auto;
}
/**/
.rep_3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 40px;
}
.rep {
	background: #ffffffc7;
	padding: 24px 22px;
	border-radius: 12px;
	box-shadow: 0 0 6px 1px #bed6f0, 0 0 6px 1px #bed6f0 inset;
	position: relative;
}
.rep h4 {
	font-size:  clamp(16px, 1.6vw, 18px);
	font-weight: 700;
	margin: 10px 0;
	border-left: 4px solid var(--accent-color2);
	padding-left: 10px;
}
.rep p {
	font-size: 14px;
	line-height: 1.6;
	text-align: justify;
}
/* レスポンシブ */
@media (max-width: 1024px) {
	.rep_3 {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 568px) {
	.rep_3 {
		grid-template-columns: 1fr;
	}
}
/*印刷時*/
@media print{
	.rep_3 {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 24px;
		margin-top: 40px;
	}
}

/*画像上文字*/
.rep .img {
	position: relative;
	overflow: hidden;
}

.img_title {
	position: absolute;
	right: 8px;
	bottom: 8px; /* ←右下 */
	/* top: 8px; にすると右上 */

	font-size: 12px;
	color: #fff;
	background: rgba(0, 0, 0, 0.55);
	padding: 4px 8px;
	border-radius: 6px;
	letter-spacing: 0.05em;
	pointer-events: none; /* クリック透過 */
}

/* 補足・対応力まとめゾーン */
.repair_support_wrap {
	margin: 48px auto 0;
	padding: 24px 20px;
	background: #f4f8fd;
	border-radius: 16px;

	/* ★ここがポイント */
	max-width: 900px;
	width: fit-content;

	display: flex;
	justify-content: center;
	box-sizing: border-box;
}

/* 中身 */
.rep_support {
	display: flex;
	gap: 20px;
	align-items: center;
	width: 100%;
}
/* 特殊ミシン画像 */
.rep_support .img-sm {
	width: 200px;
	flex-shrink: 0;
}
.rep_support img {
	width: 100%;
	height: auto;
	/*transform: rotate(-2deg);*//*控え目傾き*/
	transform: rotate(-7deg);
	box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
/* hoverできる端末のみ */
@media (hover: hover) {
	.rep_support img {
		transition: transform 0.3s ease, box-shadow 0.3s ease;
	}
	.rep_support img:hover {
		transform: rotate(0deg) scale(1.03);
		box-shadow: 0 14px 28px rgba(0,0,0,0.2);
	}
}
/* レスポンシブ */
@media (max-width: 768px) {
	.repair_support_wrap {
		padding: 20px 16px;
	}
	.rep_support {
		flex-direction: column;
		align-items: flex-start;
	}
	.rep_support .img-sm {
		width: 100%;
		max-width: 260px;
		margin: 0 auto;
	}
}


/*古いミシン・他店で断られたミシンもご相談ください*/
.repair_sec4 {
	padding: var(--v-space2) 0 0 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/**/
.repair_flex {
	display: grid;
	grid-template-columns: 1.4fr 0.6fr;
	gap: 30px;
	margin: 30px auto;
	max-width: 980px;
	align-items: center;
}
.repair_img {
	display: block;
	margin: 0 auto;
}
.repair_img img {
	width: 100%;
	/*transform: rotate(-2deg);*/
	box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.repair_img figcaption {
	font-size: 14px;
	margin-top: 15px;
}
/* レスポンシブ */
@media (max-width: 768px) {
	.repair_flex {
		grid-template-columns: 1fr;
	}
	.repair_img img {
		max-width: 300px;
	}
}
/*リスト*/
.processing-list {
	list-style: none;
	padding: 0;
	margin: 0 auto 20px auto;
	max-width: 720px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	counter-reset: list;
}
.processing-list li {
	font-size: clamp(15px, 1.6vw, 17px);
	line-height: 1.7;
	padding: 7px 20px 7px 50px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
	position: relative;
	transition: background 0.3s;
	display: flex;
	align-items: flex-start;
}
.processing-list li:before {
	content: "";
	position: absolute;
	top: 0.5em;
	left: 0.8em;
	width: 25px;
	height: 25px;
	background-color: var(--accent-color1);
	border-radius: 5px;
}
.processing-list li:after {
	content: "";
	position: absolute;
	width: 7px;
	height: 14px;
	top: 0.6em;
	left: 1.3em;
	-webkit-transform: rotate(50deg);
	-ms-transform: rotate(50deg);
	transform: rotate(50deg);
	border-right: 3px solid #FFF;
	border-bottom: 3px solid #FFF;
}
.processing-list li:hover {
	background-color: #f4f1eb;
}
@media only screen and (max-width: 568px) {
	.processing-list li {
		padding: 8px 5px 8px 30px;
	}
	.processing-list li:before {
		content: "";
		position: absolute;
		top: .7em;
		left: 0.4em;
		width: 20px;
		height: 20px;
		background-color: var(--accent-color1);
		border-radius: 5px;
	}
	.processing-list li:after {
		content: "";
		position: absolute;
		width: 5px;
		height: 10px;
		top: .8em;
		left: .9em;
		-webkit-transform: rotate(50deg);
		-ms-transform: rotate(50deg);
		transform: rotate(50deg);
		border-right: 2px solid #FFF;
		border-bottom: 2px solid #FFF;
	}
}


/* 修理方法 */
.repair_sec5 {
	padding: 0 0 clamp(20px, 3vw, 40px) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/**/
.repair_method {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin: 30px auto 0 auto;
	max-width: 980px;
}
.method_box {
	background: #f4f8fd;
	padding: 24px;
	border-radius: 14px;
}
.method_box h4{
	font-size: clamp(17px, 1.8vw, 19px);
	border-bottom: 1px dashed #ccc;
	padding: 3px;
}
/* レスポンシブ */
@media (max-width: 768px) {
	.repair_method {
		grid-template-columns: 1fr;
	}
}

/*ミシン修理だけでなく「大切に使い続ける」ご提案*/
.repair_sec6 {
	padding: var(--v-space) 0 var(--v-space2) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/**/
.heading03xx {
	text-align: center;
	font-weight: 400;
	font-size: clamp(23px, 2.5vw, 30px);
	line-height: 1.4;
	margin-bottom: 20px;
	position: relative;
	padding: 1.5rem 0.2rem 0rem 0.2rem;
}
.heading03xx::before {
	content: "";
	border: 0;
	position: absolute;
	left: calc(50% - 60px);
	background-image: url(../img/icon02.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: contain;
	width: 120px;
	height: 60px;
	top: -45px;
}

/**/
.repair_list {
	list-style: none;
	padding: 0;
	margin: 20px auto 5px auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(13em, 1fr));
	gap: 12px;
	max-width: 980px;
}
.repair_list li {
	padding: 12px 10px;
	border: 1px solid #e5e5e5;
	border-radius: 6px;
	background: #fff;
	font-size: 0.95rem;
	color: #333;
	text-align: center;
}
.repair_list li:hover {
	background: rgba(214, 231, 253, 0.27);
}




/*======= 会社案内ページ ======*/
.company_sec1 {
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
.company-message {
	max-width: 900px;
	margin: 60px auto 10px auto;
	padding: 0 20px;
}
.company-message .section-title {
	font-size: clamp(20px, 2vw, 28px);
	margin-bottom: 24px;
	padding-left: 14px;
	border-left: 4px solid #333;
	line-height: 1.4;
}


/*会社情報*/
.company_sec2 {
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/*営業所情報*/
.company_sec3 {
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/* テーブルデザイン */
.info_container {
	display: grid;
	grid-template-columns: 1fr;
}
.info_container .item {
	border-bottom: 1px dashed #c1bcad;
	/*background-color: #ffffff85;*/
	padding: 11px 5px;
	display: grid;
	grid-template-columns: 10.5em 1fr;
	align-items: stretch;
	gap: 20px;
	box-sizing: border-box;
}
@media screen and (max-width: 1199px) and (min-width: 800px) {
	.info_container .item {
		padding: 8px 5px;
		grid-template-columns: 7.5em 1fr;
	}
}
.info_container .label {
	display: flex;
	align-items: center;
	font-weight: bold;
	color: #353535;
	white-space: nowrap;
	padding: 5px;
	font-size: clamp(15px, 1.6vw, 17px);
}
.info_container .content {
	display: flex;
	align-items: center;
	color: #333;
	padding: 5px;
	font-size: clamp(15px, 1.6vw, 17px);
}
.info_container .content2 {
	display: flex;
	align-items: end;
	color: #333;
	padding: 5px;
	font-size: clamp(15px, 1.6vw, 17px);
}
@media screen and (max-width: 568px) {
	.info_container .item {
		grid-template-columns: 1fr;
		padding: 8px 1px;
		gap: 0;
	}
	.info_container .label {
		line-height: 1.6;
		background-color: #f7f7f7fc;
	}
	.info_container .content {
		display: block;
		font-size: 15px;
		line-height: 1.4;
		padding: 10px 5px 5px 5px;
		text-align: justify;
	}
	.info_container .content2 {
		display: block;
		font-size: 15px;
		line-height: 1.4;
		padding: 10px 5px 5px 5px;
		text-align: justify;
	}
}
/*装飾*/
.label-square {
	gap: 12px; /* 文字との間隔調整 */
	position: relative;
}

/* 左の4つの■（2×2の正方形） */
.label-square::before {
	content: "";
	width: 18px;   /* 全体の大きさ */
	height: 18px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 2px; /* 四角同士の隙間 */
}

/* 4つの小さな■を作る */
.label-square::before {
	background:
		linear-gradient(#355f8a 0 0) left top,
		linear-gradient(#8faecc 0 0) right top,
		linear-gradient(#8faecc 0 0) left bottom,
		linear-gradient(#355f8a 0 0) right bottom;
	background-size: 8px 8px; /* 小さい■のサイズ */
	background-repeat: no-repeat;
}

/* グリッド全体 */
.company-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	gap: 15px;
	margin: 30px auto 0 auto;
	box-sizing: border-box;
	/*max-width: 1030px;*/
}
/* 各カード */
.ci-card {
	overflow: hidden;
	display: flex;
	flex-direction: column; /* 縦方向に並べる */
}
/* 画像 */
.ci-image {
	width: 100%;
	overflow: hidden;
}
.ci-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.4s ease;
}
/* ホバー時の画像拡大（枠内で拡大） */
.ci-image:hover img {
	transform: scale(1.05);
}
/* テキスト：画像の下に配置 */
.ci-text {
	padding: 5px 4px 16px 4px;
}
/* タイトル */
.ci-title {
	font-size: clamp(15px, 1.5vw, 16px);
	/*margin-bottom: 8px;*//*下に説明文などがある場合*/
	line-height: 1.4;
	text-align: center;
}
/* レスポンシブ対応 */
@media (max-width: 568px) {
	.company-info-grid {
		grid-template-columns: 1fr;
	}
}


/**/
.heading33 {
	position: relative;
  	display: inline-block;
	font-weight: 400;
  	padding: 0 40px;
	font-size: clamp(24px, 2vw, 27px);
	margin-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
}
.heading33:before {
	content: '';
	position: absolute;
	top: 53%;
	display: inline-block;
	width: 30px;
	height: 2px;
	background-color: #ccc;
}
.heading33:before {
	left:0;
}
.heading33:first-letter {
	font-size: 120%;
	color: var(--main-color);
}
/**/
.h3p {
	color: #c1b9a3;
	text-align: center;
	margin-top: 1px;
	margin-bottom: 1.5em;
	color: #707070;
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
}

/*カードレイアウト*/
.access_subcontainer {
	margin: 30px 0 0 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}
.access_card {
	padding: 20px 20px 15px 20px;
	box-shadow: 0 2px 11px rgba(142, 142, 142, 0.1);
	border-radius: 5px;
	background-color: #fffffff0;
}

/**/
.access_card h3 {
	font-size: clamp(18px, 2vw, 22px);
	font-weight: bold;
	margin-top: 5px;
	margin-bottom: 7px;
	border-bottom: solid 2px #d9d9d9;
	padding-bottom: 0.2em;
	position: relative;
}
.access_card h3::after {
	position: absolute;
	content: " ";
	display: block;
	border-bottom: solid 2px var(--accent-color2);
	padding-bottom: 0.2em;
	width: 25%;
}
.access_card p {
	margin-top: 5px;
	margin-bottom: 10px;
}





/*==========================================================*/
/*      	　　　個人よく使う指定CSS  		  	  */
/*=========================================================*/
/*------------------------------------------------*/
/*セクションの間イメージ画像*/
.sec-adimg{
	padding: 0px;
	background-color: var(--base-color);
	position: relative;
	z-index: 1;
}
.sec-adimg-container {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}
.sec-adimg-container-item1 { grid-area: 1 / 1 / 2 / 2; }
.sec-adimg-container-item2 { grid-area: 1 / 2 / 2 / 3; }
.sec-adimg-container-item3 { grid-area: 1 / 3 / 2 / 4; }
.sec-adimg-container-item4 { grid-area: 1 / 4 / 2 / 5; }
.sec-adimg-container-item5 { grid-area: 1 / 5 / 2 / 6; }

@media (max-width: 968px) {
	.sec-adimg-container {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: 1fr;
		grid-column-gap: 0px;
		grid-row-gap: 0px;
	}
	
	.sec-adimg-container-item1 { display: none; }
	.sec-adimg-container-item2 { grid-area: 1 / 1 / 2 / 2; }
	.sec-adimg-container-item3 { grid-area: 1 / 2 / 2 / 3; }
	.sec-adimg-container-item4 { grid-area: 1 / 3 / 2 / 4; }
	.sec-adimg-container-item5 { display: none; }
}

@media (max-width: 568px) {
	.sec-adimg-container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: 1fr;
		grid-column-gap: 0px;
		grid-row-gap: 0px;
	}
	
	.sec-adimg-container-item1 { display: none; }
	.sec-adimg-container-item2 { grid-area: 1 / 1 / 2 / 2; }
	.sec-adimg-container-item3 { grid-area: 1 / 2 / 2 / 3; }
	.sec-adimg-container-item4 { display: none; }
	.sec-adimg-container-item5 { display: none; }
}

/*------------------------------------------------*/

/*印刷には表示されない*/
@media print{
	.print_none{
		display: none;
	}
}
/*調整*/
.adjus{
	padding-top: 10px;
	padding-bottom: 30px;
}
/*テキストcenter→justify*/
.tx-ctj {
	text-align: center;
}
@media (max-width: 968px) {
	.tx-ctj {
		text-align: justify;
	}
}
/*印刷時*/
@media print{
	.tx-ctj {
		text-align: center;
	}
}
/*文字シャドウ*/
.tx-sha {
	text-shadow: #000 1px 0 10px;
}
/**/
.kukuri{
	border: 1px solid var(--accent-color2);
	padding: 20px 25px 25px 25px;
	margin: 20px 0 0 0;
	box-sizing: border-box;
	outline: 1px solid var(--sub-color3);
	outline-offset: -0.4rem;
	width: fit-content;
	background-color: #ffffffc2;
}
.kukuri p{
	font-size: clamp(14px, 1.4vw, 16px);
	/*text-align: center;*/
}
@media (max-width: 568px) {
	.kukuri{
		padding: 15px 15px 20px 15px;
	}
	.kukuri p{
		text-align: justify;
		line-height: 1.5;
	}
}

/* タグ */
.kakomi01{
	margin-top: 5px;
	margin-bottom: 5px;
}
.kakomi01 span {
	padding: 3px 7px 3px 7px;
	margin: 2.5px 7px 7px 0;
	background-color: #e5fdc89c;
	/*border: 1px solid var(--main-color);*/
	border-radius: 5px;
	text-align: center;
	display: inline-block;
	font-size: clamp(11px, 1.3vw, 12px);
}
/*任意のみ表示*/
@media only screen and (max-width: 869px) {
	.nini-869 {
		display: none;
	}
}
/*印刷時*/
@media print{
	.nini-869 {
		display: inline;
	}
}

/*画像角丸*/
img.borad {
	border-radius: 7px;
	/*border: 1px solid #e1e1e1;*/
}
img.borad2 {
	border-radius: 11px;
}
/* コンテンツ幅 */
div.haba{
	margin: 0 8%;
	padding: 0;
}
@media only screen and (max-width: 968px)  {
	div.haba{
		margin: 0;
		padding: 0;
	}
}
/*印刷時*/
@media print{
	div.haba{
		margin: 0 8%;
		padding: 0;
	}
}
/*pcとspで画像のサイズ変えたいときの指定*/
.pcspwid{
	width: 450px;
	margin: 0 auto;
}
@media only screen and (max-width: 568px) {
	.pcspwid{
		width: 100%;
	}
}
/**/
.pcspwid2{
	width: 460px;
	margin: 15px auto;
}
@media only screen and (max-width: 568px) {
	.pcspwid2{
		width: 100%;
		margin: 15px auto;
	}
}
/**/
.fniyori {
	font-feature-settings: 'palt' 1;
	-webkit-font-smoothing: antialiased;
}
/*四角デザイン*/
.head-square {
	color: #a7ccad;
	font-size: clamp(16px, 1.8vw, 19px);
	display: flex;
	align-items: center;
	gap: 12px; /* 文字との間隔調整 */
	position: relative;
	margin-top: 10px;
}

/* 左の4つの■（2×2の正方形） */
.head-square::before {
	content: "";
	width: 14px;   /* 全体の大きさ */
	height: 14px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 2px; /* 四角同士の隙間 */
}

/* 4つの小さな■を作る */
.head-square::before {
	background:
		linear-gradient(#9acaa2 0 0) left top,
		linear-gradient(#fff 0 0) right top,
		linear-gradient(#fff 0 0) left bottom,
		linear-gradient(#9acaa2 0 0) right bottom;
	background-size: 6px 6px; /* 小さい■のサイズ */
	background-repeat: no-repeat;
}
/*□装飾*/
.cp_h4title {
	position: relative;
	font-size: clamp(18px, 1.8vw, 20px);
	padding: 2px 2px 2px 32px;
	border-bottom: 1px dotted #999;
	/*font-family: 'Noto Serif JP', serif;*/
	font-family: "Zen Kaku Gothic New", sans-serif;
	margin: 0 0 10px 0;
}
.cp_h4title::before,
.cp_h4title::after {
	position: absolute;
	content: '';
	width: 10px;
	height: 10px;
	/*border: 2px solid var(--accent-color1);*/
}
.cp_h4title::before {
	top: 6px;
	left: 5px;
	border: 2px solid var(--accent-color2);
}
.cp_h4title::after {
	top: 10px;
	left: 10px;
	border: 2px solid var(--main-color);
}
/*リスト　大きめディスク*/
ul.nor{
	list-style: disc;
	margin: 5px 5px 5px 25px;
	line-height: 1.4;
}
ul.nor li::marker{
	font-size: 150%;
	font-weight: bold;
	line-height: 0.7;
	color: #d3b457;
	left: 10px;
}
ul.nor li{
	/*border-bottom: 1px dashed #b9b9b9;*/
	padding: 0.2em 0;
	font-size: clamp(14px, 1.5vw, 15px);
}
ul.nor li.noli::marker{
	font-size: 150%;
	font-weight: bold;
	line-height: 0.7;
	color: rgba(255,255,255,0);
}
ul.nor li.noli{
	margin-left: -25px;
}
/*リスト　通常*/
ul.usuallyul{
	list-style: disc;
	margin: 5px 1px 5px 25px;
}
ul.usuallyul li{
	font-size: clamp(14px, 1.5vw, 15px);
	line-height: 1.3;
	margin-bottom: 5px;
	color: #555;
}
ul.usuallyul li:last-child{
	margin-bottom: 0px;
}
/*4つの枠で3つ*/
/*flexで*/
.general-item-circle3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	box-sizing: border-box;
	margin: 30px auto;
	max-width: 1100px;
}
.circle-item3 {
	width: calc((100% - 60px) / 4); /* gap分引いた上で4分割 */
	/*min-width: 250px;*/ /* スマホで潰れすぎ防止 */
	box-sizing: border-box;
}
/* タブレット対応：2カラム */
@media only screen and (max-width: 868px) {
	.general-item-circle3 {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 5px 15px;
		margin: 30px 0;
		box-sizing: border-box;
	}
	.circle-item3 {
		width: calc((100% - 30px) / 3);
	}
}
/* スマホ対応：2カラム */
@media only screen and (max-width: 468px) {
	.circle-item3 {
		width: calc((100% - 15px) / 2);
	}
}

/* 印刷用 */
@media print {

}

.circle-item3 img{
	/*outline: 10px solid #ffffff69;*/
	outline: 2px solid #ffffff69;
	outline-offset: -10px;
}


/*円*/
.circle {
	width: 100%;
	max-width: 300px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
}

/* ゆらゆらアニメーション */
@keyframes float-updown {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px); /* 上に10px動く */
	}
}

/* 適用クラス */
.float-anim {
	animation: float-updown 3s ease-in-out infinite;
}

/* 遅延付きバリエーション */
.float-delay1 {
	animation-delay: 0s;
}
.float-delay2 {
	animation-delay: 1s;
}
.float-delay3 {
	animation-delay: 2s;
}
/* 印刷用 */
@media print {
	/* アニメーションを無効にする */
	.float-anim {
		animation: none !important;
	}
}


