@charset "UTF-8";


/*=======================================================*/
/*      		セクション毎のCSS   			  		  */
/*======================================================*/


/*======= 共通 ======*/

/* 親要素からはみ出して画面いっぱいに */
.full {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}


/*タイトル(共通)*/
.spot-heading01{
	font-size: clamp(40px,6vw,70px);
	/* font-style: italic; */
	text-align: center;
	/* font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; */
	font-family: "Dancing Script", cursive;
  	font-weight: 400;
	color:#2d2d2d;
}
.spot-heading01::first-letter {
	color: var(--main-color)
  }

  .spot-heading02-img {
	width: 50%;
    margin: 5px auto 0 auto;
  }

.spot-heading02{
	font-size: clamp(24px, 2.7vw, 28px);
    line-height: 1.5em;
    font-weight: 700;
    text-align: center;
    min-height: 0vw;
    color: #444;
	padding-bottom: 0.5em;
	font-family: "Zen Kaku Gothic New", serif;
	font-weight: 600;
	font-style: normal;
}
.spot-heading02+p{
    margin-top: 0.5em;
    margin-bottom: 1.5em;
    font-size: 15px;
    inline-size: fit-content;
    margin-inline: auto;
}
.line{
	width: 1px;
	height: auto;
	padding-top: clamp(20px,6vw,30px);
	background-color: #2d2d2d;
	margin: 0% auto;
	margin-bottom: 2%;
}
.line2{
	width: 1px;
	height: auto;
	padding-top: 5.8%;
	background-color: #FFF;
	margin: 1.9607% auto;
}
  
/*======= FONT ======*/
/*英字*/
.heading06::before 
 {
    font-family: "Zen Kaku Gothic New", serif;
    font-weight: 700 !important;
    font-style: normal;
	z-index: -1;
}

.heading,
.heading14::before,
.heading-decoration_c + p,
.heading-decoration + p,
.heading-decoration_nl + p,
.heading-decoration_lg + p
 {
    font-family: "Zen Kaku Gothic New", serif;
    font-weight: 700 !important;
    font-style: normal;
}

/*日本語*/
@media (min-width: 769px) {
    .nav ul {
        font-family: "Zen Kaku Gothic New", serif;
        font-weight: 600 !important;
        font-style: normal;
    }
}

@media (max-width: 768px) {
    .nav ul {
        font-family: "Zen Kaku Gothic New", serif;
        font-weight: 600 !important;
        font-style: normal;
    }
}

.heading06,
.heading span,
.spot-heading02,
.heading-decoration,
.flow01 > li dl dt,
.greeting-card__item H4,
.sec1-card__item H4,
.heading-decoration2,
.sec2__title ,
.sec2__catch01,
.sec2__subtitle,
.heading-decoration_nl,
.heading-decoration_c,
.heading-decoration_lg,
.card__item H4
 {
    font-family: "Zen Kaku Gothic New", serif;
    font-weight: 600 !important;
    font-style: normal;
}



/*======= TOP ======*/
/*ご挨拶*/
.greeting {
	/* padding: clamp(40px, 6vw, 90px) 0 var(--v-space) ; 初期値 BNRsectionがないときはこちら*/
	padding: clamp(40px, 6vw, 90px) 0 0 ;
	background-color: var(--base-color);
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.greeting-spot {
	color: var(--accent-color1);
	font-size: 1.2em;
}

p.grp{
	font-size: clamp(13px, 1.3vw, 14px);
	line-height: 1.3;
	margin: 0 auto;
	width: fit-content;
	color: #666;
}

.lead-copy {
    text-align: center;
    font-size: clamp(24px, 3vw, 40px); /* 最小24px、最大40pxにアップ */
    font-family: "Zen Kaku Gothic New", serif;
    font-weight: 900;
    font-style: normal;
    margin: 1.5rem auto 0.3rem auto;
    line-height: 1.3;                   /* 行間を少し詰めて存在感を出す */
    color: var(--main-color);
    letter-spacing: 0.05em;
}


/* 親コンテナ */
.bnr_syuttyou {
	width: 95%;
	max-width: 1200px;
	margin: 0 auto;
	border: 10px solid var(--accent-color5);
	margin-bottom: var(--v-space2);
	box-sizing: border-box;
}

/* picture */
.bnr_syuttyou picture {
	display: block;
	width: 100%;
}

/* 画像 */
.bnr_syuttyou img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
}

