@charset "UTF-8";


/*=======================================================*/
/*      		セクション毎のCSS   			  		  */
/*======================================================*/


/*======= 共通 ======*/

/* 親要素からはみ出して画面いっぱいに */
.full {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}


/*======= TOP ======*/
/*ご挨拶*/
.greeting {
	padding: clamp(40px, 6vw, 90px) 0 var(--v-space);
	background-color: var(--base-color);
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}

.greeting-spot {
	color: var(--accent-color1);
	font-size: 1.2em;
}


/*======= コンテンツ ======*/


/*======= 業務内容 ======*/
.secS {
	padding: var(--v-space) 0;
	position: relative;
	z-index: 1;
	background-color: #f7f7f7;
	background-image: repeating-linear-gradient(0deg, #e6e6e6 0, #e6e6e6 1px, transparent 1px, transparent 15px), repeating-linear-gradient(90deg, #e6e6e6 0, #e6e6e6 1px, transparent 1px, transparent 15px);
	background-size: 15px 15px;
}

.contentsbg2{
    padding: 40px 0px !important;
}


/*カード*/
.secS-card__item{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap:10px;
	margin-bottom:2em;
}

@media screen and (max-width: 568px) { 
	/* secS-card__item の 2番目以降だけ上に余白を付ける */
	.secS-card__item + .secS-card__item {
		margin-top: 3.5em;   /* 好きな値に変更 */
	}

}

/* h4 の高さを揃える（左右共通） */
.secS-card__item > div {
	display: flex;
	flex-direction: column;
}



@media only screen and (max-width: 968px) {
	.secS-card__item{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 568px) {
	.secS-card__item{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
}
.secS-card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 2;
	/*ここまで*/

	background-color: white;
	border-radius: 10px;
	box-sizing: border-box;
	/*
	border: solid 1px var(--main-color);
	 */
}

.secS-card__item h4 {
	margin-top: auto;
	padding: 5px 0;
	text-align: center;
}

.secS-card__item h4 {
	padding: 5px 0 5px;   /* 下に余白を追加（重要） */
	font-size: clamp(18px,1.5vw,22px);
	line-height: 1.3;
	text-align: center;
	position: relative;
	font-weight:400;
	color:#b35b5b;
}

@media screen and (max-width: 568px) { 
	.secS-card__item h4 {
		margin-top:0.2em;	
	}
}

.secS-card__item h4.sd {
	color:#4f6d8a;
}

.secS-card__item h4::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;               /* 下線位置 */
	transform: translateX(-50%);
	width: 50px;            /* 下線長さ */
	height: 2px;             /* 太さ */
	background: var(--accent-color4);  /* サイトカラーにも合わせられる */
	display: block;
	margin-bottom:0.1em;
}


.secS-card__item p{
	display: inline-block;
	font-size: 15px;
	line-height: 1.5;
}



ul.sv {
	list-style: none;
	padding: 0;
	margin: 0;
}

ul.sv li {
	position: relative;
	padding: 3px 10px 2px 10px;
	margin: 4px 3px;
	border: 1px solid #bbb;
	display: inline-block;
	background: #fff;
	font-size: clamp(14px, 1.3vw, 14px);
	overflow: hidden;
	text-align: center;
}

h3.cnt{
	text-align:center;
}

h3.cnt::after{
	text-align:center;
}

h3.cnt::after{
	margin:0 auto;
	margin-top: 0.6em;
	margin-bottom: 0.2rem;
}
h3.cnt + p {
	text-align:center;
}

/*======= Price 料金例 ======*/
.secP {
	padding: var(--v-space) 0;
	background-color: var(--accent-color3);
}

.waku80{
	margin:0 auto;
	width:80%;
}
@media screen and (max-width: 1024px) { 
	.waku80{
		margin:0 auto;
		width:initial;
	}
}


.pr {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;      /* ← 横幅はみ出し防止 */
}

.pr td, .pr th {
	border-bottom: 1px solid #ccc;
	padding: 8px 12px;
	box-sizing: border-box;   /* ← これ必須 */
}


/* ▼ ヘッダ行を背景色つきにする（1行目） */
.pr tr:first-child {
	background-color: var(--accent-color4);
	font-weight: bold;
	text-align:center;
}

/* ▼ スマホでヘッダを非表示 */
@media (max-width: 600px) {
	.pr tr:first-child {
		display: none;
	}
}

/* 1列目（サービス名） */
.pr td:first-child {
	font-weight: bold;
	width: 60%;
	padding-left:10%;
}

@media screen and (max-width: 568px) { 

	.pr td:first-child {
		font-weight: bold;
		width: initial;
	}
}

/* 2列目（価格） */
.pr td:nth-child(2) {
	padding-right: 12px;    /* ← 40%はスマホで溢れるので削除 */
}


/* 価格整列（PC用） */
.pr .price-wrap {
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	font-feature-settings: "palt";
	margin-right:20% !important;
}

@media screen and (min-width: 768px) {

	/* ￥が入っているセル（price-wrap）があるtdだけ */
	.pr td:has(.price-wrap) {
		padding-left:20%;
	}

}
@media screen and (min-width: 600px) {

	.pr tr:nth-child(odd):nth-child(n+3) {
		background-color: #f6f6f6; /* 任意の色 */
	}

}

/* スマホ：縦並び。横スクロールを完全に消す */
@media (max-width: 600px) {

	.pr {
		border-collapse: separate;  /* ← block化しても崩れない */
		width: 100%;
	}

	.pr tr {
		display: block;
		width: 100%;
		margin-bottom: 15px;
		border-bottom: 1px solid #999;
		padding-bottom: 8px;
	}

	.pr td {
		display: block;
		width: 100%;               /* ← 横幅100%固定でブレ防止 */
		border: none;              /* ← td単位の線を消す */
		padding: 4px 0;            /* ← スマホ用に最適化 */
	}

	.pr td:first-child {
		margin-bottom: 4px;
		background-color:var(--accent-color4);
		padding:3px;
		padding-left:5px;
	}

	/* 価格のフォーマット（左揃え／折り返しOK） */
	.pr .price-wrap {
		justify-content: flex-start;
		white-space: normal;      /* ← nowrapを解除して溢れ防止 */
		width: 100%;
	}
}

.shift2 {
	display: inline-block;
	margin-left: 0.5em; /* 半角2文字分＝2em */
}


/*======= Staff スタッフ募集中 ======*/
.secSt {
	padding: var(--v-space) 0;
	background-color: white;
}

.staff{
	margin-top:1em;
}
@media screen and (max-width: 568px) { 
	.staff{
		display:block;
		text-align:center;
		margin-top:2em;
	}
}


/*======= Area 営業エリア ======*/
.secA {
	padding: var(--v-space) 0;
	background-color: var(--accent-color3);
}


/*======= News 弊社の紹介 ======*/
.secN {
	padding: var(--v-space) 0;
	background-color: white;
}


/*======= FAQ ======*/
.faq_sec1 {
	padding: var(--v-space) 0;
	background-color: var(--accent-color3);

	position: relative;
	/* sectionの位置を相対的にする*/
	z-index: 1;
	/* 背景画像より上に表示 */
}

.faq-item {
	display: grid;
	grid-template-columns: 1.5em 1fr;
	column-gap: 10px;
	row-gap: 5px;
}

.faq-label {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: bold;
	font-size: 110%;
	line-height: 1.5;
	border-radius: 3px;
	width: 1.5em;
	text-align: center;
	align-self: start;
	/* lavelを上揃えに */
}

.faq-label.q {
	background-color: var(--main-color);
}

.faq-label.a {
	background-color: var(--accent-color1);
}

.faq-question,
.faq-answer {
	margin: 0;
	line-height: 1.6;
	text-align: justify;
}

.faq-question {
	font-weight: bold;
}

hr.faqHr {
	height: 0px;
	border: 1px dashed var(--accent-color2);
	margin: 20px auto;
}


/*======= 会社案内ページ ======*/
/*会社案内*/
.info_sec1{
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_04.jpg);
	background-size:cover;
	background-position: center;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

@media screen and (max-width: 568px) { 

	.info_sec1{
		padding: var(--v-space) 0;
		background-color: #9DB377;
	}
}

/* 概要・アクセス部分のテーブル */
.info1 {
	font-weight: bold;
	border-bottom: 1px dashed var(--accent-color2);
	padding: 5px;
	width: 7.25em;
}
.info2 {
	border-bottom: 1px dashed var(--accent-color2);
	padding: 5px;
	width: 400px;
}
@media screen and (max-width: 568px) {
	.info1 {
		display: block;
		padding: 8px 2px 2px 2px;
		width: 100%;
		border-bottom: 1px solid rgba(255,255,255,0);
	}
	.info2 {
		display: block;
		padding: 2px;
		width: 99%;
	}
}

.info-sec1-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 5px 5px;
}

