@charset "UTF-8";


/*=======================================================*/
/*					セクション毎のCSS					  */
/*======================================================*/

/*============ 共通 =========== */

/* 親要素からはみ出して画面いっぱいに */
.full {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}
@media print {
	.full {
		margin: 0;
		width: 100%;
	}
}

.line{
	width: 1px;
	height: auto;
	padding-top: 35px;
	background-color: #222222;
	margin: 1.1% auto;	/*今回のみ*/
}
@media only screen and (max-width: 767px) {
	.line {
		padding-top: 10%;
	}
}
.line2{
	width: 1px;
	height: auto;
	padding-top: 5.8%;
	background-color: #FFF;
	margin: 1.9607% auto;
}
@media only screen and (max-width: 767px) {
	.line2 {
		padding-top: 10%;
	}
}
.hline {
	display: inline-block;
	width: 40px; /* 横棒の長さ（調整可） */
	height: 1px; /* 横棒の太さ（調整可） */
	background-color: #2d2d2d; /* 横棒の色 */
	vertical-align: middle;
	margin: 0 0.1em; /* 文章と横棒の間隔 */
}

/*パンくず*/
.sec_pankuzu{
	padding: 0px;
	background-color: var(--base-color);
	position: relative;
	z-index: 1;
}

/*タグ*/
/* タグ（左右が揃う）  */
.kakomi-tag01 {
	display: flex;
	flex-wrap: wrap; /* 子要素を折り返す */
	gap: 10px;
	width: 100%;
	justify-content: space-between; /* 左右のボックスを揃える */
}
.kakomi-tag01 p {
	background-color: var(--main-color);
	color: #FFF;
	padding: 5px;
	font-size: clamp(14px, 1.3vw, 14px);
	font-family: Arial, sans-serif;
	flex-grow: 1; /* ボックスのサイズを自動調整 */
	min-width: 50px; /* ボックスの最小幅を設定 */
	box-sizing: border-box;
	text-align: center; /* 水平方向の中央揃え */
	border-radius: 5px;
}
.kakomi-tag01 .end{		/* などを末尾につけたい場合に */
	background-color:transparent;
	color:var(--txt-color);
	padding: 5px;
	font-size: clamp(14px, 1.3vw, 14px);
	font-family: Arial, sans-serif;
	width: 20px;
	min-width: 40px; /* ボックスの最小幅を設定 */
	box-sizing: border-box;
	text-align: right; /* 水平方向の中央揃え */
}

/* タイトル */
/*中央寄せ*/
.spot-heading01 h2 {
	position: relative;
	font-size: clamp(28px, 2.4vw, 35px);
	position: relative;
	text-align: center;
	color:#333;
	font-weight: 400;
	margin-bottom: 5rem;
}

.spot-heading01 p {
	font-size: clamp(17px, 2vw, 20px);
	display: block;
	text-align: center;
	text-transform: uppercase;
	padding: 1.5rem 0 0 0;
	line-height: 1;
	font-weight: 600;
	/* グラデ背景 */
	background: linear-gradient(90deg, #2e67da, #1a1164);
	/* 文字に背景をクリップ */
	-webkit-background-clip: text;
	background-clip: text;
	/* 文字色を透明にして背景を見せる */
	color: transparent;
	/* Chrome/Safari用の補助 */
	-webkit-text-fill-color: transparent;
}
@media print {
	.spot-heading01 p {
		background: none !important;
		-webkit-background-clip: initial !important;
		-webkit-text-fill-color: initial !important;
		-webkit-background-clip: text;
		background-clip: text;
		color: #1a1164 !important;
		/* お好みの単色に */
	}
}

.spot-heading01 h2:before {
	position: absolute;
	bottom: -30px;
	left: calc(50% - 30px);
	width: 60px;
	height: 6px;
	content: '';
	/* border-radius: 3px; */
	background: var(--accent-color1);
}

/* 特徴リスト */
.feature-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 25px;
}
.feature-item {
	text-align: center;
	background-color: #f1f1f1;
	border-radius: 10px;
	padding: 2px;
	border-left: 3px solid var(--accent-color2);
	border-right: 3px solid var(--accent-color2);
	border-radius: 8px;
}
.feature-item img {
	width: 50px;
	margin-bottom: 10px;
}
.feature-item p {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--accent-color2);
}
@media only screen and (max-width:768px){
	.feature-list { grid-template-columns: 1fr; }
}

