@charset "UTF-8";


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


/*======= TOPページ ======*/
/*ご挨拶*/
.greeting {
    padding: clamp(40px, 6vw, 90px) 0 0 0;
	background-color: var(--base-color);
}

.gr_la {
	font-size: 2.2em;
    margin: 0 3px;
}


/*======= 各ページ遷移バナー ======*/
.gcom_sec1{
	padding: 50px 0 var(--v-space2);
	background-color: #fdfffa;
	background-size: 6px 6px;
	background-image: repeating-linear-gradient(0deg, #e9f5d6, #e9f5d6 1px, #fdfffa 1px, #fdfffa);

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
.group-company {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 30px;
    margin: var(--v-space) auto;
}
@media only screen and (max-width: 567px) {
	.group-company {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		gap: 40px;
	}

}

.group-company > div {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
	background-color: transparent;
}

/* 画像とオーバーレイとテキストを包むラッパー */
.img-wrapper {
	position: relative;
	border-radius: 10px;
	/*aspect-ratio: 1 / 1;*/
	overflow: hidden;
}

/* 画像本体 */
.img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* グラデーションオーバーレイ */
.img-overlay {
	position: absolute;
	inset: 0;
    background: linear-gradient(135deg, rgba(63, 81, 181, 0.7), rgba(85, 133, 165, 0.7), rgba(200, 220, 235, 0.7));	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}

/* ホバーでオーバーレイ表示 */
.img-wrapper:hover .img-overlay {
	opacity: 1;
}

/* 番号 */
.img-wrapper p {
	position: absolute;
    top: 0;
    left: 20px;
    color: #ffffffc7;
    z-index: 2;
    margin: 10px 0 0 0;
    font-family: "Zen Kaku Gothic New", serif;
    font-weight: 500;
    font-style: normal;
    line-height: 1.3em;
    font-size: clamp(22px, 3vw, 28px);
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.9);
}

@media (max-width: 600px) {
	.img-wrapper p {
		font-size: clamp(28px, 8vw, 36px);
	}
}

/* h3 テキスト */
.img-wrapper h3 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #ffffffdc;
	padding: 20px 20px 20px 60px;
	font-size: clamp(16px,2vw,18px);
	font-weight: bold;
	line-height: 1.3;
	text-align: left;
	z-index: 2;
	transition: all 0.3s ease;
	margin: 0;
}

/* 飾り線 */
.img-wrapper h3::before {
	content: "―";
	position: absolute;
	left: 30px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--main-color);
	font-size: 1.2em;
}

/* ホバー時のテキスト変化 */
.img-wrapper:hover h3 {
	background-color: transparent;
	text-align: center;
	color: #fff;
	padding-left: 0;
}

.img-wrapper:hover h3::before {
	content: "→";
	position: absolute;
	right: 30px;
	left: auto;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	font-size: 1.2em;
	font-weight: 300; /* ここで細さを調整 */
}

@media print {
	.group-company {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
		gap: 30px;
	}

	.group-company > div {
		box-shadow: none;
	}

	.img-overlay {
		display: none !important;
	}

	.img-wrapper img {
		width: 100%;
		height: auto;
		object-fit: cover;
	}

	.img-wrapper h3 {
		background-color: #fff;
		color: #000;
		padding-left: 60px;
		text-align: left;
	}

	.img-wrapper h3::before {
		content: "―";
		color: var(--main-color);
	}
}

@page {
	size: auto;
	margin: 20mm;
}



/*======= 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: 0;
	left: 0;
	width: 100%;
	height: 60px;
	background-color: #fff; /* 下にある背景色と合わせる！ */
	clip-path: polygon(0 0, 50% 100%, 100% 0); /* ▼ 谷型 */
	z-index: 2; /* 上にかぶせる */
}

/*カード2*/
.card__item{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap:20px;
}
@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{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	/*ここまで*/

    background-color: #fff;
	box-sizing: border-box;
	z-index: 1;

    /*border: solid 1.5px var(--main-color);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.15); 濃い目の影*/
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1); /*薄めの影*/
}
.card__item div.cardtext {
    padding: 0 20px;
}
.card__item H4{
    padding: 5px 0 20px 0;
    font-size: clamp(18px, 1.8vw, 19px);
    line-height: 1.5;
    text-align: center;
    border-bottom: 2px dotted var(--main-color);
    letter-spacing: 0.05em;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700 !important;
    font-style: normal;
}
.card__item p{
	display: inline-block;
    font-size: 15px;
    line-height: 1.5;
    text-align: justify;
    padding: 20px 0 5px 0;
}
.card__item img {
	z-index: 0;  /* 画像は背面に */
}

@media print {
	.card__item {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}

	.card__item div.kakomi {
		box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
		background-color: #fff;
	}

	.card__item img {
		width: 100%;
		height: auto;
		object-fit: cover;
	}
}


/*TELバナー*/
.tel_bnr{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 10px;
	grid-row-gap: 10px;
}
@media (max-width: 568px) {
	.tel_bnr{
		grid-template-columns: repeat(1, 1fr);
	}
}

