@charset "UTF-8";

/*/////////////// MV ////////////////*/
.slider{
	width: 100%;
	height: auto;
	padding-right: 60px;
}

.slider img{
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

.slick-dots {
	text-align: right;
	position: absolute;
	bottom: -3px;
	right: 68px;
}

.slick-dots li {
	width: 30px;
	height: 3px;
}

.slick-dots li.slick-active button:before {
    opacity: 0.9;
}

.slick-dots li button:before {
	opacity: 0.5;
}

.slick-dots li:nth-of-type(1) button:before{
	background: url("../../assets/images/top/slide_dot.jpg") no-repeat;
	background-size: cover!important;
}
.slick-dots li:nth-of-type(2) button:before{
	background: url("../../assets/images/top/slide_dot.jpg") no-repeat;
	background-size: cover!important;
}
.slick-dots li:nth-of-type(3) button:before{
	background: url("../../assets/images/top/slide_dot.jpg") no-repeat;
	background-size: cover!important;
}

.slick-dots li button:before{
  content: ''!important;
  height:100%!important;
  width: 100%!important;
}

.mv .heading1 {
	display: flex;
	align-items: center;
	width: 60px;
	height: auto;
	position: absolute;
	top: 10px;
	right: 0;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-orientation: upright;
}

.mv .heading1 h1 {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: 12px;
	letter-spacing: 0.3rem;
}

/*スクロールライン*/
.mv .scroll {
	position: absolute;
	bottom: 5px;
	right: -36px;
	width: 60px;
	height: auto;
	display: flex;
	align-items: center;
}

.type {
	position: relative;
	top: 0;
	right: 0;
	width: auto;
	height: auto;
	&::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg,rgba(#000, 0) 0, rgba(#000, .8) 80%, rgba(#000, .8) 100%);
	}
}

.type span {
	display: inline-block;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding-bottom: 55px;
	color: #222;
	font-size: 12px;
	font-weight: 500;
	font-family: 'Urbanist', sans-serif;
	line-height: 1;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	text-decoration: none;
	writing-mode: vertical-lr;
	transition: 0.2s;
	overflow: hidden;
	&::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 1px;
	height: 50px;
	background: #222;
	}
}

#type03 span::after {
  animation: sdl03 2s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl03 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  30% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  70% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.mv .title {
	margin-top: -15px;
	padding-left: 15px;
}

.mv .title p {
	font-family: 'Urbanist', sans-serif;
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 1.2em;
	letter-spacing: 0.02em;
}

.mv .title .heading2 {
	font-size: 1rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
}

.mv .title .mt-set {
	margin-top: -25px;
}

/*テキストアニメーションここから*/
.slide-in {
	overflow: hidden;
	display: inline-block;
}

.slide-in_inner {
	display: inline-block;

}

.leftAnime{
    opacity: 0;
}

.slideAnimeLeftRight {
	animation-name:slideTextX100;
	animation-duration:1.5s;
	animation-fill-mode:forwards;
	opacity: 0;
	animation-delay: 1.5s;
}

@keyframes slideTextX100 {
	from {
		transform: translateX(-100%) translateY(30px); 
		opacity: 0;
	}

	to {
		transform: translateX(0) translateY(0px);
		opacity: 1;
	}
}

.slideAnimeRightLeft {
	animation-name:slideTextX-100;
	animation-duration:1.5s;
	animation-fill-mode:forwards;
	animation-delay: 1.5s;
	opacity: 0;
}


@keyframes slideTextX-100 {
	from {
		transform: translateX(100%) translateY(30px);
		opacity: 0;
	}

	to {
		transform: translateX(0) translateY(0);
		opacity: 1;
	}
}
/*テキストアニメーションここまで*/

.mv .news-area {
	width: 100%;
	background-color: #222;
	padding: 1.5rem 0;
	position: relative;
}

.mv .news-area span {
	width: auto;
	display: inline-block;
	background-color: #fff;
	padding: 0.1em 15px;
	padding-right: 40px;
	clip-path:polygon(0 0, 100% 0%, 87% 100%, 0 100%);
	font-family: 'Urbanist', sans-serif;
	font-weight: 500;
	letter-spacing: 0.05em;
	color: #222;
}

.mv .news-area a p:hover {
	color: #ccc !important;
	transition-duration: 0.3s;
}

