@charset "utf-8";
/* CSS Document */


/*==================================================================

		$index　＊　mainvisual

==================================================================*/
#top_mainvisual {
	width: 100%;
	aspect-ratio: 1920 / 900;
	overflow: hidden;
}
#top_mainvisual .slick-list,
#top_mainvisual .slick-track,
#top_mainvisual .slick-slide,
#top_mainvisual .slick-slide > div,
#top_mainvisual .slick-slide p {
	height: 100%;
}
#top_mainvisual .slick-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	min-height: 750px;
}
.mv_left  { object-position: left center; }
.mv_right { object-position: right center; }

@media screen and (max-width: 640px) {
	#top_mainvisual {
		aspect-ratio: 3 / 4;
	}
	#top_mainvisual .slick-slide img {
		min-height: unset;
	}
}



/*============================================================================

		共通　＊　TOPのみ

============================================================================*/

/*------------------------------ 縦書きのh3 ------------------------------*/
#top_news h3 , #top_information h3 , #top_column h3 {
	writing-mode: vertical-rl;
	display: flex;
	align-items: flex-end;
	gap: 20px;
}
#top_news h3 em , #top_information h3 em , #top_column h3 em {
	margin-bottom: 0;
	font-size: 40px;
	transform: rotate(360deg);
}
#top_news h3 span , #top_information h3 span , #top_column h3 span {
	margin-left: 5px;
	font-size: 18px;
	letter-spacing: 4px;
}

/* ---------- 左：見出しエリア ---------- */
#top_news .h3_heading , #top_information .h3_heading , #top_column .h3_heading {
	display: flex;
	flex-direction: column;
	align-items: center;	
}
#top_news .h3_heading h3 , #top_information .h3_heading h3 , #top_column .h3_heading h3 {
	margin-left: 14px;
}

@media screen and (max-width: 640px) {
	#top_news h3 , #top_information h3 , #top_column h3 {
		writing-mode: horizontal-tb;
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}
	#top_news h3 em , #top_information h3 em , #top_column h3 em {
		font-size: 44px;
		margin-bottom: 10px;
		transform: none;
	}
	#top_news h3 span , #top_information h3 span , #top_column h3 span {
		font-size: 17px;
		letter-spacing: 2px;
		margin-left: 0;
	}
	
	/* ---------- 左：見出しエリア ---------- */
	#top_news .h3_heading , #top_information .h3_heading , #top_column .h3_heading {
		flex-direction: row;
        align-items: center;
        justify-content: space-between;
	}
	#top_column .h3_heading {
        width: 95%;
	}
	#top_news .h3_heading h3 , #top_information .h3_heading h3 , #top_column .h3_heading h3 {
		margin-left: 0;
		margin-bottom: 0;
	}
}



/*============================================================================

		#top-goldline　＊　お知らせ〜医院概要を結ぶ大理石ライン

============================================================================*/
#top-goldline {
	position: relative;
}
#top-goldline::before {
	position: absolute; content: "";
	width: 500px; height: 100%;
	top: 0; right: 0;
	background: url("../images/bg_03.jpg") center;
}

@media screen and (max-width: 640px) {
	#top-goldline::before {
		width: 30%;
		background-size: cover;
	}
}





/*============================================================================

		#top_news　＊　お知らせ

============================================================================*/
#top_news {
	position: relative;
	padding: 95px 0;
	z-index: 2;
}
#top_news .inner {
	width: 90%;
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	gap: 70px;
}
@media screen and (max-width: 640px) {
	#top_news {
		padding: 70px 0 30px;
	}
	#top_news .inner {
		flex-direction: column;
		gap: 40px;
	}
}


/*------------------------------ お知らせ記事リスト ------------------------------*/
#top_news ul {
	position: relative;
	width: 100%;
	max-width: 810px;
	margin-top: 50px;
	z-index: 5;
}
#top_news ul li {
	margin-bottom: 10px;
	background: #f4f3f0;
	border-radius: 10px;
	transition: 0.3s;
}
#top_news ul li a {
	display: flex;
	align-items: center;
	height: 100px;
	padding: 0 30px 0 40px;
	gap: 40px;
	color: #222;
	transition: 0.3s;
}
#top_news ul li:hover {
	background: #eeede9;
}
#top_news ul li a:hover {
	padding: 0 25px 0 50px;
}
@media screen and (max-width: 640px) {
	#top_news ul {
		margin-top: 0;
	}
	#top_news ul li a {
		height: auto;
		min-height: 70px;
		padding: 12px 16px;
		gap: 16px;
	}
	#top_news ul li a:hover {
		padding: 12px 16px;
	}
}

