@charset "UTF-8";

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

  =Animation

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

/* Animation
---------------------------------*/
.js-inview {
	-webkit-transition: 1.2s cubic-bezier(0.17, 1, 0.30, 1) 0.2s;
	transition: 1.2s cubic-bezier(0.17, 1, 0.30, 1) 0.2s;
}
.js-inview.effect-fadeIn {
	opacity: 0;
}
.js-inview.effect-fadeIn.is-show {
	opacity: 1;
}
.js-inview.effect-fadeInDown {
	opacity: 0;
	-webkit-transform: translate3d(0, -60px, 0);
	transform: translate3d(0, -60px, 0)
}
.js-inview.effect-fadeInDown.is-show {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0)
}
.js-inview.effect-fadeInUp {
	opacity: 0;
	-webkit-transform: translate3d(0, 60px, 0);
	transform: translate3d(0, 60px, 0)
}
.js-inview.effect-fadeInUp.is-show {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0)
}
.js-inview.effect-fadeInLeft {
	opacity: 0;
	-webkit-transform: translate3d(-60px, 0, 0);
	transform: translate3d(-60px, 0, 0)
}
.js-inview.effect-fadeInLeft.is-show {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0)
}
.js-inview.effect-fadeInRight {
	opacity: 0;
	-webkit-transform: translate3d(60px, 0, 0);
	transform: translate3d(60px, 0, 0)
}
.js-inview.effect-fadeInRight.is-show {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0)
}
.js-inview.effect-zoomIn {
	opacity: 0;
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
	-webkit-filter: blur(5px);
	filter: blur(5px);
}
.js-inview.effect-zoomIn.is-show {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-filter: blur(0);
	filter: blur(0);
}
.js-inview.effect-zoomInDown {
	opacity: 0;
	-webkit-transform: scale(1.3) translate3d(0, -100%, 0);
	transform: scale(1.3) translate3d(0, -100%, 0);
	-webkit-filter: blur(5px);
	filter: blur(5px);
}
.js-inview.effect-zoomInDown.is-show {
	opacity: 1;
	-webkit-transform: scale(1) translate3d(0, 0, 0);
	transform: scale(1) translate3d(0, 0, 0);
	-webkit-filter: blur(0);
	filter: blur(0);
}
.js-inview.effect-zoomInUp {
	opacity: 0;
	-webkit-transform: scale(1.3) translate3d(0, 100%, 0);
	transform: scale(1.3) translate3d(0, 100%, 0);
	-webkit-filter: blur(5px);
	filter: blur(5px);
}
.js-inview.effect-zoomInUp.is-show {
	opacity: 1;
	-webkit-transform: scale(1) translate3d(0, 0, 0);
	transform: scale(1) translate3d(0, 0, 0);
	-webkit-filter: blur(0);
	filter: blur(0);
}
.js-inview.effect-blur {
	opacity: 0;
	-webkit-filter: blur(100px);
	filter: blur(100px);
}
.js-inview.effect-blur.is-show {
	opacity: 1;
	-webkit-filter: blur(0);
	filter: blur(0);
}
.js-inview.delay-1s {
	-webkit-animation-delay: 1s;
	animation-delay: 1s
}
.js-inview.delay-2s {
	-webkit-animation-delay: 2s;
	animation-delay: 2s
}
.js-inview.delay-3s {
	-webkit-animation-delay: 3s;
	animation-delay: 3s
}
.js-inview.delay-4s {
	-webkit-animation-delay: 4s;
	animation-delay: 4s
}
.js-inview.delay-5s {
	-webkit-animation-delay: 5s;
	animation-delay: 5s
}
.js-inview.fast {
	-webkit-animation-duration: 800ms;
	animation-duration: 800ms
}
.js-inview.faster {
	-webkit-animation-duration: 500ms;
	animation-duration: 500ms
}
.js-inview.slow {
	-webkit-animation-duration: 2s;
	animation-duration: 2s
}
.js-inview.slower {
	-webkit-animation-duration: 3s;
	animation-duration: 3s
}

