@charset "UTF-8";

/* mv
----------------------------------------*/
.mv::before {
	content: '';
	display: block;
	width: 82.4rem;
	height: 90.3rem;
	margin: 0 auto;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: url(../../img/index/mv_txt_01.svg) no-repeat left top / 60.5rem auto;
	opacity: .1;
}
.mv h2 {
	width: 82.4rem;
	margin: 0 auto;
}
.mv h2 img {
	width: 60.5rem;
}
.mv_main {
	width: calc(50% + 19.8rem);
	margin: -42.2rem 0 0 auto;
}
.mv_main video {
	width: 100%;
}
@media only screen and (max-width: 768px) {
	.mv::before {
		display: none;
	}
	.mv h2 {
		width: 30.8rem;
		margin: 12.8rem 0 0;
	}
	.mv h2 img {
		width: 100%;
	}
	.mv_main {
		width: 32rem;
		height: auto;
		overflow: hidden;
		margin: -21.9rem 0 0 auto;
	}
	.mv_main img {
		width: 100%;
		height: 100%;
		transform: scale(1.325);
		object-fit: cover;
	}
}

/* intro
----------------------------------------*/
.intro {
	padding-bottom: 8.4rem;
	border-bottom: .1rem solid #DDDAD2;
}
.intro_inner {
	width: calc(50% + 19.8rem);
	margin: 4.2rem 0 0 auto;
	padding-left: .3rem;
}
.intro h2 {
	font-weight: 400;
	font-size: 2.4rem;
	letter-spacing: .1em;
	line-height: 1.7083;
	margin-bottom: 3.2rem;
}
.intro h2 span {
	display: block;
	font-size: 1.6rem;
	color: #A39483;
	line-height: 1.8;
	letter-spacing: .1em;
	margin-bottom: 1.5rem;
}
.intro_btn {
	display: block;
	width: 34rem;
	font-weight: 700;
	font-size: 1.3rem;
	letter-spacing: .05em;
	color: #6a8252;
}
.intro_btn + .intro_btn {
	margin-top: 2rem;
}
.intro_btn span:not(.en) {
	padding-left: .3rem;
	display: block;
}
.intro_btn span:not(.en)::after {
	content: '';
	display: block;
	background: url(../../img/common/icon_arrow_01.svg) no-repeat left top / 100% auto;
	width: .7rem;
	height: .9rem;
	position: absolute;
	top: .5rem;
	right: 0;
	transition: transform .3s;
}
.intro_btn .en {
	display: block;
	font-weight: 400;
	border-top: .1rem solid #6a8252;
	font-size: 1.2rem;
	letter-spacing: .1em;
	margin: .9rem 0 0 .3rem;
	padding-top: .9rem;
}
@media (hover:hover) {
	.intro_btn:hover span:not(.en)::after {
		transform: translateX(.5rem);
	}
}
@media only screen and (max-width: 768px) {
	.intro {
		padding-bottom: 5.5rem;
	}
	.intro_inner {
		width: 34.8rem;
		margin: 3.4rem 0 0 auto;
		padding-left: 0;
	}
	.intro h2 {
		font-size: 1.8rem;
		line-height: 1.5556;
		margin: 0 0 2.6rem .4rem;
	}
	.intro h2 span {
		font-size: 1.4rem;
		line-height: 1.75;
		margin-bottom: 1.1rem;
	}
	.intro_btn {
		width: auto;
	}
	.intro_btn + .intro_btn {
		margin-top: 1.7rem;
	}
	.intro_btn span:not(.en)::after {
		right: 1.9rem;
	}
}