/* ---------- 日付 ---------- */
#top_news time {
	width: 70px;
	display: flex;
	flex-direction: column;
	gap: 7px;
	line-height: 1;
	color: #418b7b;
	font-family: "Lato", sans-serif;
}
.news_year {
	margin-top: 2px;
	font-size: 14px;
}
.news_day {
	font-size: 25px;
}
@media screen and (max-width: 640px) {
	#top_news time {
		width: 54px;
		gap: 4px;
	}
	.news_year {
		font-size: 12px;
	}
	.news_day {
		font-size: 18px;
	}
}

/* ---------- タイトル ---------- */
.news_title {
	flex: 1;
	font-weight: 500;
	line-height: 1.5;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
@media screen and (max-width: 640px) {
	.news_title {
		white-space: normal;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}
	
}

/* ---------- 矢印（→をCSSで） ---------- */
.news_arrow {
	position: relative;
	flex-shrink: 0;
	width: 14px;
	height: 14px;
	display: block;
	transition: 0.3s;
}
.news_arrow::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000;
	transform: translateY(-50%);
}
.news_arrow::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 8px;
	height: 8px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	background: transparent;
	transform: translateY(-50%) rotate(45deg);
}
#top_news ul li a:hover .news_arrow {
	width: 19px;
}
@media screen and (max-width: 640px) {
	#top_news ul li a:hover .news_arrow {
		width: 14px;
	}
}


/*------------------------------ スライダー ------------------------------*/
#top_news_slide .slider:first-of-type {
	position: absolute;
	top: 100px;
	right: 0;
	width: 17%;
	height: 250px;
	border-radius: 70px 0 0 20px;
	overflow: hidden;
}
#top_news_slide .slider:last-of-type {
	position: absolute;
	top: 415px;
	right: 17%;
	width: 12%;
	height: 170px;
	border-radius: 20px 20px 70px 20px;
	overflow: hidden;
}
#top_news_slide .slider img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#top_news_slide .slider .slick-slide,
#top_news_slide .slider .slick-list,
#top_news_slide .slider .slick-track {
	height: 100%;
}
#top_news_slide .slider .slick-slide > div {
	height: 100%;
}
@media screen and (max-width: 640px) {
	#top_news_slide {
		display: none;
	}
}


/*============================================================================

		#top_information　＊　医院概要

============================================================================*/
#top_information {
	position: relative;
	padding: 20px 0 150px;
	z-index: 2;
}
#top_information .inner {
	display: flex;
	align-items: flex-start;
	width: 90%;
	max-width: 1300px;
	margin: 0 auto;
	gap: 70px;
}
@media screen and (max-width: 640px) {
	#top_information {
		padding: 50px 0 70px;
	}
	#top_information .inner {
		flex-direction: column;
		gap: 40px;
	}
}


/*------------------------------ コンテンツエリア ------------------------------*/
.info_content {
	flex: 1;
	display: flex;
	align-items: flex-end;
	gap: 80px;
}
@media screen and (max-width: 640px) {
	.info_content {
		flex-direction: column;
		align-items: stretch;
		flex-direction: column-reverse;
		gap: 20px;
	}
}

/*------------------------------ 左 ------------------------------*/
.info_left {
	flex: 1.05;
	margin-top: 25px;
}
@media screen and (max-width: 640px) {
	.info_left {
		margin-top: 0;
	}
}

