@charset "UTF-8";


/*=======================================================*/
/*      		セクション毎のCSS   			  		  */
/*======================================================*/


/*======= 共通 ======*/
/*タイトル(共通)*/
.spot-heading01 {
	font-size: clamp(30px, 4vw, 50px);
	line-height: 1;
	font-style: italic;
	text-align: center;
	font-family: "Montserrat", sans-serif;
}

.spot-heading02 {
	font-size: clamp(25px, 2.7vw, 35px);
	line-height: 1.2;
	font-style: italic;
	font-weight: 700;
	text-align: center;
	font-family: "Montserrat", sans-serif;
}

.spot-heading02+p {
	margin-top: 0.5em;
	margin-bottom: 1em;
	font-size: clamp(16px, 2vw, 20px);
	font-weight: bold;
	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;
	color: var(--accent-color2);
}

@media only screen and (max-width: 767px) {
	.spot-heading02+p {
		text-align: left;
	}

	/*<br>のブレイクポイント*/
	.br768 {
		display: none;
	}
}

.line {
	width: 1px;
	height: auto;
	padding-top: 35px;
	background-color: #fff;
	/* margin: 1.9607% auto; */
	margin: 1.1% auto;
	/*今回のみ*/
}

.line2 {
	width: 1px;
	height: auto;
	padding-top: 35px;
	background-color: #777;
	/* margin: 1.9607% auto; */
	margin: 1.1% auto;
	/*今回のみ*/
}

.hline {
	display: inline-block;
	width: 25px;
	/* 横棒の長さ（調整可） */
	height: 1px;
	/* 横棒の太さ（調整可） */
	background-color: var(--txt-color);
	/* 横棒の色 */
	vertical-align: middle;
	margin: 0 0.2em;
	/* 文章と横棒の間隔 */
}

/* 飾り付きタイトル */
.spot-heading03 {
	font-family: 'Noto Serif JP', serif;
	text-align: center;
	color: var(--accent-color2);
	font-weight: 400;
	font-size: clamp(20px, 2.3vw, 26px);
	line-height: 1.4;
	margin-bottom: 20px;
	position: relative;
	padding: 1.5rem 0rem 0rem 0rem;
	margin-top: 100px;
}
.spot-heading03::before {
	content: "";
	border: 0;
	position: absolute;
	left: calc(50% - 75px);
	background-image: url(../img/s-heading03.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: contain;
	width: 150px;
	height: 75px;
	top: -50px;
}
.spot-heading03 .en {
	display: block;
	font-size: clamp(0.9rem,1.8vw,1.2rem);
	color: var(--accent-color1);
	letter-spacing: 0.1em;
}

/*======= TOP ======*/
/*ご挨拶*/
.greeting {
	padding: clamp(40px, 6vw, 90px) 0 var(--v-space);
	background-color: #FFF;
	background-size: auto;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	/* sectionの位置を相対的にする*/
	z-index: 1;
	/* 背景画像より上に表示 */
}
/* PC用画像 */
@media only screen and (min-width: 1000px) {
	.greeting {
		background-image: url(../img/bg_03.jpg);
	}
}

.greeting-haba {
	max-width: 950px;
	margin: 0 auto;
	padding: 2% 0 0 0;
}

/*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);
	}
}

/* 写真用コンテナ(3列) */
.g_photo-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	justify-content: center;
	gap: 10px;
	max-width: 890px;
	margin: 0 auto;
}
@media only screen and (max-width: 653px) {
	.g_photo-container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}
/* 写真用コンテナ(4列) */
.g_photo-container2 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	justify-content: center;
	gap: 10px;
	max-width: 890px;
	margin: 0 auto;
}
@media only screen and (max-width: 512px) {
	.g_photo-container2 {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}

/* SHOP情報 */
.shop-info-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin: 0 auto;
	gap: 20px;
	margin-top: 5vw;
	margin-bottom: 1vw;
}
@media only screen and (max-width: 600px) {
	.shop-info-container {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		margin: 0 auto;
		gap: 20px;
		margin-top: 10vw;
		margin-bottom: 5vw;
	}
}

.shop-card {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	border-bottom: 1px solid #ddd;
	padding-bottom: 1.5rem;
}

.shop-card .shop-text {
	flex: 1 270px;
}