.mv .news-area a p {
	color: #fff;
	padding: 0 15px;
	line-height: 1.6em;
}

.mv .news-area .icon {
	width: 45px;
	position: absolute;
	top: 15px;
	right: 15px;
}

@media (min-width: 375px) {
	.mv .heading1 h1 {
		letter-spacing: 0.4rem;
	}
}

@media (min-width: 414px) {	
	.mv .heading1 h1 {
		font-size: 13px;
	}
	
	.type span {
		padding-bottom: 70px;
		&::after {
		height: 65px;
		}
	}

	.slick-dots li {
		width: 35px;
		height: 3px;
	}		
}

@media (min-width: 576px) {
	.mv .heading1 {
		top: 20px;
	}
	
	.mv .heading1 h1 {
		font-size: 14px;
		letter-spacing: 0.6rem;
	}
	
	.slick-dots {
		right: 72px;
	}	

	.type span {
		padding-bottom: 100px;
		&::after {
		height: 90px;
		}
	}
	
	.slick-dots {
		bottom: -2px;
	}

	.slick-dots li {
		width: 40px;
		height: 3px;
	}
	
	.mv .title {
		margin-top: -5px;
	}

	.mv .title p {
		font-size: 2.8rem;
	}

	.mv .title .heading2 {
		font-size: 1.1rem;
	}

	.mv .title .mt-set {
		margin-top: -45px;
	}
	
	.mv .news-area {
		padding: 1.75rem 0;
	}

	.mv .news-area span {
		padding-top: 0.15em;
		padding-bottom: 0.15em;
	}
	
	.mv .news-area .icon {
		width: 50px;
		top: 20px;
		right: 15px;
	}
}

@media (min-width: 640px) {
	.mv .heading1 {
		top: 25px;
	}
	
	.mv .heading1 h1 {
		font-size: 16px;
		letter-spacing: 0.75rem;
	}
	
	.type span {
		font-size: 14px;
		padding-bottom: 110px;
		&::after {
		height: 100px;
		}
	}
	
	.slick-dots {
		bottom: 0;
	}

	.slick-dots li {
		width: 50px;
		height: 4px;
	}
	
	.mv .title p {
		font-size: 3rem;
	}
	
	.mv .title .heading2 {
		font-size: 1.25rem;
	}	
}

@media (min-width: 744px) {
	.mv .heading1 {
		top: 30px;
	}
	
	.mv .heading1 h1 {
		font-size: 17px;
		letter-spacing: 1rem;
	}
	
	.type span {
		font-size: 15px;
		padding-bottom: 130px;
		&::after {
		height: 120px;
		}
	}
	
	.slick-dots {
		bottom: 4px;
	}

	.slick-dots li {
		width: 60px;
		height: 5px;
	}
	
	.mv .title p {
		font-size: 3.3rem;
	}
	
	.mv .title .heading2 {
		font-size: 1.35rem;
	}	
}

@media (min-width: 768px) {
	.slider{
		padding-right: 70px;
	}
	
	.mv .heading1 {
		top: 20px;
		width: 70px;
	}
	
	.mv .heading1 h1 {
		font-size: 12px;
		letter-spacing: 0.4rem;
	}
	
	.type span {
		font-size: 12px;
		padding-bottom: 60px;
		&::after {
		height: 50px;
		}
	}
	
	.slick-dots {
		bottom: 0;
		right: 80px;
	}

	.slick-dots li {
		width: 50px;
		height: 4px;
	}
	
	.mv {
		margin-bottom: -30px !important;
	}
	
	.mv .scroll {
		right: -42px;
		width: 70px;
		bottom: 10px;
	}
	
	.mv .title {
		position: absolute;
		left: 2.5%;
		top: 50%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		color: #fff;
	}

	.mv .title p {
		font-size: 2.4rem;
		line-height: 1.15em;
	}

	.mv .title .heading2 {
		font-size: 1.1rem;
	}
	
	.mv .title .mt-set {
		margin-top: -35px;
	}	
	
	.mv .news-area {
		position: absolute;
		left: 0;
		bottom: 0;
		z-index: 998;
		padding: 1.0rem 0;
		width: auto;
		max-width: 40%;
	}

	.mv .news-area span {
		font-size: 0.75rem;
		padding-top: 0;
		padding-bottom: 0;
	}
	
	.mv .news-area p {
		font-size: 0.75rem;
	}
	
	.mv .news-area .icon {
		width: 35px;
		top: 15px;
		right: 15px;
	}	
}

