@charset "UTF-8";


/*=======================================================*/
/*      		セクション毎のCSS   			  		  */
/*======================================================*/


/*======= TOPページ ======*/
/*ご挨拶*/
.greeting {
	padding: clamp(40px, 6vw, 90px) 0;
	background-color: var(--base-color);
}
/*H5*/
h5{
	font-size: clamp(16px,1.5vw,18px);
	font-weight: 600;
	line-height: 1.2;
	padding: 3px 5px 1px 5px;
	/*background-color: rgba(0, 105, 216, 0.2);*/
	margin: 0;
}
/*H6*/
h6{
	font-size: clamp(14px,1.4vw,15px);
	padding: 3px 5px 1px 5px;
	font-weight: 600;
	line-height: 1.3;
	color: #37527b;
	margin-top: 5px;
	background-color: rgba(214, 218, 223, 0.5);
}
/*括り*/
.kukuri {
	margin: 5px 0;
	padding: 25px 30px;
	background-color: rgba(255,255,255,0.85);
	border: 4px double #bbb;
}
@media (max-width: 768px)  {
	.kukuri {
		padding: 15px 20px;
	}
}
.kukuri p{
	font-size: clamp(12px, 1.2vw, 13px);
	margin: 10px 0;
}
/*6つの業務紹介*/
.top_sec1-item {
	padding-bottom: 3vw;
}
.top_sec1-item-container {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 20px 30px;
}
@media (min-width: 568px) {
	.top_sec1-item-container {
		grid-template-columns: repeat(3, 1fr);
	}
}
/* 各コンテンツ */
.top_sec1-item h3 {
	margin: 0.5em auto;
	font-size: clamp(19px, 2vw, 25px);
	line-height: 1;
	min-height: 0vw;
	text-align: center;
	background-color: #f7fbf8;
}
/*カギカッコ見出し*/
.hkagi {
	/*width: fit-content;*/
	margin: 0 auto;
	position: relative;
	padding: 1em 1em;
	text-align: center;
	color: #000;
}
.hkagi:before,
.hkagi:after {
	position: absolute;
	content: '';
}
.hkagi:after {
	top: 0;
	left: 0;
	width: 40px;
	height: 40px;
	border-top: 2px solid #ccc;
	border-left: 2px solid #ccc;
}
.hkagi:before {
	right: 0;
	bottom: 0;
	width: 40px;
	height: 40px;
	border-right: 2px solid #ccc;
	border-bottom: 2px solid #ccc;
}


/*TELバナー セクション*/
.topbnr_sec{
	padding: 60px 0;
	background-color: #6cbb961f;
}
.topbnr_sec-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 10px;
	grid-row-gap: 10px;
}
@media (max-width: 568px) {
	.topbnr_sec-container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: 2fr;
		grid-column-gap: 10px;
		grid-row-gap: 10px;
	}
}






/*======= 業務内容ページ ======*/


/*section1*/
.busi_sec1 {
	padding: 0px 0 100px 0;
	background-color: #FFF;
	/*padding: clamp(40px, 2vw, 50px) 0;*/
	background: url(../img/bg_01.png);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}