/* pickup
----------------------------------------*/
.pickup {
	display: flex;
	justify-content: flex-end;
	padding: 6.3rem 0 9.6rem;
}
.pickup_box {
	width: calc(50% + 19.3rem);
}
.pickup h2 {
	width: 13rem;
	font-size: 1.6rem;
	letter-spacing: .1em;
	font-weight: 400;
	color: #A39483;
	margin-top: -.6rem;
}
.pickup_slider {
	overflow: hidden;
}
.pickup_slider a {
	display: flex;
	width: 45.9rem;
	float: left;
	margin-right: 2rem;
}
.pickup_slider a figure {
	width: 20rem;
	height: 15rem;
}
.pickup_slider a figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pickup_txt {
	flex: 1;
	border: .1rem solid #D9D9D9;
	border-left: 0;
	letter-spacing: .05em;
	padding: 2.1rem 2rem 1rem 1.6rem;
	color: #6a8252;
}
.pickup_detail {
	text-align: right;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: .05em;
	margin-top: 1.9rem;
	padding-right: 2.5rem;
}
.pickup_detail::after {
	content: '';
	display: block;
	width: .7rem;
	height: .9rem;
	background: url(../../img/index/pickup_arrow.svg) no-repeat left top / 100% auto;
	position: absolute;
	right: .7rem;
	top: .5rem;
	transition: transform .3s;
}
.pickup_ttl {
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1.4286;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	line-clamp: 4;
}
.pickup_slider .slick-list {
	overflow: hidden;
}
.pickup_slider .slick-dots {
	display: flex;
	gap: .8rem;
	margin: 2.5rem .6rem 0;
}
.pickup_slider .slick-dots button {
	appearance: none;
	display: block;
	width: .9rem;
	height: .9rem;
	border-radius: 50%;
	border: 0;
	background: #DDDAD2;
	overflow: hidden;
	text-indent: -99rem;
}
.pickup_slider .slick-dots .slick-active button {
	background: #C9BC9C;
}
@media (hover:hover) {
	.pickup_slider a:hover .pickup_detail::after {
		transform: translateX(.5rem);
	}
}
@media only screen and (max-width: 768px) {
	.pickup {
		display: block;
		padding: 3.2rem 0 8.4rem;
	}
	.pickup_box {
		width: auto;
	}
	.pickup h2 {
		width: auto;
		margin: 0 2rem 3rem;
	}
	.pickup_slider {
		overflow: visible;
		width: 35rem;
		margin: 0 auto;
	}
	.pickup_slider::after,
	.pickup_slider .slick-list::after {
		content: '';
		display: block;
		clear: both;
	}
	.pickup_slider a {
		width: 35rem;
		margin-right: .6rem;
	}
	.pickup_slider a figure {
		width: 15rem;
		height: 13.5rem;
	}
	.pickup_txt {
		padding: 1.5rem 1.5rem 1rem;
	}
	.pickup_detail {
		margin-top: 1rem;
	}
	.pickup_slider .slick-list {
		overflow: visible;
	}
	.pickup_slider .slick-dots {
		justify-content: center;
		margin: 1.7rem .6rem 0;
	}
}