/*各ページ遷移バナー*/
.topbnr_sec{
	padding: 30px 0 80px 0;
    background-color: #406f7c1f;
}

.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*/
.eq_sec1 {
	padding: clamp(40px, 4vw, 50px) 0;
	background-color: #fff8e0;
}

/*3つのポイント*/
.eq_sec1-point {
	padding-bottom: 3vw;
}

.eq_sec1-point-container {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 20px 10px;
}

@media (min-width: 568px) {
	.eq_sec1-point-container {
		grid-template-columns: repeat(3, 1fr);
	}
}


/* ３つのポイント */

.eq_sec1-point h3 {
	/*margin: 1em 0 0.5em;*/
	font-size: clamp(20px, 2vw, 25px);
	min-height: 0vw;
	text-align: center;
}

.eq_sec1-point p {
	font-size: clamp(15px, 1.6vw, 16px);
	min-height: 0vw;
}

.eq_sec1-point img {
	/*aspect-ratio: 3 / 2;*/
	object-fit: cover;
	width: 100%;
}

@supports not (aspect-ratio: 3 / 2) {
	.eq_sec1-point img {
		height: 180px;
	}
}

/*section2*/
.eq_sec2::before {
    content: "";
    width: 100%;
    height: 80px;
    background-color: #fff8e0;
    position: absolute;
    top: -1px;
    clip-path: polygon(50% 100%, 100% 0%, 0% 0%);
}
.eq_sec2 {
    padding: var(--v-a-space) 0;
	background: url(../img/bg_01.svg),linear-gradient(180deg, #74B7E2 0%, #E9BFA1 60%, #FCF2BA 100%);
	background-size: 100%,100%;
	background-repeat: no-repeat;
	background-position: center;

    padding-top: 100px;
    padding-bottom: 88px;
    position: relative;
}
@media (max-width: 568px) {
	.eq_sec2 {
		background-position: top;
		background-size: auto,100%;
	}
}


/*section3*/
.eq_sec3 {
	padding: clamp(40px, 3vw, 40px) 0;
	background-color: #FFF;
}
.eq_sec3-img{
	display: grid;
	justify-items: center;
	align-content: center;
	height: 100%;
	width: 100%;
}
.eq_sec3-img img{
	width: 100%;
	max-width: 350px;
	object-fit: cover;
	margin-bottom: 0;
}

/*section4*/
.eq_sec4 {
	padding: clamp(40px, 4vw, 90px) 0;
	background:linear-gradient(180deg, #ffc053 0%, #E9BFA1 60%, #FCF2BA 100%);
}

/*OA機器買取*/
.eq_sec4-haba{
	width:fit-content;
	margin: auto;
	padding: 0;
}
@media (max-width: 768px)  {
	div.eq_sec4-haba{
		margin: 0;
		padding: 0 1%;
	}
}
.eq_sec4-purchase {
	padding-bottom: 3vw;
	background-color: #FFF;
	padding: 20px;
}

.eq_sec4-purchase-container {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 20px 20px;
}

@media (min-width: 568px) {
	.eq_sec4-purchase-container {
		grid-template-columns: repeat(1, 1fr);
	}
}

.eq_sec4-purchase h3 {
	/*margin: 1em 0 0.5em;*/
	font-size: clamp(25px, 2vw, 30px);
	min-height: 0vw;
	text-align: center;
	color: var(--accent-color2);
}

.eq_sec4-purchase p {
	font-size: clamp(15px, 1.6vw, 16px);
	min-height: 0vw;	
	text-align: center;
}

.eq_sec4-purchase img {
	/*aspect-ratio: 3 / 2;*/
	object-fit: cover;
	width: 100%;
}

@supports not (aspect-ratio: 3 / 2) {
	.eq_sec4-purchase img {
		height: 180px;
	}
}

/*吹き出し*/
.eq_sec4-balloon{
    position:relative;
    width:100%;
    box-sizing: border-box;
    height: auto;
    background:var(--accent-color2);
    padding:5px;
    margin-bottom: 15px;
    text-align:center;
    color:#FFFFFF;
    font-size:1em;
    font-weight:bold;
    border-radius:5px;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
}
.eq_sec4-balloon:after{
    border: solid transparent;
    content:'';
    height:0;
    width:0;
    pointer-events:none;
    position:absolute;
    border-color: rgba(207, 61, 71, 0);
    border-top-width:8px;
    border-bottom-width:8px;
    border-left-width:8px;
    border-right-width:8px;
    margin-left: -8px;
    border-top-color:var(--accent-color2);
    top:100%;
    left:50%;
}


/*======= ネットワークセキュリティページ ======*/

/*section1*/
.nw_sec1 {
	padding: clamp(40px, 2vw, 50px) 0;
	background: url(../img/bg_02.svg),linear-gradient(-225deg, #5784B7 0%, #0061A0 60%, #004A8E 100%);
	background-position: right;
	background-repeat: no-repeat;
	background-size: cover;
}
.nw_about {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 10px;
	grid-row-gap: 10px;
}

@media (min-width: 568px) {
	.nw_about {
		display: grid;
		grid-template-columns: 200px 1fr;
		grid-template-rows: 1fr;
		grid-column-gap: 30px;
		grid-row-gap: 10px;
	}
}
/* 画像とテキスト */
.nw_sec1-imgtext {
	padding:clamp(45px, 7vw, 60px) 0;
	background-color: rgba(255, 255, 255, 0);
}

.nw_sec1-imgtext + .nw_sec1-imgtext {
	padding-top: 0;
}

.nw_sec1-imgtext-container {
	display: flex;
	flex-direction: column;
	/*gap: clamp(45px, 6vw, 80px);*/	/* テンプレ初期値 */
	gap: clamp(25px, 6vw, 35px);
}


@media (min-width: 568px) {
	.nw_sec1-imgtext-container {
		flex-direction: row;
		align-items: center;
	}

	.nw_sec1-imgtext-container.reverse {
		flex-direction: row-reverse;
	}

	.nw_sec1-imgtext-container > .nw_sec1-text {
		flex: 1;
		min-width: 17em;
  	}

	.nw_sec1-imgtext-container > .nw_sec1-img {
		/*flex: 2;*/	/* テンプレ初期値 */
		flex: 1.2;
	}
}

/*section2*/
.nw_sec2 {
	padding: clamp(40px, 4vw, 90px) 0;
	background-color: #FFF;
}

/* 下層 */
.nw_sec2-heading{
	font-size: clamp(23px, 2.4vw, 33px);
	min-height: 0vw;
	text-align:center;
	font-weight: 400;
	line-height: 1.3;
	/*color: #26a5b3;*/
	color: #444;
	font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック','MS PGothic',arial,helvetica,clean,sans-serif;
}
.nw_sec2-heading::after {
	display: block;
	content: '';
	width: 160px;
	height: 0px;
	border-top: solid 1px var(--main-color);
	margin-top: 0.2em;
	margin-right:auto;
	margin-left:auto;
}
.nw_sec2-heading + p {
	margin-top: 0.5em;
	margin-bottom: 2em;
	color: #707070;
	text-align:center;
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
}

.nw_sec2-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 5%;
	grid-row-gap: 5%;
}
.nw_sec2-container-item1 { grid-area: 1 / 1 / 2 / 2; }
.nw_sec2-container-item2 { grid-area: 1 / 2 / 2 / 3; }

@media (max-width: 768px) {
	.nw_sec2-container {
		grid-template-columns: repeat(1, 1fr);
	}
	.nw_sec2-container-item1 { grid-area: 1 / 1 / 2 / 2; }
	.nw_sec2-container-item2 { grid-area: 2 / 1 / 3 / 2; }
}

.nw_sec2-content {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: repeat(3, 1fr);
	grid-column-gap: 0px;
	grid-row-gap: 10px;
}
	
	.nw_sec2-content-item1 { 
		grid-area: 1 / 1 / 2 / 2;
		background-color: #f1f1f1;
		padding: 20px;
	}
	.nw_sec2-content-item2 {
		grid-area: 2 / 1 / 3 / 2;
		background-color: #f1f1f1;
		padding: 20px;
	}
	.nw_sec2-content-item3 {
		grid-area: 3 / 1 / 4 / 2;
		background-color: #f1f1f1;
		padding: 20px;
	}


/*======= FAQ ======*/
.faq_sec1 {
	padding: clamp(40px, 3vw, 40px) 0;
	background-color: #f1f1f1;
}
div.faq2 p.b {
	font-weight: bold;
	color: var(--main-color);
}
div.faq2 p {
	margin-top: 5px;
	line-height: 1.4;
	text-align: left;
	text-indent: -1em;
	padding-left: 1em;
	display: block;
}



/*======= 会社案内ページ ======*/
/*会社案内*/
.info_sec1{
	padding: 0px 0 100px 0;
	background-color: #FFF;
}
/* 概要・アクセス部分のテーブル */
.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: #e3e6e8;
	padding:20px;
}

.info_sec2{
	padding: var(--v-space) 0;
	background: linear-gradient(-225deg, #b0e1ff 0%, #fdcfae 60%, #FCF2BA 100%);
}

/*service*/
.info_sec2-service {
	padding-bottom: 3vw;
}

.info_sec2-service-container {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 20px 20px;
}

@media (min-width: 568px) {
	.info_sec2-service-container {
		grid-template-columns: repeat(3, 1fr);
	}
}

.info_sec2-service h3 {
	font-size: clamp(20px, 2vw, 25px);
	min-height: 0vw;
	text-align: center;
	color:var(--accent-color2);
}

.info_sec2-service p {
	font-size: clamp(12px, 1.6vw, 14px);
	min-height: 0vw;
}

.info_sec2-service img {
	/*aspect-ratio: 3 / 2;*/
	object-fit: cover;
	width: 100%;
}

@supports not (aspect-ratio: 3 / 2) {
	.info_sec2-service img {
		height: 180px;
	}
}

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




/*======= お問い合わせページ ======*/