/* =======================
   spot: フルブリード画像 × テキストカード
   ======================= */

.full_imgtext {
	position: relative;
	padding:  clamp(48px, 6vw, 72px) 0;
	overflow-x: clip;
	overflow-x: hidden;
}


/* レイアウト：PCは画像＋カードの2エリア／SPは縦積み */
.full_imgtext .full_imgtext__grid{
	display: grid;
	grid-template-areas:
		"media"
		"card";
}

/* 画像：フルブリード（ビューポートいっぱいに突き抜け） */
.full_imgtext .full_imgtext__media{
	grid-area: media;
	position: relative;
	margin: 0 calc(50% - 50vw);
	width: 100vw;
	height: clamp(260px, 40vh, 800px);
	overflow: hidden;
	z-index: 0;
}

/* 横幅は svw で安定化（対応ブラウザのみ） */
@supports (width: 100svw){
	.full_imgtext .full_imgtext__media{
		margin: 0 calc(50% - 50svw);
		width: 100svw;
	}
}

/* 高さは svh で安定化（対応ブラウザのみ） */
@supports (height: 1svh){
	.full_imgtext .full_imgtext__media{
		height: clamp(260px, 40svh, 800px);
	}
}
/* スマホ幅（～767px）は高さを aspect-ratio で固定 */
@media only screen and (max-width: 767px){
	.full_imgtext .full_imgtext__media {
		height: auto !important;       /* vh依存をやめる */
		aspect-ratio: 4 / 3;          /* 好みで 4/3 や 21/9 に変更可 */
	}
}

.full_imgtext .full_imgtext__media img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* 画像上の装飾テキスト（任意） */
/* === 文字オーバーレイ（親基準）。画像に切られない === */
.full_imgtext .full_imgtext__deco{
	position: absolute;
	/* フルブリード幅に合わせる：左右をビューポートいっぱいへ */
	left: calc(50% - 50vw);
	right: calc(50% - 50vw);
	/* 下寄せ（SPほど少し上げる） */

	/* レイヤリング */
	z-index: 1;
	pointer-events: none;

	/* タイポ */
	text-align: center;
	font-family: "Noto Serif JP", serif;
	font-size: clamp(22px, 4vw, 56px);
	line-height: 1.1;
	letter-spacing: .06em;
	color: #FFF;
	text-shadow: 0 2px 22px rgba(0,0,0,.65);

	/* 折返し挙動（スマホで細切れにならない設定） */
	white-space: normal;
	word-break: keep-all;
	overflow-wrap: normal;
	text-wrap: pretty; /* 対応ブラウザで自然な改行 */
}
@supports (width: 100svw){
	.full_imgtext .full_imgtext__deco{
		left: calc(50% - 50svw);
		right: calc(50% - 50svw);
	}
}

/* デスクトップ：カード重ねの手前で文字が埋もれないように */
@media print, screen and  (min-width: 992px){
	.full_imgtext .full_imgtext__deco{
		bottom: clamp(20px, 10vw, 100px);
	}
}
/* タブレット幅（568px〜991px）のとき */
@media print, screen and  (min-width: 568px) and (max-width: 991px){
	.full_imgtext .full_imgtext__deco{
		bottom: 45%; /* 好きな値に調整 */
		font-size: clamp(20px, 4.5vw, 40px); /* 中間サイズ */
	}
}
/* スマホ：見切れ対策で少し上げ、文字サイズを微調整 */
@media only screen and (max-width: 567px){
	.full_imgtext .full_imgtext__deco{
		top:clamp(260px, 35vh, 800px);
		font-size: clamp(20px, 5.6vw, 32px);
		letter-spacing: .02em;
	}
}


/* カード：白・影・角丸。PCでは画像にオーバーラップ */
.full_imgtext .full_imgtext__card{
	grid-area: card;
	max-width: min(900px, 95%);
	margin-inline: auto;
	background: #fff;
	box-shadow: 0 10px 28px rgba(0,0,0,.12);
	padding: clamp(20px, 3.6vw, 36px) clamp(20px, 3.6vw, 40px);
}

