#top-mv {
	position: relative;
	width: 100%;
	overflow: visible;
}
.mv-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
	margin-inline: auto;
}
.slider {
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.slider img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@keyframes zoomUp {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.15);
	}
}
.add-animation {
	animation: zoomUp 10s linear 0s normal both;
}
.mv-inner {
	position: absolute;
	top: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 5%;
}
.mv-text-img {
	display: none;
	max-width: 100%;
}
.mv-text-img.active {
	display: block;
}
#top-mv .mv-menu {
	position: absolute;
	right: 5%;
	top: 50%;
	transform: translateY(-50%);
	writing-mode: vertical-lr;
	text-orientation: upright;
	color: #fff;
	font-size: 14px;
	line-height: 1.8;
}
#top-mv .mv-menu li {
	margin-right: 32px;
}
#top-mv .mv-menu li:last-child {
	margin-right: 0;
}
#top-mv .mv-menu a {
	color: #fff;
	text-decoration: none;
}
#top-mv .scroll-bar {
	position: absolute;
	bottom: -32px;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 64px;
	background-color: #707070;
	overflow: hidden;
	z-index: 10;
}

#top-mv .scroll-bar__progress {
	position: absolute;
	top: -50%;
	left: 0;
	width: 100%;
	height: 50%;
	background-color: #ffffff;
	animation: scrollMove 2s linear infinite;
}

@keyframes scrollMove {
	0% {
		top: -50%;
	}
	100% {
		top: 100%;
	}
}

.mv-message {
	position: relative;
	padding: 80px 0 100px;
	text-align: center;
	overflow: hidden;
}
.mv-message__bg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 1160px;
	width: 100%;
	height: 100%;
	background: url(../images/home/ellipse_bg.png) no-repeat center center;
	background-size: cover;
	z-index: 0;
}
.mv-message__inner {
	position: relative;
	z-index: 1;
	color: #000;
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 2.7;
}
@media screen and (max-width: 767px) {
	.mv-inner {
		justify-content: center;
		top: 25px;
		align-items: flex-start;
	}
	.mv-message__bg {
		background-size: 180%;
	}
	.mv-message__inner {
		font-size: 2.2rem;
	}
}
/* ============================
	about
============================ */
#top-about {
	background-color: #EBEBEB;
	padding-bottom: 96px;
}
#top-about .about__inner {
	width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: flex-start;
	position: relative;
	box-sizing: border-box;
}
#top-about .about__content {
	display: flex;
	flex-direction: column;
	width: 50%;
}
#top-about .about__content-txt {
	background-color: #fff;
	position: relative;
	z-index: 1;
	aspect-ratio: 720 / 706;
	width: 100%;
	padding: 4vw 0 4vw 10vw;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-top: -5.82%;
}
#top-about .lead-text {
	margin-bottom: 30px;
}
#top-about .about-text {
	margin-bottom: 82px;
}
#top-about .more-item {
	display: inline-block;
	font-size: 1.6rem;
	font-weight: 500;
	color: #000;
	position: relative;
	text-decoration: none;
	line-height: 1;
	font-family: "Josefin Sans";
}
#top-about .more-item a::before {
	content: "";
	background: url(../images/common/more_bg.png) no-repeat center/contain;
	width: 100px;
	height: 100px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%) translateX(-50%) scale(1);
	z-index: -1;
	transition: transform 0.4s ease;
}
#top-about .more-item a:hover::before {
	transform: translateY(-50%) translateX(-50%) scale(1.3);
}
#top-about .more-item a::after {
	content: "";
	display: inline-block;
	width: 40px;
	height: 1px;
	background-color: #000;
	margin-left: 1rem;
	vertical-align: middle;
}
#top-about .about__content-img {
  width: 120%;
  z-index: 0;
}
#top-about .about-img-01 {
	width: 50%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 0;
}
#top-about .about-img-03 {
	position: absolute;
	width: 12.08%;
	bottom: 2.6%;
	right: 19%;
	z-index: 2;
}
@media screen and (max-width: 1024px) {
	#top-about .about__content {
		width: 100%;
	}
	#top-about .about__inner {
		flex-direction: column-reverse;
	}
	#top-about .about__content-txt {
		margin-top: 0;
	}
	#top-about .about__content-img {
		width: 100%;
	}
	#top-about .about-img-01 {
		position: relative;
		width: 100%;
	}
	#top-about .about-img-03 {
		display: none;
	}
}
@media screen and (max-width: 767px) {
	#top-about {
		margin-top: -40px;
		padding-bottom: 32px;
	}
	#top-about .about__content-txt {
		padding: 56px 24px 87px;
	}
	#top-about .about-text {
		margin-bottom: 50px;
	}
	#top-about .more-item {
		left: 10%;
	}
}
/* ============================
	strength
============================ */
#top-strength {
  padding: 175px 0 220px;
  position: relative;
}
#top-strength .bar {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 142px;
	background-color: #969696;
	overflow: hidden;
	z-index: 10;
}
#top-strength .section-title {
	text-align: center;
}
#top-strength .section-subtitle {
	text-align: center;
	margin-bottom: 90px;
}
#top-strength .strength__bg {
  background: linear-gradient(to right, #fff 50%, #E0E0E0 50%);
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
  padding: 0 50px;
}

