@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;
}

/*カード*/
.secG-card__item{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap:10px;
}
@media only screen and (max-width: 968px) {
	.secG-card__item{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 568px) {
	.secG-card__item{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
}
.secG-card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	/*ここまで*/

	padding: 10px;
	background-color: white;
	box-sizing: border-box;

	box-shadow: 0 13px 13px 0 rgba(0, 0, 0, .1);
}
.secG-card__item H4{
	position: relative;
	padding: 10px;
	font-size: clamp(14px, 1.2vw + 10px, 18px);
	font-weight: normal;
	line-height: 1.3;
	text-align: center;
	background-color: var(--main-color);
	color: #222;
	margin: 0;
	overflow: hidden; /* 擬似要素のはみ出し防止 */
	margin-bottom:-20px;
}

/* 左上の三角形 */
.secG-card__item h4::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	border-top: 20px solid var(--accent-color1);       /* 三角形の高さ */
	border-right: 27px solid transparent; /* 三角形の横幅 */
}




.secG-card__item p{
	display: inline-block;
	font-size: 15px;
	line-height: 1.5;
}

/*========Service 業務内容=========*/

.secS {
	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; /* 背景画像より上に表示 */ 
}

.waku{
	margin:0 auto;
	border:1px solid var(--accent-color1);
	background-color:var(--accent-color2);
	padding:10px;
	border:3px double white;
	text-align:center;
}
@media screen and (max-width: 568px) { 
	.waku{
		text-align:left;
		width:initial;
	}
}

.waku80{
	background-color:var(--accent-color1);
	margin:0 auto;
	width:90%;
	color:white;
	border:4px double white;
	padding:10px;
	text-align:center;
}
@media screen and (max-width: 568px) { 
	.waku80{
		margin:0 auto;
		text-align:left;
	}
}

/*カード*/
.secS-card__item{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap:10px;
}
@media only screen and (max-width: 968px) {
	.secS-card__item{
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}
}
@media only screen and (max-width: 568px) {
	.secS-card__item{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
}
.secS-card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	/*ここまで*/

	padding: 10px;
	background-color: var(--base-color);
	border-radius: 10px;
	box-sizing: border-box;
	border: solid 1px var(--main-color);
}
.secS-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: 2px dotted var(--main-color);
}
.secS-card__item p{
	display: inline-block;
	font-size: 15px;
	line-height: 1.5;
}


/*======= コンテンツ ======*/



/*======= Price 料金プラン ======*/
.secP {
	padding: var(--v-space) 0;
	background-color: #FFF;
}

/*テーブル*/
.pr, .pr td, .pr th {
	border-collapse: collapse;
	border-bottom: 1px solid #999; 
	text-align:center;
}
.pr td:first-child {
	padding-left: 1em; /* 1列目の先頭に余白 */
	text-align: left;  /* 左寄せ */
}

@media only screen and (min-width: 568px) {
	.pr{
		margin:0 auto;
		width:70%;
	}
}


.waku2{
	background-color:var(--accent-color2);
	padding:10px;
	border:3px solid white;
	text-align:center;
}

/*======= House 一般廃棄物 ======*/
.secH {
	padding: var(--v-space) 0;
	background: repeating-linear-gradient(
	45deg,
	rgba(51, 107, 67, 0.1) 0,    /* 線の色 */
	rgba(51, 107, 67, 0.2) 1px,  /* 線の太さ */
	transparent 2px,  /* 隙間の開始 */
	transparent 4px   /* 隙間の幅 */
	)
}

.mkr {
	background: linear-gradient(to bottom, transparent 60%, #e0f8e0 60%);
	padding: 0 2px; /* 左右の余白 */
}


h4.title{
	font-size:20px;
	font-weight:normal;
	color:#222;
	margin-bottom:0;
}
h4.title::after {
	display: block;
	content: '';
	width: 120px;
	height: 0px;
	margin-top: 0.2em;
	margin-bottom: 0.5rem;
	border-bottom: 1.5px dashed var(--accent-color3);
	font-weight: bold;
	font-size: 26px;
}


/*======= Industry 産業廃棄物 ======*/
.secI {
	padding: var(--v-space) 0;
	background-color: #FFF;
}

/*======= Staff スタッフ募集中 ======*/
.secSt {
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_05.png);
	background-size:cover;
	background-position: bottom;
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.staff{
	margin-top:1em;
}

@media screen and (max-width: 568px) { 
	.staff{
		display:block;
		text-align:center;
		margin-top:2em;
	}
}
/* 電話アイコン */
.tel_ico {
    color: #11ba88;
    font-size: 26px;   /* アイコン少し大きく */
    padding-right: 5px;
    font-weight: bold;
}

/* 電話番号 */
.tel {
    font-size: 36px;   /* ← PC時 大きめ */
    font-weight: 700;
    color: #11ba88;
    text-decoration: none;
}
@media screen and (max-width: 568px) { 
    .staff{
        display: block;
        text-align: center;
        margin-top: 1.5em;
    }
    .tel_ico {
        font-size: 26px;   /* スマホはやや控えめ */
    }
    .tel {
        font-size: 28px;   /* スマホ用サイズ */
    }
}


/*======= FAQ ======*/
.faq_sec1 {
	padding: var(--v-space) 0;
	background-color: #f0fcf4;

	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: #11ba88;
}

.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_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(31,122,95, 0.8);
	padding:40px;
	box-shadow: 0 13px 13px 0 rgba(0, 0, 0, .3);
}
@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; /* 背景画像より上に表示 */ 
}



