.c-ttl__01{
    font-size: 32px;
    font-weight: 700;
    color: #1e2155;
    font-family: "Playfair Display", serif;
}
.c-ttl__01-lead{
  font-size: 24px;
  color: #1e2155;
  font-weight: 400;
}
.hover-effect::after {
    position: absolute;
    width: 200%;
    height: 0;
    left: 50%;
    top: 50%;
    background-color: hsla(0,0%,100%,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    content: "";
    z-index: 1
}

.hover-effect:hover::after {
    height: 250%;
    transition: all .6s linear;
    background-color: transparent
}
@media (max-width: 992px) {
    .c-ttl__01{
        font-size: 24px;
    }
    .c-ttl__01-lead{
        font-size: 16px;
    }
}
/*  */
.common-arrow:hover .slick-arrow {
	opacity: 1;
}

.common-arrow .slick-arrow {
	background: #1e2155;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.common-arrow .slick-arrow svg {
	width: 15px;
	height: 15px;
	fill: white;
}

/* room-item */
.room-item{

}
.room-item__for{}
.room-item__for-item{
    padding: 0;
}
.room-item__for-item>a{
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}
.room-item__for-item>a::before{
    content: "";
    display: block;
    padding-top: calc((246 / 338) * 100%); 
}
.room-item__for-item img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .6s ease;
}
.room-item__nav{
    position: relative;
    transform: translateY(-50%);
    z-index: 2;
    margin: 0 auto -32px;
    width: calc(100% - 30px);
}
.room-item__nav .slick-list{
    margin: 0 -5px;
}
.room-item__nav-item{
  
    margin: 0 5px;
}
.room-item__nav-item:not(.slick-current) .room-item__nav-img::after{
    opacity: 0.6;
}

.room-item__nav-img{
    position: relative;
    display: block;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #1e2155;
}
.room-item__nav-img::before{
    content: "";
    display: block;
    padding-top: calc((72 / 94) * 100%); 
}
.room-item__nav-img::after{
    content: "";
    position: absolute;
    inset: 0;
    background: white;
    z-index: 1;
    opacity: 0;
}
.room-item__nav-item img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .6s ease;
}
.room-item__ttl{
    color: var(--color-text);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
}
.room-item__ttl>a{
    color: inherit;
}
.room-item__desc{
    margin-bottom: 15px;
}

.room-item__price{
    background: #1e2155;
    border-radius: 8px;
    color: var(--color-text);
    text-align: center;
    min-width: 160px;
    padding: 5px 10px;
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-shadow: 1px 1px 1px rgb(0 0 0 / 70%);
}
.room-item__btn{
    background: #1e2155;
    border-radius: 8px;
    color: #FFF;
    text-align: center;
    min-width: 160px;
    padding: 5px 10px;
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-shadow: 1px 1px 1px rgb(0 0 0 / 70%);
    text-decoration: none;
    transition: all .3s ease;
}
.room-item__btn:hover{
    background: #1e2155;
    color: #FFF;
}
.room-item__btn
/* article-card */
.article-card{}
.article-card__image{
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    line-height: 0;
}
.article-card__image::before{
    content: "";
    display: block;
    padding-top: calc((205 / 350) * 100%); 
}
.article-card__image img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .6s ease;
}
.article-card__content{
    margin-top: 15px;
}
.article-card__title{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.article-card__title a{
    color: #1e2155;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.article-card__title a:hover{
    color: #1e2155;
}
.article-card .mh-desc{
    margin-bottom: 20px;
}
.article-card__desc{
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
    color: #333;
}
.article-card__btn{
    background: #1e2155;
    border: 1px solid #1e2155;
    border-radius: 25px;
    color: #fff;
    text-align: center;
    padding: 5px 15px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    /* text-shadow: 1px 1px 1px rgb(0 0 0 / 70%); */
    text-decoration: none;
    width: fit-content;
    min-width: 138px;
    margin: 0 auto;
    transition: all .3s ease;
}
.article-card__btn:hover{
    background: white;
    color: #1e2155;
}
/* hover */
.hover-effect {
	position: relative;
	overflow: hidden;
	display: flex;
}

.hover-effect::after {
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: hsla(0, 0%, 100%, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	content: "";
	z-index: 1
}

.hover-effect:hover::after {
	height: 250%;
	transition: all .6s linear;
	background-color: transparent
}


/*  */
.page-mv {
	position: relative;
	overflow: hidden;
	min-height: 250px;
	padding: 20px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
/* .line {
    width: 120px;
    position: relative;
    height: 2px;
    margin: 10px auto 0;
    display: block;
    background: var(--color-main2);
} */
.page-mv__ttl {
	font-size: clamp(2.6rem, 6vw, 40px);
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 12px;
}

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

.page-mv__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-mv__img::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 2;
}

.page-mv__ct {
	position: relative;
	z-index: 10;
	color: white;
}

.breadcrumbs {
	text-align: center;
	font-size: 15px;
}
.breadcrumbs.ta-left{
	text-align: left;
}
.breadcrumbs-item:not(:last-child)::after {
	content: "/";
	margin: 0 5px;
	color: currentColor;
}

.breadcrumbs a {
	color: inherit;
	text-decoration: none;
}

.breadcrumbs a:hover {
	color: var(--color-main2);
}

.breadcrumbs-item {
	display: inline;
}
@media (max-width: 767px) {
    .page-mv{
        min-height: 170px;
    }
    .room-item__btn{
        font-size: 16px;
    }
}