@charset "UTF-8";


/*=======================================================*/
/*					セクション毎のCSS					  */
/*======================================================*/

/*============ 共通 =========== */

/* 親要素からはみ出して画面いっぱいに */
.full {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}
@media print {
	.full {
		margin: 0;
		width: 100%;
	}
}
/*パンくず*/
.sec_pankuzu{
	padding: 0 0 15px 0;
	background-color: var(--base-color);
	position: relative;
	z-index: 1;
}


/*======= TOPページ ======*/
/*ご挨拶*/
.greeting {
	padding: clamp(40px, 6vw, 90px) 0 clamp(25px, 3vw, 40px) 0;
	background-color: #FFF;
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

h2.grh2 {
	font-size: clamp(26px, 2.9vw, 30px);
	text-align: center;
	line-height: 1.2;
	font-weight: 500;
	margin-bottom: 15px;
}

/*サブキャッチ補足文章*/
.lead-p {
	text-align: center;
	color: #fff;
	font-size: clamp(15px, 1.8vw, 20px);
	font-weight: 700;
	margin: 5px auto 20px auto;
	line-height: 1.4;
	background-color: var(--accent-color1);
	width: fit-content;
	border-radius: 50px;
	padding: 5px 25px 7px 25px;
}
@media (max-width: 568px) {
	.lead-p {
		text-align: justify;
		padding: 7px 25px 9px 25px;
		line-height: 1.2;
	}
}
.line{
	width: 1px;
	height: auto;
	padding-top: 3%;
	background-color: #999;
	margin: 1.5% auto;
}
@media only screen and (max-width: 767px) {
	.line {
		width: 1px;
		height: auto;
		padding-top: 9%;
		background-color: #999;
		margin: 1.5% auto;
	}
}
/**/
p.grp{
	font-size: clamp(14px, 1.5vw, 16px);
	line-height: 1.6;
	font-weight: 400;
	-webkit-text-stroke: 3px #fff;
	text-stroke: 3px #fff;
	paint-order: stroke;
	text-align: justify;
	margin-bottom: 7px;
}
/**/
div.haba2 {
	margin: 20px 7%;
	padding: 0;
}
@media (max-width: 968px) {
	div.haba2 {
		margin: 10px 3px;
		padding: 0;
	}
}


/*こんなサービスに対応しています*/
.tss-section {
	padding: clamp(25px, 3vw, 40px) 0 var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
.tss-section h3.heading04{
	font-weight: bold;
}
/* カードグリッド */
.tss-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}
/* カード個別 */
.tss-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	transition: transform 0.3s, box-shadow 0.3s;
	text-align: center;
	padding-bottom: 20px;
}
.tss-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
/* カード画像 */
.tss-card-img {
	width: 100%;
	height: auto;
	overflow: hidden;
}
.tss-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}
.tss-card:hover .tss-card-img img {
	transform: scale(1.05);
}
/* カードタイトル */
.tss-card-title {
	font-size: clamp(17px, 2vw, 20px);
	margin: 10px 0 8px;
	font-weight: 600;
}
/* カード本文 */
.tss-card-text {
	font-size: 0.9rem;
	color: #666;
	margin: 0 15px;
}
/*リンク*/
.tss-links a {
	font-size: clamp(15px, 1.7vw, 17px);
	font-weight: 500;
	color: #005bac;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	position: relative; /* ←重要 */
}
/* 下線（文字の下に表示） */
.tss-links a::after {
	content: "";
	position: absolute;      /* ←relative aに対して絶対位置 */
	bottom: 0;
	left: 0;
	height: 1px;
	width: 0;
	background-color: currentColor;
	transition: width 0.2s ease;
}
/* 矢印 */
.tss-links a .arrow {
	transition: transform 0.2s ease;
}
/* hover時 */
.tss-links a:hover::after {
	width: 100%; /* aタグの文字幅に合わせて伸びる */
}
.tss-links a:hover .arrow {
	transform: translateX(4px);
}

/* 横並び用ラッパー */
.tss-links-row {
	display: flex;
	justify-content: center; /* 中央揃え */
	gap: 40px; /* リンク間の間隔 */
	flex-wrap: wrap; /* 画面幅が狭くなったら縦に折り返す */
	margin-top: 30px;
}
/* スマホ対応 */
@media (max-width: 600px) {
	.tss-links-row {
		gap: 20px;
		flex-direction: column; /* 縦並びに */
		align-items: center;
	}
}
/* レスポンシブ */
@media (max-width: 1024px) {
	.tss-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 600px) {
	.tss-cards {
		grid-template-columns: 1fr;
	}
	.tss-card-text {
		font-size: 0.85rem;
	}
}