.full_imgtext .full_imgtext__title{
	font-size: clamp(21px, 2.6vw, 32px);
	font-weight: 700;
	letter-spacing: .06em;
	margin: 0 0 .6em;
	font-family: "Zen Old Mincho", serif;
	font-weight: 700 !important;
}
.full_imgtext .full_imgtext__lead{
	font-size: clamp(15px, 1.4vw, 16px);
	line-height: 2;
	text-align: justify;
	margin: 0;
}

/* ====== PC配置：画像とカードを2カラムに。カードは右寄せで重ねる ====== */
@media print, screen and  (min-width: 992px){
	.full_imgtext .full_imgtext__media{
		height: clamp(260px,70vh, 800px);
	}
	.full_imgtext .full_imgtext__grid{
		grid-template-columns: 1fr min(50%, 800px);
		grid-template-areas: "media card";
		align-items: center;
	}

	/* カードをやや上に重ねる（オーバーラップ感） */
	.full_imgtext .full_imgtext__card{
		margin-right: clamp(20px, 5vw, 72px);
		margin-left: 0;
		transform: translateY(-8%);
	}

	/* 反転レイアウト */
	.full_imgtext .full_imgtext__grid.is-reverse{
		grid-template-columns: min(50%, 800px) 1fr;
		grid-template-areas: "card media";
	}
	.full_imgtext .full_imgtext__grid.is-reverse .full_imgtext__card{
		margin-left: clamp(20px, 5vw, 72px);
		margin-right: 0;
	}
}

@media print{
	.full_imgtext .full_imgtext__media{
		height: 500px;
	}
	.full_imgtext .full_imgtext__deco {
		bottom: 15%;
	}
}