/* about
----------------------------------------*/
.about {
	display: flex;
	justify-content: space-between;
	/* align-items: flex-end; */
	padding: 15.4rem 0 15.4rem;
}
.about::before {
	content: '';
	display: block;
	max-width: 124.6rem;
	height: 59.4rem;
	margin: 0 auto;
	background: url(../../img/index/about_txt_01.svg) no-repeat right top / 50.6rem auto;
	pointer-events: none;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.about > figure {
	width: calc(50% - 20.5rem);
	margin-bottom: 8.8rem;
}
.about_box {
	width: calc(50% + 8.8rem);
	margin-top: 100px;
}
.about_img {
	display: flex;
	justify-content: space-between;
}
.about_img figure:nth-child(1) {
	width: 54.8223%;
}
.about_img figure:nth-child(2) {
	width: 44.2893%;
}
.about_box h2 {
	font-weight: 400;
	font-size: 2rem;
	line-height: 1.7;
	letter-spacing: .05em;
	margin: 0 0 1.8rem -.4rem;
}
.about_box h2 .en {
	display: block;
	font-size: 2rem;
	letter-spacing: .1em;
	color: #A39483;
	margin-bottom: 1.7rem;
}
.about_txt {
	font-size: 1.3rem;
	letter-spacing: .05em;
	line-height: 2.3077;
	margin-left: -.4rem;
	margin-bottom: 60px;
}
.about_box h2:not(:first-child) {
	border-top: .1rem solid #DDDAD2;
    padding-top: 40px;
}
.about_btn {
	display: block;
	width: 24.3rem;
	font-weight: 700;
	font-size: 1.2rem;
	letter-spacing: .05em;
	color: #A39483;
	margin: 3rem 0 6.4rem -.4rem;
}
.about_btn span:not(.en) {
	padding-left: .3rem;
	display: block;
}
.about_btn span:not(.en)::after {
	content: '';
	display: block;
	background: url(../../img/common/icon_arrow_02.svg) no-repeat left top / 100% auto;
	width: .7rem;
	height: .9rem;
	position: absolute;
	top: .5rem;
	right: 0;
	transition: transform .3s;
}
.about_btn .en {
	display: block;
	font-weight: 400;
	border-top: .1rem solid #A39483;
	font-size: 1.2rem;
	color: #C9BC9C;
	letter-spacing: .1em;
	margin: .6rem 0 0 .3rem;
	padding-top: .7rem;
}
@media (hover:hover) {
	.about_btn:hover span:not(.en)::after {
		transform: translateX(.5rem);
	}
}
@media only screen and (max-width: 768px) {
	.about {
		display: block;
		padding: 10.5rem 0 12.5rem;
	}
	.about::before {
		max-width: 29.4rem;
		width: 29.4rem;
		height: 34.5rem;
		margin: 0;
		background-size: 29.4rem;
		left: auto;
		right: -2.6rem;
		z-index: 2;
	}
	.about > figure {
		width: 29.3rem;
		margin-bottom: 3.8rem;
	}
	.about_box {
		width: auto;
		margin: 0 2rem;
	}
	.about_img {
		width: 36.9rem;
		display: block;
		margin: 0 0 0 auto;
		overflow: hidden;
	}
	.about_img figure,
	.about_img figure:nth-child(1),
	.about_img figure:nth-child(2) {
		width: 33rem;
		float: left;
		margin-right: .3rem;
	}
	.about_img figure img {
		width: 100%;
		height: 22.4rem;
		object-fit: cover;
	}
	.about_box h2 {
		font-size: 1.8rem;
		line-height: 1.5556;
		margin: 0 0 1.7rem;
		letter-spacing: .1em;
	}
	.about_box h2 .en {
		font-size: 1.6rem;
		margin-bottom: 1.2rem;
	}
	.about_box h2:not(:first-child) {
		padding-top: 40px;
	}
	.about_txt {
		line-height: 2.0769;
		margin-left: 0;
		margin-bottom: 40px;
	}
	.about_btn {
		width: auto;
		background: #F2F4EF;
		border-bottom: .1rem solid #A39483;
		display: flex;
		flex-direction: column;
		margin: 2.7rem 0 4.8rem;
		padding: .5rem 1.9rem 1.3rem 2.3rem;
		font-size: 1.3rem;
	}
	.about_btn span:not(.en) {
		padding-left: 0;
	}
	.about_btn span:not(.en)::after {
		top: -.5rem;
		margin: auto 0;
	}
	.about_btn .en {
		order: -1;
		border-top: 0;
	}
}

/* fair
----------------------------------------*/
.fair {
	padding: 5.2rem 0 12rem;
}
.fair::before {
	content: '';
	display: block;
	width: 96.4rem;
	height: 29.2rem;
	background: url(../../img/index/fair_txt_01.svg) no-repeat left top / 27rem auto;
	position: absolute;
	top: -22.1rem;
	left: 0;
	right: 0;
	margin: 0 auto;
}
@media only screen and (max-width: 768px) {
	.fair {
		padding: 5.8rem 0 9.7rem 2rem;
	}
	.fair::before {
		width: 17.4rem;
		height: 18.8rem;
		background-size: 17.4rem auto;
		top: -16.1rem;
		left: 2.1rem;
		right: auto;
		margin: 0;
	}
	.fair_btn {
		width: 35rem;
	}
}

/* stage
----------------------------------------*/
.stage {
	background: #A39483;
	color: #fff;
}
.stage::after {
	content: '';
	display: block;
	max-width: 120rem;
	height: 28.6rem;
	margin: 0 auto;
	background: url(../../img/index/stage_txt_01.svg) no-repeat left top / 56rem auto;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	margin: 0 auto;
}
.stage_ceremony {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	margin-bottom: 10rem;
}
.stage_ceremony figure {
	order: 1;
	width: calc(50% + 12.8rem);
	padding-bottom: 3.6rem;
}
.stage_ceremony_txt {
	width: 47.2rem;
}
.stage_ceremony_txt h2 {
	font-size: 2rem;
	font-weight: 400;
	letter-spacing: .05em;
	margin: 0 0 1.3rem;
}
.stage_ceremony_txt h2 .en {
	display: block;
	font-size: 1.6rem;
	letter-spacing: .1em;
	margin-bottom: 1.3rem;
}
.stage_ceremony_txt p {
	font-size: 1.3rem;
	line-height: 2.0769;
	letter-spacing: .05em;
}
.stage_chapel {
	display: flex;
	align-items: flex-end;
	margin-bottom: 12.3rem;
}
.stage_chapel figure:nth-child(1) {
	width: calc(50% + 7.1rem);
	padding-bottom: 1rem;
}
.stage_chapel figure:nth-child(3) {
	width: 22.9rem;
	position: absolute;
	top: 0;
	right: 1.1rem;
}
.stage_chapel_txt {
	width: 36rem;
	padding-left: 7.6rem;
}
.stage_chapel_txt h2 {
	font-size: 1.2rem;
	font-weight: 400;
	letter-spacing: .05em;
	margin-bottom: 2.1rem;
}
.stage_chapel_txt h2 .en {
	display: block;
	font-size: 3rem;
	letter-spacing: .1em;
	margin-bottom: .3rem;
}
.stage_chapel_txt h3 {
	font-size: 1.6rem;
	letter-spacing: .05em;
	line-height: 1.8125;
	font-weight: 400;
	margin-bottom: .5rem;
}
.stage_chapel_txt p {
	font-size: 1.2rem;
	line-height: 2;
	letter-spacing: .05em;
	margin-bottom: 2.6rem;
}
.stage_btn {
	display: block;
	width: 24.2rem;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: .05em;
}
.stage_btn .en {
	display: block;
	font-weight: 400;
	font-size: 1.2rem;
	color: #C9BC9C;
	letter-spacing: .1em;
	border-top: .1rem solid #fff;
	padding-top: .6rem;
	margin-top: .6rem;
}
.stage_party {
	display: flex;
	justify-content: flex-end;
}
.stage_party_img {
	width: calc(50% + 18.2rem);
	order: 1;
	overflow: hidden;
	padding-bottom: 8.9rem;
}
.stage_party_img .slick-list {
	overflow: hidden;
}
.stage_party_img figure {
	width: 62.5rem;
	margin-right: .3rem;
	float: left;
}
.stage_party_img .slick-dots {
	display: flex;
	gap: .8rem;
	margin-top: 2.6rem;
}
.stage_party_img .slick-dots button {
	appearance: none;
	display: block;
	width: .9rem;
	height: .9rem;
	border: 0;
	border-radius: 50%;
	background: #DDDAD2;
	overflow: hidden;
	text-indent: -99rem;
}
.stage_party_img .slick-dots .slick-active button {
	background: #C9BC9C;
}
.stage_party_txt {
	width: 41.6rem;
	padding-right: 10rem;
	margin-top: -.4rem;
}
.stage_party_txt h2 {
	font-size: 1.2rem;
	font-weight: 400;
	letter-spacing: .05em;
	margin-bottom: 1.1rem;
}
.stage_party_txt h2 .en {
	display: block;
	font-size: 3rem;
	letter-spacing: .1em;
	margin-bottom: .3rem;
}
.stage_party_txt h3 {
	font-size: 1.6rem;
	letter-spacing: .05em;
	line-height: 1.8125;
	font-weight: 400;
	margin-bottom: .5rem;
}
.stage_party_txt p {
	font-size: 1.2rem;
	line-height: 2;
	letter-spacing: .05em;
	margin-bottom: 1.6rem;
}
.stage_party > figure {
	width: 41.4rem;
	position: absolute;
	left: 0;
	bottom: 0;
}
@media only screen and (max-width: 768px) {
	.stage::after {
		width: 31.2rem;
		height: 15.9rem;
		margin: 0;
		background-size: 31.2rem auto;
		right: auto;
		top: 35.9rem;
		z-index: 10;
	}
	.stage_ceremony {
		display: block;
		margin-bottom: 3.2rem;
	}
	.stage_ceremony figure {
		width: auto;
		padding-bottom: 15.1rem;
	}
	.stage_ceremony_txt {
		width: auto;
		margin: 0 2.1rem;
	}
	.stage_chapel {
		display: block;
		margin-bottom: 5.8rem;
	}
	.stage_chapel figure:nth-child(1) {
		width: auto;
		overflow: hidden;
		padding-bottom: 0;
	}
	.stage_chapel figure:nth-child(1) img {
		height: 26rem;
		object-fit: cover;
	}
	.stage_chapel figure:nth-child(1) .slick-list {
		overflow: hidden;
	}
	.stage_chapel figure:nth-child(1) .slick-dots {
		padding: 0 2.2rem;
		margin-top: 1.6rem;
		display: flex;
		justify-content: flex-end;
		gap: .8rem;
	}
	.stage_chapel figure:nth-child(1) .slick-dots button {
		appearance: none;
		display: block;
		border: 0;
		width: .9rem;
		height: .9rem;
		border-radius: 50%;
		background: #DDDAD2;
		overflow: hidden;
		text-indent: -99rem;
	}
	.stage_chapel figure:nth-child(1) .slick-dots .slick-active button {
		background: #C9BC9C;
	}
	.stage_chapel figure:nth-child(1) img {
		float: left;
	}
	.stage_chapel figure:nth-child(3) {
		display: none;
	}
	.stage_chapel_txt {
		width: auto;
		padding: 0;
		margin: 0 2.1rem;
	}
	.stage_chapel_txt h2 {
		margin-bottom: 1.9rem;
	}
	.stage_chapel_txt p {
		margin-bottom: 2.5rem;
	}
	.stage_btn {
		width: auto;
		background: #F2F4EF;
		color: #A39483;
		font-size: 1.3rem;
		padding: 1.7rem 2.1rem 1.5rem;
	}
	.stage_btn:not(.en)::after {
		content: '';
		display: block;
		background: url(../../img/common/icon_arrow_02.svg) no-repeat left top / 100% auto;
		width: .7rem;
		height: .9rem;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 2rem;
		opacity: .8;
		margin: auto 0;
	}
	.stage_btn .en {
		border-top: 0;
		padding-top: 0;
		margin-top: 0;
	}
	.stage_party {
		display: block;
	}
	.stage_party_img {
		width: 100%;
		padding-bottom: .3rem;
	}
	.stage_party_img figure {
		width: auto;
		margin-right: 0;
	}
	.stage_party_img figure img {
		height: 26rem;
		width: 100%;
		object-fit: cover;
	}
	.stage_party_img figure#slick-slide23 {
		display: none;
	}
	.stage_party_img button#slick-slide-control23{
		display: none;
	}
	
	.stage_party_img .slick-dots {
		justify-content: flex-end;
		margin-top: 1.6rem;
		padding: 0 2.1rem;
	}
	.stage_party_txt {
		width: auto;
		padding: 0 2.1rem 5.7rem;
	}
	.stage_party_txt h2 {
		margin-bottom: 1.7rem;
	}
	.stage_party > figure {
		display: none;
	}
}