.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 20px;
}
@media only screen and (max-width: 567px) {
	.card-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
}
@media print {
	.card-grid {
		display: grid;
		grid-template-columns: repeat(4,1fr);
		gap: 1.5rem;
	}
}

.card {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 2;
	row-gap: 0.5rem;
	text-align: center;
}

.card img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 4/3;
	object-fit: cover;
}

.card-title {
	font-size: clamp(0.8rem,1.6vw,1rem);
	margin: 0;
}




/*======= 調整 ======*/
.l-c {
	margin-right: auto;
	margin-left: auto;
}


/*その他*/
strong{
	font-weight:normal;
}

/*大きい画像全体*/
.imgtext-container > figure.img {
	outline: 1px solid #fff;
	outline-offset: -0.6rem;
	box-shadow: 0 13px 13px 0 rgba(0, 0, 0, .1);
}

.green {
    color: #1f7a5f;
    text-shadow: 0 5px 3px rgba(0, 0, 0, 0.1);
}

/*======= お知らせ欄 ======*/

/*NEWS ワク*/
div.news_haba{
	margin: 0 16%;
	padding: 30px 0;
}
@media only screen and (max-width: 1068px)  {
	div.news_haba{
		margin: 0 8%;
		padding: 30px 1%;
	}
}
@media only screen and (max-width: 768px)  {
	div.news_haba{
		margin: 0;
		padding: 30px 1%;
	}
}
.newsbg {
	background: rgba(255, 255, 255, 0.7);
    padding: 40px 40px 20px 40px;
	border: 1px solid #3c9dab; /* 枠線の追加（色と太さを指定） */
	border-radius: 8px; /* 角を丸くする場合 */
}
@media screen and (max-width: 568px) {
	.newsbg {
		padding: 30px 15px 15px 15px;
	}
}

/*NEWS タイトル*/
.news-decoration {
	font-size: clamp(22px, 3vw, 26px);
	min-height: 0vw;
	font-weight: 400;
	line-height: 1.4;
	color: #444;
	font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700 !important;
    font-style: normal;
}

.news-decoration::after {
    display: block;
    content: '';
    width: 160px;
    height: 0px;
    margin-top: 0.6em;
    margin-bottom: 0.2rem;
    border-bottom: 2px solid var(--main-color);
    font-weight: bold;
    font-size: 26px;
    margin-left: auto;
    margin-right: auto;
}

.news-decoration + p {
    margin-top: 0.5em;
    margin-bottom: 1em;
	color: var(--main-color);
    font-size: 15px;
    font-family: "Zen Kaku Gothic New", serif;
    font-weight: 500;
    font-style: normal;
	letter-spacing: 0.1em;
	text-align: center;
}

@media screen and (max-width: 968px) {
	.news-decoration {
		text-align:center;
	}
	.news-decoration::after {
		margin-right:auto;
		margin-left:auto;
	}
	.news-decoration + p {
		text-align:center;
		margin-bottom: 20px;
	}
}

/*NEWS リスト*/
.news-list{
	list-style: none outside;
	margin: 0;
	padding: 0;
}
.news-list .item{
	display: flex;
	flex-wrap: wrap;
	/*flex-wrap: nowrap;　改行なしにするとき*/
	text-decoration: none;
	color: #333;
    border-bottom: 1px dashed #CCC;
	padding: 10px 10px;
}
.news-list .item:first-child a{
    border-bottom: 1px solid var(--main-color);
    color: var(--main-color);
}
.news-list .item:first-child a:hover{
	color:var(--accent-color2);
	border-bottom: 1px solid #CCC;
}
.news-list .item:last-child {
    border-bottom: none;
    padding: 10px 10px 0 10px;
}
.news-list .item .date{
	margin: 0;
	min-width: 120px;
	font-size: 16px;
	color: var(--main-color);
	padding: 0 20px 0 0;
}
.news-list .item .title{
	margin: 0;
	width: 100%;
    font-weight: bold;
}
.news-list .item .details{
    margin: 15px 0 0 0;
	width: 100%;
}

@media screen and (max-width: 767px){
	.news-list .item{
		flex-wrap: wrap;
		/*padding: 0px 0px;*/
	}
	.news-list .item .date{
		min-width: 100px;
	}
}

.new-icon {
    display: inline-block;
    font-size: 11px;
    font-weight: bold;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    background-color: var(--accent-color1);
    padding: 2px 5px;
    margin-right: 12px;
    border-radius: 3px;
    vertical-align: middle;
    width: 70px;
    text-align: center;
}

/* 日付の表 */
.news_time-table {
	width: 100%;
	border-collapse: collapse;
    margin: 1em 0;
	font-size: 15px;
	line-height: 1.6em;
}

.news_time-table th,
.news_time-table td {
	border: 1px solid #ccc;
	padding: 8px 10px;
	text-align: left;
}

.news_time-table td[data-label="日付"] {
	background-color: #f7f7f7;
	/*width: 30%;*/
}

.news_time-table th {
	background-color: #f2f2f2;
	color: #333;
}

@media screen and (max-width: 767px) {
	.news_time-table {
		border: none;
	}

	.news_time-table thead {
		display: none;
	}

	.news_time-table tr {
		display: block;
		border: 1px solid #ccc;
        margin-bottom: 0.5em;
		background-color: #fff;
		overflow: hidden;
	}

	.news_time-table td {
		display: block;
		border: none;
		padding: 6px 10px;
		font-size: 15px;
	}

	.news_time-table td[data-label="日付"] {
		background-color: #f7f7f7;
		font-size: 16px;
		width: 100%;
	}

	.news_time-table td[data-label="営業時間"] {
		color: #333;
		padding-top: 4px;
	}

}