/*------------------------------ 右 ------------------------------*/
.info_right {
	flex: 0.95;
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	margin-bottom: 7px; /*微調整*/
}
.info_right dl {
	display: flex;
	padding-bottom: 20px;
	border-bottom: 1px solid #c7c7c7;
}
.info_right dl:first-of-type {
	margin-top: 10px;
	padding-top: 20px;
	border-top: 1px solid #c7c7c7;
}
.info_right dl:last-of-type {
	align-items: center;
	margin-bottom: 20px;
}
.info_right dt {
	width: 120px;
	text-align: center;
	border-right: 1px dashed #c7c7c7;
}
.info_right dd {
	flex: 1;
	line-height: 1.8;
	padding: 0 20px;
}
.info_right dl:last-of-type dd {
	font-size: 32px;
	line-height: 1;
	font-family: "Cormorant Infant", serif;
  	font-optical-sizing: auto;
	color: var(--color-gold);
	letter-spacing: 2px;
}
.info_right dl:last-of-type dd a {
	color: var(--color-gold);
}
@media screen and (max-width: 640px) {
	.info_right {
		gap: 14px;
		margin-bottom: 0;
	}
	.info_right dl {
		padding-bottom: 14px;
	}
	.info_right dl:first-of-type {
		padding-top: 14px;
	}
	.info_right dt {
		width: 90px;
	}
	.info_right dd {
		padding: 0 14px;
	}
	.info_right dl:last-of-type dd {
		font-size: 28px;
		letter-spacing: 1px;
	}
}

/*------------------------------ 共通：院内写真 ------------------------------*/
#top_information figure {
	width: 100%;
	overflow: hidden;
}
#top_information figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.info_left figure {
	height: 370px;
	border-radius: 20px 90px 20px 20px;
	margin-bottom: 50px;
}
.info_right figure {
	height: 315px;
	border-radius: 90px 20px 20px 20px;
}
@media screen and (max-width: 640px) {
	#top_information figure {
		display: none;
	}
}





/*============================================================================

		#top_medical　＊　診療案内

============================================================================*/
#top_medical {
	padding-top: 150px;
	background: #f4f3f0;
	border-radius: 150px 0 0 0;
}
@media screen and (max-width: 640px) {
	#top_medical {
		padding-top: 60px;
		border-radius: 60px 0 0 0;
	}
}


/* ---------- リスト ---------- */
#top_medical .top_medical-list {
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
	width: 90%;
	max-width: 1600px;
	margin: 0 auto;
}
@media screen and (max-width: 640px) {
	#top_medical .top_medical-list {
		flex-direction: column;
		gap: 20px;
	}
}


/* ---------- 各アイテム ---------- */
.top_medical-list li {
	position: relative;
	overflow: hidden;
	text-align: center;
}
.top_medical-list li:nth-child(1) {
	flex: 1;
	background: url("../images/top/medical_01.jpg") center;
	background-size: cover;
	border-radius: 120px 20px 20px 20px;
}
.top_medical-list li:nth-child(2) {
	flex: 1;
	background: url("../images/top/medical_02.jpg") center;
	background-size: cover;
	border-radius: 20px 120px 20px 20px;
}
.top_medical-list li:nth-child(3) {
	flex: 0 0 100%;
	background: url("../images/top/medical_03.jpg") center;
	background-size: cover;
	border-radius: 120px 20px 120px 20px;
}
.top_medical-list li::before {
	position: absolute; content: "";
	top: 8%; left: 0;
	width: 100%; height: 84%;
	background: rgba(191, 219, 213, 0.8);
}
.top_medical-list li:nth-child(3)::before {
	background: rgba(215, 193, 160, 0.8);
}
@media screen and (max-width: 640px) {
	.top_medical-list li:nth-child(1) {
		border-radius: 10px;
	}
	.top_medical-list li:nth-child(2) {
		border-radius: 10px;
	}
	.top_medical-list li:nth-child(3) {
		flex: 1;
		border-radius: 10px;
	}
	.top_medical-list li::before {
		top:5%;
		height: 90%;
	}
}


/* ---------- コンテンツ ---------- */
#top_medical .box {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	padding: 80px 40px;
}
@media screen and (max-width: 640px) {
	#top_medical .box {
		padding: 30px 24px 20px;
		gap: 14px;
	}
}


