@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;
}



/*======= コンテンツ ======*/




/*======= Service,サービス案内 ======*/
.secS {
    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;
}
h4.title{
	margin-bottom:0.3em;
	color:#222;
	font-weight:400;
	font-size:1.2em;
}
span.lineno{
	background-color:transparent;
	color:#222;
	font-size:16px;
}
/*======= Recruitment,アルバイト募集中 ======*/
.secR {
	padding: var(--v-space) 0;
    background-color: #FFF;
}


.company2{
	text-align:center;
}



/* フルワイド2カラム */
.bg-secR {
	padding: 0;
}

.secR-container {
	display: flex;
	flex-direction: row;
	align-items: stretch;
}

.secR-container.reverse {
	flex-direction: row-reverse;
}

.secR-image {
	width: 50%;
	min-height: 500px;
	background-size: cover;
	background-repeat: no-repeat;
    background-position: top center;
	flex-shrink: 0;
}

.secR-text {
    width: 50%;
    padding: clamp(45px, 7vw, 60px) 50px;
    box-sizing: border-box;
    z-index: 0;
}

.secR-text p {
	inline-size: fit-content;
	margin-inline: auto;
}

@media only screen and (max-width: 1100px) {
	.secR-container {
		flex-direction: column;
	}

	.secR-container.reverse {
		flex-direction: column;
	}

	.secR-image {
		width: 100%;
		height: 400px;
		min-height: auto;
	}

	.secR-text {
		width: 100%;
		padding: clamp(45px, 7vw, 60px) 40px;
	}
}

@media only screen and (max-width: 568px) {
	.secR-image {
		height: 300px;
	}

	.secR-text img {
		display: block;
		width: 60%;
		margin: 0 auto;
	}
}

/* =========================
	背景画像
========================= */
.secR-bg01 {
	background-image: url(../img/recruitment_01.jpg);
}

/*======= FONT ======*/
/*
.heading06, .heading06-b, .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 Old Mincho", serif;
    font-weight: 700;
    font-style: normal;
}
*/
.heading06-b {
    color: var(--main-color);
    position: relative;
    padding-top: clamp(30px, 4.7vw, 55px);
    padding-bottom: 25px;
    font-size: clamp(25px, 2.7vw, 30px);
    text-align: center;
    font-family: "Zen Kaku Gothic New", serif;
    font-weight: 500;
    font-style: normal;
    margin-bottom: 10px;
    z-index: 1;
}

/*英字*/
.heading06::before,
.heading06-b::before 
 {
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.01em;
	z-index: -1;
}

.heading06-b::before {
    content: attr(data-en);
    position: absolute;
    top: -5%;
    left: 50%;
    transform: translateX(-50%);
    color: #887C8230;
    font-size: clamp(36px, 5.4vw, 63px);
    letter-spacing: 0.1em;
    z-index: -1;
}








/*======= FAQ ======*/

.secF{
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_02.jpg);
	background-size:cover;
	background-position: bottom;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}


.secF::before {
    content: "";
    position: absolute;
    inset: 0; /* top:0;right:0;bottom:0;left:0 */
    background-color: rgba(255, 255, 255, 0.8); /* 白を60%透過 */
    z-index: -1; /* 背景の下に置く */
}


.faq_sec1 {
	padding: var(--v-space) 0;
	background-color: #fff;

	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: var(--main-color);
}

.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_01.jpg);
	background-size:cover;
	background-position: bottom;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.info_sec1::before {
    content: "";
    position: absolute;
    inset: 0; /* top:0;right:0;bottom:0;left:0 */
    background-color: rgba(255, 255, 255, 0.6); /* 白を60%透過 */
    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(34,73,113, 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; /* 背景画像より上に表示 */ 
}

@media screen and (min-width: 601px) { 
	img.sponly{
		display:none;
	}
}

@media screen and (max-width: 600px) { 
	img.sponly{
		margin-bottom:20px !important;
	}
}


@media screen and (max-width: 600px) { 
	.sponly2{
		display:none !important;
	}
}




/*------画像セットここから-----------*/

/* コンテナ設定 */
.if-item-container {
	display: flex;
	flex-wrap: wrap; /* 折り返し可能に */
	gap: 16px;       /* アイテム間の余白 */
	justify-content: flex-start; /* PCは左寄せ */
}
@media screen and (max-width: 568px) { 
	.if-item-container {
		gap: 10px;       /* アイテム間の余白 */
	}
}


/* アイテム */
.if-item {
	flex: 1 1 calc(20% - 16px); /* 3列表示、gap分を差し引く */
	max-width: calc(20% - 16px);
	text-align: center; /* タイトル中央 */
}

.if-item H3{
	font-weight: 500 !important;
	font-style: normal;
	margin-top:0.4em;
}

@media screen and (max-width: 568px) { 
	.if-item H3{
		font-size:14px;
	}
}


.if-item figure img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* 中央を維持しつつ切り抜き */
}

/* タブレット縦・スマホ */
@media (max-width: 1024px) {
	.if-item {
		flex: 1 1 calc(33.33% - 16px); /* 2列に変更 */
		max-width: calc(33.33% - 16px);
	}
	.if-item-container {
		justify-content: center; /* 最後の1個を中央に */
	}
}

@media (max-width: 600px) {
	.if-item {
		flex: 1 1 calc(50% - 6px); /* 2列に変更 */
		max-width: calc(50% - 6px);
	}
	.if-item-container {
		justify-content: center; /* 最後の1個を中央に */
	}
}

/*------画像セットここまで-----------*/




/*======= 調整 ======*/
.l-c {
    margin-right: auto;
    margin-left: auto;
}


/*その他*/
strong{
	font-weight:normal;
}


