@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; /* 背景画像より上に表示 */
}

span.st{
	color:var(--accent-color1);
	font-weight:900;
}

.greeting-spot {
	color: var(--accent-color1);
	font-size: 1.2em;
}

p.pbtm{
	margin-bottom:15px;
}

@media screen and (max-width: 568px) { 
	p.pbtm{
		margin-top:25px;
		margin-bottom:20px;
		text-align:center;
	}
}

/*---------------------*/
/*電話､FAX､メール*/
/*---------------------*/

.image-link img:hover {
  opacity: 0.5; /* マウスオーバー時の透明度 */
}

/*カード*/
.top-card__item{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap:10px;
	border-top:1px solid var(--accent-color1);
}



@media only screen and (max-width: 968px) {
	.top-card__item{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 568px) {
	.top-card__item{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
}
.top-card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 1;
	/*ここまで*/

	padding: 10px;
	background-color: var(--base-color);
	border-radius: 0px;
	box-sizing: border-box;
	/*
	border: solid 1px #999;
	*/
}
@media screen and (max-width: 568px) { 
	.top-card__item div{
		padding: 0px;
	}

	.top-card__item div:not(:first-child) {
    margin-top: -20px;
  }

}


.top-card__item3f div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	grid-row: span 1;
}

.top-card__item-ng div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: initial;
	text-align:left;
}

.top-card__item H4{
	padding: 5px 0;
	font-size: clamp(16px,1.5vw,20px);
	font-weight: bold;
	line-height: 1.3;
	border-bottom: 2px dotted var(--main-color);
}
.top-card__item p{
	display: inline-block;
    font-size: 15px;
    line-height: 1.5;
}



/*======= コンテンツ ======*/

/*======= ABOUT ======*/
/*section1*/
.sec1 {
    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;
}
h4{
	font-weight:400 !important;
}

/*カード*/
.sec1-card__item{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap:10px;
}
@media only screen and (max-width: 968px) {
	.sec1-card__item{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 568px) {
	.sec1-card__item{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
}
.sec1-card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	/*ここまで*/

	padding: 10px;
	background-color:white;
	border-radius: 0px;
	box-sizing: border-box;
	border: solid 1px #ccc;
}
.sec1-card__item H4{
	padding: 5px 0;
	font-size: clamp(16px,1.5vw,20px);
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
	border-bottom: 3px double var(--accent-color1);
}
.sec1-card__item p{
	display: inline-block;
    font-size: 15px;
    line-height: 1.5;
}




/*======= FAQ ======*/
.faq_sec1 {
	padding: var(--v-space) 0;
    position: relative;
    z-index: 1;
    background-color: #f1faf5;
    background-size: 6px 6px;
    background-image: repeating-linear-gradient(0deg, #f7fcfc, #f7fcfc 1px, #e6f0fa 1px, #e6f0fa);
}
div.faq2 p.b {
	font-weight: bold;
	color: #444;
}
div.faq2 p.b::first-letter {
	color: var(--main-color);
	font-size: 130%;
}
div.faq2 p {
	margin-top: 5px;
	line-height: 1.4;
	text-align: left;
	text-indent: -1.4em;
	padding-left: 1.4em;
	display: block;
}
div.faq2 p::first-letter {
	color: var(--accent-color1);
	font-size: 130%;
	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.png);
	background-size:cover;
	background-position: bottom;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
@media screen and (max-width: 568px) { 

	.info_sec1{
		padding: var(--v-space) 0;
		background-color: #FFF;
		background-image: url(../img/bg_04.png);
		background-size:cover;
		background-position:right center;

		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(0, 0, 0, 0.97);
	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; /* 背景画像より上に表示 */ 
}


/*----------------------------*/
/*---その他-------------------*/
/*----------------------------*/


strong{
	font-weight:normal;
}

/*----------------------------*/
/*---サービス案内--------------*/
/*----------------------------*/


.secS {
    padding: var(--v-space) 0;
    position: relative;
    z-index: 1;
    background-color:#fff;
}

h4.title{
	font-weight:400 !important;
	color:#222;
	margin-top:10px;
	font-size:1.1em;

}
h4.title::after {
    display: block;
    content: '';
    width: 60px;
    height: 0px;
    margin-top: 0.3em;
    margin-bottom: 0.3rem;
    border-bottom: 3px double var(--accent-color1);
    font-weight: bold;
    font-size: 26px;
}


.imgtext-container.w-container.reverse figure.img img {
  box-shadow: 7px 7px 0px rgba(0, 0, 0, 0.07);
}

.imgtext-container.w-container figure.img img {
  box-shadow: 7px 7px 0px rgba(0, 0, 0, 0.07);
}