/*呼びかけ見出し*/
/*H3タイトル*/
.sec1-heading {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: clamp(17px, 2vw, 22px);
	text-align: center;
	border: 0;
	color: #444;
  }
  
  .sec1-heading::before,
  .sec1-heading::after {
	content: '';
	width: 1px;
	height: 40px;
	background-color: var(--accent-color2);
  }
  
  .sec1-heading::before {
	margin-right: 35px;
	transform: rotate(-30deg);
  }
  .sec1-heading::after {
	margin-left: 35px;
	transform: rotate(30deg)
  }
  @media screen and (max-width: 568px) {
	.sec1-heading::before {
		margin-right: 17px;
	}
	.sec1-heading::after {
		margin-left: 17px;
	}
}
/*6つの業務紹介*/
.busi_sec1-item {
	padding-bottom: 3vw;
}
.busi_sec1-item-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px 30px;
}
@media (max-width: 768px) {
	.busi_sec1-item-container {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 568px) {
	.busi_sec1-item-container {
		grid-template-columns: repeat(1, 1fr);
	}
}
/* 各コンテンツ */
.busi_sec1-item h3 {
	margin: 0.5em 0;
	font-size: clamp(20px, 2vw, 24px);
	min-height: 0vw;
	text-align: center;
	line-height: 1.2;
}
.busi_sec1-item p {
	font-size: clamp(13px, 1.4vw, 15px);
	min-height: 0vw;
	text-align: justify;
	margin-bottom: 5px;
}
.busi_sec1-item p.s1-i-btn {
	/*font-size: 13px;*/
	font-weight: 600;
	min-height: 0vw;
	text-align: center;
}
.busi_sec1-item img {
	/*aspect-ratio: 3 / 2;*/
	object-fit: cover;
	/*width: 100%;*/
}
@supports not (aspect-ratio: 3 / 2) {
	.busi_sec1-item img {
		height: 180px;
	}
}
/*section2*/
.busi_sec2 {
	padding: var(--v-space) 0;
	background-color: #ecf7f3;
}
/*文字ボタン*/
.btwi{
	display: block;
	margin: 10px auto 5px auto;
	box-sizing: border-box;
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 568px) {
	.btwi{
		width: 100%;
	}
}
.c-btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 37px;
	color: #fff;
	line-height: 1.1;
	text-decoration: none;
	transition: 0.3s;
	padding: 0 32px 0 20px;
	border-radius: 20px;
}
.btn07 a {
	background-color: var(--main-color);
	border: 1px solid transparent;
	font-size: clamp(13px, 1.4vw, 15px);
}
.btn07 a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	width: 17px;
	height: 17px;
	background-color: transparent;
	border: 2px solid #fff;
	border-radius: 50%;
}
.btn07 a::after {
	content: '';
	position: absolute;
	top: calc(50% - 1px);
	right: 20px;
	transform: rotate(45deg) translateY(-50%);
	width: 6px;
	height: 6px;
	border-width: 2px 2px 0 0;
	border-style: solid;
	border-color: #fff #fff transparent transparent;
}
.btn07 a:hover {
	background-color: #e4c000;
}
.btn07 a:hover::before {
	border: 1px solid #f2f2f2;
}
.btn07 a:hover::after {
	border-color: #f2f2f2 #f2f2f2 transparent transparent;
}












/*======= よくある質問ページ ======*/

