@charset "utf-8";

:root {
	--vw: 1vw;
	--main-font-color: #442a0e;
	--main-color: #ff841f;
	--main-color-middle: #ffc89a;
	--main-color-light: #ffdec3;
	--main-color-super-light: #fff7f0;
	--orange: #ff841f;
	--green: #85d07f;
	--white: #fff;
	--default-letter-spacing: 0.05em;
	--default-transition: 0.5s;
	--max-width: 1200px;
	--inner-padding: 40px;
	--inner-width: calc(var(--max-width) + var(--inner-padding) * 2);
	--over-margin: min(calc((-1 * var(--vw) * 100 + var(--max-width)) / 2),
			calc(-1 * var(--inner-padding)));
	/* noto入れるの忘れない */
	--font-main: YakuHanRPs, "Noto Sans JP", "メイリオ", "Meiryo", "Hiragino Kaku Gothic ProN",
		"ヒラギノ角ゴ ProN W3", Hiragino Sans, "Osaka", "MS PGothic", -apple-system,
		BlinkMacSystemFont, arial, helvetica, sans-serif;
	--font-min: YakuHanMPs;
	--font-maru: YakuHanRPs, "Zen Maru Gothic";
	--font-default: 1.4rem;
}

/*共通*/
.catch_copy,
.flow_arrow_box .tl,
.flow_arrow_box .tl_block .step p,
#under .catch,
.m_col_ttl,
.reason_line_text_ttl,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-maru);
}

.t_section {
	padding: 6rem 0;
}

#wrapper {
	padding-top: 5rem;
}

/*その他の追加変更 ここから*/
.t_ttl01 {
	text-align: center;
	margin-bottom: 3rem;
	display: flex;
	flex-direction: column;

	.txt01 {
		font-size: 2.6rem;
		letter-spacing: 0.12em;
		font-weight: 500;
		line-height: 1.5;
	}

	.txt02 {
		font-size: 1.6rem;
		letter-spacing: 0.2em;
		color: var(--green);
		font-weight: 700;
		line-height: 1.5;
	}
}

.m_txt p {
	line-height: 1.875;
}

.m_txt p+p {
	margin-top: 1em;
}