#top-strength .strength__inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}

#top-strength .strength__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  gap: 40px;
}

#top-strength .strength__item--reverse {
  flex-direction: row-reverse;
}

#top-strength .strength__image {
	flex-shrink: 0;
	width: 52.239%;
}
#top-strength .strength__image img {
	width: 100%;
	object-fit: cover;
}

#top-strength .strength__image-overlap {
	margin-top: -30px;
}

#top-strength .strength__image--overlap {
  margin-bottom: -30px;
  z-index: 2;
}

#top-strength .strength__text {
  max-width: 500px;
}

#top-strength .strength__text h3 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  font-weight: 500;
}

#top-strength .strength__text p {
  font-size: 1.4rem;
  line-height: 1.8;
}

#top-strength .more-item {
	display: inline-block;
	font-size: 1.6rem;
	font-weight: 500;
	color: #000;
	position: relative;
	text-decoration: none;
	line-height: 1;
	margin: 0 auto;
	margin-top: 113px;
	text-align: center;
	left: 50%;
	font-family: "Josefin Sans";
}
#top-strength .more-item a::before {
	content: "";
	background: url(../images/common/more_bg_02.png) no-repeat center/contain;
	width: 100px;
	height: 100px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%) translateX(-50%) scale(1);
	z-index: -1;
	transition: transform 0.4s ease;
}
#top-strength .more-item a:hover::before {
	transform: translateY(-50%) translateX(-50%) scale(1.3);
}
#top-strength .more-item a::after {
	content: "";
	display: inline-block;
	width: 40px;
	height: 1px;
	background-color: #000;
	margin-left: 1rem;
	vertical-align: middle;
}
@media screen and (max-width: 767px) {
	#top-strength {
		padding-top: 96px;
		padding-bottom: 87px;
	}
	#top-strength .bar {
		height: 72px;
	}
	#top-strength .strength__bg {
		background: none;
		padding: 0;
	}
	#top-strength .section-subtitle {
		margin-bottom: 32px;
	}
	#top-strength .strength__item {
		flex-direction: column;
		gap: 0;
	}
	#top-strength .strength__image {
		width: 100%;
		transform: translateX(0);
		margin-top: 0;
		margin-bottom: 0;
	}
	#top-strength .strength__image img {
		display: block;
	}
	#top-strength .strength__item--reverse .strength__image {
		transform: translateX(0);
	}
	#top-strength .strength__text {
		padding: 35px 15px;
		background-color: #E0E0E0;
	}
	#top-strength .strength__item.strength__item--reverse .strength__text {
		background-color: #fff;
	}
	#top-strength .strength__inner {
		gap: 0;
	}
	#top-strength .strength__text h3 {
		font-size: 1.8rem;
	}
	#top-strength .more-item {
		left: 15%;
		margin-top: 50px;
	}
}
/* ============================
	item
============================ */
#top-item {
	background-color: #fff;
	box-sizing: border-box;
	width: 97%;
	margin: 0 0 0 auto;
	z-index: 1;
	position: relative;
}
#top-item .content-width {
	display: flex;
	width: 100%;
	padding: 95px 0;
}