@media (min-width: 992px) {
	.slider{
		padding-right: 80px;
	}
	
	.mv .heading1 {
		top: 30px;
		width: 80px;
	}
	
	.mv .heading1 h1 {
		font-size: 13px !important;
		letter-spacing: 0.5rem;
	}
	
	.type span {
		font-size: 12px;
		padding-bottom: 90px;
		&::after {
		height: 80px;
		}
	}
	
	.slick-dots {
		bottom: 0;
		right: 90px;
	}

	.slick-dots li {
		width: 50px;
		height: 4px;
	}
	
	.mv .scroll {
		right: -47px;
		width: 80px;
	}

	.mv .title p {
		font-size: 3rem;
	}

	.mv .title .heading2 {
		font-size: 1.2rem;
	}
	
	.mv .title .mt-set {
		margin-top: -40px;
	}	
	
	.mv .news-area {
		padding: 1.2rem 0;
	}

	.mv .news-area span {
		font-size: 0.85rem;
		padding-left: 20px;
	}
	
	.mv .news-area p {
		font-size: 0.85rem;
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.mv .news-area .icon {
		width: 40px;
		top: 20px;
		right: 15px;
	}		
}

@media (min-width: 1200px) {	
	.mv .heading1 h1 {
		font-size: 14px !important;
		letter-spacing: 0.6rem;
	}
	
	.slick-dots {
		right: 100px;
	}	
	
	.type span {
		font-size: 13px;
		padding-bottom: 130px;
		&::after {
		height: 120px;
		}
	}
	
	.slick-dots {
		bottom: 2px;
	}

	.slick-dots li {
		width: 60px;
		height: 4px;
	}

	.mv .title {
		left: 4%;
	}
	
	.mv .title p {
		font-size: 4rem;
	}

	.mv .title .heading2 {
		font-size: 1.3rem;
	}
	
	.mv .title .mt-set {
		margin-top: -50px;
	}
	
	.mv .news-area {
		padding: 1.25rem 0;
	}

	.mv .news-area span {
		font-size: 0.9rem;
		padding-left: 25px;
	}
	
	.mv .news-area p {
		font-size: 0.9rem;
		padding-left: 25px;
		padding-right: 25px;
	}
	
	.mv .news-area .icon {
		right: 20px;
	}	
}

@media (min-width: 1400px) {
	.slider{
		padding-right: 100px;
	}
	
	.mv .heading1 {
		top: 35px;
		width: 100px;
	}
	
	.mv .heading1 h1 {
		font-size: 16px !important;
		letter-spacing: 0.8rem;
	}
	
	.type span {
		font-size: 14px;
	}
	
	.slick-dots {
		bottom: 4px;
		right: 120px;
	}

	.slick-dots li {
		width: 65px;
	}
	
	.mv .scroll {
		right: -58px;
		width: 100px;
	}
	
	.mv .title p {
		font-size: 4.2rem;
	}

	.mv .title .heading2 {
		font-size: 1.35rem;
	}
	
	.mv .title .mt-set {
		margin-top: -70px;
	}
	
	.mv .title p {
		font-size: 4.6rem;
	}

	.mv .title .heading2 {
		font-size: 1.35rem;
	}	
}

@media (min-width: 1600px) {	
	.mv .heading1 {
		top: 40px;
	}
	
	.mv .heading1 h1 {
		font-size: 18px !important;
	}
	
	.type span {
		font-size: 16px !important;
	}
	
	.mv .title p {
		font-size: 5rem;
	}

	.mv .title .heading2 {
		font-size: 1.5rem;
	}
}

@media (min-width: 1700px) {	
	.slick-dots li {
		width: 70px;
	}		
}


/*/////////////// セクション1 ////////////////*/
.sec1 .point h3 {
	font-size: 1rem;
	line-height: 1.6em;
	background-color: #fff;
	padding: 0.5rem 0.6rem;
	padding-right: 2rem;
	clip-path:polygon(0 0, 100% 0%, 88% 100%, 0 100%);
	padding-left: 3.75em;
	text-indent: -1.4em;
}

.sec1 .point h3 span {
	color: #c4c4c4;
	display: inline-block;
	margin-right: 1em;
}

/*ホバーで文字出現*/
.sec1 .hover-text {
	width: 100%;
	height: auto;
	overflow: hidden;
	position: relative;
}
.sec1 .hover-text .caption, .sec1 .img-title {
	color: #fff;
	position: absolute;
	left: 15px;;
	bottom: 15px;
}
.sec1 .hover-text .mask {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	background-color: rgba(0,0,0,0.4);
	-webkit-transition:	all 0.6s ease;
	transition: all 0.6s ease;
}
.sec1 .hover-text:hover .mask {
	opacity: 1;
}
/*ホバーで文字出現ここまで*/

.sec1 .img-title p, .sec1 .img-title-hover p {
	font-family: 'Urbanist', sans-serif;
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: -2px !important;
}

.sec1 .img-title h3, .sec1 .img-title-hover h3 {
	font-size: 1.3rem;
	font-weight: 500;
	margin-bottom: 0;
}

.sec1 .hover-text:hover > .img-title {
	display: none;
}

.sec1 .img-title-hover hr {
	padding: 0;
	border: 0;
	display: inline-block;
	width: 60px;
	height: 1px;
	opacity: 1;
	border-bottom: 1px solid #fff;
	margin: 10px 0 5px 0;
}

.sec1 .img-title-hover h4 {
	font-size: 1.0rem;
}

.sec1 .hover-text .caption .cap-text {
	font-size: 0.8rem;
	line-height: 1.6em;
}

@media (min-width: 576px) {
	.sec1 .point h3 {
		font-size: 1rem;
		line-height: 1.6em;
		background-color: #fff;
		padding: 0.75rem;
		padding-right: 2rem;
		clip-path:polygon(0 0, 100% 0%, 88% 100%, 0 100%);
		padding-left: 0.75em;
		text-indent: 0;
	}

	/*ホバーで文字出現*/
	.sec1 .hover-text .caption, .sec1 .img-title {
		left: 20px;
		bottom: 20px;
	}
	/*ホバーで文字出現ここまで*/

	.sec1 .img-title p, .sec1 .img-title-hover p {
		font-size: 1.1rem;
	}

	.sec1 .img-title h3, .sec1 .img-title-hover h3 {
		font-size: 1.4rem;
	}

	.sec1 .img-title-hover h4 {
		font-size: 1.1rem;
	}

	.sec1 .hover-text .caption .cap-text {
		font-size: 0.9rem;
	}
}

@media (min-width: 768px) {
	.sec1 .point h3 {
		padding-left: 3.5em;
		text-indent: -1.35em;
	}
	
	.sec1 .btn a {
		margin-left: 0;
		margin-right: auto;
	}

	/*ホバーで文字出現*/
	.sec1 .hover-text .caption, .sec1 .img-title {
		left: 15px;
		bottom: 15px;
	}
	
	.sec1 .exterior .caption, .sec1 .exterior .img-title {
		left: 25px;
	}
	
	/*ホバーで文字出現ここまで*/

	.sec1 .img-title p, .sec1 .img-title-hover p {
		font-size: 0.7rem;
		margin-bottom: -5px !important;
	}

	.sec1 .img-title h3, .sec1 .img-title-hover h3 {
		font-size: 1rem;
		margin-bottom: -8px;
	}
	
	.sec1 .img-title-hover hr {
		margin-bottom: 2px;
	}	

	.sec1 .img-title-hover h4 {
		font-size: 0.85rem;
		margin-bottom: 5px;
	}

	.sec1 .hover-text .caption .cap-text {
		font-size: 0.7rem;
	}
}

@media (min-width: 992px) {
	/*ホバーで文字出現*/
	.sec1 .hover-text .caption, .sec1 .img-title {
		left: 20px;
		bottom: 20px;
	}
	
	.sec1 .exterior .caption, .sec1 .exterior .img-title {
		left: 30px;
	}
	
	/*ホバーで文字出現ここまで*/

	.sec1 .img-title p, .sec1 .img-title-hover p {
		font-size: 0.8rem;
	}

	.sec1 .img-title h3, .sec1 .img-title-hover h3 {
		font-size: 1.3rem;
	}
	
	.sec1 .img-title-hover hr {
		margin-bottom: 2px;
	}	

	.sec1 .img-title-hover h4 {
		font-size: 1.1rem;
	}

	.sec1 .hover-text .caption .cap-text {
		font-size: 0.9rem;
	}
}

@media (min-width: 1300px) {
	.sec1 .bg-img {
		background-position: top right;
		background-size: 97%;
		background-repeat: no-repeat;
	}
}

@media (min-width: 1400px) {
	.sec1 .bg-img {
		background-position: top right;
		background-size: 95%;
		background-repeat: no-repeat;
	}
}

@media (min-width: 1500px) {
	.sec1 .bg-img {
		background-position: top right;
		background-size: 93%;
		background-repeat: no-repeat;
	}
}


/*/////////////// セクション2 ////////////////*/
.sec2 .slider2 {
	width: 100%;
	height: auto;
}

.sec2 .slider2 img{
	width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;";
	vertical-align: bottom;
}

.sec2 .slider2 h4 {
	font-family: 'Urbanist', sans-serif;
	background-color: #f4f4f4;
	font-size: 0.75rem;
	width: auto;
	display: inline-block;
	padding: 0.3rem 0.5rem;
	padding-right: 1.5rem;
	clip-path:polygon(0 0, 100% 0%, 87% 100%, 0 100%);	
}

.sec2 .slider2 p {
	font-size: 0.9rem;
	display: inline-block;
}

.sec2 .slider2 a {
	color: #222;
}

@media (min-width: 576px) {
	.sec2 .slider2 h4 {
		font-size: 0.9rem;
		padding: 0.3rem 0.75rem;
		padding-right: 1.5rem;
		position: absolute;
		top: 0px;
		left: 0;
	}

	.sec2 .slider2 p {
		font-size: 1rem;
		display: block;
		text-align: center;
	}
}

@media (min-width: 768px) {
	.sec2 .slider2 h4 {
		font-size: 1rem;
		padding-right: 1.5rem;
		position: static;
		display: inline-block;
	}

	.sec2 .slider2 p {
		font-size: 1rem;
		display: inline-block;
		text-align: left;
	}
}

@media (min-width: 992px) {
	.sec2 .slider2 h4 {
		font-size: 0.9rem;
		padding-right: 1.5rem;
		position: static;
		display: inline-block;
	}

	.sec2 .slider2 p {
		font-size: 0.9rem;
		display: inline-block;
		text-align: left;
	}
}


/*/////////////// セクション3 ////////////////*/
.sec3 .box1 span {
	font-family: 'Urbanist', sans-serif;
	display: block;
	margin-bottom: -5px;
}

.sec3 .box1 a {
	color: #222;
}

@media (min-width: 768px) {
	.sec3 .box2 p {
		font-weight: 500;
	}
	
	.sec3 .box2 h3 {
		font-family: 'Urbanist', sans-serif; 
		font-size: 2rem;
		font-weight: 500;
		text-align: center;
	}
	
	.sec3 .box2 h3 img {
		width: 1.8rem;
		display: inline-block;
		margin-right: 0.3rem;
		vertical-align: -0.2rem;
	}
	
	.sec3 .box2 span {
		font-size: 0.85rem;
	}
	
	.sec3 .box2 .btn a {
		font-family: 'Urbanist', sans-serif;
		font-size: 1.2rem;
		width: 90%;
		text-indent: -0.5em;
	}
	
	.sec3 .box2 .btn a img {
		width: 1.2rem;
		display: inline-block;
		margin-right: 0.3rem;
		vertical-align: -0.2rem;	
	}
	
	.sec3 .box2 .border-right {
		border-right: 1px solid #e3e3e3;
	}
}

@media (min-width: 992px) {
	.sec3 .box1 span {
		margin-bottom: -8px;
	}
	
	.sec3 .box2 .btn a {
		width: 300px;
	}	
}

@media (min-width: 1300px) {
	.sec3 .bg-img {
		background-position: top left;
		background-size: 97%;
		background-repeat: no-repeat;
	}
}

@media (min-width: 1400px) {
	.sec3 .bg-img {
		background-position: top left;
		background-size: 95%;
		background-repeat: no-repeat;
	}
}

@media (min-width: 1500px) {
	.sec3 .bg-img {
		background-position: top left;
		background-size: 93%;
		background-repeat: no-repeat;
	}
}