.shop-card .shop-logo {
	max-width: 180px;
	margin-bottom: 0.5rem;
}

.shop-card .shop-name {
	font-size: 1.3rem;
	font-weight: bold;
	color: var(--accent-color2);
	margin-bottom: 0.5rem;
}

.shop-card p {
	font-size: 14px;
	margin-bottom: 0.2rem;
}

.shop-map {
	flex: 0 0 220px;
}

.shop-map img {
	width: 100%;
	height: auto;
}

/* スマホ対応 */
@media only screen and (max-width: 1139px) {
	.shop-card {
		flex-direction: column;
		text-align: center;
	}
	.shop-card .shop-logo {
		margin: 0 auto;
	}
	.shop-card .shop-text {
		flex: 1;
	}

	.shop-map {
		flex: none;
		max-width: 100%;
	}
}

/* 印刷対応 */
@media print {
	.shop-info-container {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		margin: 0 auto;
		gap: 20px;
		margin-top: 10vw;
		margin-bottom: 5vw;
	}
}


/*======= カメラマン紹介・ピックアップメニュー ======*/
.pickup {
	padding: var(--v-space2) 0 var(--v-space);
	background-color: #FFF;
	background-image: url(../img/bg_01.png);
	background-repeat: repeat;

	position: relative;
	/* sectionの位置を相対的にする*/
	z-index: 1;
	/* 背景画像より上に表示 */
}


.photographer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-bottom: 40px;
}

.staff-member {
	text-align: center;
}

.staff-img img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	object-fit: cover;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.staff-member h3 {
	font-size: 1.1rem;
	color: var(--main-color);
	margin: 15px 0 8px;
}

.staff-role {
	font-size: 0.95rem;
	color: var(--accent-color2);
	margin: -5px 0 10px;
	font-weight: 600;
	text-align: center;
	/* 中央寄せ */
}

.staff-role .mail-link {
	margin-left: 8px;
	/* 役職との間に余白 */
	color: var(--accent-color1);
	font-size: 1rem;
	text-decoration: none;
	transition: color 0.3s ease;
}

.staff-role .mail-link:hover {
	color: var(--main-color);
}


.staff-member p {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #333;
}

.pickup-banners {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	justify-content: center;
}

@media only screen and (max-width: 767px) {
	.pickup-banners {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
		justify-content: center;
	}
}