/**/
.trouble-section {
	margin: 20px auto 0 auto;
	padding: 35px 1rem 30px 1rem;
	background: #fffaef;
	text-align: center;

	background-image: url(../img/bg_04b.png);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 250px;
}
/* レスポンシブ対応 */
@media (max-width: 468px) {
	.trouble-section {
		padding: 20px 1rem 50px 1rem;
		background-image: url(../img/bg_04b.png);
		background-repeat: no-repeat;
		background-position: right 68%;
		background-size: 215px;
	}
}
/**/
.trouble-list2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	max-width: 1200px;
	margin: 0 auto 30px auto;
}
.trouble-bubble2 {
	background: #ffffffe8;
	border-radius: 15px;
	padding: 1rem 1.2rem;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	position: relative;
	max-width: 280px;
	width: 100%;
	font-size: clamp(15px, 1.7vw, 17px);
	font-weight: 600;
	color: var(--accent-color1);
	text-align: center;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.trouble-bubble2.show {
	animation: fadeSlideUp 0.8s ease-out forwards;
}
/* 順番にディレイをかける */
.trouble-bubble2.show:nth-child(1) { animation-delay: 0.1s; }
.trouble-bubble2.show:nth-child(2) { animation-delay: 0.2s; }
.trouble-bubble2.show:nth-child(3) { animation-delay: 0.3s; }
.trouble-bubble2.show:nth-child(4) { animation-delay: 0.4s; }
.trouble-bubble2.show:nth-child(5) { animation-delay: 0.5s; }
.trouble-bubble2.show:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeSlideUp {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
/* レスポンシブ対応 */
@media (max-width: 568px) {
	.trouble-bubble2 {
		max-width: 100%;
	}
}
/*印刷対応*/
@media print {
	/* アニメーションやトランジションを無効化 */
	.trouble-bubble2 {
		opacity: 1 !important;
		transform: none !important;
		animation: none !important;
		transition: none !important;
	}
	/* IntersectionObserverでclass付与されていなくても表示されるように */
	.trouble-bubble2:not(.show) {
		opacity: 1 !important;
		transform: none !important;
	}
}
/*矢印*/
.arrow_bottom2 {
	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;
}




/*選ばれる理由*/
.gr-subf {
	padding: clamp(100px, 6vw, 130px) 0 20px 0;
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
.gr-subf::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: clamp(2px,0.7vw,3px);
	background-image: linear-gradient( 135deg, #fff 0%, #b5997b 40%, #b7952d 60%, #fff 100% );
}
.craf-wrap {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
}
/* 背景を「下側に」配置する */
.craf-bg {
	width: 100%;
	overflow: hidden;
	position: relative;
	top: -70px;
}
.craf-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* カードを背景より「上側」に置く」 */
.craf-cards {
	background: rgba(246, 246, 246, 0.7);
	border-radius: 16px;
	max-width: 1100px;
	padding: 50px 0;
	margin: 0 auto 20px;
	position: relative;
	z-index: 5;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	box-sizing: border-box;
}
/* カード内部 */
.card {
	padding: 20px 30px;
}
.card + .card {
	border-left: 1px solid #ddd;
}
.craf-title {
	text-align: center;
	font-size: clamp(19px, 2vw, 24px);
	margin-bottom: 16px;
	line-height: 1.4;
}
.craf-text {
	font-size: clamp(13px, 1.4vw, 15px);
	color: #555;
}
@media (max-width: 968px) {
	.craf-cards {
		padding: 30px 0;
		gap: 0;
	}
}
@media (max-width: 868px) {
	.craf-bg {
		height: 200px;
		top: -20px;
	}
	.craf-cards {
		grid-template-columns: 1fr;
		gap: 20px;
        	padding: 30px 10px; 
		width: 85%;
		margin: 0 auto;
	}
	.card {
		padding: 20px 10px;
	}
	.card + .card {
		border-left: none;
		border-top: 1px solid #ddd;
		padding-top: 20px;
	}
}
/* 画像エリア */
.card-img {
	width: 90px;          /* ← サイズ固定 */
	height: 90px;
	margin: 0 auto 18px;  /* ← 中央寄せ */
}
.card-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}


































/*======= 事業内容ページ ======*/
.service_sec1 {
	padding: var(--v-space3) 0 50px 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/**/
.section-nav {
	margin: 40px 0;
}
.section-nav__wrap {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 16px;
}
.section-nav__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 20px 12px;
	background: #fff;
	border: 3px solid #004d9259;
	border-radius: 11px;
	text-decoration: none;
	transition: background 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
}
.section-nav__item:hover {
	background: #1bb9f60f;
	box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}
.section-nav__icon {
	width: 130px;
	height: 130px;
	margin-bottom: 7px;
}
.section-nav__icon img {
	width: 100%;
	height: auto;
}
.section-nav__text {
	font-size: clamp(16px, 1.7vw, 18px);
	font-weight: 600;
	color: #333;
}
/**/
.section-nav__item--flow {
	background: #fff;
	border: 2px dotted #de8625b5;
}
.section-nav__item--flow:hover {
	background: #de86251f;
	box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}
/* CTA*/
.service_cta {
	margin: 20px auto 10px auto !important;
	text-align: center;
}

/*ボタン*/
.detail-link {
	margin-top: 10px;;
}
.detail-link a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	padding: 0.5em 1.5em 0.7em 1.5em;
	min-width: 180px;
	box-sizing: border-box;
	font-size: clamp(11px,1.2vw,14px);
	font-weight: 600;
	line-height: 1.4;
	text-decoration: none;
	color: #fff;
	background-color: var(--accent-color2);
	border-radius: 9999px;
	transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

/* 矢印アイコン（CSSのみ） */
.detail-link a::after {
	content: "→";
	font-size: 0.9em;
	transition: transform 0.2s ease;
}
.detail-link a:hover {
	background-color: var(--sub-color1);
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.detail-link a:hover::after {
	transform: translateX(4px);
}

/* スマホ対応 */
@media (max-width: 768px) {
	.detail-link a {
		width: 100%;
		min-width: unset;
		justify-content: center;
	}
}


/*引越サービス*/
.service_sec2 {
	padding: var(--v-space3) 0;
	background-color: var(--main-color);
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}


/*配送サービス*/
.service_sec3 {
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}


/*その他のサービス*/
.service_sec4 {
	padding: var(--v-space2) 0 var(--v-space) 0;
	background-color: var(--accent-color1);
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/**/
.strength-list2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(50px, 7vw, 90px) 20px;
	margin-top: clamp(50px, 8vw, 100px);
}
/* 各カード */
.strength-details2 {
	padding: 1.8rem 1.3rem 1.3rem 1.3rem;
	border-radius: 8px;
	box-sizing: border-box;
	box-shadow: 0 2px 6px rgba(0,0,0,0.09);
	background-color: #fff;
}
.strength-details2 figure {
	margin-bottom: 1.2rem;
	margin-top: -17%;
}
.strength-details2 img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
}
.strength-details2 h3 {
	font-size: clamp(16px,1.6vw,19px);
	text-align: center;
	margin-bottom: 0.6rem;
	line-height: 1.5;
	font-feature-settings: 'palt' 1;
	-webkit-font-smoothing: antialiased;
}
.strength-details2 p {
	font-size: 0.95rem;
	line-height: 1.7;
	margin-top: auto;
	text-align: justify;
}
@media screen and (max-width: 767px) {
	.strength-list2 {
		grid-template-columns: 1fr;
		gap: clamp(50px, 12vw, 110px) 20px;
		margin-top: clamp(50px, 12vw, 110px);
	}
}

/**/
.strength-details2.industrial figure {
	position: relative;
}
.strength-details2.industrial .ribbon {
	position: absolute;
	bottom: 10px;
	/*right: 10px;*/
	background: rgba(16, 41, 67, 0.7);
	color: #fff;
	padding: 5px 8px;
	font-size: clamp(17px,1.9vw,23px);
	text-align: center;
	width: 100%;
	box-sizing: border-box;
}





/*======= 引越しページ ======*/
.moving_sec1 {
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}


/**/
.bgimgpt {
	padding: clamp(1.5rem,5vw,5rem) clamp(1.5rem,5vw,5rem) 200px clamp(1.5rem,5vw,5rem);
	background-image: url(../img/bg_01b.png);
	background-repeat:no-repeat;
	background-position: 90% 90%;
	background-size: 300px;

}
/* レスポンシブ対応 */
@media (max-width: 568px) {
	.bgimgpt {
		background-size: 250px;
	}
}


/*引越しサービス*/
.moving_sec2 {
	padding: 0 0 var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
.moving_sec2 h4,
.moving_sec3 h4{
	font-size: 17px;
	line-height: 1.4;
	border-bottom: 1px dashed #ccc;
	padding: 3px 0;
	margin: 5px 0;
}
.moving_sec2 h4.simh4,
.moving_sec3 h4.simh4{
	margin: 15px 0 5px 0;
}

/* サービス一覧（flex版） */
.service-summary-container2{
	display:flex;
	flex-wrap:wrap;
	justify-content:center; /* 2行目中央 */
	gap:15px;
	margin:15px 0;
}
/* カード幅（3列） */
.service-summary-container2 article{
	flex:0 0 calc((100% - 30px) / 3);
	padding:15px;
	border-radius:8px;
	background:#fff;
	box-shadow:0 8px 18px rgba(121,121,121,.1);
	transition:.3s;
	box-sizing: border-box;
}
/* hover */
.service-summary-container2 article:hover{
	transform:translateY(-4px);
	box-shadow:0 10px 20px rgba(0,0,0,.1);
}
/* タブレット */
@media (max-width:768px){
	.service-summary-container2 article{
		flex:0 0 calc((100% - 15px) / 2);
	}
}
/* スマホ */
@media (max-width:568px){
	.service-summary-container2 article{
		flex:0 0 100%;
	}
}
/* 印刷 */
@media print{
	.service-summary-container2{
		display:flex;
		flex-wrap:wrap;
		justify-content:center; /* ←これが超重要 */
		gap:15px;
		margin:15px 0;
	}

	.service-summary-container2 article{
		flex:0 0 calc((100% - 30px) / 3);
	}
}
/**/
.service-summary-container2 h4{
	text-align: center;
}
.service-summary-container2 p{
	font-size:clamp(14px,1.4vw,15px);
	line-height:1.4;
	margin: 5px 0;
}


/*なーんにもしないパック*/
.moving_sec3 {
	padding: var(--v-space3) 0;
	background-color: #f9efeb;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
	background-image: radial-gradient(rgba(197, 227, 223, 0.4) 15%, transparent 16%), radial-gradient(rgba(234, 200, 200, 0.4) 15%, transparent 16%);
	background-size: 20px 20px;
	background-position: 0px 0px, 10px 10px;
}

/*リボン風見出し*/
h2.rib-2 {
	position: relative;
	display: inline-block;
	margin: 1rem 0 1rem -10px;
	padding: 0.5rem 1.5rem;
	color: #fff;
	font-size: clamp(25px, 2.3vw, 30px);
	font-weight: bold;
	border-radius: 0 100vh 100vh 0;
	background: var(--accent-color1);
	-webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
	box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
}
h2.rib-2:before {
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 0;
	height: 0;
	content: '';
	border-top: 10px solid #84361a;
	border-left: 10px solid transparent;
}
/*サービス紹介*/
.imgtext3 {
	padding: 0;
	background-color: rgba(255,255,255,0.99);
	border-radius: 15px;
	border: 3px solid var(--accent-color1);
}
.imgtext-container3 {
	display: flex;
	flex-direction: column;
}
.imgtext-container3 img{
	border-radius: 15px;
}
@media (min-width: 769px) {
	.imgtext-container3.reverse {
		flex-direction: row-reverse;
		/*border: 2px solid var(--main-color);*/
		border-radius: 10px;
	}
}
@media (min-width: 769px) {
	.imgtext-container3 {
		flex-direction: row;
		align-items: center;
	}
}

@media (min-width: 769px) {
	.imgtext-container3 > .text {
		flex: 1;
		min-width: 17em;
	}
}
@media (min-width: 769px) {
	.imgtext-container3 > .img {
		flex: 1;
		padding: 20px;
	}
}
@media (max-width: 768px) {
	.imgtext-container3 > .img {
		padding: 20px;
	}
}
/*内余白設定*/
.aburep2 {
	margin: 10px 20px 15px 20px;
}
@media screen and (max-width: 568px) {
	.aburep2 {
		margin: 17px;
	}
}
/**/
.moving_sec3 h3{
	font-size: clamp(20px, 2.5vw, 27px);
	line-height: 1.4;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--main-color);
}

/**/
.naname{
	position: relative;
	overflow: hidden;
}
/* タイトルの斜めネームタグ */
.p-card__label {
	position: absolute;
	top: 12px;
	background: var(--accent-color1);
	color: #fff;
	padding: 6px 18px;
	font-size: clamp(16px, 1.6vw, 20px);
	font-weight: 600;
	transform: rotate(-6deg);
	border-radius: 4px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.15);
	z-index: 2;
	margin: 10px 10px;
}
/**/
.furniture-list2{
	display:flex;
	flex-wrap:wrap;
	gap:6px 8px;
	list-style:none;
	padding:0;
	margin:10px 0;
}
.furniture-list2 li{
	background:var(--accent-color2);
	padding:2px 6px;
	font-size:15px;
	line-height:1.4;
	border-radius:3px;
	font-weight: bold;
	color: #fff;
}

/*こんな方におすすめ*/
.recommend_sec {
	padding: 50px 0;
}
.reco-items {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin: 0 auto;
}
.reco-item {
	text-align: center;
}
.reco-item img {
	width: 100%;          /* 親幅に合わせる */
	max-width: 180px;     /* PCでは最大180px */
	height: auto;
	display: block;
	margin: 10px auto 15px;
}
.reco-item h5{
	font-size: clamp(13px, 1.6vw, 18px);
	line-height: 1.4;
	text-align: center;

	/* 追加 */
	min-height: calc(1.4em * 2); /* 2行分確保 */
	display: flex;
	align-items: center;         /* 縦中央 */
	justify-content: center;     /* 横中央 */

	background: #fff;
	border-radius: 8px;
	padding: 6px 10px;
	margin:0 10px;
}

/* スマホ対応 */
@media screen and (max-width: 868px) {
	.reco-items {
		grid-template-columns: repeat(2, 1fr); /* タブレットは2列 */
	}
	.reco-item img {
		width: 90%;
	}
	.reco-item h5{
		font-size: 12px;
		line-height: 1.3;
		text-align: center;

		/* 追加 */
		min-height: calc(1.4em * 2); /* 2行分確保 */
		display: flex;
		align-items: center;         /* 縦中央 */
		justify-content: center;     /* 横中央 */

		background: #fff;
		border-radius: 8px;
		padding: 5px 4px;
		margin: 0;
	}
}
/**/
.foot-message{
	max-width:fit-content;
	margin:0 auto;
	background:#fff;
	padding:20px;
	border-radius:15px;
}
.foot-message p{
	color: var(--accent-color1);
	font-size:0.95rem;
	font-weight:700;
	line-height: 1.6;
}



/*価格表*/
.moving_sec4 {
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/**/
.price-table {
	max-width: 900px;
	margin: 0 auto;
	padding: 2rem 1rem;
}
.price-table h2 {
	font-size: 1.8rem;
	margin-bottom: 1rem;
	text-align: center;
}
.price-category {
	margin-bottom: 2rem;
}
.price-category h3 {
	font-size: 1.4rem;
	margin-bottom: 1rem;
	border-left: 4px solid var(--accent-color1);
	padding-left: 0.5rem;
}
.price-item {
	display: flex;
	justify-content: space-between;
	background: #f9f9f9;
	padding: 0.8rem 1rem;
	margin-bottom: 0.5rem;
	border-radius: 6px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.price-item .item-name {
	flex: 1;
	font-weight: 500;
	font-size: clamp(15px, 1.5vw, 18px);
}
.price-item .item-price {
	flex-shrink: 0;
	font-size: clamp(16px, 1.6vw, 18px);
	font-weight: 700;
	color: var(--accent-color1);
}



/*引越の流れ*/
.moving_sec5 {
	padding: var(--v-space3) 0 var(--v-space3) 0;
	background-color: #fafafa;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/* フロー全体 */
.flow-container{
	display:grid;
	grid-template-columns:repeat(auto-fit,minmax(290px,1fr));
	gap:30px;
	margin-top:40px;
}
/* 各STEP */
.flow-item{
	background:#fff;
	border-radius:10px;
	padding:30px;
	box-shadow:0 5px 15px rgba(0,0,0,0.05);
	position:relative;
}
/* STEPラベル */
.flow-step{
	position:absolute;
	top:-15px;
	left:20px;
	background:#ff7a00;
	color:#fff;
	font-size:14px;
	font-weight:bold;
	padding:6px 14px;
	border-radius:20px;
}
.flow-item h4{
	font-size: clamp(19px, 2vw, 21px);
	margin-bottom:15px;
	background-color: #f6f6f6;
	padding: 2px 6px;
}
.flow-item h5{
	font-size: clamp(16px, 1.7vw, 18px);
	margin-bottom:10px;
	border-bottom: 1px dashed #ccc;
	padding: 4px 0;
}
/**/
.f-list{
	display:flex;
	flex-wrap:wrap;
	gap:6px 8px;
	list-style:none;
	padding:0;
	margin:10px 0;
}
.f-list li{
	background:#eaf0d6;
	padding:3px 8px;
	font-size: clamp(14px, 1.4vw, 15px);
	line-height:1.4;
	border-radius:3px;
	font-weight: bold;
}
/*電話*/
.tel-num{
	margin-top:10px;
	margin-bottom: 10px;
}
.tel_ico2{
	display: inline-block;
	width: clamp(30px, 2vw, 35px);
	height: clamp(30px, 2vw, 35px);
	vertical-align: sub;
	margin: 0 5px 0 5px;
	color: var(--accent-color1);
}
.tel2{
	color: #f15a24;
	font-size: clamp(35px, 3vw, 40px);
	line-height: 1.2;
	font-weight: 400;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* 梱包資材 */
.det_grid{
	margin-top: 26px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 17px;
}
@media (max-width: 868px) {
	.det_grid{
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 568px) {
	.det_grid{
		grid-template-columns: 1fr;
	}
}
.det_point{
	background: #fff;
	border: 1px solid rgba(0,0,0,0.06);
	border-radius: 12px;
	padding: 18px 18px 16px;
	text-align: left;
	position: relative;
}
.det_point::before{
	content:"";
	position:absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	border-radius: 14px 14px 0 0;
	background: linear-gradient(90deg, var(--main-color), var(--accent-color2));
}
.det_point h4{
	margin: 8px 0 8px;
	font-size: clamp(1.1rem, 1.8vw, 1.3rem);
	font-weight: 700;
	letter-spacing: 0.02em;
	border-bottom: 1px dashed #ccc;
}
.det_point p{
	margin: 0;
	color: rgba(0,0,0,0.72);
	font-size: clamp(0.875rem, 1.2vw, 0.95rem);
}
.det_full{
	margin-top: 30px;
}

/**/
.support_list {
	list-style: none;
	padding: 0;
	margin: 20px auto 20px auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(15em, 1fr));
	gap: 12px;
}
.support_list li {
	padding: 12px 10px;
	border: 1px solid #e5e5e5;
	border-radius: 6px;
	background: #fbfafa;
	font-size: clamp(14px, 1.5vw, 16px);
	text-align: center;
}
.support_list li:hover {
	background: #f2eeeb;
}

@media (max-width: 568px) {
	.support_list {
		grid-template-columns: 1fr;
	}
	.support_list li {
		padding: 12px 7px;
	}
}

/**/
.support_list.txac li{
	color: var(--accent-color1);
}

/*お役立ち*/
.moving_sec6 {
 	padding: var(--v-space) 0 var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
.spot-heading02 {
	font-size: clamp(21px, 2.7vw, 30px);
	line-height: 1em;
	font-weight: 700;
	text-align: center;
	color: var(--main-color);
	margin-bottom:15px;
}


/* 引越し比較セクション（moving_sec6） */
.mv6_compare_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	margin-top: 40px;
}
.mv6_compare_item {
	background: #fffdf5;
	padding: 30px 40px 10px 40px;
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.05);
	border: 1px solid #eee9d8;
	outline: 2px dashed #ccc;
	outline-offset: -0.8rem;
}
.mv6_compare_item_caution {
	background: #fff7f5;
	border: 1px solid #eedfdb;
}
/* タイトル */
.mv6_compare_title {
	font-size: clamp(22px, 2.6vw, 26px);
	margin-bottom: 15px;
	text-align: center;
	font-weight: bold;
	color: #333;
	border-bottom: 2px dotted var(--sub-color1);
}
.mv6_compare_item h5{
	font-size: clamp(15px, 1.8vw, 19px);
	margin: 10px 0;
	letter-spacing: -1px;
	background: #d8d8d859;
	padding: 1px 5px 2px 5px;
	color: var(--main-color);
}
/* SP対応 */
@media (max-width: 868px) {
	.mv6_compare_grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}
}
@media (max-width: 468px) {
	.mv6_compare_item {
		padding: 20px 25px 10px 25px;
	}
}
/*印刷時*/
@media print{
	.mv6_compare_grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
		margin-top: 40px;
	}
}


/*リスト*/
ul.mv6_list{
	font-size: clamp(14px,1.5vw,16px);
	line-height: 1.9;
	list-style-type: none;
	gap: 3em;
	margin: 5px 0 25px 0;
}
.mv6_list li+li {
	margin-top: 10px;
}
.mv6_list li {
	position: relative;
	padding-left: 25px;
	border-bottom: 1px solid #ccc;
	padding-bottom: 3px;
}
.mv6_list li:after {
	content: "";
	position: absolute;
	top: .5em;
	left: 0;
	width: clamp(15px,1.5vw,16px);
	height: clamp(15px,1.5vw,16px);
	border: 1px solid #9c9c9c;
	border-radius: 2px;
}
/*印刷時*/
@media print{
	ul.mv6_list{
		font-size: clamp(14px,1.5vw,16px);
		line-height: 1.9;
		list-style-type: none;
		gap: 3em;
	}
}
/**/
.mv6_item_table {
	margin: 0;
	padding: 0;
	font-size: clamp(14px,1.5vw,16px);
}
.mv6_item_row {
	display: grid;
	grid-template-columns: 160px 1fr;
	border-bottom: 1px solid #ccc;
	padding: 10px 0;
}
.mv6_item_row dt {
	font-weight: bold;
}
.mv6_item_row dd {
	margin: 0;
	line-height: 1.8;
}
.mv6_note {
	font-size: 12px;
	color: #777;
	display: inline-block;
	margin-top: 4px;
	line-height: 1.5;
}
/* SP */
@media (max-width: 468px) {
	.mv6_item_row {
		grid-template-columns: 1fr;
		gap: 5px;
	}
}






/* よくある質問 */
.faq_sec {
	padding: var(--v-space2) 0;
	background-color: #fcf9f2;
	position: relative;/* sectionの位置を相対的にする*/
	z-index: 1;/* 背景画像より上に表示 */
	background-image: url(../img/bg_02.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
}
.faq_sec::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #ffffff8c;
}
/* よくある質問 - カード型デザイン */
div.faq-in{
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr); /* 基本2列 */
	gap: 20px;
	align-items: stretch;
	margin-top:15px;
}

/* スマホでは1列 */
@media (max-width: 768px){
	div.faq-in{
		grid-template-columns: 1fr;
	}
}

/* 枠付きデザイン + カード型 */
.onecours {
	display: flex;
	flex-direction: column; /* Q&Aを縦に積む */
	justify-content: space-between; /* 高さを揃えて余白を均等に */
	background-color: #ffffffde;
	padding: 20px 25px 20px 20px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	transition: transform 0.2s, box-shadow 0.2s;
	justify-content: flex-start; /* Q&A間の間隔を維持 */
	gap: 10px; /* hrとテキストの隙間確保 */
}
.faq-item {
	display: grid;
	grid-template-columns: 1.5em 1fr;
	column-gap: 10px;
	row-gap: 10px;
}
.faq-label {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 100%;
	line-height: 1.5;
	border-radius: 3px;
	width: 1.5em;
	text-align: center;
	align-self: start;	/* labelを上揃えに */
	padding: 0 1px 3px 1px;
}
.faq-label.q {
	color: var(--accent-color1);
	font-size: 1.1em;
}
.faq-label.a {
	color: var(--accent-color2);
	font-size: 1.1em;
}
.faq-question,
.faq-answer {
	margin: 0;
	line-height: 1.5;
	text-align: justify;
}
/* Qの高さを揃える（目安2行分） */
.faq-question {
	font-weight: bold;
	font-size: 1.2em;
	margin: 0;
	line-height: 1.4;
	/*min-height: calc(1.4em * 2 + 4px);*/ /* 2行分の高さ目安 */
}
.faq-answer {
	color: #555;
}









/*======= 配送ページ ======*/
.delivery_sec1 {
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/*アピールタイトル*/
.app__title{
	text-align: center;
	font-size: clamp(16px, 2.5vw, 22px);
	letter-spacing: 0.05em;
	margin-bottom: 30px;
	color: #454545;
}
.app__title span{
	font-size: clamp(25px, 4vw, 35px);
}
.app__title_color{
	color:var(--accent-color1);
}
/**/
.app__title + span{
	margin-top: -20px;
	margin-bottom: 10px;
}
/**/
.kakomi02{
	padding: 2px 20px 3px 20px;
	margin: 10px auto;
	background-color: var(--accent-color1);
	border-radius: 20px;
	text-align: center;
	display: block;
	font-size: clamp(14px, 1.3vw, 17px);
	font-weight: 500;
	width: fit-content;
	color: #fff;
}

/**/
img.pcspwid5{
	width: 7%;
	margin: 10px auto 0 auto;
}
@media only screen and (max-width: 768px) {
	img.pcspwid5{
		width: 10%;
	}
}
@media only screen and (max-width: 568px) {
	img.pcspwid5{
		width: 20%;
	}
}
/**/
.service-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center; /* 横中央 */
	gap: 1px 16px; /* 行間・列間 */
	list-style: none;
	padding: 0;
	margin: 0 auto 15px auto;
}
.service-list li::before {
	content: "◆";
	margin-right: 4px;
}
@media (max-width: 868px) {
	.service-list {
		justify-content: flex-start; /* 左開始 */
		width: 98%;
	}
}
/* ページ内リンク枠 */
.linkukuri{
	box-sizing:border-box;
	padding:15px 27px;
	background:rgba(255,245,207,.5);
	margin:30px auto;
	width:fit-content;
	text-align:center;
	border-radius:7px;
}
/* リスト */
.link-menu{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
}
/* リンク */
.link-menu a{
	display:inline-block;
	font-size:clamp(14px,1.4vw,16px);
	word-break:break-all;
	text-decoration:none;
	position:relative;
}
/* 区切り */
.link-menu li::after{
	content:"　|　";
	color:#aaa;
}
.link-menu li:last-child::after{
	content:none;
}
/* hover */
.link-menu a:hover{
	color:var(--main-color);
}
.link-menu a::after{
	content:"";
	position:absolute;
	top:100%;
	left:0;
	width:100%;
	height:3px;
	background:var(--main-color);
	transform:scaleX(0);
	transition:transform .3s;
}
.link-menu a:hover::after{
	transform:scaleX(1);
}
/* SP */
@media (max-width:768px){
	.linkukuri{
		width:98%;
	}
	.link-menu li{
		width:100%;
		border-bottom:1px dashed #858585;
	}
	.link-menu a{
		padding:10px 0;
	}
	.link-menu li::after{
		content:none;
	}
}
/*単品配送*/


/*共通*/
.delivery_sec2 h4,
.delivery_sec3 h4{
	font-size: 17px;
	line-height: 1.4;
	border-bottom: 1px dashed #ccc;
	padding: 3px 0;
}
.delivery_sec2 h4.simh4,
.delivery_sec3 h4.simh4{
	margin: 15px 0 5px 0;
}


/* サービス一覧 */
.service-summary-container{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:15px;
	margin:15px 0;
	justify-content:center; /* これ追加 */
}
/* カード */
.service-summary-container article{
	padding:15px;
	border-radius:8px;
	background:#fff;
	box-shadow:0 8px 18px rgba(121,121,121,.1);
	transition:.3s;
}
.service-summary-container article:hover{
	transform:translateY(-4px);
	box-shadow:0 10px 20px rgba(0,0,0,.1);
}
/**/
@media (max-width:768px){
	.service-summary-container{
		grid-template-columns:repeat(2,1fr);
	}
}
@media (max-width:568px){
	.service-summary-container{
		grid-template-columns:1fr;
	}
}
/* 印刷 */
@media print{
	.service-summary-container{
		display:grid;
		grid-template-columns:repeat(3,1fr);
		gap:15px;
		margin:15px 0;
	}
}
/**/
.service-summary-container h4{
	text-align: center;
}
.service-summary-container p{
	font-size:clamp(14px,1.4vw,15px);
	line-height:1.4;
	margin: 5px 0;
}
/**/
.furniture-list{
	display:flex;
	flex-wrap:wrap;
	gap:6px 8px;
	list-style:none;
	padding:0;
	margin:10px 0;
}
.furniture-list li{
	background:#f3f3f3;
	padding:2px 6px;
	font-size:13px;
	line-height:1.4;
	border-radius:3px;
	font-weight: bold;
}


/**/
.delivery_sec4 {
	padding: var(--v-space3) 0 var(--v-space2) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
/* グリッド化 */
.delivery-grid .service-grid-container{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:20px;
	margin-top:30px;
}

/* カード風 */
.service-card{
	background:#fff;
	border-radius:8px;
	box-shadow:0 6px 16px rgba(0,0,0,0.08);
	overflow:hidden;
	display:flex;
	flex-direction:column;
	transition:transform 0.3s,box-shadow 0.3s;
}
.service-card:hover{
	transform:translateY(-4px);
	box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

/* 画像 */
.service-card .img{
	width:100%;
	aspect-ratio:16/9;
	overflow:hidden;
}
.service-card .img img{
	width:100%;
	height:100%;
	object-fit:cover;
	object-position:top; /* 上寄せ可 */
}

/* テキスト部分 */
.service-card-text{
	padding:15px;
}
.service-card-text h3{
	font-size:clamp(20px,2vw,24px);
	line-height:1.5;
	margin-bottom:10px;
	color:var(--main-color);
}
.service-card-text h4{
	font-size:clamp(16px,1.5vw,18px);
	margin:10px 0 5px;
}
.service-card-text p{
	font-size:clamp(14px,1.2vw,15px);
	line-height:1.5;
	margin-bottom:8px;
}
.service-card-text p.emp{
	font-size:clamp(16px,1.7vw,18px);
	color:var(--accent-color2);
}

/* スマホ：1列 */
@media(max-width:768px){
	.delivery-grid .service-grid-container{
		grid-template-columns:1fr;
	}
}
/**/
.trouble-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	max-width: 1200px;
	margin: 30px auto 30px 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: 280px;
	width: 100%;
	font-size: clamp(15px, 1.7vw, 17px);
	font-weight: 600;
	color: var(--main-color);
	text-align: center;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.trouble-bubble.show {
	animation: fadeSlideUp 0.8s ease-out forwards;
}
/* 順番にディレイをかける */
.trouble-bubble.show:nth-child(1) { animation-delay: 0.1s; }
.trouble-bubble.show:nth-child(2) { animation-delay: 0.2s; }
.trouble-bubble.show:nth-child(3) { animation-delay: 0.3s; }
.trouble-bubble.show:nth-child(4) { animation-delay: 0.4s; }
.trouble-bubble.show:nth-child(5) { animation-delay: 0.5s; }
.trouble-bubble.show:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeSlideUp {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
/* レスポンシブ対応 */
@media (max-width: 568px) {
	.trouble-bubble {
		max-width: 100%;
	}
}
/*印刷対応*/
@media print {
	/* アニメーションやトランジションを無効化 */
	.trouble-bubble {
		opacity: 1 !important;
		transform: none !important;
		animation: none !important;
		transition: none !important;
	}
	/* IntersectionObserverでclass付与されていなくても表示されるように */
	.trouble-bubble:not(.show) {
		opacity: 1 !important;
		transform: none !important;
	}
}

/*矢印*/
.arrow_bottom {
	/*display: inline-block;*/
	width: 30px;
	height: 35px;
	background: var(--main-color);
	clip-path: polygon(0 48.2%, 31% 48.2%, 31% 0, 69% 0, 69% 48.2%, 100% 48.2%, 50% 100%);
	margin: 25px auto;
}









/*======= 会社概要ページ ======*/
.company_sec1 {
	padding: var(--v-space3) 0 30px 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
.iminli {
	outline: 1px solid #ccc;
	outline-offset: -0.5rem;
}

/*画像＋重ねテキスト*/
.overlap-container {
	position: relative;
	width: 100%;
	padding: 70px 0 130px 0; /* 上下余白 */
}
/* 画像 */
.overlap-image {
	width: 50%;
}
.overlap-image img {
	width: 100%;
	height: auto;
	display: block;
}
/* テキスト */
.overlap-text {
	position: absolute;
	top: 30%;          /* ← 画像上端より少し下 */
	left: 45%;         /* ← 真ん中やや左から */
	width: 52%;
	background: rgb(255, 255, 255);
	padding: clamp(20px, 3vw, 40px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.15);
	box-sizing: border-box;
}
.overlap-text h3{
	font-size: clamp(18px, 1.8vw, 20px);
}
@media (max-width: 968px) {
	.overlap-container {
		padding: 20px 0 50px 0;
	}
	.overlap-image {
		width: 100%;
	}
	.overlap-text {
		position: relative;
		top: auto;
		left: auto;
		width: 100%;
		margin: 0 auto 20px;
		background: none;
		box-shadow: 0 5px 10px rgba(0,0,0,0.15);
		border: 1px solid #ccc;
		padding: clamp(20px, 3vw, 40px) 25px;
	}
}

.overlap-container.reverse .overlap-image {
	margin-left: auto;
}
.overlap-container.reverse .overlap-text {
	left: auto;
	right: 45%;
}

@media (max-width: 968px) {
.overlap-container.reverse .overlap-text {
 		right: auto;
		left: auto;
	}
	 .overlap-container.reverse .overlap-image {
		margin-left: 0;
	}
}
/*当社の事業*/
.company_sec2 {
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}

/**/
.strength-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 55px 20px;
	margin-top: 80px;
}
/* 各カード */
.strength-details {
	padding: 1.8rem 1.3rem 1.3rem 1.3rem;
	border-radius: 8px;
	box-sizing: border-box;
	box-shadow: 0 2px 6px rgba(0,0,0,0.09);
	/*display: flex;
	flex-direction: column;*/
}
.strength-details figure {
	margin-bottom: 1.2rem;
	margin-top: -17%;
}
.strength-details img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
}
.strength-details h3 {
	font-size: clamp(16px,1.6vw,19px);
	text-align: center;
	margin-bottom: 0.6rem;
	line-height: 1.5;
	font-feature-settings: 'palt' 1;
	-webkit-font-smoothing: antialiased;
}
.strength-details p {
	font-size: 0.95rem;
	line-height: 1.7;
	margin-top: auto;
	text-align: justify;
}
@media screen and (max-width: 1024px) {
	.strength-list {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 767px) {
	.strength-list {
		grid-template-columns: 1fr;
		margin-top: 60px;
	}
	.strength-details {
		padding: 1.4rem;
	}
}
/**/
.strength-details.industrial figure {
	position: relative;
}
.strength-details.industrial .ribbon {
	position: absolute;
	bottom: 10px;
	/*right: 10px;*/
	background: rgba(16, 41, 67, 0.7);
	color: #fff;
	padding: 5px 8px;
	font-size: clamp(17px,1.9vw,23px);
	text-align: center;
	width: 100%;
	box-sizing: border-box;
}


/*会社情報*/
.company_sec3 {
	padding: var(--v-space3) 0;
	background-color: #fff;
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}
.info_sec1__haba{
	/*max-width: 900px;*/
	margin: 0 auto;
	background-color: #ffffffc2;
	padding: 50px;
}

/* 会社情報 横並び */
.info_flex{
	display:grid;
	grid-template-columns: 1fr 420px;
	gap:20px;
	align-items:start;
}

/* 画像 */
.info_image img{
	width:100%;
	height:auto;
	display:block;
	/*border-radius:8px;*/
}
/* スマホ */
@media screen and (max-width:968px){
	.info_flex{
		grid-template-columns:1fr;
	}
	.info_image{
		margin-top:20px;
	}
}

/* テーブルデザイン */
.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);
}
@media screen and (max-width: 1068px) {
	.company_sec1 {
		background-position: 70% top;
	}
	.info_sec1__haba {
		padding: 30px 20px;
	}
	.info_container .item {
		grid-template-columns: 1fr;
		padding: 8px 1px;
		gap: 0;
	}
	.info_container .label {
		line-height: 1.6;
		background-color: #caddd15e;
	}
	.info_container .content {
		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(var(--main-color) 0 0) left top,
		linear-gradient(var(--accent-color2) 0 0) right top,
		linear-gradient(var(--accent-color2) 0 0) left bottom,
		linear-gradient(var(--main-color) 0 0) right bottom;
	background-size: 8px 8px; /* 小さい■のサイズ */
	background-repeat: no-repeat;
}
/*リンク*/
a.coli{
	color: var(--accent-color1);
}
a.coli:hover{
	color: var(--main-color);
}






















/*==========================================================*/
/*      	　　　個人よく使う指定CSS  		  	  */
/*=========================================================*/
/* メイン見出し（英語） */
.heading-lef {
	position: relative;
	display: inline-block;
	font-weight: 400;
	padding: 0 0 0 40px;
	font-size: clamp(28px, 2.6vw, 38px);
	margin-bottom: 5px; /* 下の日本語との間隔 */
	margin-left: auto;
	margin-right: auto;
	color: #a79c92;
	line-height: 1;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	/*font-family: "WindSong", serif;*/
}
.heading-lef:before {
	content: '';
	position: absolute;
	top: 53%;
	display: inline-block;
	width: 30px;
	height: 2px;
	background-color: #ccc;
	left: 0;
}
.heading-lef:first-letter {
	font-size: 130%;
	color: var(--main-color);
}
.heading-lef + p{
	font-family: "Montserrat", sans-serif;
	font-size: clamp(15px, 1.6vw, 16px);
	line-height: 1.4;
	color: var(--accent-color1);
	margin-bottom: 20px;
	padding: 0 0 0 40px;
	font-weight: 600;
}


/*------------------------------------------------*/
/*セクションの間イメージ画像*/
.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: 868px) {
	.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: 10px 13px 10px 13px;
	margin: 20px 0 0 0;
	box-sizing: border-box;
	outline: 1px solid #ccc;
	outline-offset: -0.4rem;
	width: fit-content;
	background-color: #ffffffc2;
}
.kukuri p{
	font-size: clamp(14px, 1.4vw, 15px);
	line-height: 1.5;
	text-align: justify;
}
@media (max-width: 568px) {

}

/* タグ */
.kakomi01{
	margin-top: 5px;
	margin-bottom: 5px;
}
.kakomi01 span {
	padding: 3px 7px 4px 7px;
	margin: 2.5px 7px 7px 0;
	background-color: #2ca49ab0;
	color:#fff;
	/*border: 1px solid var(--main-color);*/
	border-radius: 5px;
	text-align: center;
	display: inline-block;
	font-size: clamp(12px, 1.3vw, 14px);
}
/*任意のみ表示*/
@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: 20px 9%;
	padding: 0;
}
@media (max-width: 1168px)  {
	div.haba{
		margin: 20px 5%;
		padding: 0;
	}
}
@media (max-width: 968px)  {
	div.haba{
		margin: 20px 0;
		padding: 0;
	}
}
/*印刷時*/
@media print{
	div.haba{
		margin: 20px 9%;
		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(19px, 1.8vw, 20px);
	line-height: 1.4;
	padding: 2px 2px 2px 27px;
	/*border-bottom: 1px dotted #999;*/
	/*font-family: 'Noto Serif JP', 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 20px 25px;
	line-height: 1.4;
}
ul.nor li::marker{
	font-size: 150%;
	font-weight: bold;
	line-height: 0.7;
	color: var(--accent-color2);
	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;
}

/*見出し*/
.ttl_heading05 {
	font-weight: bold;
	padding: 0.3em;
	margin-bottom: 0.3em;
	position: relative;
}
.ttl_heading05::after {
	content: '';
	background-size: 10px 10px;
	background-color: #e1eef5;
	background-image: repeating-linear-gradient(-45deg, #4c9ac0 0, #4c9ac0 3px, #fff 0, #fff 50%);
	width: 100%;
	height: 7px;
	position: absolute;
	bottom: -5px;
	left: 0;
}

.ttl_heading_bg09 {
	background: -webkit-linear-gradient(#9bc1bc 50%, #71a49d 50%);
	background: linear-gradient(#9bc1bc 50%, #71a49d 50%));
	color: #fff;
	padding: 0.3em 0.5em 0.4em 0.5em;
	margin: 0 0 20px 0;
	font-weight: 700 !important;
}

.ttl_heading_bg10 {
	background: -webkit-linear-gradient(#e3beba 50%, #e6a9a1 50%);
	background: linear-gradient(#e3beba 50%, #e6a9a1 50%));
	color: #fff;
	padding: 0.3em 0.5em 0.4em 0.5em;
	margin: 0 0 10px 0;
	font-weight: 700 !important;
}