/* hover Animation
---------------------------------*/
.ov-action-item-non .ov-action-item_ttl span {
	background-image: linear-gradient(#460505, #460505);
	background-position: 100% 100%;
	background-size: 0% 1px;
	background-repeat: no-repeat;
	transition: background-size 0.6s cubic-bezier(0.170, 0.935, 0.305, 1.000);
}
.ov-action-item-non:hover .ov-action-item_ttl span {
	background-position: 0% 100%;
	background-size: 100% 1px;
}
.ov-action-item .ov-action-item_ttl span {
	background-image: linear-gradient(#460505, #460505);
	background-position: 0% 100%;
	background-size: 100% 1px;
	background-repeat: no-repeat;
	transition: background-size 0.6s cubic-bezier(0.170, 0.935, 0.305, 1.000);
}
.ov-action-item:hover .ov-action-item_ttl span {
	background-position: 100% 100%;
	background-size: 0% 1px;
}
.ov-action-item-non .ov-action-item__thumb img,
.ov-action-item .ov-action-item__thumb img {
	transition: -webkit-transform 0.4s cubic-bezier(0.170, 0.935, 0.305, 1.000);
	transition: transform 0.4s cubic-bezier(0.170, 0.935, 0.305, 1.000);
	transition: transform 0.4s cubic-bezier(0.170, 0.935, 0.305, 1.000), -webkit-transform 0.4s cubic-bezier(0.170, 0.935, 0.305, 1.000);
}
.ov-action-item-non:hover .ov-action-item__thumb img,
.ov-action-item:hover .ov-action-item__thumb img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	opacity: .8;
}


/* Swipper
---------------------------------*/
.swiper-wrap {
	position: relative;
}
.swiper-button-prev,
.swiper-button-next {
	display: grid;
	cursor: pointer;
	place-content: center;
	transform: scale(1);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 2px solid var(--color-black);
	background-color: #fff;
	transition: 0.3s ease all;
	-webkit-transition: 0.3s ease all;
	-moz-transition: 0.3s ease all;
	z-index: 2;
}
.swiper-button-prev:after,
.swiper-button-next:after {
	background-size: 10px auto;
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	background-color: var(--color-black);
}

.swiper-button-prev:after {
	-webkit-mask-image: url(../img/icon/arrow-prev-bl.svg);
	mask-image: url(../img/icon/arrow-prev-bl.svg);
}
.swiper-button-next:after {
	-webkit-mask-image: url(../img/icon/arrow-next-bl.svgg);
	mask-image: url(../img/icon/arrow-next-bl.svg);
}
.swiper-button-next,
.swiper-button-prev {
	background-image: none;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
	bottom: 0;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 4px;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
	border: 2px solid var(--color-primary);
	background-color: #FADFD1;
}
.swiper-button-prev:hover:after,
.swiper-button-next:hover:after {
	background-color: var(--color-primary);
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
	display: none;
}

@media screen and (max-width: 960px) {
	.swiper-button-prev,
	.swiper-button-next {
		width: 46px;
		height: 46px;
	}
}

/* Swiper Controller */
.swiper-controller {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 0px;
}

.swiper-controller .swiper-button-next,
.swiper-controller .swiper-button-prev {
	position: relative;
	top: auto;
	margin-top: auto;
	width: 40px;
	height: 40px;
	border: 1px solid #666;
}
.swiper-controller .swiper-button-prev {
	left: auto;
	margin-right: 24px;
}
.swiper-controller .swiper-button-next {
	right: auto;
	margin-left: 24px;
}
.swiper-controller .swiper-pagination {
	position: relative;
	text-align: center;
	transition: 0.3s opacity;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	z-index: 10;
}
.swiper-controller .swiper-horizontal>.swiper-pagination-bullets,
.swiper-controller .swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-controller .swiper-pagination-custom,
.swiper-controller .swiper-pagination-fraction {
	width: auto;
}
.swiper-controller .swiper-pagination-bullet-active {
	background: var(--color-primary);
}


/* Btn
---------------------------------*/
.link-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color-black);
	border-radius: 60px;
	border: 1px solid var(--color-black);
	box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 2px;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: .02em;
	padding: 2rem 4rem 2rem 4rem;
	text-align: center;
	max-width: 32rem;
	width: 100%;
	z-index:1;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.link-btn.btn-sizel {
	font-size: 2.4rem;
	padding: 3.6rem;
	max-width: 56rem;
}
.link-btn__txt{
	position: relative;
	display: inline-block;
	padding-right:2.4rem;
}
.link-btn__txt::after {
	position: absolute;
	content: "";
	top: 50%;
	right: 0;
	width: 1.8rem;
	height:1.8rem;
	-webkit-mask-image: url(../img/icon/circle-arrow-bl.svg);
	mask-image: url(../img/icon/circle-arrow-bl.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	transform: translateY(-50%);
	background-color: #fff;
}
.blank-btn__txt {
  position: relative;
  display: inline-block;
  padding-right: 1.8rem;
}
.blank-btn__txt::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 1.2rem;
  height: 1.2rem;
  -webkit-mask-image: url(../img/icon/icon-blanklink.svg);
  mask-image: url(../img/icon/icon-blanklink.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transform: translateY(-50%);
  background-color: #fff;
}

.link-btn:hover {
	background-color: var(--color-primary);
	color: #fff ;
	border: 1px solid var(--color-primary);
}
.link-btn.btn-w{
	background-color: #fff;
	border: 1px solid #fff;
	color: var(--color-primary);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.link-btn.btn-w .link-btn__txt::after,
.link-btn.btn-w .blank-btn__txt::after {
	background-color: var(--color-primary);
}
.link-btn.btn-w:hover{
	background-color: var(--color-black);
	border: 1px solid var(--color-black);
	color: #fff;
}
.link-btn.btn-w:hover .link-btn__txt::after,
.link-btn.btn-w:hover .blank-btn__txt::after {
	background-color: #fff;
}
.link-btn.btn-o{
	background-color: var(--color-primary);
	border: 1px solid var(--color-primary);
	color: #fff;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.link-btn.btn-o .link-btn__txt::after,
.link-btn.btn-o .blank-btn__txt::after {
	background-color: #fff;
}
.link-btn.btn-o:hover{
	background-color: var(--color-black);
	border: 1px solid var(--color-black);
	color: #fff;
}
.link-btn.btn-o:hover .link-btn__txt::after,
.link-btn.btn-o:hover .blank-btn__txt::after {
	background-color: #fff;
}

.c-btn {
	text-align: center;
	margin-top: 4.8rem;
}

@media screen and (max-width: 980px) {
	.link-btn {
		padding: 1.8rem 2.4rem 1.8rem 2.4rem;
		max-width: 30rem;
		font-size: 1.3rem;
	}
	.link-btn.btn-sizel {
		font-size: 1.4rem;
		padding: 2.8rem 1.6rem;
	}
	.link-btn__arrow{
		height: 22px;
		right: 15px;
		top: calc(50% - 11px);
		width: 22px;
			}
	.link-btn svg {
		width: 8px;
		height:7px;
	}
	.c-btn {
		text-align: center;
		margin-top: 3.2rem;
	}
	.btn-sp_c{
		text-align: center;
	}
}

.link-txt{
	position: relative;
	font-size: 1.4rem;
	font-weight: 700;
	transition: 0.3s;
}
.link-txt .link-txt__txt{
	position: relative;
	display: inline-block;
	padding-right:2.4rem;
}
.link-txt .link-txt__txt span{
	background-image: linear-gradient(#666, #666);
	background-position: 0% 100%;
	background-size: 100% 1px;
	background-repeat: no-repeat;
	transition: background-size 0.6s cubic-bezier(0.170, 0.935, 0.305, 1.000);
}
.link-txt:hover .link-txt__txt span{
	background-position: 100% 100%;
	background-size: 0% 1px;
}
.link-txt .link-txt__txt::after {
	position: absolute;
	content: "";
	top: 50%;
	right: 0;
	width: 1.8rem;
	height:1.8rem;
	background: url(../img/icon/circle-arrow-bl.svg) center / cover;
	transform: translateY(-50%);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.c-link-txt{
	margin-top:1.2rem;
	text-align: center;
}
@media screen and (max-width: 980px) {
	.link-txt{
		font-size: 1.3rem;
	}
}