/* 画面幅600px以下 */
@media (max-width: 600px) {
	.bnr_syuttyou {
		width: 85%;
	}
}


/*======= BNR section ======*/

.bnr_sec1 {
	padding: var(--v-space) 0 var(--v-space);
	position: relative;
	z-index: 1;
	background-color: #d2dae120;
}
.bnr_sec1::before {
	content: "";
	position: absolute;
	top: -5px;
	left: 0;
	width: 100%;
	height: 60px;
	background-color: var(--base-color);
	clip-path: polygon(0 0, 50% 100%, 100% 0); /* ▼ 谷型 */
	z-index: 2; /* 上にかぶせる */
}

/*カード*/
.greeting-card__item{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px auto 50px auto;
    align-items: stretch;
    width: 80%;
}
.greeting-card__item img{
    width: 80%;
}
@media only screen and (max-width: 968px) {
	.greeting-card__item{
		display: grid;
		gap:20px;
		margin: 30px auto 50px auto;
		align-items: stretch; /* 追加 */
		width: 95%;
	}
}
@media only screen and (max-width: 668px) {
	.greeting-card__item{
		display: grid;
        gap: 15px;
        grid-template-columns: repeat(2, 1fr);
        margin: 30px auto 50px auto;
        align-items: stretch;
        width: 95%;
	}
	.greeting-card__item img{
        width: 60%;
	}
}

.greeting-card__item div{
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 20px;
    border: 5px solid var(--main-color);
    box-shadow: 10px 10px 0 0 rgba(0, 0, 0, .08);
}

.greeting-card__item H4{
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.5;
    text-align: center;
    min-height: 30px;
    color: var(--main-color);
    margin: 0 0 10px 0;
}

.greeting-card__item p {
	font-size: 15px;
	line-height: 1.5;
	text-align: justify;
	padding: 20px 20px 15px 20px;
	min-height: 60px; /* 目安の高さを指定 */
}

/*TELバナー*/
.tel_bnr{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 10px;
	grid-row-gap: 10px;
	padding: 30px 0 20px 0;
}
@media (max-width: 568px) {
	.tel_bnr{
		grid-template-columns: repeat(1, 1fr);
	}
}

/*======= コンテンツ ======*/