/*======= FAQ ======*/
.faq_sec1 {
	/*padding: clamp(40px, 3vw, 40px) 0;*/	/*ページ内カテゴリーの場合*/
	padding: 0px 0 100px 0;
	background-color: #FFF;
}
/*通常デザイン*/
/*
div.faq p.b {
	font-weight: bold;
	color: var(--main-color);
}
div.faq p {
	margin-top: 5px;
	line-height: 1.4;
	text-align: left;
	text-indent: -1em;
	padding-left: 1em;
	display: block;
}
*/
/*会話吹き出しデザイン*/
.cp_qa dl{
	display: flex;
	flex-wrap: wrap;
}
.cp_qa *, .cp_qa *:after, .cp_qa *:before {
	font-family: Arial, sans-serif;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_qa dt,.cp_qa dd {
	position: relative;
	padding: 0.7em;
	box-shadow: 0px 1px 1px rgba(0,0,0,0.2);
	border-radius: 0.3em;
}
.cp_qa dt {
	margin: 0 3em 1em 3em;
	background: #f7f7f7;
	border: 0;/*打消し*/
	width: 100%;/*上書き*/
	text-align: justify;
	font-size: clamp(15px,1.6vw,16px);
}
.cp_qa dd {
	margin: 0 3em 3em 3em;
	background: #dbeee8;
	border: 0;/*打消し*/
	width: 100%;/*上書き*/
	text-align: justify;
	font-size: clamp(15px,1.6vw,16px);
}
/* 吹き出し */
.cp_qa dt::before,.cp_qa dd::before{
	position: absolute;
	z-index: 99;
	top: 0.5em;
	display: inline-block;
	width: 0;
	height: 0;
	content: '';
	border-style: solid;
}
/* 質問吹き出し */
.cp_qa dt::before {
	left: -0.5em;
	border-width: 5px 8.7px 5px 0;
	border-color: transparent #f7f7f7 transparent transparent;
}
/* 答え吹き出し */
.cp_qa dd::before {
	right: -0.5em;
	border-width: 5px 0 5px 8.7px;
	border-color: transparent transparent transparent #dbeee8;
}
/* ?!アイコン */
.cp_qa dt::after,.cp_qa dd::after {
	font-size: 1.2em;
	position: absolute;
	top: 0;
	color: #ffffff;
	border-radius: 50%;
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	line-height: 1.2em;
}
/* ?アイコン */
.cp_qa dt::after {
	left: -2.5em;
	margin: 0 0.5em 0 0;
	padding: 0.15em 0.3em;
	content: "Q";
	background: var(--accent-color2);
	font-weight: 600;
}
/* !アイコン */
.cp_qa dd::after {
	right: -2.5em;
	margin: 0 0 0 0.5em;
	padding: 0.15em 0.4em;
	content: "A";
	background: var(--main-color);
	font-weight: 600;
}





/*======= 会社案内ページ ======*/
/*会社案内*/
.info_sec1{
	padding: 0px 0 100px 0;
}
.sec1-haba{
	margin: 0 5%;
}
/*H3タイトル*/
.info_sec1-heading {
	font-size: clamp(18px, 2vw, 24px);
	text-align: center;
}
/* 概要・アクセス部分のテーブル */
.info1 {
	font-weight: bold;
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 7.5em;
}

.info2 {
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 400px;
}
.info3 {
	font-weight: bold;
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 8em;
	color: #000;
}
.info4 {
	border-bottom: 1px dashed #999;
	padding: 5px;
}
.info5 {
	font-weight: bold;
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 10%;
}
.info6 {
	font-weight: bold;
	border-bottom: 1px dashed #999;
	padding: 5px 1em;
	width: 8%;
	text-align:right;
}

@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);
	}
	.info1-1 {
		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%;
	}
	.info3 {
		display: block;
		padding: 8px 2px 8px 2px;
		width: 100%;
		background-color: #dbf0e9;
	}
	.info4 {
		display: block;
		padding: 8px 2px;
		width: 99%;
	}
	
}
/*会社概要*/
.bg_b{
	background: #f2f2f2;
	padding:20px;
}
.bg_w{
	/* background: #f2f2f2;*/
	padding:20px;
}
/*文字装飾*/
p.ptit{
	/*background: rgba(215, 230, 223, 0.9);*/
	padding: 0 10px;
	margin: 3px 0;
	/*border-bottom: 1px dashed #ccc;*/
}
/*アクセス*/
.info_sec3{
	padding: var(--v-space) 0;
	background-color: #ecf7f3;
}
/*任意のみ表示*/
@media screen and (max-width: 669px) {
	.any-max769 {
		display: none;/*669以下表示*//*今回は全角スペースを表示させて改行の効果で枠を調整*/
	}
}

/*任意のみ表示*/
@media screen and (max-width: 868px) {
	.any-min868 {
		display: none;
	}
}

/*許可証*/
.info_sec1-item {
	padding-bottom: 1vw;
}
/*4つの許可証*/
.info_sec1-item-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px 30px;
}
@media only screen and (max-width: 768px) {
	.info_sec1-item-container {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 568px) {
	.info_sec1-item-container {
		grid-template-columns: repeat(1, 1fr);
	}
}
/*5つの許可証*/
.info_sec1-item-container5 {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px 30px;
}
@media only screen and (max-width: 768px) {
	.info_sec1-item-container5 {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 568px) {
	.info_sec1-item-container5 {
		grid-template-columns: repeat(1, 1fr);
	}
}
/*3つの証*/
.info_sec1-item-container3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px 30px;
}
@media only screen and (max-width: 768px) {
	.info_sec1-item-container3 {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 568px) {
	.info_sec1-item-container3 {
		grid-template-columns: repeat(1, 1fr);
	}
}

.f-nini{
	font-size: clamp(15px, 1.6vw, 17px);
}


/*======= お問い合わせページ ======*/

.center-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  flex-wrap: wrap;
  font-family: "メイリオ", sans-serif;
  font-size: 1.5em;
  color: #0a8a50;
  text-align: center;
  margin: 1em 0;
}

.center-line img {
  width: 40px;
  height: auto;
}
@media only screen and (max-width: 600px) {
  .center-line {
    flex-direction: column;
    font-size: 1.2em;
  }

  .center-line img {
    width: 30px;
  }
}

