@charset "utf-8";

/* ========================================
   Aboutページ全体
======================================== */

.about-page {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding-bottom: 40px;
	color: #463a33;
	line-height: 1.9;
}

/* ========================================
   ページタイトル
======================================== */

.page-title {
	position: relative;
	max-width: 850px;
	margin: 25px auto 60px;
	padding: 42px 30px;
	overflow: hidden;
	border: 3px solid var(--cosryu-border);
	border-radius: 26px;
	background:
		radial-gradient(
			circle at 90% 10%,
			rgba(255, 150, 56, 0.14),
			transparent 27%
		),
		#fffaf3;
	box-shadow: 0 8px 20px rgba(91, 38, 5, 0.08);
	text-align: center;
}

.page-title::before {
	position: absolute;
	top: -38px;
	right: -38px;
	width: 125px;
	height: 125px;
	border-radius: 50%;
	background-color: rgba(255, 87, 0, 0.08);
	content: "";
}

.page-title::after {
	position: absolute;
	bottom: -48px;
	left: -48px;
	width: 145px;
	height: 145px;
	border-radius: 50%;
	background-color: rgba(255, 150, 56, 0.09);
	content: "";
}

.page-title-en {
	position: relative;
	z-index: 1;
	margin: 0 0 10px;
	color: var(--cosryu-orange);
	font-family:
		"M PLUS Rounded 1c",
		"Meiryo",
		sans-serif;
	font-size: 0.82rem;
	font-weight: 800;
	line-height: 1.5;
	letter-spacing: 0.16em;
}

.page-title h1,
.page-title h2 {
	position: relative;
	z-index: 1;
	margin: 0;
	color: var(--cosryu-brown);
	font-family:
		"M PLUS Rounded 1c",
		"Meiryo",
		sans-serif;
	font-size: clamp(2rem, 4vw, 2.8rem);
	font-weight: 800;
	line-height: 1.4;
	letter-spacing: 0.04em;
}

.page-title h1::after,
.page-title h2::after {
	display: block;
	width: 90px;
	height: 6px;
	margin: 18px auto 0;
	border-radius: 999px;
	background:
		linear-gradient(
			to right,
			var(--cosryu-orange),
			var(--cosryu-light-orange)
		);
	content: "";
}

.page-title-lead {
	position: relative;
	z-index: 1;
	max-width: 650px;
	margin: 24px auto 0;
	color: #4d4038;
	font-size: 1rem;
	font-weight: 700;
	line-height: 2;
}

/* 運営会社側の見出し */

.page-title--section {
	margin-top: 0;
	margin-bottom: 32px;
	padding: 0;
	overflow: visible;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.page-title--section::before,
.page-title--section::after {
	display: none;
}

.page-title--section .page-title-en {
	margin-bottom: 7px;
}

.page-title--section h2 {
	font-size: 1.9rem;
}

.page-title--section h2::after {
	width: 70px;
	height: 5px;
	margin-top: 14px;
}

/* ========================================
   COSRYUについて
======================================== */

.profile {
	max-width: 850px;
	margin: 0 auto 90px;
}

.profile-txt {
	position: relative;
	max-width: 760px;
	margin: 0 auto;
	padding: 38px 42px;
	border: 2px solid var(--cosryu-border);
	border-radius: 20px;
	background-color: #fffaf3;
	box-shadow: 0 6px 18px rgba(91, 38, 5, 0.07);
}

.profile-txt h2 {
	position: relative;
	margin: 0 0 30px;
	padding: 8px 15px 12px 24px;
	border-bottom: 4px dotted #ffb679;
	color: var(--cosryu-brown);
	font-family:
		"M PLUS Rounded 1c",
		"Meiryo",
		sans-serif;
	font-size: 1.4rem;
	font-weight: 800;
	line-height: 1.5;
	letter-spacing: 0.04em;
}

.profile-txt h2::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 10px;
	height: 32px;
	border-radius: 999px;
	background:
		linear-gradient(
			to bottom,
			var(--cosryu-light-orange),
			var(--cosryu-orange)
		);
	box-shadow: 0 2px 0 rgba(90, 30, 0, 0.2);
	content: "";
	transform: translateY(-50%);
}

.profile-txt p {
	margin: 0 0 20px;
	color: #463a33;
	font-size: 1rem;
	line-height: 2;
}

.profile-txt p:last-child {
	margin-bottom: 0;
}

.profile-signature {
	margin-top: 32px !important;
	text-align: right;
}

.profile-signature img {
	display: inline-block;
	width: 140px;
	max-width: 45%;
	height: auto;
}

/* ========================================
   会社情報
======================================== */

.company-section {
	max-width: 850px;
	margin: 0 auto;
}

.company {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	border: 2px solid var(--cosryu-border);
	border-radius: 20px;
	background-color: #fff;
	box-shadow: 0 6px 18px rgba(91, 38, 5, 0.07);
}

.company table {
	width: 100%;
	margin: 0;
	border-spacing: 0;
	border-collapse: collapse;
}

.company th,
.company td {
	box-sizing: border-box;
	border-right: 1px solid #f0c9a7;
	border-bottom: 1px solid #f0c9a7;
	font-size: 0.95rem;
	line-height: 1.8;
	vertical-align: top;
}