/*======= TOPページ ======*/
/*ご挨拶*/
.greeting {
	padding: clamp(40px, 6vw, 90px) 0;
	background-color: #FFF;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
.greeting-haba{
	margin: 0 auto;
	max-width: 900px;
	padding: 2% 0 0 0;
}


/*TELバナー*/
.tel_bnr{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 10px;
}
@media only screen and (max-width: 568px) {
	.tel_bnr{
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 10px;
	}
}

/*各ページ遷移バナー*/
.toplink_sec {
	padding: 50px 0 50px 0;
	position: relative;
	z-index: 1;
	background-color: #FFF;
	/* background-size: 6px 6px;
	background-image: repeating-linear-gradient(0deg, #d7e6f5, #d7e6f5 1px, #f4faff 1px, #f4faff); */
}

.toplink_sec-cards {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	padding: 2rem 0;
}

.toplink_sec-cards .card {
	position: relative;
	display: block;
	/* border-radius: 1rem; */
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	transition: transform .3s ease, box-shadow .3s ease;
}

.toplink_sec-cards .card:hover {
	/* transform: translateY(-4px); */
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.toplink_sec-cards .card img {
	width: 100%;
	aspect-ratio: 3/4;
	object-fit: cover;
	vertical-align: middle;
	transition: transform .5s ease;
}
@media only screen and (max-width: 767px) {
	.toplink_sec-cards .card img {
		aspect-ratio: 4/3;
	}
}

.toplink_sec-cards .card:hover img {
	transform: scale(1.05);
}

.toplink_sec-cards-body {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(26, 17,100, 0.7);
	/* 70%白透過 */
	padding: 1rem;
	backdrop-filter: blur(2px);
	/* 少しぼかして高級感 */
	min-height: 80px;
}

.toplink_sec-cards-body h3 {
	font-size: 1.2rem;
	margin-bottom: .4rem;
	color: #FFF;
	border-left: 4px solid var(--accent-color1);
	padding-left: .5rem;
}

.toplink_sec-cards-body p {
	font-size: .9rem;
	color: #FFF;
	line-height: 1.5;
}

/*TOP About*/
.top_sec1{
	padding: clamp(48px, 6vw, 72px) 0;
	background-color: var(--main-color);

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
@media print, screen and (min-width: 768px) {
	.top_sec1 {
		background-image: url(../img/bg_01.jpg);
		background-repeat: repeat;
		background-position: top;
		background-size: 100%;
	}
}
@media only screen and (max-width: 767px) {
	.top_sec1 {
		background-image: url(../img/bg_01_sp.jpg);
		background-repeat: repeat;
		background-position: top;
		background-size: 100%;
	}
}


/*======= サービス紹介 ======*/
.se_sec1{
	padding: 0 0 clamp(48px, 6vw, 72px);
	background-color: #FFF;
	
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.se_sec2{
	padding: var(--v-space) 0;
	background-color: #f7f7f7;
	
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.se_sec3{
	padding: var(--v-space) 0;
	background-color: #FFF;
	
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

/*======= 求人情報 ======*/
.recruit_sec1{
	padding: 30px 0 100px 0;
	background-color: #FFF;
	position: relative;
	z-index: 1;
}

/*当社で働く3つのポイント*/
.recruit_sec1-item-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
/* コンテンツ幅 */
.recruit_sec1-haba{
	max-width: 1100px;
	margin: 0 auto;
}
/*アイコンサイズ*/
.recruit_sec1-pcspwid{
	margin: 0 auto;
}
.recruit_sec1-item{
	background: #FFF;
	border: 1px solid var(--accent-color2);
	/* padding: 20px 20px 15px; */
	border-radius: 30px 0 30px 0;
}
@media only screen and (max-width: 767px) {
	.recruit_sec1-item-container {
		grid-template-columns: repeat(1, 1fr);
	}
}
.recruit_sec1-item img{
	border-radius: 30px 0 0 0;
}
/*H4*/
.recruit_sec1-item h4{
	font-size: clamp(15px, 1.7vw, 17px);
	font-weight: 600;
	line-height: 1.5;
	/* margin: 20px 0 10px 0; */
	padding: 4px 0 3px 0;
	background-color: var(--accent-color2);
	color:#FFF;
	/* border-top: 1px dotted #4e4e4e;
	border-bottom: 1px dotted #4e4e4e; */
}
/*p 説明*/
.recruit_sec1-item p{
	font-size: 14px;
	line-height: 1.5;
	margin: 10px 0;
	text-align: justify;
	padding: 0 20px;
}

/*section2*/
.recruit_sec2 {
	padding: var(--v-space) 0;
}

@media print{
	.recruit_sec2{
		background-image: url(../img/bg_02.jpg);
		background-size: cover;
	}
}

.recruit_sec3{
	padding: var(--v-space) 0;
	background-color: #FFF;
	position: relative;
	z-index: 1;
}

/* 年間カレンダーセクション */
.work-calendar {
	padding: 40px 0;
	background-color: #fff;
}

.work-calendar .w-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
}

/* PC時の2カラムレイアウト：左(カレンダー画像) + 右(サマリー) */
.work-calendar-grid {
	display: grid;
	grid-template-columns: 1fr 0.5fr;
	gap: 24px;
	align-items: flex-start;
}

@media print{
	.work-calendar-grid {
		grid-template-columns: 1fr 0.4fr;
	}
}

/* 左側：カレンダー画像 */
.calendar-figure {
	margin: 0;
	padding: 0;
	border-radius: 4px;
	background-color: #fff;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.calendar-img {
	display: block;
	width: 100%;
	height: auto;
}

/* 右側全体 */
.calendar-side {
	display: grid;
	gap: 24px;
}

/* 休日凡例 */
.legend-block {
	font-size: 14px;
	color: #1a1a1a;
}

.legend-ttl {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
	font-size: 14px;
	line-height: 1.4;
	margin: 0;
}

.legend-box {
	display: inline-block;
	width: 18px;
	height: 18px;
	background-color: #c40000; /* 赤い休日マーク */
	border: 1px solid #c40000;
	border-radius: 2px;
}

/* 年間サマリーの枠 */
.summary-block {
	font-size: 14px;
	border: 1px solid #d0d3d8;
	border-radius: 4px;
	padding: 16px;
	background-color: #f9fafb;
	box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.summary-list {
	margin: 0;
	padding: 0;
}

/* 行ごとに左:項目 / 右:値 */
.summary-row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px;
	padding: 6px 0;
	border-bottom: 1px solid #e2e5ea;
}
.summary-row:last-child {
	border-bottom: 0;
}

.summary-row dt {
	font-weight: 400;
	color: #1a1a1a;
	line-height: 1.4;
}
.summary-row dd {
	margin: 0;
	font-weight: 600;
	color: #1a1a1a;
	line-height: 1.4;
	text-align: right;
	font-feature-settings: "palt";
}

/* 各月労働時間のブロック */
.hours-block {
	border: 1px solid #d0d3d8;
	border-radius: 4px;
	padding: 16px;
	background-color: #fff;
	box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.hours-ttl {
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 12px;
	color: #1a1a1a;
	font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
	text-align: left;
}

.hours-figure {
	margin: 0;
	padding: 0;
}
.hours-img {
	display: block;
	width: 100%;
	height: auto;
}

/* レスポンシブ：タブレット以下は縦積み */
@media only screen and (max-width: 860px) {
	.work-calendar-grid {
		grid-template-columns: 1fr;
	}

	.calendar-side {
		width: 100%;
		margin: 24px auto 0;
		gap: 16px;
	}
}

/* さらにスマホ向けのフォント少し小さく */
@media only screen and (max-width: 480px) {
	.summary-block,
	.hours-block {
		font-size: 13px;
	}

	.summary-row {
		grid-template-columns: 1fr auto;
	}

	.legend-ttl {
		font-size: 13px;
	}

	.hours-ttl {
		font-size: 13px;
	}
}

/*glightboxのキャプション部分デザイン変更*/
.goverlay {
	background: rgba(255, 255, 255, .92) !important;
}
.glightbox-mobile .glightbox-container .gslide-description {
	background: #FFF !important;
}
.glightbox-mobile .glightbox-container .gslide-title {
	color: #000 !important;
}
.glightbox-clean .gdesc-inner {
	padding: 10px 5px !important;
}
.glightbox-clean .gslide-title {
	margin-bottom:2px !important;
}

/*======= FAQ ======*/
.faq_sec1 {
	padding: 30px 0 100px 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: 10px;
}

.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: 30px 0 var(--v-space) 0;
	background-color: #FFF;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

/* 概要部分のテーブル */

.info_sec1__haba{
	max-width: 1000px;
	margin: 0 auto;
}
.info_sec1_container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	font-family: 'Arial', sans-serif;
}

.info_sec1_container .item {
	border: 1px solid #ddd;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	border-radius: 6px;
	background-color: #fff;
	padding: 12px 16px;
	display: grid;
	grid-template-columns: 220px 1fr;
	align-items: stretch;
	gap: 20px;
}

.info_sec1_container .label {
	display: flex;
	align-items: center;
	font-weight: bold;
	color: #FFF;
	white-space: nowrap;
	background-color: var(--accent-color2);
	padding: 5px 7px;
}

.info_sec1_container .content {
	/* display: flex; */
	align-items: center;
	color: #333;
	padding: 5px 7px;
}


/* レスポンシブ：568px以下で縦並び＋枠内レイアウトも縦に */
@media only screen and (max-width: 568px) {
	.info_sec1_container .item {
		grid-template-columns: 1fr;
		gap:0px;
		padding: 10px 14px;
	}

	.info_sec1_container .label {
		line-height: 1.6;
		font-size: 14px;
	}

	.info_sec1_container .content {
		font-size: 14px;
	}
}

/* 保有許可・業務内容 */
.company-cert {
	padding: 40px 0;
	background: #f5f5f5;
}
.company-cert .heading09 {
	margin-bottom: 16px;
}

.company-cert h4 {
	font-weight: 700;
	color: #1a1a1a;
	padding: 10px 12px;
	border-left: 4px solid var(--main-color, #1a3e7a);
	background: #ffffff;
	border-radius: 6px 0 0 6px;
	margin-bottom: 10px;
}
.cert-text {
	margin: 0 0 12px;
	line-height: 1.9;
	text-align: justify;
}

/* Permit links (PDF) */
.permit-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 16px;
	list-style: none;
	margin: 8px 0 0;
	padding: 0;
	justify-content: flex-end; /* 右寄せ */
	margin-bottom: 30px;
}
.permit-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	border: 1px solid #e1e5ea;
	background: #fff;
	padding: 8px 10px;
	border-radius: 6px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.04);
	transition: transform .05s ease, box-shadow .15s ease;
}
.permit-link:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.permit-title {
	color: #1a1a1a;
	font-weight: 600;
	font-size: 14px;
}
.permit-badge {
	display: inline-block;
	min-width: 34px;
	padding: 2px 6px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.6;
	color: #fff;
	background: #d9534f; /* PDF赤 */
	border-radius: 4px;
	text-align: center;
}

/* Responsive */
@media (max-width: 568px) {
	.permit-links { gap: 8px; }
}



.access_sec1{
	padding: var(--v-space) 0;
	background-color: #f5f5f5;

	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%;
	}
}