/* ---------- アイコン ---------- */
#top_medical i {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(65, 139, 123, 0.45);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid #FFF;
}
#top_medical .top_medical-list li:nth-child(3) i {
	background: rgba(140, 100, 50, 0.45);
}
@media screen and (max-width: 640px) {
	#top_medical i {
		width: 70px;
		height: 70px;
	}
	#top_medical li:nth-of-type(1) i img { width: 29px;}
	#top_medical li:nth-of-type(2) i img { width: 29px;}
	#top_medical li:nth-of-type(3) i img { width: 37px;}
}


/* ---------- タイトル ---------- */
#top_medical dt {
	margin-bottom: 25px;
	font-family: "Shippori Mincho B1", serif;
	line-height: 1;
}
#top_medical dt em {
	font-size: 40px;
	letter-spacing: 0.1em;
}
#top_medical dt span {
	font-size: 28px;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 640px) {
	#top_medical dt {
		margin-bottom: 14px;
	}
	#top_medical dt em {
		font-size: 28px;
	}
	#top_medical dt span {
		font-size: 20px;
	}
	#top_medical dd {
		font-size: 14px;
	}
}

/* ---------- btn ---------- */
.btn02 {
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	background: rgba(102, 157, 145, .7);
}
.btn03 {
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	background: rgba(181, 148, 99, .7);
}
@media screen and (max-width: 640px) {
}




/*------------------------------ 文字無限スクロール ------------------------------*/
#top_medical .scroll-infinity .scroll-infinity-list {
  	display: flex;
  	overflow: hidden;
	height: 200px;
}
#top_medical .scroll-infinity .scroll-infinity-list ul {
  	display: flex;
	white-space: nowrap;
  	animation: infinity-scroll-left 80s infinite linear 0.5s both;
	font-size: 200px;
	font-family: "Cormorant Infant", serif;
  	font-optical-sizing: auto;
	color: #FFF;
	line-height: 0.7;
}
@keyframes infinity-scroll-left {
	from { transform: translateX(0);}
	to   { transform: translateX(-100%);}
}

@media screen and (max-width: 640px) {
	#top_medical .scroll-infinity .scroll-infinity-list {
		height: 80px;
	}
	#top_medical .scroll-infinity .scroll-infinity-list ul {
		font-size: 80px;
	}
}




/*============================================================================

		#top_visiting

============================================================================*/
#top_visiting {
	position: relative;
	padding: 80px 0 70px;
	background: #f4f3f0;
}
@media screen and (max-width: 640px) {
	#top_visiting {
		padding: 30px 0 15px;
	}
}


/*------------------------------ リード文 ------------------------------*/
#top_visiting dl {
	position: relative;
	text-align: center;
	margin-top: 50px;
	z-index: 5;
}
#top_visiting dt {
	margin-bottom: 30px;
	color: #418b7b;
	font-size: 25px;
	font-family: "Shippori Mincho B1", serif;
	letter-spacing: 3px;
}
#top_visiting dd {
	line-height: 2.2;
}
@media screen and (max-width: 640px) {
	#top_visiting dl {
		margin-top: 30px;
		padding: 0 5%;
	}
	#top_visiting dt {
		font-size: 18px;
		letter-spacing: 1px;
		margin-bottom: 20px;
	}
	#top_visiting dd {
		text-align: left;
		line-height: 2;
	}
}


/*------------------------------ リスト ------------------------------*/
#top_visiting ul {
	display: flex;
	gap: 25px;
	width: 90%;
	max-width: 1600px;
	margin: 90px auto 0;
}
#top_visiting ul li {
	flex: 1;
}
#top_visiting figure {
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 20px;
	aspect-ratio: 380 / 280;
}
#top_visiting figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#top_visiting ul li p {
	text-align: center;
}
@media screen and (max-width:1440px) {
	#top_visiting ul li:nth-of-type(3) p {
		font-size: 15px;
		line-height: 2.2;
	}
}
@media screen and (max-width: 640px) {
	#top_visiting ul {
		flex-wrap: wrap;
		gap: 16px;
		margin-top: 40px;
	}
	#top_visiting ul li {
		flex: 0 0 calc(50% - 8px);
	}
	#top_visiting figure {
		border-radius: 10px;
	}
	#top_visiting ul li p {
		text-align: justify;
        font-size: 14px;
        line-height: 1.8;
        letter-spacing: 0;
	}
	#top_visiting ul li:nth-of-type(3) p {
        font-size: 14px;
        line-height: 1.8;
	}
}


