@charset "UTF-8";
*, ::before, ::after {
	box-sizing: border-box;
}

:root {
	--font-san-serif: Arial, Helvetica, sans-serif;
	--font-serif: 'Libre Baskerville', serif;
	scroll-behavior: smooth;
}

body {
	background: url(_assets/images/translation/bg-gray02.jpg) repeat top left/cover;
	background-attachment: fixed;
	font-family: var(--font-san-serif);
	color: #000;
	margin: 0;
	padding: 0;
}

body {
	font-size: 22px;
}

@media (max-width: 600px) {
	body {
		font-size: 16px;
	}	
}

figure {
	margin: 0;
	padding: 0;
}

img {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

p {
	line-height: 1.3;
}

/* コンポーネント */

.el_tr-title {
	padding: 0.25em;
	font-family: var(--font-serif);
	text-align: center;
	color: #fff;
	background: #00A0E9;
}
.el_tr-title02 {
	padding: .5em;
	font-size: 18px;
	font-weight: 400;
	color: #fff;
	background: #6ACCF9;
}

/* ブロック */

.bl_tr-figure {

}
.bl_tr-figure__cap {
	margin-top: .5em;
	font-family: var(--font-serif);
	font-size: 16px;
	text-align: center;
}

@media (max-width: 600px) {
	.bl_tr-figure__cap {
		font-size: 12px;
	}	
}

/* レイアウト */

.ly_tr-site-container {
	max-width: 980px;
	margin-inline: auto;
	padding: 20px 40px;
	background: #fff;
	overflow: hidden;
}

@media (max-width: 600px) {
	.ly_tr-site-container {
		/* padding: 0 16px; */
		padding: 0;
	}	
}

/* ランゲージセレクト */
.ly_tr-language {
	z-index: 100;
	position: absolute;
	top: 0;
	right: 0;
}

.ly_tr-language__list {
	display: flex;
	align-items: baseline;
	background: rgba(255, 255, 255, 0.8);
	padding: 8px;
	margin: 0;
	list-style: none;
	font-size: 14px;
}

.ly_tr-language__item {
	padding-inline: 16px;
	color: #000;
}

.ly_tr-language__item:not(:first-child) {
	border-left: 1px solid #000;
}

.ly_tr-language__item a {
	text-decoration: none;
	color: #666;
}

.ly_tr-language__item a:hover {
	color: #00a0e9;
	text-decoration: underline;
}

/* ヘッダー */


.ly_tr-header__imgs {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, auto);
	/* display: flex;
	align-items: flex-start; */
	gap: 5px;
	margin-inline: -40px;
	margin-top: -20px;
	/* aspect-ratio: 930/233; /* 横幅930px 高さ233px */
	overflow: hidden;
}
.ly_tr-header__imgs::after {
	content: "";
	position: absolute;
	inset: 0;
	border: 14px solid rgba(255, 255, 255, 0.5);
}

.ly_tr-header__figure {
	position: relative;
}
.ly_tr-header__cap {
	position: absolute;
	bottom: 8px;
	left: 8px;
	padding: 8px 8px;
	font-size: 12px;
	color: #fff;
}

@media (max-width: 800px) {
	.ly_tr-header__cap {
		left: 48px;
		font-size: 10px;
	}	
	
}

.ly_tr-header__imgs img {
	max-height: 233px;     /* 高さを固定して縦をそろえる */
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ly_tr-header__ttl-wrap {
	max-width: 762px;
	margin: 4vw auto;
	padding: 8px;
	background: #000;
}

.ly_tr-header__ttl-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	border: 1px solid #fff;
	padding: 4px;
}

.ly_tr-header__ttl {
	height: 100%;
	margin: 0;
	padding: 12px;
	font-family: 'Libre Baskerville', serif;
	font-size: clamp(20px, 3vw, 32px);
	font-weight: 400;
	line-height: 1.2;
	text-align: center;
	color: #fff;
}