.company tr:last-child th,
.company tr:last-child td {
	border-bottom: 0;
}

.company th:last-child,
.company td:last-child {
	border-right: 0;
}

.company th {
	width: 220px;
	padding: 19px 22px;
	background:
		linear-gradient(
			to right,
			#fff1de,
			#fff7eb
		);
	color: var(--cosryu-brown);
	font-family:
		"M PLUS Rounded 1c",
		"Meiryo",
		sans-serif;
	font-weight: 800;
	text-align: left;
	vertical-align: middle;
}

.company td {
	padding: 19px 24px;
	background-color: #fff;
	color: #463a33;
}

/* ========================================
   事業内容
======================================== */

.business-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.business-list li {
	position: relative;
	margin: 0 0 8px;
	padding-left: 1.35em;
}

.business-list li:last-child {
	margin-bottom: 0;
}

.business-list li::before {
	position: absolute;
	top: 0.15em;
	left: 0;
	width: 0.7em;
	height: 0.7em;
	border-radius: 50%;
	background-color: var(--cosryu-light-orange);
	content: "";
	transform: translateY(0.45em);
}

/* ========================================
   戻るボタン
======================================== */

.about-bottom-navigation {
	margin-top: 60px;
	text-align: center;
}

.about-back-link {
	display: inline-block;
	width: 300px;
	max-width: 100%;
	padding: 0;
	line-height: 0;
	transition: transform 0.2s ease;
}

.about-back-link::before {
	display: none;
	content: none;
}

.about-back-link img {
	display: block;
	width: 100%;
	height: auto;
}

.about-back-link:hover,
.about-back-link:focus-visible {
	color: inherit;
	filter: none;
	transform: translateY(-2px);
	outline: none;
	box-shadow: none;
}

.about-back-link:focus-visible {
	border-radius: 18px;
	box-shadow: 0 0 0 3px rgba(255, 111, 0, 0.3);
}

.about-back-link:active {
	transform: translateY(0);
	box-shadow: none;
}

/* ========================================
   タブレット
======================================== */

@media screen and (max-width: 768px) {

	.about-page {
		padding-bottom: 20px;
	}

	.page-title {
		margin: 15px auto 45px;
		padding: 34px 20px;
		border-radius: 20px;
	}

	.page-title h1,
	.page-title h2 {
		font-size: 2rem;
	}

	.page-title-lead {
		margin-top: 20px;
	}

	.page-title--section {
		margin-bottom: 28px;
		padding: 0;
	}

	.page-title--section h2 {
		font-size: 1.65rem;
	}

	.profile {
		margin-bottom: 70px;
	}

	.profile-txt {
		padding: 30px 25px;
		border-radius: 18px;
	}

	.profile-txt h2 {
		font-size: 1.25rem;
	}

	.company th {
		width: 185px;
	}

	.company th,
	.company td {
		padding: 16px 18px;
	}

	.about-bottom-navigation {
		margin-top: 50px;
	}
}

/* ========================================
   スマートフォン
======================================== */

@media screen and (max-width: 600px) {

	.page-title-lead br {
		display: none;
	}

	.profile-txt {
		padding: 28px 20px;
	}

	.company {
		overflow: visible;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}

	.company table,
	.company tbody,
	.company tr,
	.company th,
	.company td {
		display: block;
		width: 100%;
	}

	.company tr {
		margin-bottom: 14px;
		overflow: hidden;
		border: 2px solid var(--cosryu-border);
		border-radius: 14px;
		background-color: #fff;
		box-shadow: 0 4px 12px rgba(91, 38, 5, 0.06);
	}

	.company tr:last-child {
		margin-bottom: 0;
	}

	.company th,
	.company td {
		border: 0;
	}

	.company th {
		padding: 12px 16px;
		background:
			linear-gradient(
				to right,
				#ffe6ca,
				#fff3df
			);
	}

	.company td {
		padding: 15px 16px 18px;
	}

	.about-back-link {
		width: 100%;
		min-width: 0;
	}
}

/* ========================================
   小さいスマートフォン
======================================== */

@media screen and (max-width: 480px) {

	.page-title {
		padding: 28px 16px;
		text-align: center;
	}

	.page-title-en {
		font-size: 0.72rem;
	}

	.page-title h1,
	.page-title h2 {
		font-size: 1.65rem;
	}

	.page-title-lead {
		font-size: 0.93rem;
		line-height: 1.8;
	}

	.page-title--section {
		padding: 0;
	}

	.page-title--section h2 {
		font-size: 1.45rem;
	}

	.profile-txt {
		padding: 24px 16px;
	}

	.profile-txt h2 {
		margin-bottom: 24px;
		padding-left: 20px;
		font-size: 1.15rem;
	}

	.profile-txt h2::before {
		width: 8px;
		height: 27px;
	}

	.profile-txt p {
		font-size: 0.95rem;
		line-height: 1.9;
	}

	.profile-signature {
		margin-top: 26px !important;
	}
	
	.profile-signature img {
		width: 120px;
	}

	.company th,
	.company td {
		font-size: 0.9rem;
	}

	.business-list li {
		padding-left: 1.25em;
	}
}