/*------------------------------ スライダー ------------------------------*/
#top_visiting_slide .slider:first-of-type {
	position: absolute;
	top: -30px;
	right: 3%;
	width: 24%;
	height: 300px;
	border-radius: 70px 20px 20px 20px;
	overflow: hidden;
}
#top_visiting_slide .slider:last-of-type {
	position: absolute;
	top: 215px;
	left: 3%;
	width: 300px;
	height: 210px;
	border-radius: 20px 70px 20px 20px;
	overflow: hidden;
}
#top_visiting_slide .slider img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#top_visiting_slide .slider .slick-slide,
#top_visiting_slide .slider .slick-list,
#top_visiting_slide .slider .slick-track {
	height: 100%;
}
#top_visiting_slide .slider .slick-slide > div {
	height: 100%;
}
@media screen and (max-width:1650px) {
	#top_visiting_slide .slider:last-of-type {
		top: 60px;
	}
}
@media screen and (max-width: 640px) {
	#top_visiting_slide {
		display: none;
	}
}




/*============================================================================

		#doctor　＊　ご挨拶

============================================================================*/
#top_doctor {
	position: relative;
	padding: 220px 0 110px;
	background: url("../images/bg_01.jpg") no-repeat top center;
}
#top_doctor::before {
	position: absolute; content: "";
	top: -2px; left: 0;
	width: 100%; height: 110px;
	border-radius: 0 0 100px 100px;
	background: #f4f3f0;
}
@media screen and (max-width: 640px) {
	#top_doctor {
		padding: 100px 0 60px;
	}
	#top_doctor::before {
		height: 60px;
		border-radius: 0 0 60px 0;
	}
	#top_doctor h3 {
		padding: 0 5%;
	}
}


/*------------------------------ inner ------------------------------*/
#top_doctor .inner {
	display: flex;
	align-items: flex-end;
	margin-top: 70px;
}
@media screen and (max-width:1560px) {
	#top_doctor .inner {
		align-items: flex-start;
	}
}
@media screen and (max-width: 640px) {
	#top_doctor .inner {
		flex-direction: column;
		align-items: stretch;
		margin-top: 40px;
	}
}


/*------------------------------ 左エリア ------------------------------*/
.top_doctor_left {
	width: 45%;
}
.top_doctor_left figure {
	border-radius: 0 150px 40px 0;
	overflow: hidden;
	margin-bottom: 30px;
	aspect-ratio: 3 / 2;
}
.top_doctor_left figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.top_doctor_left p {
	text-align: center;
	font-size: 18px;
	font-weight: 500;
}
@media screen and (max-width:1740px) {
	.top_doctor_left figure {
		aspect-ratio: 2.7 / 2;
	}
}
@media screen and (max-width:1440px) {
	.top_doctor_left {
		width: 43%;
	}
	.top_doctor_left figure {
		aspect-ratio: 2.5 / 2;
	}
}
@media screen and (max-width:1340px) {
	.top_doctor_left {
		width: 43%;
	}
	.top_doctor_left figure {
		aspect-ratio: 2.3 / 2;
	}
}
@media screen and (max-width: 640px) {
	.top_doctor_left {
		width: 100%;
	}
	.top_doctor_left figure {
		aspect-ratio: 4 / 3;
		border-radius: 0 60px 0 0;
		margin-bottom: 16px;
	}
	.top_doctor_left p {
		font-size: 13px;
		padding: 0 5%;
	}
}


/*------------------------------ 右エリア ------------------------------*/
.top_doctor_right {
	flex: 1;
	padding-left: 6%;
	padding-right: 8%;
}
.top_doctor_right dl dt {
	margin-bottom: 35px;
	font-size: 25px;
	color: #418b7b;
	font-family: "Shippori Mincho B1", serif;
	letter-spacing: 3px;
}
.top_doctor_right dl dd {
	line-height: 2.2;
}
.top_doctor_right dl dd p {
	margin-bottom: 2em;
}
.top_doctor_right dl dd p:last-of-type {
	margin-bottom: 0;
}
@media screen and (max-width:1740px) {
	.top_doctor_right {
		padding-left: 5%;
		padding-right: 6%;
	}
}
@media screen and (max-width:1560px) {
	.top_doctor_right {
		padding-left: 5%;
		padding-right: 5%;
	}
	.top_doctor_right dl dd p {
		margin-bottom: 1em;
	}
}
@media screen and (max-width: 640px) {
	.top_doctor_right {
		padding: 40px 5% 0;
	}
	.top_doctor_right dl dt {
		font-size: 18px;
		letter-spacing: 1px;
		margin-bottom: 20px;
	}
	.top_doctor_right dl dd {
		line-height: 2;
	}
}