.pickup-banner img {
	border-radius: 8px;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.pickup-banner img:hover {
	transform: scale(1.05);
}

/* SNSバナー */
.sns_bnr {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 10px;
	margin-bottom: 50px;
}

@media (max-width: 568px) {
	.sns_bnr {
		grid-template-columns: repeat(1, 1fr);
	}
}

.sns_bnr img{
	border-radius: 10px;
}


/*======= 当店の特徴 ======*/
.sec1 {
	padding: var(--v-space) 0;
	background-color: #f8f5ec;
	/* background-image: url(../img/bg_01.png);
	background-repeat: repeat; */

	position: relative;
	/* sectionの位置を相対的にする*/
	z-index: 1;
	/* 背景画像より上に表示 */
}
.lead {
	position: relative;
	background:
		linear-gradient(90deg, #999 2px, #fff 2px, #fff calc(100% - 2px), #999 calc(100% - 2px)),
		linear-gradient(180deg, #999 2px, #fff 2px, #fff calc(100% - 2px), #999 calc(100% - 2px)),
		linear-gradient(45deg,  transparent 10px, #999 11px, #999 12px, #fff 13px),
		linear-gradient(135deg, transparent 10px, #999 11px, #999 12px, #fff 13px),
		linear-gradient(225deg, transparent 10px, #999 11px, #999 12px, #fff 13px),
		linear-gradient(315deg, transparent 10px, #999 11px, #999 12px, #fff 13px);
	background-position: left 15px, 15px top, bottom left, top left, top right, bottom right;
	background-size: 100% calc(100% - 30px), calc(100% - 30px) 100%, 20px 20px, 20px 20px, 20px 20px, 20px 20px;
	background-repeat: no-repeat;
	margin: 0 auto;
	margin-bottom: 5vh;
	padding: 10px 10px;
	font-family: 'Noto Serif JP', serif !important;
	font-weight: bold;
	font-size: clamp(16px,2.5vw,22px);
	text-align: center;
	max-width: 600px;
	color: #333;
	line-height: 1.6;
}


.feature-list {
	list-style: none;
	padding: 0;
	margin: 0 auto 40px;
	max-width: 800px;
	counter-reset: number;
}

.feature-list li {
	position: relative;
	padding: 0.7em 0.5em 0.7em 3.5em;
	margin-bottom: 1em;
	line-height: 1.6;
	background-color: #FFF;
	border-radius: 5px;
}

.feature-list li span {
	position: absolute;
	left: 0.5em;
	top: 0;
	font-weight: bold;
	color: var(--main-color);
	font-size: 1.7rem;
	counter-increment: number;
}
@media only screen and (max-width: 567px) {
	.feature-list li {
		padding: 0.7em 0.5em 0.7em 3em;
	}
	.feature-list li span {
		position: absolute;
		left: 0.5em;
		top: 0.5em;
		font-weight: bold;
		color: var(--main-color);
		font-size: 1.2rem;
	}

}

/* 写真用コンテナ */
.sec1_photo-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, 150px);
	/* grid-template-columns: repeat(12, 1fr); */
	justify-content: center;
	gap: 10px;
}
@media only screen and (max-width: 567px) {
	.sec1_photo-container {
		grid-template-columns: repeat(3, 1fr);
		gap: 5px;
	}

}
/* 印刷対応 */
@media print {
	.sec1_photo-container {
		grid-template-columns: repeat(7, 1fr);
		gap: 5px;
	}
}

.sec1_photo-container img {
	width: 150px;
	height: auto;
	object-fit: cover;
	display: block;
	/* border-radius: 8px; */
	/* box-shadow: 0 2px 6px rgba(0,0,0,0.1); */
}


.benefits-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	background-color: #FFF;
	padding: 2rem;
	border-radius: 5px;
}

@media only screen and (max-width: 900px) {
	.benefits-grid {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 10px;
		padding: 1rem;
	}
}
.rental-benefits {
	margin-top: 60px;
}

.benefits-list {
	display: contents; /* 各liをグリッド内の直接要素として扱う */
}

.benefits-list li {
	display: flex;
	align-items: flex-start;
	border-bottom: 2px solid var(--accent-color1);
	padding: 10px 0 16px;
	gap: 15px;
}

/* スマホ時に縦並びに変更 */
@media screen and (max-width: 767px) {
	.benefits-list li {
		flex-direction: column;
	}
}

.benefits-list .label {
	background: var(--main-color);
	color: #fff;
	font-weight: bold;
	padding: 4px 12px;
	border-radius: 4px;
	min-width: 70px;
	text-align: center;
	font-size: 0.95rem;
	flex-shrink: 0;
}

.benefits-list p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.6;
	color: #111;
}

.benefits-list small {
	display: block;
	color: #666;
	font-size: 0.85rem;
	margin-top: 4px;
}

.benefits-list .free {
	color: var(--accent-color1);
	font-weight: bold;
	margin-left: 4px;
}


/*======= 撮影メニュー・貸衣裳メニュー======*/

.sec2 {
	padding: var(--v-space) 0;
	background-color: #FFF;
	/* background-image: url(../img/bg_01.png);
	background-repeat: repeat; */

	position: relative;
	/* sectionの位置を相対的にする*/
	z-index: 1;
	/* 背景画像より上に表示 */
}
.sec3 {
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_01.png);
	background-repeat: repeat;

	position: relative;
	/* sectionの位置を相対的にする*/
	z-index: 1;
	/* 背景画像より上に表示 */
}

.service-card-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 40px;
}
/* 印刷対応 */
@media print {
	.service-card-container {
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
	}
}

.service-card {
	background-color: #FFF;
	/* border: 1px solid var(--accent-color2); */
	border-radius: 12px;
	box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: 0.3s ease;
}

.service-card:hover {
	box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
	transform: translateY(-2px);
}

.service-card img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.service-card h4 {
	font-size: 18px;
	margin: 15px 15px 5px;
	color: var(--main-color);
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}

.service-card h4 span {
	font-size: 12px;
	color: var(--accent-color1);
	font-weight: normal;
}

.service-card p {
	font-size: 15px;
	line-height: 1.6;
	padding: 0 15px 15px;
	color: #333;
}


/*======= 料金案内 ======*/
.sec4 {
	padding: var(--v-space) 0  var(--v-space2);
	background-color: #FFF;
	position: relative;
	z-index: 1;
}

.sec4 .price-unit {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 3rem;
	align-items: flex-start;
}

.sec4 .price-unit h4 {
	position: relative;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--accent-color2);
	display: flex;
	align-items: center;
	gap: 0.5em;
	border-left: 5px solid var(--accent-color1);
	padding-left: 0.5em;
	margin-bottom: 10px;
}
.sec4 .price-unit h4::after {
	content: "税込";
	font-size: 0.75em; /* 小さくする */
	font-weight: normal;
	color: var(--accent-color2); /* 必要なら薄めの色に */
	margin-left: auto; /* 右端に押し出す */
	background-color: #f1dea5;
	padding: 2px 5px 3px;
}