#top-item .top-item-head {
	max-width: 290px;
	width: 100%;
	text-align: center;
}
#top-item .swiper-slide {
	max-width: 364px;
	width: 100%;
}
#top-item .top-item-slider-wrapper {
	position: relative;
	overflow: hidden;
	margin-top: -160px;
}
#top-item .top-item-slider-wrapper .swiper-wrapper {
	padding-bottom: 45px;
}
#top-item .top-item-slide {
  width: 300px;
}
#top-item .item-box {
	position: relative;
	cursor: pointer;
	transition: opacity 0.3s;
}
#top-item .item-box:hover {
  opacity: 0.8;
}
#top-item .item-image {
	max-width: 364px;
	width: auto;
	height: auto;
	margin-bottom: 15px;
	box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.1);
}
#top-item .item-image img {
	object-fit: cover;
	display: block;
	width: 100%;
	height: auto;
}
#top-item .item-category {
	font-size: 2.4rem;
	margin-bottom: 5px;
	font-weight: 500;
}
#top-item .item-title {
	font-size: 1.4rem;
	font-weight: 400;
}
#top-item .item-swiper-scrollbar {
	margin-top: 45px;
}
#top-item .swiper-scrollbar-drag {
	background: #000;
}
#top-item .more-item {
	display: inline-block;
	font-size: 1.6rem;
	font-weight: 500;
	color: #000;
	position: relative;
	text-decoration: none;
	line-height: 1;
	font-family: "Josefin Sans";
	margin-top: 72px;
	left: 20%;
}
#top-item .more-item a::before {
	content: "";
	background: url(../images/common/more_bg.png) no-repeat center/contain;
	width: 100px;
	height: 100px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%) translateX(-50%) scale(1);
	z-index: -1;
	transition: transform 0.4s ease;
}
#top-item .more-item a:hover::before {
	transform: translateY(-50%) translateX(-50%) scale(1.3);
}
#top-item .more-item a::after {
	content: "";
	display: inline-block;
	width: 40px;
	height: 1px;
	background-color: #000;
	margin-left: 1rem;
	vertical-align: middle;
}
@media screen and (max-width: 767px) {
	#top-item {
		width: 100%;
	}
	#top-item .top-item-slider-wrapper {
		width: 100%;
	}
	#top-item .top-item-head {
		max-width: 100%;
	}
	#top-item .content-width {
		flex-direction: column;
		padding: 64px 0 70px;
	}
	#top-item .top-item-slider-wrapper {
		margin-top: 30px;
	}
	#top-item .swiper-slide {
		width: 78% !important;
	}
}
/* ============================
	princess
============================ */
#top-princess {
	position: relative;
	text-align: center;
	top: -80px;
}
#top-princess .princess-image {
	position: relative;
	z-index: 0;
}
#top-princess .princess-image img {
	width: 100vw;
	height: auto;
	display: block;
	margin: 0 auto;
}
#top-princess .princess-content {
	position: relative;
	z-index: 2;
	top: -15px;
}
#top-princess .princess-en-title {
	font-size: 6.4rem;
	font-weight: 600;
	margin-bottom: 13px;
	font-family: "Josefin Sans";
	line-height: 1;
}
#top-princess .lead-text {
	font-size: 2.4rem;
	font-weight: 500;
	margin-bottom: 30px;
}
#top-princess .princess-text {
	margin-top: 25px;
}
#top-princess .princess-text p {
	font-size: 1.4rem;
	font-weight: 400;
}
#top-princess .princess-text .lead {
	margin-top: 15px;
	font-weight: 500;
	font-size: 2.4rem;
}

#top-princess .more-item {
	display: inline-block;
	font-size: 1.6rem;
	font-weight: 500;
	color: #000;
	position: relative;
	text-decoration: none;
	line-height: 1;
	margin: 0 auto;
	margin-top: 70px;
	text-align: center;
	font-family: "Josefin Sans";
}
#top-princess .more-item a::before {
	content: "";
	background: url(../images/common/more_bg_02.png) no-repeat center/contain;
	width: 100px;
	height: 100px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%) translateX(-50%) scale(1);
	z-index: -1;
	transition: transform 0.4s ease;
}
#top-princess .more-item a:hover::before {
	transform: translateY(-50%) translateX(-50%) scale(1.3);
}
#top-princess .more-item a::after {
	content: "";
	display: inline-block;
	width: 40px;
	height: 1px;
	background-color: #000;
	margin-left: 1rem;
	vertical-align: middle;
}
@media screen and (max-width: 767px) {
	#top-princess {
		top: 0;
		padding-bottom: 40px;
	}
	#top-princess .princess-image {
		height: 320px;
	}
	#top-princess .princess-image img {
		height: 100%;
		object-fit: cover;
	}
	#top-princess .princess-en-title {
		font-size: 4.8rem;
	}
	#top-princess .lead-text {
		font-size: 1.7rem;
		margin-bottom: 20px;
	}
	#top-princess .lead-text {
		margin-top: 20px;
		text-align: left;
	}
	#top-princess .princess-text p {
		font-size: 1.4rem;
		text-align: left;
	}
	#top-princess .princess-text .lead {
		font-size: 1.8rem ;
		text-align: left;
	}
}

