@charset "UTF-8";


/*=======================================================*/
/*      		セクション毎のCSS   			  		  */
/*======================================================*/


/*======= 共通 ======*/

/* 親要素からはみ出して画面いっぱいに */
.full {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}

/*タイトル(共通)*/
.spot-heading01{
	font-size: clamp(40px,6vw,60px);
	font-style: italic;
	text-align: center;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.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;
}
.spot-heading02+p{
	margin-top: 0.5em;
	margin-bottom: 1em;
	font-size: clamp(17px, 2.7vw, 25px);
	font-weight: bold;
	inline-size: fit-content;
	text-align: center;
	margin-inline: auto;
	font-family: 'YakuHanJPs','Noto Sans Japanese',sans-serif,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "MS Pゴシック", "MS PGothic", Arial,Helvetica, Verdana;
}
.line{
	width: 1px;
	height: auto;
	padding-top: 5.8%;
	background-color: #2d2d2d;
	margin: 1.9607% auto;
}
.line2{
	width: 1px;
	height: auto;
	padding-top: 5.8%;
	background-color: #FFF;
	margin: 1.9607% auto;
}

.hline {
	display: inline-block;
	width: 40px; /* 横棒の長さ（調整可） */
	height: 1px; /* 横棒の太さ（調整可） */
	background-color: #2d2d2d; /* 横棒の色 */
	vertical-align: middle;
	margin: 0 0.5em; /* 文章と横棒の間隔 */
}

/*======= TOP ======*/
/*ご挨拶*/
.greeting {
	padding: clamp(40px, 6vw, 90px) 0 var(--v-space) ;
	background-color: var(--base-color);
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
.greeting-haba{
	max-width: 950px;
	margin: 0 auto;
	padding: 2% 0 0 0;
}
.top-card__item{
	display: grid;
	grid-template-columns: 0.59fr 2fr;
	gap:5px;
}
@media (max-width: 568px) {
	.top-card__item{
		display: grid;
		grid-template-columns: 1fr;
		gap:5px;
	}
	.img-width-sp{
		width: 200px;
	}
}
.top-card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 2;
	/* margin-bottom: 20px; */
	/*ここまで*/

}
.top-card__item p{
	text-align: center;
	font-size: 12px;
}
.top-card__item img{
	margin: 0 auto;
}


/*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);
	}
}


/*======= 弊社の特徴 ======*/
.sec1 {
	padding: var(--v-space) 0;
	background-color: #b5dcf5;
	background-image: url(../img/bg_01.jpg);
	background-size: 100%;
	background-position: bottom;
	background-repeat: no-repeat;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
@media only screen and (max-width: 568px) {
	.sec1 {
		background-image: url(../img/bg_01_sp.jpg);
	}
}


/*======= 業務内容 ======*/
.sec2 {
	padding: var(--v-space) 0;
	background-color: #FFF;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

/*======= 求人について ======*/
.sec3 {
	padding: var(--v-space) 0;
	background-color: #FFF;	
	background-image: url(../img/bg_02.jpg);
	background-size: cover;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
@media only screen and (max-width: 568px) {
	.sec3 {
		background-image: url(../img/bg_02_sp.jpg);
	}
}

/* 背景括り */
.sec3__contentsbg {
	background: rgba(255, 255, 255, 0.7);
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* ふんわりした影 */
	transition: transform 0.3s ease, box-shadow 0.3s ease; /* 動きに滑らかさを */
}

.sec3__contentsbg:hover {
	transform: translateY(-5px); /* ぴょこっと上に */
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2); /* ホバー時に影を強めに */
}

@media screen and (max-width: 568px) {
	.sec3__contentsbg {
		padding: 30px 15px 15px 15px;
	}
}

.sec3__contentsbg2 {
	background: rgba(0, 77, 79, 0.8);
	padding: 40px;
	border-radius: 10px; /* コメントアウト解除して角を丸く */
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); /* 少し濃い影で浮かせ感アップ */
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sec3__contentsbg2:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35); /* ホバー時により浮かせる */
}

@media screen and (max-width: 568px) {
	.sec3__contentsbg2 {
		padding: 30px 15px 15px 15px;
	}
}

/*======= FAQ ======*/
.faq_sec1 {
	padding: var(--v-space) 0;
	background-color: #f7f7f7;
	
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
div.faq2 p.b {
	font-weight: bold;
	color: #444;
}
div.faq2 p.b::first-letter {
	color: var(--accent-color1);
	font-size: 130%;
}
div.faq2 p {
	margin-top: 5px;
	line-height: 1.4;
	text-align: left;
	text-indent: -1.4em;
	padding-left: 1.4em;
	display: block;
}
div.faq2 p::first-letter {
	color: var(--accent-color2);
	font-size: 130%;
	font-weight: bold;
}
hr.faqHr{
	height: 0px;
	border: 1px dashed #bebebe;
	margin: 20px auto;
}



/*======= 会社案内ページ ======*/

/*会社案内*/
.info_sec1{
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_03.jpg);
	background-size: cover;
	background-position: center bottom;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
@media only screen and (max-width: 568px) {
	.info_sec1 {
		background-image: url(../img/bg_03_sp.jpg);
	}
}

/* 会社案内写真コンテナ */
.info-sec1-container {
	display: grid;
	grid-template-columns: 1fr 350px;
	gap: 10px 10px;
}

.info-sec1-container img{
	margin: 0 auto;
}

@media only screen and (max-width: 1015px) {
	.info-sec1-container {
		grid-template-columns: repeat(1, 1fr);
	}
}

/* 概要部分のテーブル */
.info1 {
	font-weight: bold;
	border-bottom: 1px dashed #999;
	color: var(--main-color);
	padding: 5px;
	/* width: 5.25em; */
	width: 170px;
}
.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: rgba(255, 255, 255, 0.8);
	padding: 40px;
	border-radius: 20px; /* 任意：角を少し丸く */
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bg_b:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

@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; /* 背景画像より上に表示 */ 
}

/* アクセス部分のテーブル */
.access1 {
	font-weight: bold;
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 5.25em;
}
.access2 {
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 400px;
}
@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%;
	}
}