/*======= ABOUT ======*/
/*section1*/
.sec1 {
	padding: var(--v-space) 0;
    background-color: #fff;
	background-image: url(../img/bg_01.png);
    background-size: cover;
    background-position: bottom right;
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

/*カード*/
.card__item{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap:35px;
}
@media only screen and (max-width: 968px) {
	.card__item{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 568px) {
	.card__item{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
}
.card__item div.kakomi{
	display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    background-color: #fff;
    border-radius: 13px;
    box-sizing: border-box;
    z-index: 1;
    border: 5px solid var(--accent-color3);
    box-shadow: 10px 10px 0 0 rgba(0, 0, 0, .08);
}
.card__item div.cardtext {
    padding: 0 10px;
}
.card__item H4{
    padding: 5px 0 17px 0;
    font-size: clamp(20px, 2vw, 30px);
    line-height: 1.5;
    text-align: center;
    border-bottom: 3.5px dotted var(--main-color);
    letter-spacing: 0.05em;
}
.card__item p{
    line-height: 1.5;
    text-align: center;
    padding: 20px 0 5px 0;
}
.card__item img {
	border-radius: 10px 10px 0 0;
	z-index: 0;  /* 画像は背面に */
}

/*info 写真*/
.info__item {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

@media only screen and (max-width: 768px) {
	.info__item {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
}

.info-img {
	text-align: center;
	margin: 0;
}

.info-img img {
	width: 100%;
	height: auto;
	display: block;
}

.info-img figcaption {
	font-size: 0.85rem;
	color: #555;
	margin-top: 8px;
}


/*======= RECYCLE ======*/

/*section2*/
.sec2 {
	padding: var(--v-space) 0;
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
    background-color: #f7f7f7;
}

/* フルワイド2カラム */
.bg-sec2 {
	padding: 0;
}

.sec2-container {
	display: flex;
	flex-direction: row;
	align-items: stretch;
}

.sec2-container.reverse {
	flex-direction: row-reverse;
}
.sec2-image {
	width: 50%;
	min-height: 500px;
	background-size: cover;
	background-repeat: no-repeat;
    background-position: bottom center;
	flex-shrink: 0;
}

.sec2-text {
	width: 50%;
	padding: 100px;
	box-sizing: border-box;
}

.sec2-text p {
	inline-size: fit-content;
	margin-inline: auto;
}

@media only screen and (max-width: 1100px) {
	.sec2-container {
		flex-direction: column;
	}

	.sec2-container.reverse {
		flex-direction: column;
	}

	.sec2-image {
		width: 100%;
		height: 400px;
		min-height: auto;
	}

	.sec2-text {
		width: 100%;
		padding: clamp(45px, 7vw, 60px) 40px;
	}
}

@media only screen and (max-width: 568px) {
	.sec2-image {
		height: 300px;
	}

	.sec2-text img {
		display: block;
		width: 60%;
		margin: 0 auto;
	}
}

/* =========================
	背景画像
========================= */
.sec2-bg01 {
	background-image: url(../img/recycle_01.jpg);
}

.sec2-bg02 {
	background-image: url(../img/recycle_02.jpg);
}



/*======= ITEM ======*/

/*section3*/
.sec3 {
	padding: var(--v-space) 0;
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
    background-color: #e6b80050;
}

.item-group {
	margin-top: 16px; /* 少し詰める */
}

.item-block {
	margin-bottom: 8px; /* 下の余白を短く */
	padding: 5px 14px;
	background: #f6f6f6;
	border-radius: 6px;
}

.item-block h4 {
	margin-bottom: 4px; /* 見出し下の余白を短く */
	font-size: 1rem;
	font-weight: bold;
}

.item-block p {
	margin: 0;
	font-size: 0.85rem;
    line-height: 1.2;
}


.sec4 {
    padding: var(--v-space) 0;
    background-color: #FFF;
    background-image: url(../img/bg_02.png);
    background-size: cover;
    background-position: bottom;
    position: relative;
    z-index: 1;
}


/*======= FAQ ======*/
.faq_sec1 {
	padding: var(--v-space) 0;
	background-color: #FFF;
	position: relative;
	z-index: 1;
}

.faq2 {
	/*display: flex;*/
	flex-direction: column;
	gap: 10px;
}

.faqItem {
	display: grid;
	grid-template-columns: 2em 1fr;
	align-items: flex-start;
    column-gap: 0;
}

.faqItem .label {
	font-weight: bold;
	color: var(--main-color);
	font-size: 130%;
	line-height: 1.4;
}

.faqItem .labelA {
	font-weight: bold;
	color: var(--accent-color3);
	font-size: 130%;
	line-height: 1.4;
}

.faq2 p {
	margin-top: 5px;
	line-height: 1.5;
    letter-spacing: 0.06em;
	text-align: left;
	display: block;
}

.faq2 p.b {
	font-weight: bold;
	color: #444;
}

hr.faqHr {
	height: 0px;
	border: 1px dashed var(--accent-color3);
	margin: 20px auto;
}


/*======= 会社案内ページ ======*/
/*会社案内*/
.info_sec1{
	padding: var(--v-space) 0;
	background-color: #f7f7f7;
    background-image: repeating-linear-gradient(0deg, #e6e6e6 0, #e6e6e6 1px, transparent 1px, transparent 10px), repeating-linear-gradient(90deg, #e6e6e6 0, #e6e6e6 1px, transparent 1px, transparent 10px);
    background-size: 10px 10px;
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}


/* 概要・アクセス部分のテーブル */
.info1 {
	font-weight: bold;
    border-bottom: 1px dashed var(--accent-color3);
	padding: 5px;
	width: 5.25em;
	line-height: 1.5;
    letter-spacing: 0.06em;
}
.info2 {
    border-bottom: 1px dashed var(--accent-color3);
	padding: 5px;
	width: 400px;
    line-height: 1.5;
    letter-spacing: 0.06em;
}
@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);
	}
}

/*営業時間*/
.kome {
    background-color: #7d955580;
    padding: 2px 6px;
    font-size: 16px;
    box-sizing: border-box;
    margin: 5px 5px 5px 0;
    display: inline-block;
    width: fit-content;
    /*min-width: 170px;*/
}

.b-hours {
	display: flex;				/* 横並びにする */
	align-items: center;			/* 高さを揃える */
	white-space: nowrap;
	margin-bottom: 2px;
}

.day {
	background-color: #d9d9d9;
	/* font-weight: bold; */
	padding: 2px 6px;
    font-size: 16px;
	min-width: 180px;				/* 横幅を固定（全行で共通） */
	box-sizing: border-box;			/* paddingを含めた幅にする */
}

.time {
	font-size: 16px;
	margin-left: 0.5em;		/* dayとの余白 */
}

/*会社概要*/
.bg_b{
	background: rgba(255, 255, 255, 0.9);
	padding:40px;
	border-radius: 20px;
}
@media screen and (max-width: 568px) {
	.bg_b {
		padding: 20px;
	}
}


/*写真入りレイアウト*/
	.company-info-wrapper {
		display: grid;
		grid-template-columns: 3fr 2fr;	/* PC幅：表3・写真2の割合で横並び */
		gap: 20px;
		align-items: start;
	}

	.company-info-table {
		width: 100%;
		border-collapse: collapse;
	}

	.company-photo {
		width: 100%;
		max-width: 400px;
		height: auto;
	}

	@media screen and (max-width: 868px) {
		.company-info-wrapper {
			grid-template-columns: 1fr;	/* スマホ・タブレットでは縦並び */
		}
		.company-photo {
			margin-top: 20px;	/* 表と画像の間に余白を追加 */
		}
	}


/*======= GROUP ======*/
.info_sec2 {
	padding: var(--v-space) 0;
	background-color: #f7f7f7;
    background-image: repeating-linear-gradient(0deg, #e6e6e6 0, #e6e6e6 1px, transparent 1px, transparent 10px), repeating-linear-gradient(90deg, #e6e6e6 0, #e6e6e6 1px, transparent 1px, transparent 10px);
    background-size: 10px 10px;
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

/* カード2　全体 */
.group-wrap{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 35px;
}
.group {
	padding: clamp(15px, 7vw, 20px) 0;
}
.group--one{
	grid-column: span 1;
}
.group--two{
	grid-column: span 2;
}
.group-inner{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 35px;
}
.group-title{
	margin-bottom: 15px;
}

@media only screen and (max-width: 968px) {
	.group-wrap{
		grid-template-columns: 1fr;
	}
	.group--one,
	.group--two{
		grid-column: auto;
	}
	.group-inner{
		grid-template-columns: 1fr;
	}
}


/*カード2*/
.card-group {
	margin-bottom: 50px;
}

.group-title {
	font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 10px;
    border-left: 4px solid var(--accent-color3);
    background-color: #fff;
}

.group-title.green {
    border-left: 4px solid var(--main-color);
}


.card__item2{
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap:20px;
}
@media only screen and (max-width: 968px) {
	.card__item2{
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
}
@media only screen and (max-width: 568px) {
	.card__item2{
		grid-template-columns: repeat(1, 1fr);
	}
}

.card__item2.kakomi {
    display: grid;
    /*grid-template-rows: subgrid;
    grid-row: span 3;*/
    padding: clamp(20px, 5vw, 25px);
    background: #fff;
    border: 5px solid var(--accent-color3);
    border-radius: 12px;
    box-sizing: border-box;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
    box-shadow: 10px 10px 0 0 rgba(0, 0, 0, .08);
}

.card__item2.kakomi.green{
    background: #fff;
    border: 5px solid var(--main-color);
}

.card__item2 div.cardtext {
	padding: 0;
}

.card__item2 h4{
	font-size: clamp(24px, 2.7vw, 28px);
    line-height: 1.5em;
    font-weight: 700;
    text-align: center;
    min-height: 0vw;
    color: #444;
	padding-bottom: 0.5em;
	font-family: "Zen Kaku Gothic New", serif;
	font-weight: 600;
	font-style: normal;
}

.card__item2 p{
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
    padding: 20px 0 5px 0;
    margin: 0 auto;
}

.card__item2 img {
	z-index: 0;
}

.w_icon {
	width: 2.25em;
	padding: 5px 5px 5px 0;
}

/* テーブル */
.ci-table {
	border-collapse: collapse;
	width: 100%;
	font-family: sans-serif;
}

.ci-table td {
	padding: 5px;
	border-bottom: 1px dashed var(--accent-color3);
	letter-spacing: 0.06em;
	line-height: 1.5;
	vertical-align: middle;
}

.ci-label {
	font-weight: bold;
    width: 2.25em;
	text-align: center;
}

.ci-content {
	width: 400px;
}

.ci-icon {
	width: 24px;
	height: 24px;
}




/*======= ACCESS アクセス ======*/

.access_sec1{
	padding: var(--v-space) 0;
	background-color: #FFF;
	
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

/* アクセス部分のテーブル */
.access1 {
	font-weight: bold;
	border-bottom: 1px dashed var(--accent-color3);
	padding: 5px;
	width: 5.25em;
}
.access2 {
	border-bottom: 1px dashed var(--accent-color3);
    padding: 5px;
    width: 400px;
    line-height: 1.5;
    letter-spacing: 0.06em;
}

@media screen and (max-width: 568px) {
	.access1 {
		display: block;
		padding: 8px 2px 2px 2px;
		width: 100%;
		border-bottom: 1px solid rgba(255,255,255,0);
	}
	.access2 {
		display: block;
		padding: 2px;
		width: 99%;
	}
}



/*======= リスト ======*/
@media (max-width: 1024px) {
	ul.sidelist2 li {
		font-size: 13px;
		padding: 5px 4px;
	}
}

ul.sidelist2 li {
    box-sizing: border-box;
    list-style-type: none;
    float: left;
    --widthA: calc(100% - 10px);
    --widthB: calc(var(--widthA) / 2);
    width: var(--widthB);
    margin: 2.5px 5px 2.5px 0;
    text-align: left;
    text-decoration: none;
    font-size: 15px;
    padding: 5px;
	color: --txt-color;
    border: dashed 1px var(--main-color);
    background: #fff;
}

 .mb-20 {
	margin-bottom: 20px !important;
 }

 .cleafix {
	content: '';
    display: block;
    clear: both;
    padding-top: 20px;
 }


/*======= 電話 ======*/
 .sec3-heading {
    display: flex
;
    justify-content: center;
    align-items: center;
    font-size: clamp(14px, 1vw, 18px);
    text-align: center;
    border: 0;
    color: var(--txt-color);
    margin: 10px;
}

.sec3-heading::before {
    margin-right: 30px;
    transform: rotate(-35deg);
    content: '';
    width: 1px;
    height: 40px;
    background-color: var(--main-color);
}

.sec3-heading::after {
    margin-left: 30px;
    transform: rotate(35deg);
    content: '';
    width: 1px;
    height: 40px;
    background-color: var(--main-color);
}

a.btn_01 {
    display: block;
    text-align: center;
    text-decoration: none;
    position: relative;
    width: 90%;
    margin: 0 auto;
    padding: 1rem 1rem;
    font-size: small;
    color: var(--base-color);
    background: var(--accent-color1);
    transition: 0.3s ease-in-out;
}

a.btn_01::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border: 1px solid var(--accent-color2);
    transition: 0.2s;
}
@media (max-width: 865px) {
	a.btn_01 {
		width: 70%;
	}
}
@media (max-width: 568px) {
	a.btn_01 {
		width: 90%;
	}
}

/*======= 調整 ======*/
.l-c {
    margin-right: auto;
    margin-left: auto;
}

.img-waku {
    border: 10px solid var(--main-color);
    margin-bottom: var(--v-space2);
}

.img-shadow {
	box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
}

.img-round {
	border-radius: 25px;
}

.highlight {
	color: var(--accent-color4);
    font-weight: 900;
}

.highlight2 {
    background-color: var(--accent-color3);
    color: #fff;
    padding: 0 4px;
    border-radius: 4px;
}