/*============================================================================

		#column　＊　コラム

============================================================================*/
#top_column {
	height: 630px;
	box-sizing: border-box;
	padding-top: 40px;
	overflow:hidden;
	background: url("../images/bg_02.jpg") no-repeat center top;
	background-size: cover;
	border-radius: 0 0 100px 100px;
}
@media screen and (max-width: 640px) {
	#top_column {
		height: auto;
		padding: 10px 0 60px;
		border-radius: 0 0 40px 40px;
		overflow: visible;
	}
}

/* ---------- 外枠：左端を1300px中央揃えの位置に合わせる ---------- */
#top_column .inner {
	display: flex;
	align-items: flex-start;
	padding-left: calc((100% - 1300px) / 2);
	gap: 70px;
}
@media screen and (max-width:1450px) {
	#top_column .inner { padding-left: calc((100% - 1270px) / 2);	}
}
@media screen and (max-width:1400px) {
	#top_column .inner { padding-left: calc((100% - 1220px) / 2);	}
}
@media screen and (max-width:1350px) {
	#top_column .inner { padding-left: calc((100% - 1170px) / 2);	}
}
@media screen and (max-width: 640px) {
	#top_column .inner {
		flex-direction: column;
		padding-left: 5%;
		gap: 40px;
	}
}

/* ---------- カードリスト（右にはみ出す） ---------- */
.column_list {
	display: flex;
	gap: 50px;
	flex-shrink: 0;
}
@media screen and (max-width: 640px) {
	.column_list {
		width: 95%;
		gap: 16px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		padding: 0 5% 16px 0;
		scrollbar-width: none;
	}
	.column_list::-webkit-scrollbar {
		display: none;
	}
}

/* ---------- カード ---------- */
.column_item {
	margin-top: 50px;
	flex: 0 0 360px;
	background: #fff;
	border-radius: 40px 10px 40px 10px;
	overflow: hidden;
}
.column_item a {
	display: block;
	color: #222;
	transition: opacity 0.2s;
}
.column_item a:hover {
	opacity: 0.75;
}
@media screen and (max-width: 640px) {
	.column_item {
		flex: 0 0 260px;
		margin-top: 0;
		border-radius: 20px 6px 20px 6px;
	}
}

/* ---------- figure ---------- */
.column_item figure {
	width: 100%;
	aspect-ratio: 360 / 220;
	border-radius: 40px 10px 0 0;
	overflow: hidden;
}
.column_item figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media screen and (max-width: 640px) {
	.column_item figure {
		aspect-ratio: 260 / 160;
		border-radius: 20px 6px 0 0;
	}
}

/* ---------- カード本文エリア ---------- */
.column_body {
	padding: 30px;
}
.column_meta { /*横並び*/
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 5px;
}
.column_date { /*年月日*/
	margin-top: 1px;
	font-size: 14px;
	color: #418b7b;
	letter-spacing: 0.03em;
	font-family: "Lato", sans-serif;
}
.column_cat { /*カテゴリー*/
	font-size: 14px;
	color: #b59463;
}
.column_title { /*タイトル*/
	font-weight: 500;
  	display: -webkit-box;
  	-webkit-box-orient: vertical;
  	-webkit-line-clamp: 2;
  	overflow: hidden;
}
@media screen and (max-width: 640px) {
	.column_body {
		padding: 16px;
	}
	.column_meta {
		gap: 12px;
		margin-bottom: 6px;
	}
	.column_date,
	.column_cat {
		font-size: 13px;
	}
	.column_title {
		line-height: 1.8;
	}
}



