@charset "utf-8";

/* ------------------------------
Base
------------------------------ */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	font-size: 14px;
	color: #464646;
	line-height: 1.8;
	letter-spacing: 0.05em;
	margin: 0;
	overflow-x: hidden;
}

html,
body {
	overflow-x: clip;
}

.pc {
	display: block;
}

.sp {
	display: none;
}


@supports not (overflow: clip) {

	html,
	body {
		overflow-x: hidden;
	}
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

ul,
ol {
	list-style: none;
	padding: 0;
	margin: 0;
}

h1,
h2,
h3,
h4 {
	font-weight: 400;
	margin: 0;
}

p {
	margin: 0;
}

/* ------------------------------
Layout
------------------------------ */
section {
	padding: 100px 3%;
	margin: 0 auto;
	position: relative;
}

.mw1200 {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

.bg_marble {
	background: url(../images/marble-white.jpg) center center / cover no-repeat;
}

/* ------------------------------
Typography
------------------------------ */
.page_title {
	font-weight: 300;
	font-size: 32px;
	margin-bottom: 0.5em;
}

.page_title span {
	display: block;
	font-size: 14px;
	padding-top: 6px;
}

.section_title_L {
	font-size: 32px;
	margin-bottom: 10px;
	line-height: 1;
	text-align: center;
}

.section_title_M {
	font-size: 16px;
	letter-spacing: .04em;
	margin-bottom: 4em;
	text-align: center;
}

.text_style01 {
	margin-bottom: 1em;
}

.text_style02 {
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 1em;
}

.text_large {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 1em;
}

/* ------------------------------
Breadcrumbs (下層ページ共通)
------------------------------ */
.main_visual_area {
	width: 100%;
	position: relative;
	margin: 0;
	padding: 0 4% 50px;
	background: url(../images/marble-white.jpg) center center / cover no-repeat;
}

.main_visual_area .mw1200 {
	height: 220px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: end;
}

.breadcrumbs ul {
	display: flex;
	max-width: 1200px;
	margin: 0 auto;
}

.breadcrumbs li {
	font-size: 12px;
	height: 30px;
	line-height: 30px;
	margin-right: 2em;
	position: relative;
}

.breadcrumbs li::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: -1.2em;
	margin: auto;
	width: 7px;
	height: 7px;
	border-top: 1px solid #464646;
	border-right: 1px solid #464646;
	transform: rotate(45deg);
}

.breadcrumbs li:last-child::before {
	content: none;
}

/* ------------------------------
Components (共通で使うものだけ)
------------------------------ */

/* フェード（共通演出） */
.fade-in,
.fade-in-left,
.fade-in-right {
	opacity: 0;
	transition: opacity 1s ease-out, transform 1.2s ease-out;
}

.fade-in {
	transform: translateY(30px);
}

.fade-in-left {
	transform: translateX(-50px);
}

.fade-in-right {
	transform: translateX(50px);
}

.fade-in.in-view,
.fade-in-left.in-view,
.fade-in-right.in-view {
	opacity: 1;
	transform: translate(0, 0);
}

/* フレックス2カラム */
.flx {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
	position: relative;
}

.flx.reverse {
	flex-direction: row-reverse;
}

.flx_image {
	flex: 1;
	text-align: right;
}

.flx_image img {
	width: auto;
	max-width: 500px;
	height: auto;
	display: inline-block;
	object-fit: cover;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* リンク演出 */
.link-wrapper {
	text-align: right;
}

.fancy-link {
	display: inline-flex;
	align-items: center;
	font-size: 1rem;
	font-weight: 500;
	color: #464646;
	position: relative;
	overflow: hidden;
	padding: 0.5em 0.8em;
	transition: color 0.3s ease;
}

.fancy-link .arrow {
	display: inline-block;
	margin-left: 0.5em;
	transition: transform 0.3s ease;
}

.fancy-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background-color: #464646;
	transform: translateX(-100%);
	transition: transform 0.3s ease;
}

.fancy-link:hover {
	color: #000;
}

.fancy-link:hover::after {
	transform: translateX(0);
}

.fancy-link:hover .arrow {
	transform: translateX(5px);
}


.news_list li {
  margin-bottom: 30px;
}

.news_title {
  font-weight: bold;
}

.news_date {
  color: #555;
}

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

.news_list li {
  margin-bottom: 24px;
}

.news_list li a {
  display: block;
  padding: 28px 32px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e5e5e5;
  transition: 0.3s ease;
  position: relative;
}

.news_list li:nth-child(odd) a {
  background: #fff;
}

.news_list li:nth-child(even) a {
  background: #f3f7f6;
}

.news_list li a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #c9ddd8;
}

.news_date {
  color: #777;
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.news_title {
  font-weight: bold;
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 12px;
  color: #222;
}

.news_desc {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
}

.news_list li a::after {
  content: "詳しく見る →";
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
  color: #777;
  border-bottom: 1px solid #777;
}

.news_list li a.noLink {
  cursor: default;
  pointer-events: none;
}

.news_list li a.noLink:hover {
  transform: none;
  box-shadow: none;
  border-color: #e5e5e5;
}

.news_list li a.noLink::after {
  content: none;
}

@media screen and (max-width: 767px) {
  .news_list li a {
    padding: 22px 20px;
    border-radius: 10px;
  }

  .news_desc {
    font-size: 14px;
  }
}

/* ------------------------------
Responsive
------------------------------ */
@media (max-width: 1024px) {

	.flx,
	.flx.reverse {
		flex-direction: column;
		gap: 30px;
	}

	.flx_image {
		text-align: center;
	}

	.flx_image img {
		max-width: 90%;
	}
}

@media (max-width: 767px) {
	.pc {
		display: none !important;
	}

	.sp {
		display: block;
	}

	section {
		padding: 60px 4%;
	}

	.main_visual_area {
		padding: 34px 4% 24px;
	}

	.main_visual_area .mw1200 {
		height: 17vh;
	}

	.page_title {
		font-size: 20px;
	}

	.section_title_L {
		font-size: 20px;
	}

	.text_large {
		font-size: 16px;
	}

	.breadcrumbs li {
		font-size: 12px;
		margin-right: 1.5em;
	}

	.breadcrumbs li::before {
		right: -1em;
		width: 4px;
		height: 4px;
	}

	.flx {
		flex-direction: column;
	}

	.fade-in-left,
	.fade-in-right {
		transform: translateY(18px);
	}
}