@charset "UTF-8";


/*=======================================================*/
/*      		セクション毎のCSS   			  		  */
/*======================================================*/

/*======= タイトル(共通) ======*/
.sec-heading-decoration {
	font-size: clamp(25px, 3vw, 30px);
	min-height: 0vw;
	font-weight: 400;
	color: #444;
	text-align:center;
}

.sec-heading-decoration::after {
	display: block;
	content: '';
	width: 160px;
	height: 0px;
	border-top: solid 2px var(--main-color);
	margin-top: 0.6em;
	margin-right:auto;
	margin-left:auto;
}

.sec-heading-decoration + p {
	margin-top: 0.5em;
	margin-bottom: 1em;
	color: var(--txt-color);
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	text-align:center;
}

/*======= TOP ======*/
/*ご挨拶*/
.greeting {
	padding: clamp(40px, 6vw, 90px) 0 clamp(120px, 12vw, 240px) 0;
	background-color: var(--base-color);
	background-image: url(../img/bg_01.svg);
	background-repeat: no-repeat;
	background-position: bottom;
}
@media (max-width: 568px) {
	.greeting {
		background-size: 200%;
	}
}

/*section1*/
.sec1 {
	padding: var(--v-space2) 0;
	background-color: #71AB69;
}


.sec1__title {
	position: relative;
    font-size: clamp(30px,5vw,40px);
    font-weight: 700;
    text-align: center;
    font-family: 'Kiwi Maru';
	margin-bottom: 1em;
}

.sec1__title:before {
	content: '';
	position: absolute;
	bottom: -15px;
	display: inline-block;
	width: 60px;
	height: 5px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: var(--accent-color2);
	border-radius: 2px;
  }

  .sec1-clm1{
	column-count: 1;
	-webkit-column-count: 1;
    -moz-column-count: 1;
  }
  .sec1-clm2{
	column-count: 2;
	-webkit-column-count: 2;
    -moz-column-count: 2;
  }
  .sec1-clm3{
	column-count: 3;
	-webkit-column-count: 3;
    -moz-column-count: 3;
  }
  .sec1-clm2-01{
	column-count: 2;
	-webkit-column-count: 2;
    -moz-column-count: 2;
  }
  @media (max-width: 1100px) {
	.sec1-clm2-01{
		column-count: 1;
		-webkit-column-count: 1;
    	-moz-column-count: 1;
	  }
  }
  @media (max-width: 1030px) {
	.sec1-clm3{
	column-count: 2;
	-webkit-column-count: 2;
    -moz-column-count: 2;
	}
  }
  @media (max-width: 568px) {
	.sec1-clm2{
		column-count: 1;
		-webkit-column-count: 1;
    -moz-column-count: 1;
	  }
	.sec1-clm3{
	column-count: 1;
	-webkit-column-count: 1;
    -moz-column-count: 1;
	}
  }

  /*タイトル*/
.sec1-heading{
	border-bottom: 1px solid #222;
	color: #222;
	margin-bottom: 10px;
	font-size: 16px;
}
.sec1-heading:first-letter {
	font-size: 150%;
	color: #FFEC00;
  }


/*section2*/
.sec2::before {
    content: "";
    width: 100%;
    height: 80px;
    background-color: #71AB69;
    position: absolute;
    top: -1px;
    clip-path: polygon(50% 100%, 100% 0%, 0% 0%);
}
.sec2 {
    padding: var(--v-space2) 0;
    background-color: #FFF;

    padding-top: 100px;
    padding-bottom: 88px;
    position: relative;
}


/*section3*/
.sec3 {
	padding: var(--v-space2) 0;
	background-color: #ECF4E3;
	background-image:  radial-gradient(#71AB69 0.5px, transparent 0.5px), radial-gradient(#71AB69 0.5px, #ECF4E3 0.5px);
	background-size: 20px 20px;
	background-position: 0 0,10px 10px;
	
}

/*カード*/
.sec3-card__item{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap:20px;
}
@media (max-width: 768px) {
	.sec3-card__item{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 468px) {
	.sec3-card__item{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
}
.sec3-card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 2;
	/*ここまで*/

	padding: 20px;
	background-color: rgba(255,255,255,0.95);
	border-radius: 15px;
	box-sizing: border-box;
}
.sec3-card__item H3{
	padding: 5px 0;
	font-size: clamp(20px,1.6vw,18px);
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
}

/*＼　／でタイトルを囲む*/
.sec3-heading {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: clamp(14px, 1vw, 18px);
	text-align: center;
	border: 0;
	color: #444;
	margin: 10px;
  }
  
  .sec3-heading::before,
  .sec3-heading::after {
	content: '';
	width: 1px;
	height: 40px;
	background-color: var(--accent-color2);
  }
  
  .sec3-heading::before {
	margin-right: 30px;
	transform: rotate(-35deg)
  }
  .sec3-heading::after {
	margin-left: 30px;
	transform: rotate(35deg)
  }

  .sec4 {
    padding: 0;
    background-color: #FFF;
  }
  
/*サービス案内*/
.se_sec1{
	padding: var(--v-space) 0;
	background-image: url(../img/bg_02.svg);
	background-repeat: repeat;
	background-size: 150px;
}

.se_sec2{
	padding: var(--v-space) 0;
	background-color: #FFF;
}

.se_sec3{
	padding: var(--v-space) 0;
	background-color: #ECF4E3;
	background-size: 10px 10px;
	background-image: repeating-linear-gradient(45deg, #71ab6955 0, #71ab6955 1px, #ECF4E3 0, #ECF4E3 50%);
}

.se_sec4{
	padding: var(--v-space) 0;
	background-image: url(../img/bg_03.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom;
}



/*======= FAQ ======*/
.faq_sec1 {
	padding: 30px 0 100px 0;
	background-color: #FFF;
}
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-frame01{
	padding: 40px;
	background-image: url(../img/bg_frame01.jpg);
	background-size: cover;
}
@media screen and (max-width: 568px) {
	.info_sec1-frame01 {
		padding: 15px 15px 15px 15px;
	}
}

/*会社案内*/
.info_sec1{
	padding: 0px 0 100px 0;
	background-color: #FFF;
}
.info_sec2{
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_04.jpg);
    background-size: cover;
}
/* 概要・アクセス部分のテーブル */
.info1 {
	font-weight: bold;
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 5.25em;
}
.info2 {
	border-bottom: 1px dashed #999;
	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%;
	}
}

/*会社概要*/
.bg_b{
	background: #ffffffaa;
	padding:20px;
}


.access_sec1{
	padding: var(--v-space) 0;
	background-color: #FFF;
}