/* contents
----------------------------------------*/
.contents {
	padding: 23rem 2rem 9rem;
}
.contents::before {
	content: '';
	display: block;
	width: 59.2rem;
	height: 23.3rem;
	background: url(../../img/index/contents_txt_01.svg) no-repeat left top / 100% auto;
	position: absolute;
	top: 9.4rem;
	left: 0;
	right: 0;
	margin: 0 auto;
	pointer-events: none;
	z-index: 2;
}
.contents_inner {
	max-width: 120rem;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 6rem;
}
.contents_inner a {
	display: block;
}
.contents_inner a figure {
	overflow: hidden;
}
.contents_inner a figure img {
	transition: transform .3s;
}
.contents h2 {
	font-weight: 400;
	font-size: 1.2rem;
	letter-spacing: .05em;
	color: #A39483;
	margin: 1.8rem 0 .9rem;
}
.contents h2 .en {
	font-size: 2.5rem;
	letter-spacing: .1em;
	margin-right: 1.2rem;
}
.contents_txt {
	font-size: 1.6rem;
	letter-spacing: .05em;
}
.contents_btn {
	width: 14.4rem;
	font-size: 1.2rem;
	letter-spacing: .05em;
	color: #A39483;
	font-weight: 700;
	margin-top: 1.3rem;
}
.contents_btn .en {
	letter-spacing: .1em;
	color: #C9BC9C;
	display: block;
	font-weight: 400;
	border-top: .1rem solid #A39483;
	margin-top: .6rem;
	padding-top: .6rem;
}
.contents_btn::after {
	content: '';
	display: block;
	background: url(../../img/common/icon_arrow_02.svg) no-repeat left top / 100% auto;
	width: .7rem;
	height: .9rem;
	position: absolute;
	top: .5rem;
	right: 0;
	opacity: .7;
	transition: transform .3s;
}
@media (hover:hover) {
	.contents_inner a:hover figure img {
		transform: scale(1.1);
	}
	.contents a:hover .contents_btn::after {
		transform: translateX(.5rem);
	}
}
@media only screen and (max-width: 768px) {
	.contents {
		padding: 18.8rem 4rem 6.8rem;
	}
	.contents::before {
		width: 30.7rem;
		height: 12.1rem;
		top: 11.2rem;
	}
	.contents_inner {
		display: block;
	}
	.contents_inner a + a {
		margin-top: 3rem;
	}
	.contents h2 {
		margin: 2.2rem 0 1.7rem .5rem;
	}
	.contents h2 .en {
		font-size: 2rem;
		margin-right: 1.4rem;
		vertical-align: -.1rem;
	}
	.contents_btn {
		width: 100%;
		margin-top: 1.5rem;
	}
}