.btn01 {
	--btn-height: 5rem;
	--btn-width: auto;
	--icon-right: 1.4rem;
	--icon-size: 0.7rem;
	--icon-color: #fff;
	--border-radius: calc(var(--btn-height) / 2 + 1rem);
	--border-width: 0px;
	font-size: 1.6rem;
	padding: 1.5rem 4rem;
	background: linear-gradient(90deg, rgb(255, 132, 31) 0%, rgb(255, 184, 31) 67%);
	color: #fff;
	letter-spacing: 0.08em;
	line-height: 1.4;
	border-radius: var(--border-radius);
	border: var(--border-width) solid var(--main-color);
	min-width: var(--btn-width);
	min-height: var(--btn-height);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-inline: auto;
	font-family: var(--font-maru);
	font-weight: 500;

	&:before {
		content: "";
		position: absolute;
		border: 0;
		top: 50%;
		right: var(--icon-right);
		width: var(--icon-size);
		height: auto;
		aspect-ratio: 32/48;
		transform: translateY(-50%);
		-webkit-mask: url(../images/icon_arrow.svg) center / 100% no-repeat;
		mask: url(../images/icon_arrow.svg) center / 100% no-repeat;
		background: var(--icon-color);
	}

	&:after {
		display: none;
	}

	span:before {
		border-radius: var(--border-radius);
		content: '';
		display: block;
		position: absolute;
		top: calc(var(--border-width) * -1);
		left: calc(var(--border-width) * -1);
		width: calc(100% + var(--border-width) * 2);
		height: calc(100% + var(--border-width) * 2);
		z-index: 10;
		background: #fff;
		opacity: 0;
		pointer-events: none;
		border-radius: var(--border-radius);
		transition: 0.5s;
	}

	&.white {
		--border-width: 2px;
		--icon-color: var(--main-font-color);
		border-color: var(--main-color);
		background: #fff;
		font-weight: 700;
		color: var(--main-font-color);
		--shadow: 0 0px 1.5rem color-mix(in srgb, #ff841f 60%, transparent);
		box-shadow: var(--shadow), var(--shadow), var(--shadow);
	}
}

.m_fixed_bnr {
	position: fixed;
	left: 1rem;
	bottom: 6.4rem;
	z-index: 100;
	box-shadow: 0px 0px 1.4rem -0.4rem color-mix(in srgb, #000 15%, transparent);

}

.m_fixed_bnr_item {
	background: #fff;
	position: relative;
	width: 25rem;

	.m_fixed_bnr_close {
		background: var(--main-color);
		font-weight: 500;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 1.3rem;
		width: 2.4rem;
		aspect-ratio: 1/1;
		border-radius: 50%;
		line-height: 1;
		position: absolute;
		top: -1rem;
		right: -1rem;
		z-index: 10;
		color: #fff;
		padding-bottom: 0.2rem;
	}

	a {
		position: relative;
		z-index: 1;
		display: block;
	}
}

/*______________________________________________________________________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
m_mv
______________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
.m_mv {
	position: relative;
}

.m_mv img {
	width: 100%;
}

.m_mv_inner {
	position: relative;
}

.m_mv_main {
	position: relative;
	z-index: 1;
}

/*______________________________________________________________________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
t_news
______________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
.t_news_block {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	border: 2px solid #ffcba1;
	border-radius: 1.5rem;
	padding: 3rem 2rem;
}

.t_news_head {
	display: contents;
}

.t_news_ttl {
	display: flex;
	flex-direction: column;

	.txt01 {
		font-size: 2.6rem;
		letter-spacing: 0.12em;
		font-weight: 500;
		line-height: 1.5;
	}

	.txt02 {
		font-size: 1.6rem;
		letter-spacing: 0.2em;
		color: var(--green);
		font-weight: 700;
		line-height: 1.5;
	}
}

.t_news_btns {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 1rem;
	order: 2;
}

.t_news_btn {
	--btn-height: 5rem;
	--btn-width: auto;
	--icon-right: 1rem;
	--icon-size: 0.7rem;
	--icon-color: var(--orange);
	--border-radius: calc(var(--btn-height) / 2 + 1rem);
	--border-width: 2px;
	font-size: 1.6rem;
	padding: 1.5rem 1rem;
	color: var(--orange);
	letter-spacing: 0.08em;
	line-height: 1.4;
	border-radius: var(--border-radius);
	border: var(--border-width) solid var(--main-color);
	min-width: var(--btn-width);
	min-height: var(--btn-height);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-inline: auto;
	font-family: var(--font-maru);
	font-weight: 500;
	gap: 0.4rem;
	text-decoration: none;
	position: relative;

	&:before {
		content: "";
		position: absolute;
		border: 0;
		top: 50%;
		right: var(--icon-right);
		width: var(--icon-size);
		height: auto;
		aspect-ratio: 32/48;
		transform: translateY(-50%);
		-webkit-mask: url(../images/icon_arrow.svg) center / 100% no-repeat;
		mask: url(../images/icon_arrow.svg) center / 100% no-repeat;
		background: var(--icon-color);
	}

	.txt01 {
		font-size: 1.7rem;
	}

	.txt02 {
		font-size: 1.4rem;
	}
}

.t_news_body {
	overflow: hidden;
}

.t_news_tabs_btns {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.7rem;
}

.t_news_tabs_btn {
	--color: #fd9844;
	position: relative;
	color: var(--main-font-color);
	height: 3.8rem;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--color);
	background: #fff;
	transition: var(--default-transition);
	font-family: var(--font-maru);
	font-weight: 500;
	font-size: 1.5rem;
	padding-bottom: 0.1rem;

	&.on {
		background: var(--color);
	}

	&:nth-of-type(1) {
		&.on {
			color: #fff;
			background: var(--color);
		}
	}

	&:nth-of-type(2) {
		--color: #ffcba1;
	}

	&:nth-of-type(3) {
		--color: #fcf3aa;
	}

	&:nth-of-type(4) {
		--color: #f0e7d1;
	}
}

.t_news_tabs_items {
	margin-top: 1.5rem;
}

.m_newslist_item {
	border-top: 1px solid var(--main-font-color);
}

.m_newslist_item:last-of-type {
	border-bottom: 1px solid var(--main-font-color);
}

.m_newslist_item_in {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	padding: 1rem 0;
	gap: 0.3rem;
	text-decoration: none;
}

.m_newslist_item_data {
	display: flex;
	gap: 0.7rem;
	align-items: center;
}

.m_newslist_item_data .date {
	letter-spacing: 0.16em;
	font-family: var(--font-maru);
}

.m_newslist_item_data .cat {
	font-family: var(--font-maru);
	font-weight: 500;
	letter-spacing: 0.16em;
	min-width: 8rem;
	padding: 0.3rem 1rem 0.3rem calc(1rem + 0.16em);
	line-height: 1.5;
	background: #ffcba1;
	text-align: center;
	font-size: 1.2rem;

	&.column {
		background: #fcf3aa;
	}

	&.activity {
		background: #f0e7d1;
	}
}

.m_newslist_item_in em {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

/*______________________________________________________________________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
t_bnrs
______________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
.t_bnrs {
	background: url(../images/top/bnr_bg.webp) center;
	padding: 4rem 0;
}

.t_bnrs_block {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr 1fr;
}

.t_bnr {
	a {
		display: block;
	}
}

.t_bnr03 {
	grid-column: 1 / -1;
}

/*______________________________________________________________________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
t_info
______________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
.t_info {
	position: relative;
	isolation: isolate;
	background: #fff;
	overflow: hidden;

	&::before,
	&::after {
		content: "";
		position: absolute;
		z-index: -1;
	}

	&::before {
		aspect-ratio: 799 / 617;
		top: -12rem;
		right: -4rem;
		width: 30rem;
		background: url(../images/top/clinic_shape01.webp) center / 100% no-repeat;
	}

	&::after {
		aspect-ratio: 639 / 530;
		top: 15rem;
		left: -9rem;
		width: 25rem;
		background: url(../images/top/clinic_shape02.webp) center / 100% no-repeat;
	}
}

.t_info_container {
	display: block;
}

.t_info_detail {
	padding: 0;
}

.t_info_logo {
	width: 15rem;
	max-width: 100%;
	margin: 0 auto 2.5rem;
}

.t_info_address {
	margin: 1.3rem 0 0;
	font-size: 1.5rem;
	letter-spacing: 0.1em;
	line-height: 1.5;
	text-align: center;
}

.t_info_time {
	margin-top: 1.5rem;
}

.t_info_access {
	margin-top: 4rem;
}

.t_info_map {
	overflow: hidden;
	width: 100%;
	border-radius: 0.8rem;
}

.t_info_access_list {
	display: flex;
	gap: 2rem;
	margin-top: 2rem;
}

.t_info_btn {
	margin-top: 3rem;
	text-align: center;
}

.t_info_banner {
	margin: 5rem auto 0;
	width: 33rem;
	display: grid;
	grid-template-columns: auto auto;
	gap: 1rem;
	justify-content: center;
}

/*______________________________________________________________________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
t_first
______________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
.t_first {
	background: #ffa646 url("../images/top/first_bg_sp.webp") center / 100% repeat;
	color: #fff;
	--shadow: 0 0px 1.5rem color-mix(in srgb, #ff841f 80%, transparent);
}

.t_first_ttl {
	text-shadow: var(--shadow), var(--shadow), var(--shadow), var(--shadow);

	.txt01 {
		color: #fff;
	}

	.txt02 {
		color: #fff;
	}
}

.t_first_flow {
	display: grid;
	gap: 3rem;
}

.t_first_flow_item {
	display: grid;
	grid-template-columns: 11rem minmax(0, 1fr);
	gap: 1.6rem;
	align-items: center;
	position: relative;

	&:before {
		content: '';
		display: block;
		position: absolute;
		top: calc(100% + 1rem);
		left: 5.3rem;
		z-index: 1;
		width: 1.8rem;
		aspect-ratio: 26 / 18;
		background: var(--white);
		-webkit-clip-path: polygon(50% 100%, 100% 0, 0 0);
		clip-path: polygon(50% 100%, 100% 0, 0 0);
	}

	&:last-of-type {
		&:before {
			display: none;
		}
	}
}

.t_first_flow_txt {
	text-shadow: var(--shadow), var(--shadow), var(--shadow), var(--shadow);
	font-size: 1.4rem;
}

.t_first_btns {
	display: grid;
	gap: 1rem;
	margin-top: 3rem;

	.btn {
		margin: 0;
	}
}

/*______________________________________________________________________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
t_xxx
______________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
.t_greeting {
	position: relative;
	overflow: hidden;
	background: #ffd6ba url("../images/top/greeting_bg.webp") center top / 100% auto repeat;
	isolation: isolate;

	&::before {
		content: "";
		position: absolute;
		top: -10rem;
		left: -13rem;
		width: 48rem;
		aspect-ratio: 910 / 450;
		background: url(../images/top/greeting_shape01.webp) center / 100% no-repeat;
		pointer-events: none;
		z-index: -1;
	}

	&::after {
		content: "";
		position: absolute;
		bottom: 37rem;
		left: -3rem;
		width: 22rem;
		aspect-ratio: 378 / 226;
		background: url(../images/top/greeting_shape02.webp) center / 100% no-repeat;
		pointer-events: none;
		z-index: -1;
	}

	.inner {
		position: static;
	}
}

.t_greeting_ttl {
	width: 25rem;
}

.t_greeting_doctor {
	width: calc(100% + 4rem);
	display: block;
	margin: 0 -2rem;
	box-shadow: 0 10px 10px #ff831e3d;

	img {
		width: 34rem;
		display: block;
		margin: 0 auto;
	}
}

.t_greeting_txt {
	margin: 3rem 0 0;
}

.t_greeting_btns {
	display: grid;
	gap: 1rem;
	margin: 3rem 0 0;

	.btn {
		margin: 0;
	}
}

/*______________________________________________________________________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
t_pickup
______________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
.t_pickup {
	position: relative;
	overflow: hidden;
	background: #fff;
	isolation: isolate;

	.inner {
		position: static;
	}
}

.t_pickup_deco {
	.deco {
		position: absolute;
		z-index: -1;

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

	.deco01 {
		top: 2rem;
		left: -6rem;
		width: 16rem;
		z-index: 10;
	}

	.deco02 {
		top: 39.8rem;
		right: 0.8rem;
		width: 2rem;
	}

	.deco03 {
		top: 57rem;
		right: 36rem;
		width: 2rem;
	}

	.deco04 {
		top: 70rem;
		right: 0rem;
		width: 8rem;
	}

	.deco05 {
		top: 88rem;
		left: -2rem;
		width: 8rem;
	}

	.deco06 {
		right: 0rem;
		bottom: 15rem;
		width: 2rem;
	}

	.deco07 {
		top: 137rem;
		left: -15%;
		width: 10rem;
		z-index: 10;
	}

	.deco08 {
		right: -2rem;
		bottom: 33rem;
		width: 7rem;
	}

	.deco09 {
		left: 0;
		bottom: 28rem;
		width: 2rem;
	}

	.deco10 {
		right: 3vw;
		bottom: 2rem;
		width: 8rem;
	}

	.deco11 {
		left: -2rem;
		bottom: 48rem;
		width: 6rem;
	}
}

.t_pickup_ttl {
	width: 100%;
	margin: 0 auto;
	z-index: 11;
	position: relative;

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

.t_pickup_list {
	margin: 3rem 0 0;
}

.t_pickup_item {
	position: relative;
}

.t_pickup_img {
	overflow: hidden;
	border-radius: 1.5rem;
	display: block;
	filter: drop-shadow(0px 0px 1.2rem color-mix(in srgb, #000 15%, transparent));
}

.t_pickup_content {
	margin: 3rem 0 0;

	.btn {
		width: 100%;
		margin: 3rem 0 0;
	}
}

.t_pickup_head {
	position: relative;
	padding: 1.4rem 2rem 1.2rem 2.5rem;
	background: url("../images/top/pickup_ttl_bg01.webp") center / 100% 100% no-repeat;
}

.t_pickup_icon {
	position: absolute;
	top: -2.5rem;
	right: 1rem;
	width: 7rem;
	height: auto;
}

.t_pickup_item_ttl {
	color: #70530e;
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	line-height: 1.5;
	font-weight: 700;
}

.t_pickup_txt {
	margin: 3.9rem 0 0;
}

.t_pickup_itero {
	position: relative;
	padding: 2.4rem 2rem 3rem;
	margin: 7rem 0 0;
	border-radius: 1.5rem;
	background: #f1f1f0;
}

.t_pickup_itero_icon {
	position: absolute;
	top: -4.5rem;
	left: -1.4rem;
	z-index: 2;
	width: 8rem;
	height: auto;
}

.t_pickup_itero_img {
	width: 100%;
	display: block;
	position: absolute;
	isolation: isolate;
	top: 0;
	left: 0;
	z-index: 1;

	&:before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -1;
		background: #e8e5e0;
		border-radius: 1.5rem 1.5rem 0 0;
	}
}

.t_pickup_itero_content {
	margin: 0;
}

.t_pickup_itero_ttl {
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.6;
	padding-left: 11.1rem;
	padding-top: 0rem;
	position: relative;
	z-index: 10;

	span {
		background: linear-gradient(transparent 65%, #fff39c 65%);
	}
}

.t_pickup_item02 {
	margin: 4rem 0 0;

	.t_pickup_head {
		position: relative;
		padding: 1.4rem 2rem 1.2rem 3rem;
		background: url("../images/top/pickup_ttl_bg02.webp") center / 100% 100% no-repeat;
	}
}

.t_pickup_visual {
	position: relative;
	margin: 0;
}

.t_pickup_badges {
	display: flex;
	flex-direction: column;
	margin: 0;
	gap: 0.6rem;
	position: absolute;
	top: 0.9rem;
	left: 1.2rem;
}

.t_pickup_badge {
	position: relative;
	display: block;
	width: 7.4rem;
}

/*______________________________________________________________________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
t_treatment
______________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
.t_treatment {
	position: relative;
	background: #fff url(../images/top/treatment_bg.webp) center;

	&:before,
	&:after {
		content: '';
		position: absolute;
		left: 0;
		z-index: 2;
		width: 100%;
		height: 1.2rem;
		background: url("../images/top/treatment_line.webp") left center / auto 100% repeat-x;
	}

	&:before {
		top: 0;
		transform: translateY(-50%);
	}

	&:after {
		bottom: 0;
		transform: translateY(50%);
	}
}

.t_treatment_list {
	display: grid;
	gap: 5rem;
	margin: 3rem 0 0;
}

.t_treatment_item_ttl {
	position: relative;
	padding: 0 0 2.2rem;
	text-align: center;
	font-size: 2.1rem;
	font-weight: 500;
	letter-spacing: 0.12em;

	span {
		color: #ff841f;
	}

	&:before {
		content: '';
		position: absolute;
		bottom: 0;
		left: 50%;
		width: 11rem;
		aspect-ratio: 138/16;
		background: url("../images/top/treatment_ttl_arrow.svg") center / contain no-repeat;
		transform: translateX(-50%);
	}
}

.t_treatment_item_head {
	min-height: 12rem;
	position: relative;
	display: flex;
	align-items: center;
	padding: 2rem;
	margin: 0.9rem -5vw 0;

	.t_treatment_item_catch {
		position: relative;
		z-index: 2;
		font-family: var(--font-maru);
		font-weight: 500;
		color: #fff;
		line-height: 1.4;
		font-size: 1.6rem;
	}

	.oft {
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		z-index: 1;
	}
}

.t_treatment_links {
	margin: 2.2rem 0 0;
}

.t_treatment_link {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem 0;
	border-bottom: 0.1rem solid var(--main-font-color);
	color: var(--main-font-color);
	text-decoration: none;
	font-family: var(--font-maru);
	font-weight: 500;

	&:first-child {
		padding-top: 0;
	}

	.icon {
		flex: 0 0 auto;
		width: 2.4rem;
		height: 2.4rem;
		background: url("../images/top/treatment_arrow.png") center / contain no-repeat;
	}

	.body {
		display: block;
		min-width: 0;
	}

	.txt01,
	.txt02 {
		display: block;
	}

	.txt01 {
		font-size: 1.1rem;
		line-height: 1.6;
		letter-spacing: 0.05em;
	}

	.txt02 {
		margin: 0.3rem 0 0;
		font-size: 1.8rem;
		font-weight: 500;
		letter-spacing: 0.05em;
		line-height: 1.4;
	}
}

.t_treatment_banner {
	margin: 2rem 0 0;
}

/*______________________________________________________________________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
t_feature
______________________________
^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
.t_feature {
	background: #fedfc6;
	padding-bottom: 17rem;
	-webkit-clip-path: inset(0);
	clip-path: inset(0);

	&:before {
		content: '';
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -1;
		background: url(../images/top/feature_bg_sp.webp) left bottom / cover no-repeat;
	}
}

.t_feature_list {
	margin: 4rem 0 0;
}

.t_feature_item {
	position: relative;
	margin: 4rem 0 0;

	&:first-child {
		margin-top: 0;
	}
}

.t_feature_visual {
	position: relative;
	z-index: 10;
	overflow: hidden;
	border-radius: 0.5rem 0.5rem 2rem 0.5rem;
	width: 93%;
}

.t_feature_num {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	display: flex;
	width: 5.5rem;
	aspect-ratio: 1/1;
	padding: 0.5rem 0 0 1rem;
	color: #fff;
	font-size: 2.6rem;
	font-weight: 500;
	line-height: 1;
	font-family: var(--font-maru);
	isolation: isolate;

	&:before {
		content: '';
		display: block;
		position: absolute;
		top: -0.5px;
		left: -0.5px;
		z-index: -1;
		width: 7rem;
		aspect-ratio: 1/1;
		background: #cde55b;
		-webkit-clip-path: polygon(0 100%, 0 0, 100% 0);
		clip-path: polygon(0 100%, 0 0, 100% 0);
	}
}

.t_feature_body {
	display: flex;
	flex-direction: column;
	padding: 4.5rem 2rem 3rem;
	border-radius: 0 0.5rem 2rem 0.5rem;
	background: #fff;
	position: relative;
	z-index: 1;
	width: 93%;
	margin: -2rem 0 0 auto;

	.btn {
		margin: 3rem 0 0;
	}
}

.t_feature_item_ttl {
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	line-height: 1.5;
}

.t_feature_txt {
	margin: 1.5rem 0 0;
	font-size: 1.4rem;
	letter-spacing: 0.04em;
}

.t_feature_cards {
	margin: 4rem 0 0;

	.t_feature_item {
		margin-top: 4rem;

		&:first-child {
			margin-top: 0;
		}
	}
}