.sec4 .price-unit h5 {
	font-size: 1rem;
	font-weight: 600;
	color: #6a4e3b;
	margin-bottom: 0.8rem;
	background-color: #f5f1ea;
	padding: 0.2em 0.5em;
	letter-spacing: 0.05em;
	line-height: 1.3;
}

.sec4 .price-unit.no-img {
	width: 100%;
}

.sec4 .price-content {
	flex: 1 1 300px;
}

.sec4 .price-img {
	flex: 0 0 250px;
}

.sec4 .price-img img {
	width: 100%;
	border-radius: 8px;
	object-fit: cover;
}

.sec4 .price-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 16px;
	margin: 0.5rem 0 1rem;
}

.sec4 .price-table th,
.sec4 .price-table td {
	/* padding: 0.2rem 1.3rem; */
	padding: 0.2rem;
	border-bottom: 1px solid #e0e0e0;
	vertical-align: top;
}

.sec4 .price-table th {
	color: var(--accent-color2);
	width: 65%;
	text-align: left;
	font-weight: 600;
}

.sec4 .price-table td {
	text-align: right;
	color: var(--accent-color2);
	font-weight: bold;
	font-size: 1.2rem;
	vertical-align: bottom;
}

.sec4 .price-unit p {
	font-size: 14px;
	line-height: 1.2;
	margin: 0.5rem 0 0;
	font-weight: normal;
}

.sec4 .price-unit .note {
	color: #c00;
	font-size: 14px;
	margin-top: 0.3em;
}

@media screen and (max-width: 768px) {
	.sec4 .price-unit {
		flex-direction: column;
	}

	.sec4 .price-img {
		flex: none;
		width: 100%;
		max-width: 270px;
		margin: 0 auto;
		order: -1; /* ← 画像を先頭に */
	}

	.sec4 .price-content {
		flex: none;
		width: 100%;
	}
}
.sec4 .price-txt-indent {
	display: inline-block;
	margin-right: 1em;
}


.simple-info-box {
	font-size: 16px;
	line-height: 1.7;
	color: #333;
	margin: 10px auto;
	box-sizing: border-box;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	background-color: #DDEDF2;
	outline: 1px solid #FFF;
	outline-offset: -0.8rem;
	padding: 20px 20px;
}
.simple-info-box p{
	margin: 0 0 0 !important;
}

.simple-info-box strong {
	color: #d6452b;
	font-weight: bold;
	font-size: 1.1rem;
}

/*======= 出張サービス ======*/
.sec5 {
	padding: var(--v-space) 0 var(--v-space2);
	background-color: #F8F5EC;
	background-size: cover;
	background-position: left;

	position: relative;
	z-index: 1;
}
/* PC用画像 */
@media only screen and (min-width: 568px) {
	.sec5 {
		background-image: url(../img/bg_02.jpg);
	}
}

/* SP用画像 */
@media only screen and (max-width: 567px) {
	.sec5 {
		background-image: url(../img/bg_02_sp.jpg);
	}
}

.sec5 .price-unit {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 3rem;
	align-items: flex-start;
}

.sec5 .price-unit h4 {
	position: relative;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--accent-color2);
	display: flex;
	align-items: center;
	gap: 0.5em;
	border-left: 5px solid var(--accent-color1);
	padding-left: 0.75em;
	margin-bottom: 10px;
}