/* plan
----------------------------------------*/
.plan {
	padding-bottom: 9rem;
}
.plan_ttl {
	border-bottom: .1rem solid #DDDAD2;
	padding: 9.6rem 0 3.6rem;
}
.plan_ttl::before {
	content: '';
	display: block;
	width: 121.4rem;
	height: 31.4rem;
	background: url(../../img/index/plan_txt_01.svg) no-repeat left top / 25.8rem auto;
	position: absolute;
	top: -7rem;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 2;
}
.plan_ttl h2 {
	width: calc(50% + 38.6rem);
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: .05em;
	color: #A39483;
	margin: 0 0 0 auto;
}
.plan_inner {
	width: calc(50% + 38.6rem);
	margin: 0 0 0 auto;
}
.plan_slider,
.plan_slider .slick-list {
	overflow: hidden;
}
.plan_slider .slick-track {
	display: flex;
}
.plan_item {
	width: 34.1rem;
	margin-right: 1.9rem;
	float: left;
}
.plan_item a {
	display: block;
	height: 100%;
	padding-bottom: 6.6rem;
}
.plan_item figure {
	overflow: hidden;
}
.plan_item figure img {
	width: 100%;
	height: 22.7rem;
	object-fit: cover;
	transition: transform .3s;
}
.plan_item h3 {
	font-weight: 400;
	letter-spacing: .05em;
	font-size: 1.3rem;
	line-height: 1.8462;
	margin: 1rem 0 .6rem;
}
.plan_price {
	font-weight: 700;
	color: #A39483;
	letter-spacing: .05em;
	margin: 0 0 0 .5rem;
}
.plan_more {
	font-size: 1.2rem;
	color: #A39483;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	letter-spacing: .05em;
}
.plan_more::after {
	content: '';
	display: block;
	background: url(../../img/common/icon_arrow_02.svg) no-repeat left top / 100% auto;
	width: .7rem;
	height: .9rem;
	position: absolute;
	top: .5rem;
	right: 0;
	opacity: .7;
	transition: transform .3s;
}
.plan_more .en {
	display: block;
	border-top: .1rem solid #C9BC9C;
	margin-top: .7rem;
	padding: .6rem 0 0 .2rem;
	letter-spacing: .1em;
	color: #C9BC9C;
}
.plan_btn {
	width: 60.1rem;
	background: #F2F4EF;
	display: flex;
	align-items: center;
	margin-top: 3.3rem;
	border-bottom: .1rem solid #A39483;
	color: #A39483;
	padding: 2.2rem .2rem 1.7rem;
}
.plan_btn::after {
	content: '';
	display: block;
	background: url(../../img/common/icon_arrow_02.svg) no-repeat left top / 100% auto;
	width: .7rem;
	height: .9rem;
	position: absolute;
	top: .3rem;
	bottom: 0;
	right: 0;
	margin: auto 0;
	transition: transform .3s;
}
.plan_btn span:nth-child(1) {
	font-size: 2.5rem;
	letter-spacing: .1em;
}
.plan_btn span:nth-child(2) {
	font-size: 1.2rem;
	letter-spacing: .05em;
	margin-left: 2.1rem;
}
.plan_btn span:nth-child(3) {
	font-size: 1.2rem;
	letter-spacing: .1em;
	margin: 0 2.2rem 0 auto;
}
@media (hover:hover) {
	.plan_item a:hover figure img {
		transform: scale(1.1);
	}
	.plan_item a:hover .paln_more::after {
		transform: translateX(.5rem);
	}
}
@media only screen and (max-width: 768px) {
	.plan {
		padding-bottom: 3.5rem;
	}
	.plan_ttl {
		border-bottom: 0;
		padding: 10.7rem 0 2.1rem;
	}
	.plan_ttl::before {
		width: 17.5rem;
		height: 21.3rem;
		background-size: 100% auto;
		top: -7.5rem;
		left: 2rem;
		margin: 0;
	}
	.plan_ttl h2 {
		border-top: .1rem solid #DDDAD2;
		width: auto;
		padding: 6.2rem 2rem 0;
	}
	.plan_inner {
		width: 37rem;
	}
	.plan_item {
		width: 31rem;
	}
	.plan_item figure img {
		height: 20.7rem;
	}
	.plan_item h3 {
		line-height: 1.6923;
		margin: 1.2rem 0 .6rem;
	}
	.plan_btn {
		width: 35rem;
		display: block;
		margin-top: 3.3rem;
		padding: 2rem 2rem 1.5rem;
	}
	.plan_btn::after {
		right: 2.2rem;
	}
	.plan_btn span:nth-child(1) {
		display: block;
		font-size: 1.2rem;
		color: #C9BC9C;
	}
	.plan_btn span:nth-child(2) {
		display: block;
		font-size: 1.2rem;
		font-weight: 700;
		margin-left: 0;
	}
	.plan_btn span:nth-child(3) {
		display: none;
	}
}

