@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 {
	display: grid
	;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 10px;
	grid-row-gap: 10px;
	padding: 20px 0;
}


.tel_bnr img{
	box-shadow: 0 8px 8px 0 rgba(0, 0, 0, .10);
}


@media (max-width: 568px) {
	.tel_bnr {
		grid-template-columns: repeat(1, 1fr);
	}
}

.waku{
	background-color:var(--accent-color1);
	color:white;
	padding:10px;
	text-align:center;
	border:3px double white;
}
@media screen and (max-width: 568px) { 
	.waku{
		text-align:left important;
		margin-bottom:30px;
	}
}


/*======= コンテンツ ======*/


/*======= このようなお困りごとは ======*/
.secN {
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_03.png);
	background-size:cover;
	background-position: bottom;
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 

	background-color: rgba(255, 255, 255, 0.8) !important;
	background-blend-mode: overlay;
}

.waku80{
	width:80%;
	margin:0 auto;
}
@media screen and (max-width: 568px) { 
	.waku80{
		width:initial;
	}
}

.kakomi02 span {
    position: relative;
    padding: 3px 10px 2px 10px;
    margin: 4px 3px;
    border: 1px solid #ddd;
    text-align: center;
    display: inline-block;
    font-size: clamp(14px, 1.3vw, 14px);
    background: #fff;
    overflow: hidden;
	background-color:#D7E9F7;
}


/*======= Free お見積り無料 ======*/
.secF {
	padding: var(--v-space) 0;
	background-color: #FFF;
}



/*======= Flow ご注文の流れ ======*/
.secFl {
	padding: var(--v-space) 0;
	background-color: #FFF;
    background: linear-gradient(
        25deg,          /* 左上から右下 */
        #b3e5fc 10%,    /* 水色の範囲を少し残す */
        #b3e5fc 0%,     /* 薄い水色スタート */
        #ffffff 60%    /* 右下に向かって白に変化 */
    );
}



/*======= Service 業務内容 ======*/
.secS {
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_01a.png), url(../img/bg_01b.png);
	background-repeat: no-repeat, no-repeat ;
	background-position: top center, bottom center ;
	background-size: 100%, 100%;

	background-color: rgba(255, 255, 255, 0.8) !important;
	background-blend-mode: overlay;
}

.waku2{
	background-color:var(--main-color);
	color:white;
	padding:10px;
	text-align:center;
	border:3px double white;
}


h4.title{
	font-weight:normal;
	color:#222;
	font-size:19px;
	margin-top:0.3em;
}

h4.title::after{
	display: block;
	content: '';
	width: 100px;
	height: 0px;
	margin-top: 0.1em;
	margin-bottom: 0.2rem;
	border-bottom: 1px dashed var(--accent-color1);
	font-weight: bold;
	font-size: 26px;
}


span.h3sm{
	font-size:16px;
	margin-left:10px;
}

@media screen and (max-width: 568px) { 
	span.h3sm{
		display:block;
	}
}


@media screen and (max-width: 1000px) { 
	span.h3sm{
		display:block;
		margin-left:0;
	}
}


@media only screen 
and (min-width: 768px) 
and (max-width: 1366px) 
and (orientation: landscape) 
and (pointer: coarse) {

	/* ほぼ全ての iPad 横向きに対応 */

	h3.title{
		font-size:20px;
	}
}



/* iPad (非Retina含む) の縦向き */
@media only screen
and (min-device-width: 768px)
and (max-device-width: 1024px)
and (orientation: portrait) {
	span.h3sm{
		display:block;
	}
}



/*======= FAQ ======*/
.faq_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;
}

.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(--accent-color3);
}

.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;
}


.contentsbgA{
	margin-bottom:30px;
	padding:20px;
	box-shadow: 0 13px 13px 0 rgba(0, 0, 0, .01);
}

.fa-phone-square:before {
	color:var(--accent-color3);
}


.diagonal div p{
	font-size:18px;
	text-align:center;
}



/*======= 会社案内ページ ======*/
/*会社案内*/
.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; /* 背景画像より上に表示 */ 
}
/* 概要・アクセス部分のテーブル */
.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(50,108,145, 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; /* 背景画像より上に表示 */ 
}



/*===========アクセス=============*/
table.pr tr td:nth-of-type(2){
	width:70%;
}
@media screen and (max-width: 568px) { 
	table.pr tr td:nth-of-type(2){
		width:30%;
	}
}



/*全体共通 画像内側に線*/
.imgtext-container > figure.img {
	outline: 1px solid #fff;
	outline-offset: -0.6rem;
}

.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;
}