@media (min-width: 568px) {
	.info-sec1-container {
		grid-template-columns: repeat(6, 1fr);
	}
}

/*会社概要*/
.bg_b{
	background: rgba(93,122,86, 0.8);
	padding:40px;
}
@media screen and (max-width: 568px) {
	.bg_b {
		padding: 20px;
	}
}

.access_sec1{
	padding: var(--v-space) 0;
	background-color: #FFF;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}


/*写真並べ*/
/* PC：2:1 で記事：画像 */
.infoSprit {
	display: grid;
	grid-template-columns: 3.5fr 1fr;  /* ←小数ありでもOK（例：1.8fr 1fr） */
	gap: 20px;
	align-items: start;
}

/* 子要素共通 */
.infoSprit > * {
	box-sizing: border-box;
}

/* 1つ目の子（記事側） */
.infoSprit > :first-child {
	/* 必要ならパディングなど */
	/* padding: 10px; */
}

/* 2つ目の子（画像側） */
.infoSprit > :last-child {
	display: flex;
	justify-content: center;  /* 画像を中央寄せ */
	align-items: center;
}

/* 画像調整 */
.infoSprit > :last-child img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* スマホ・タブレット縦：ブロック表示（縦積み） */
@media (max-width: 768px) {
	.infoSprit {
		grid-template-columns: 1fr;  /* 1カラム */
	}

	/* 縦積み時はお好みで中央揃え解除も可 */
	/* .infoSprit > :last-child {
	justify-content: flex-start;
	align-items: flex-start;
	} */
}


/*======= 調整 ======*/
.l-c {
	margin-right: auto;
	margin-left: auto;
}

.spot-heading01 {
	font-size: clamp(40px, 6vw, 60px);
	font-style: italic;
	text-align: center;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.spot-heading02 {
	font-size: clamp(22px, 2.7vw, 30px);
	line-height: 1em;
	font-weight: 700;
	text-align: center;
	font-family: 'YakuHanJPs', 'Noto Sans Japanese', sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "MS Pゴシック", "MS PGothic", Arial, Helvetica, Verdana;
}

strong{
	font-weight:normal;
}

/*全h3*/
h3{
	font-weight:500;
	font-style:normal;
}


/*画像内側に線*/
.imgtext-container > figure.img {
	outline: 1px solid #fff;
	outline-offset: -0.6rem;
}