/* present
----------------------------------------*/
.present {
	padding-bottom: 15rem;
}
.present_inner {
	max-width: 110rem;
	margin: 0 auto;
	display: flex;
	gap: 6.4rem;
}
.present h2 {
	width: 10rem;
	text-align: right;
	font-size: 1.2rem;
	letter-spacing: .05em;
	color: #A39483;
	font-weight: 400;
	margin-top: -1rem;
}
.present h2 .en {
	display: block;
	font-size: 2.5rem;
	letter-spacing: .1em;
}
.present_list {
	width: 93.5rem;
	height: 45.6rem;
	overflow: auto;
}
.present_list .simplebar-track.simplebar-vertical {
	width: .5rem;
	background: #D9D9D9;
}
.present_list .simplebar-scrollbar {
	background: #A39483;
}
.present_list ul {
	width: 84.6rem;
}
.present_list li + li {
	margin-top: 2.7rem;
	padding-top: 2.7rem;
	border-top: .1rem solid #DDDAD2;
}
.present_list a {
	display: flex;
}
.present_list a figure {
	width: 28rem;
	overflow: hidden;
}
.present_list a figure img {
	width: 100%;
	height: 18.8rem;
	object-fit: cover;
	transition: transform .3s;
}
.present_box {
	flex: 1;
	padding-left: 7rem;
}
.present_tag {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	margin: 0 0 .4rem .5rem;
}
.present_tag span {
	display: block;
	line-height: 1.3;
	border: .1rem solid #A39483;
	font-size: 1.2rem;
	font-weight: 700;
	color: #A39483;
	letter-spacing: .05em;
	padding: .1rem 1.1rem;
}
.present_box h3 {
	font-weight: 400;
	color: #6a8252;
	font-size: 1.6rem;
	letter-spacing: .05em;
	margin: 0 0 1rem -.2rem;
}
.present_box {
	font-size: 1.3rem;
	line-height: 1.8461;
	letter-spacing: .05em;
	margin: 0 0 0 -.6rem;
}
.present_more {
	width: 15.8rem;
	font-size: 1.2rem;
	font-weight: 700;
	color: #6a8252;
	margin: 1.4rem 0 0 .5rem;
}
.present_more .en {
	display: block;
	border-top: .1rem solid #6a8252;
	margin: .4rem 0 0;
	padding-top: .4rem;
	letter-spacing: .1em;
	color: #C9BC9C;
	font-weight: 400;
}
.present_more::after {
	content: '';
	display: block;
	background: url(../../img/common/icon_arrow_01.svg) no-repeat left top / 100% auto;
	width: .7rem;
	height: .9rem;
	position: absolute;
	top: .7rem;
	right: 0;
	transition: transform .3s;
}
@media (hover:hover) {
	.present_list a:hover figure img {
		transform: scale(1.1)
	}
	.present_list a:hover .present_more::after {
		transform: translateX(.5rem);
	}
}
@media only screen and (max-width: 768px) {
	.present {
		padding-bottom: 9.7rem;
	}
	.present_inner {
		display: block;
	}
	.present h2 {
		width: auto;
		text-align: left;
		padding: 0 2rem;
		margin: 0 0 2.6rem;
	}
	.present h2 .en {
		font-size: 2rem;
		margin-bottom: .6rem;
	}
	.present_list {
		width: 37rem;
		height: auto;
		margin: 0 0 0 auto;
	}
	.present_list ul {
		width: auto;
	}
	.present_list li {
		width: 31rem;
		margin-right: 2rem;
		float: left;
	}
	.present_list li + li {
		margin-top: 0;
		padding-top: 0;
		border-top: 0;
	}
	.present_list a {
		display: block;
	}
	.present_list a figure {
		width: auto;
	}
	.present_list a figure img {
		height: 20.7rem;
	}
	.present_box {
		padding-left: 0;
	}
	.present_tag {
		margin: 0 0 .5rem;
	}
	.present_box h3 {
		margin: 0 0 .9rem -.3rem;
	}
	.present_box {
		padding-top: 1.6rem;
		margin: 0;
	}
	.present_more {
		width: 100%;
		margin: 1.1rem 0 0 .3rem;
	}
	.simplebar-track {
		display: none;
	}
}