@media (max-width: 600px) {
	.ly_tr-header {
		position: relative;
		margin-top: -20px;
		aspect-ratio: 485/1220;
		overflow: hidden;
	}

	.ly_tr-header__imgs {
		/* position: absolute;
		top: 0; */
		grid-template-columns: repeat(1, auto);
		/* flex-direction: column;
		align-items: center; */
		gap: 0;
	}
	.ly_tr-header__imgs img {
		max-height: none;
		width: 100%;
	}
	.ly_tr-header__imgs::after {
		display: none;
	}

	.ly_tr-header__ttl-wrap {
		position: absolute;
		inset: 0;
		/* margin: 50vh 0 0 auto; */
		margin: 50vh 20px auto auto;
		translate: 0 -50%;
		display: grid;
		justify-content: right;
		align-items: center;
		width: 180px;
		max-height: 500px;
		min-height: 400px;
	}

	.ly_tr-header__ttl-inner {
		flex-direction: column;
		gap: 8px;
		height: 100%;
		padding: 8px;
	}
	
	.ly_tr-header__ttl {
		display: grid;
		place-items: center;;
	}
}



/* フッター  */

.ly_tr-footer {
	margin-top: 64px;
	padding-bottom: 64px;
}

.ly_tr-footer__inner {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 32px;
}

.ly_tr-footerLeft > *:first-child {
	margin-top: 0;
}

.ly_tr-footerRight {
	max-width: 446px;
}

.ly_tr-footerInfo__ttl {
	border-bottom: 3px solid #3899ec;
	padding-bottom: 0.5em;
	font-size: 20px;
	font-family: var(--font-serif);
}

.ly_tr-footerInfo__txt {
	font-size: 16px;
}

.ly_tr-footerCopy {
	margin-top: 32px;
	text-align: center;
	font-size: 14px;
}

@media (max-width: 800px) {
	.ly_tr-footer__inner {
		grid-template-columns: 1fr;
	}	
}

@media (max-width: 600px) {
	.ly_tr-footer {
		padding-inline: 16px;
	}
	.ly_tr-footer__inner {
		grid-template-columns: 1fr;
	}	
}

.ly_tr-footerTable {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
}

.ly_tr-footerTable th {
	width: 120px;
	padding: 1em;
	font-weight: 400;
	text-align: left;
	vertical-align: top;
}

.ly_tr-footerTable td {
	border-left: 1px solid;
	padding: 1em;
}

.y_tr-footerInfo {
	margin-top: 32px;
}




/* ページ */

/* about */
.un_trAbout__imgs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 48px 16px;
}

.un_trAbout__figure:first-child,
.un_trAbout__figure:last-child {
	grid-column: span 2;
}

@media (max-width: 600px) {
	.un_trAbout {
		padding-inline: 16px;
	}

	.un_trAbout__imgs {
		grid-template-columns: 1fr;
	}
	.un_trAbout__figure:first-child,
	.un_trAbout__figure:last-child {
		grid-column: span 1;
	}
}

/* Renovation */

.un_trRenovation__inner {
	display: grid;
	grid-template-columns: 1fr 352px;
	gap: 32px;
}

.un_trRenovation__txtBox > *:first-child {
	margin-top: 0;
}
@media (max-width: 600px) {
	.un_trRenovation {
		padding-inline: 16px;
	}

	.un_trRenovation__inner {
		grid-template-columns: 1fr;
	}
}

/* Project */
.un_trProject__figure {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.un_trProject__cap {
	grid-column: span 2;
}

@media (max-width: 600px) {
	.un_trProject {
		padding-inline: 16px;
	}
	.un_trProject__figure {
		grid-template-columns: 1fr;
		gap: 16px 0;
	}
}

/* Parking */

.un_trParking__imgs {
	display: grid;
	grid-template-columns: 5fr 4fr;
	gap: 48px 16px;
}

.un_trParking__figure:last-child {
	grid-column: span 2;
}

@media (max-width: 600px) {
	.un_trParking {
		padding-inline: 16px;
	}
	.un_trParking__imgs {
		grid-template-columns: 1fr;
	}
	.un_trParking__figure:last-child {
		grid-column: span 1;
	}
}


/* Profile */

.un_trProfile__inner {
	display: grid;
	grid-template-columns: 6fr 3fr;
	gap: 32px;
}

.un_trProfile__txtBox > *:first-child {
	margin-top: 0;
}

.un_trProfile__map {
	display: flex;
	align-items: flex-end;
	gap: 16px;
}

.un_trProfile__map-figure:first-child {
	max-width: 302px;
}
.un_trProfile__map-figure:nth-child(2) {
	max-width: 279px;
}

.un_trProfile__map-figure img {
	border: 1px solid #000;
}

@media (max-width: 600px) {
	.un_trProfile {
		padding-inline: 16px;
	}
	.un_trProfile__inner {
		grid-template-columns: 1fr;
	}
}