.sec5 .price-unit h4::after {
	content: "税込";
	font-size: 0.75em; /* 小さくする */
	font-weight: normal;
	color: var(--accent-color2); /* 必要なら薄めの色に */
	margin-left: auto; /* 右端に押し出す */
	background-color: #f1dea5;
	padding: 2px 5px 3px;
}

.sec5 .price-content {
	flex: 1 1 300px;
}

.sec5 .price-img {
	flex: 0 0 250px;
}

.sec5 .price-img img {
	width: 100%;
	border-radius: 8px;
	object-fit: cover;
}

.sec5 .price-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 16px;
	margin: 0.5rem 0 1rem;
}

.sec5 .price-table th,
.sec5 .price-table td {
	padding: 0.2rem 0rem 0.2rem 1.3rem;
	border-bottom: 1px solid #e0e0e0;
	vertical-align: top;
}

.sec5 .price-table th {
	color: var(--accent-color2);
	width: 65%;
	text-align: left;
	font-weight: 600;
}

.sec5 .price-table td {
	text-align: right;
	color: var(--accent-color2);
	font-weight: bold;
	font-size: 1.2rem;
}

.sec5 .price-unit p {
	font-size: 14px;
	line-height: 1.6;
	margin: 0.5rem 0 0;
}

.sec5 .price-unit .note {
	color: #c00;
	font-size: 14px;
	margin-top: 0.3em;
}

@media screen and (max-width: 768px) {
	.sec5 .price-unit {
		flex-direction: column;
	}

	.sec5 .price-img {
		flex: none;
		width: 100%;
		max-width: 270px;
		margin: 0 auto;
		order: -1; /* ← 画像を先頭に */
	}

	.sec5 .price-content {
		flex: none;
		width: 100%;
	}
}



/*======= FAQ ======*/
.faq_sec1 {
	padding: var(--v-space) 0;
	background-color: #f3f3f3;

	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: #fff4f5;
	background-image: url(../img/bg_04.jpg);
	background-size: cover;
	background-position: center;

	position: relative;
	/* sectionの位置を相対的にする*/
	z-index: 1;
	/* 背景画像より上に表示 */
}

@media only screen and (max-width: 568px) {
	.info_sec1 {
		background-image: url(../img/bg_04_sp.jpg);
	}
}



/* 概要部分のテーブル */
.info1 {
	font-weight: bold;
	border-bottom: 1px dashed #999;
	color: var(--txt-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%;
	}
}

.info_container{
	display: grid;
	grid-template-columns: 1fr 200px 267px;
	grid-template-rows: 1fr;
	grid-column-gap: 10px;
	grid-row-gap: 10px;
}
@media only screen and (max-width: 1240px) {
	.info_container {
		display: grid;
		grid-template-columns: 0.75fr 1fr;
		grid-template-rows: auto;
		grid-column-gap: 10px;
		grid-row-gap: 10px;
	}

	.div1 { grid-area: 1 / 1 / 2 / 3; }
	.div2 { grid-area: 2 / 1 / 3 / 2; }
	.div3 { grid-area: 2 / 2 / 3 / 3; }

}
@media only screen and (max-width: 567px) {
	.info_container {
		display: grid;
		grid-template-columns: repeat(1,1fr);
		grid-template-rows: auto;
		grid-column-gap: 0px;
		grid-row-gap: 10px;
	}
	.div1 { grid-area: 1 / 1 / 2 / 3; }
	.div2 { grid-area: 2 / 1 / 3 / 2; }
	.div3 { grid-area: 3 / 1 / 4 / 2; }
}
/* 印刷対応 */
@media print {
	.info_container{
		display: grid;
		grid-template-columns: 1fr 15%;
		grid-template-rows: 1fr;
		grid-column-gap: 10px;
		grid-row-gap: 10px;
	}
	.div1 { grid-area: 1 / 1 / 3 / 2; }
	.div2 { grid-area: 1 / 2 / 2 / 3; }
	.div3 { grid-area: 2 / 2 / 3 / 3; }
}



/*会社概要*/
.bg_b {
	background: rgba(255, 255, 255, 0.7);
	padding: 40px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}


@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%;
	}
}