/* ============================
	news
============================ */
#top-news {
	width: 97%;
	margin: 0 0 0 auto;
}
#top-news .content-width {
	width: 100%;
	padding: 0;
	display: flex;
}
#top-news .top-news-head {
	padding-top: 100px;
	padding-left: 65px;
	max-width: 290px;
	width: 100%;
}
#top-news .more-item {
	display: inline-block;
	font-size: 1.6rem;
	font-weight: 500;
	color: #000;
	position: relative;
	text-decoration: none;
	line-height: 1;
	margin-top: 65px;
	font-family: "Josefin Sans";
}
#top-news .more-item a::before {
	content: "";
	background: url(../images/common/more_bg_02.png) no-repeat center/contain;
	width: 100px;
	height: 100px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%) translateX(-50%) scale(1);
	z-index: -1;
	transition: transform 0.4s ease;
}
#top-news .more-item a:hover::before {
	transform: translateY(-50%) translateX(-50%) scale(1.3);
}
#top-news .more-item a::after {
	content: "";
	display: inline-block;
	width: 40px;
	height: 1px;
	background-color: #000;
	margin-left: 1rem;
	vertical-align: middle;
}
#top-news  .top-news-list {
	display: flex;
	flex-direction: column;
	padding: 80px;
	gap: 64px;
	max-width: 100%;
	width: 100%;
	background-color: #fff;
}
#top-news .top-news-item {
  display: flex;
}
#top-news .top-news-cat-wrapper {
	display: flex;
	align-items: center;
	margin-bottom: 24px;
}

#top-news .top-news-thumb {
	margin-right: 48px;
}
#top-news .top-news-thumb img {
  width: 240px;
  height: 240px;
  object-fit: cover;
}
#top-news .top-news-content {
  flex: 1;
}
#top-news  .top-news-cat {
  display: inline-block;
  background: #9A8F78;
  color: #fff;
  font-size: 1.4rem;
  padding: 6px 18px;
  margin-right: 16px;
}
#top-news .top-news-date {
	font-size: 1.6rem;
	font-family: "Josefin Sans";
}
#top-news .top-news-title {
  font-size: 2.4rem;
  font-weight: 500;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
	#top-news {
		width: 100%;
	}
	#top-news .content-width {
		flex-direction: column;
		background-color: #fff;
	}
	#top-news .top-news-head {
		padding-top: 65px;
		width: 100%;
		text-align: center;
	}
	#top-news .top-news-list {
		padding: 30px 20px;
		gap: 32px;
	}
	#top-news .top-news-thumb {
		margin-right: 16px;
	}
	#top-news .top-news-thumb img {
		width: 120px;
		height: 120px;
	}
	#top-news .top-news-thumb {
		margin-bottom: 16px;
	}
	#top-news .top-news-cat {
		font-size: 1rem;
		padding: 4px 12px;
	}
	#top-news .top-news-date {
		font-size: 1rem;
	}
	#top-news .top-news-title {
		font-size: 1.4rem;
	}
}

#instagram .more-item {
	display: inline-block;
	font-size: 1.6rem;
	font-weight: 500;
	color: #000;
	position: relative;
	text-decoration: none;
	line-height: 1;
	margin: 0 auto;
	margin-top: 70px;
	text-align: center;
	font-family: "Josefin Sans";
	left: 50%;
}
#instagram .more-item a::before {
	content: "";
	background: url(../images/common/more_bg_02.png) no-repeat center/contain;
	width: 100px;
	height: 100px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%) translateX(-50%) scale(1);
	z-index: -1;
	transition: transform 0.4s ease;
}
#instagram .more-item a:hover::before {
	transform: translateY(-50%) translateX(-50%) scale(1.3);
}
#instagram .more-item a::after {
	content: "";
	display: inline-block;
	width: 40px;
	height: 1px;
	background-color: #000;
	margin-left: 1rem;
	vertical-align: middle;
}