@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;
}
.tel-bnr img {
	box-shadow: 0 13px 13px 0 rgba(0, 0, 0, .1);
}

/*======= コンテンツ ======*/

/*======= Service,業務内容 ======*/
.secS {


	padding: var(--v-space) 0;
	position: relative;
	z-index: 1;

	/* ベースを淡い緑 */
	background-color: #f3f7f4;

	/* グリッド線を薄いグレーグリーンに */
	background-image:
	repeating-linear-gradient(
	0deg,
	#d9e2dc 0,
	#d9e2dc 1px,
	transparent 1px,
	transparent 15px
	),
	repeating-linear-gradient(
	90deg,
	#d9e2dc 0,
	#d9e2dc 1px,
	transparent 1px,
	transparent 15px
	);

	background-size: 15px 15px;

}


h3.cnt{
	text-align:center;
}

h3.cnt::after {
	margin:0 auto;
	display: block;
	content: '';
	width: 160px;
	height: 0px;
	margin-top: 0.6em;
	margin-bottom: 0.2rem;
	border-bottom: 5px solid var(--main-color);
	font-weight: bold;
	font-size: 26px;
}
h3.cnt + p {
	margin-top: 0.5em;
	margin-bottom: 1em;
	color: var(--main-color);
	font-family: "Montserrat", sans-serif;
	font-size: 12px;
	letter-spacing: 0.15em;
	text-align:center;
}

.wakuS{
	border:1px solid var(--accent-color1);
	padding:10px;
	border-radius:5px;
}

.waku90{
	margin:0 auto;
	width:90%;
}

/*
.waku80{
	margin:0 auto;
	width:80%;
}
@media screen and (max-width: 968px) { 
	.waku80,.waku90{
		width:initial;
	}

}
*/
/* =========================
   セクション
========================= */
.secP {
	padding: var(--v-space) 0;
	background-color: #fff;
}

.pfig{
	font-size: clamp(1.5em, 2.5vw, 1.7em);
	font-weight:600;
	color:var(--accent-color1);
	margin-right:3px;
}


/* ============================
   Price Cards Table
   ============================ */

.price-cards {
	max-width: 800px;
	margin: 0 auto;
}

/* PC表示（表のように） */
.pc-item {
	display: grid;
    grid-template-columns: 50% 50%;
	border: 1px solid #ccc;
}


.pc-item + .pc-item {
	border-top: none;
}

.pc-name {
	background-color: #F3F7F4;
	padding: 16px 20px;
	font-weight: bold;

	display: flex;
	align-items: center;
}

@media screen and (max-width: 568px) { 

.pc-name {
	display: block;
}

.pc-item {
	border-top: 1px solid #ccc !important;
}

}

.pc-price {

	display: grid;
	grid-template-columns: 50% 1fr;
	align-items: center;
	padding: 16px 20px;
	white-space: nowrap;
}


@media screen and (max-width: 1050px) { 

	.pc-price {
		display: grid;
		grid-template-columns: 35% 1fr;
	}
}


@media screen and (max-width: 868px) { 

	.pc-price {
		display: grid;
		grid-template-columns: 25% 1fr;
	}
}


@media screen and (max-width: 658px) { 

	.pc-price {
		display: grid;
		grid-template-columns: 15% 1fr;
	}
}



.pc-label {
	color: #666;
	font-size: 14px;
    text-align: right;
	margin-bottom:-10px;
}

@media screen and (max-width: 568px) { 
	.pc-label {
		margin-right:10px;
	}
}

.pc-amount {
	text-align: right;
	font-size: 18px;
	font-weight: bold;

}

.pc-num {
	font-size: 1.55em;
	font-weight: 600;
	color: var(--accent-color1);
	margin-right:5px;
}

/* TAB/SP表示（カード） */
@media (max-width: 767px) {

	.pc-item {
		display: block;
		margin-bottom: 20px;
		overflow: hidden;
	}

	.pc-name {
		text-align: center;
	}

	.pc-price {
grid-template-columns: minmax(10%, 50%) 1fr;
		text-align: right;
	}

	.pc-label {
		text-align: right;
	}

	.pc-amount {
		text-align: right;
		font-size: 18px;
	}
}
@media screen and (max-width: 568px) { 
	.pc-price {
	grid-template-columns: 25% 1fr;
		text-align: right;
	}
}



/*======= Area,ご対応エリア ======*/
.secA {
	padding: var(--v-space) 0;
	background-color: var(--main-color);
}

/*======= Clients,主なお取引先 ======*/
.secC {
	padding: var(--v-space) 0;
	background-color: #fff;
}


/*======= FLOW ======*/
.secF {
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_04.jpg);
	background-size:cover;
	background-position: bottom;
}

.waku{
	margin:0 auto;
	width:80%;
	padding:10px;
	background-color:var(--main-color);
	text-align:center;
}
@media screen and (max-width: 568px) { 

	.waku{
		text-align:left;
	}
}

/*======= FAQ ======*/
.faq_sec1 {
	padding: var(--v-space) 0;
	background-color: #fff;

	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_03.jpg);
	background-size:cover;
	background-position: bottom;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
/* 概要・アクセス部分のテーブル */
.info1 {
	font-weight: bold;
	border-bottom: 1px dashed var(--accent-color2);
	padding: 5px;
	width: 5.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(42,111,72, 0.8);
	padding:40px;
	border-radius: 20px;
}
@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; /* 背景画像より上に表示 */ 
}




/*======= 調整 ======*/
.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-family: 'Zen Old Mincho', serif;
	font-weight:500;
	font-style:normal;
}
.fuchidori {
	font-family: 'Zen Old Mincho', serif;
	font-weight:600;
	font-style:normal;
}
.heading span {
	font-weight: 400;
	font-family: sans-serif;
}

