/* =============================================
TOP
============================================= */

/*	main visual
------------------------------------ */

.main-visual{
    display: flex;
    position: relative;
    width: 100%;
    background: url(../img/bg_mv_sp.jpg) top center no-repeat;
    background-size: cover;
    aspect-ratio: 390 / 1140;
}
.main-visual::after{
    position: absolute;
    bottom: 0;
    content: "";
    display: block;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FDFBF9 100%);
}

.logo_main{
    position: absolute;
    width: 85%;
    top: 4%;
    left: 0;
    right: 0;
    margin: auto;
}

.catch-copy{
    position: absolute;
    width: calc(var(--sp-vw) * 70);
    right: 3.2%;
    top: 25.5%;
}

.main-visual__photo{
    position: absolute;
    width: 100%;
    top: 25%;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 9;
}

.main-visual__photo img{
    width: 100%;
}

.main-visual-segment{
    position: relative;
    width: calc(var(--sp-vw) * 340);
    max-width: 1200px;
    margin: 0 auto;
    margin-top: auto;
    z-index: 10;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 10px 40px 0 rgba(157, 103, 103, 0.40); 
}

@media screen and (min-width:641px) {
    .main-visual{
        aspect-ratio: 1.2 / 1;
        background: url(../img/bg_mv_pc.webp) bottom center no-repeat;
        background-size: cover;
    }
    .main-visual::after{
    }

    .logo_main{
        display: flex;
        width: 90%;
        max-width: 1400px;
    }

     .logo_main img{
        width: 50%;
        max-width: 604px;
     }

    .catch-copy{
        width: 15%;
        right: 5%;
        top: 8%;
    }

    .main-visual__photo{
        top: 6%;
        right: 0;
        left: 0;
        margin: auto;
        max-width: 1420px;
    }

    .main-visual-segment{
    }
}
@media screen and (min-width:1025px) {
    .main-visual{
        max-height: 1130px;
        background: url(../img/bg_mv_pc.webp) top center no-repeat;
        background-size: cover;
    }
    .main-visual::after{
    }

    .catch-copy{
        display: flex;
        justify-content: flex-end;
        width: 86%;
        max-width: 1260px;
        left: 0;
        right: 0;
        margin: auto;
    }
}

/*	splide
------------------------------------ */

.splide__pagination{
    gap: 4px;
    bottom: -48px;
}

.splide__arrow{
    top: auto;
    bottom: -58px;
    width: 32px;
    height: 32px;
    mask-image: url(../img/ico_arrow.svg);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 30%;
    background: #C28C8C;
    border-radius: 0;
    opacity: 1;
    transform: none;
}
.splide__arrow.splide__arrow--prev{
    transform: scaleX(-1);
}

.splide__pagination__page{
    background: #E5D6D8;
    opacity: 1;
}

.splide__pagination__page.is-active {
    background: #F46B7D;
    transform: scale(1);
}

.splide__track{
    overflow: visible;
}

.splide__slide{
    position: relative;

    visibility: hidden;
}
.splide__slide.is-visible{
    visibility: visible;
}

.slide-text{
    position: absolute;
    top: 0;
    left: 0;
    padding: 6px 10px;
    border-radius: 6px 6px 0 0;
    font-size: var(--fz14);
    color: #FFF;
    background: #2D436C;
    transform: translate(0, -100%);
}

.slide-image source,
.slide-image img{
    border-radius: 0 12px 12px 12px;
    overflow: hidden;

}

/*	sp-banner
------------------------------------ */

.sp-banner{
    width: calc(var(--sp-vw) * 340);
    margin: 0 auto;
    /* margin-top: 52px; */
}

.sp-banner__list{
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
}

.sp-banner__item{
    max-width: 560px;
}

.sp-banner__item a{
    transition: filter 0.2s ease;
}
.sp-banner__item a:hover{
    filter: brightness(1.1)
}

.sp-banner__item a img{
    border-radius: 10px;
}

@media screen and (min-width:641px) {
    .sp-banner__list{
        grid-template-columns: 1fr;
    }
}
@media screen and (min-width:1025px) {
    .sp-banner__list{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px;
    }
    .sp-banner__item {
    justify-self: start;
    }

    .sp-banner__item:nth-child(even) {
    justify-self: end;
    }

    .sp-banner__item:only-child {
    grid-column: 1 / -1;
    justify-self: center;
    }
}

/*	instagram
------------------------------------ */

.instagram{
    position: relative;
    background: url(../img/bg_wood-1.png) top center;
    background-size: 250px; 
    /* padding: 52px 0 96px 0; */
    padding: 0 0 96px 0;
    margin-top: -65%;
}

.ig__wrapper{
    width: calc(var(--sp-vw) * 340);
    margin: 0 auto;
    margin-top: 40px;
}

.ig__list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.ig__item{
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 5px 10px 0 rgba(108, 55, 55, 0.10);
    overflow: hidden;
}
.ig__item:hover .ig__txt{
    text-decoration: underline;
}

.ig__img{
    width: 100%;
}

.ig__img img{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.ig__info{
    padding: 12px;
}

.ig__date{
    padding-top: 8px;
    font-size: var(--fz12);
    color: var(--honbun_sub_color);
    display: block;
}

.ig__txt{ 
    font-size: var(--fz12);
    line-height: 1.8;
    color: var(--honbun-color);
    
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.ig__banner{
    display: block;
    width: 100%;
    max-width: 588px;
    margin: 0 auto;
    margin-top: 20px;
    border-radius: 10px;
    border: 2px solid #FB998C;
    overflow: hidden;
    transition: filter 0.2s ease;
}
.ig__banner:hover{
    filter: brightness(1.1);
}

@media screen and (min-width:641px) {
    .instagram{
        background-size: 500px;
        margin-top: 0;
    }
    .ig__list{
        grid-template-columns: repeat(4, 1fr);
    }
    .ig__txt{ 
        font-size: var(--fz14);
    }
    .ig__banner{
        margin-top: 56px;
    }
}


/*	featured-info
------------------------------------ */

.featured-info{
    position: relative;
    margin-top: -40px;
    padding: 70px 0 64px 0;
    border-radius: 40px 40px 0 0;
    background: linear-gradient(333deg, #F4C67B 29.45%, #FF7C94 79%);
}

.featured-info_wrap{
    width: calc(var(--sp-vw) * 340);
    margin: 0 auto;
}

.featured-info .sec-tit{
    color: #FFF;
    text-shadow: 0 0 10px rgba(67, 25, 33, 0.40);
}

.info_box{
    margin-top: 56px;
}
.info_select{
	position: relative;
}
.info_select::before{
	content: "";
	width: 100%;
	height: 5px;
	border-radius: 5px;
	position: absolute;
	bottom: 0;
	left: 0;
}
.info_select .active{
	content: "";
	width: 20%; /* 100% / 5 */
	height: 5px;
	border-radius: 5px;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: .3s;
}
.info_select ul{
	display: flex;
    gap: 2px;
    border-bottom: 2px solid #433F70;
}
.info_select li{
    width: 100%;
	font-size: var(--fz18);
    font-family: fot-tsukuardgothic-std, sans-serif;
	font-weight: 700;
	text-align: center;
    color: #755781;
    border-radius: 10px 10px 0 0;
    background: rgb(255 255 255 / .4);
}
.info_select .select{
	color: #FFF;
    background: #755781;
}
.info_select label{
	padding: 0.5em 0 0.5em;
	display: block;
    line-height: 1;
	cursor: pointer;
}
@media print, screen and (min-width:640px) {
	.info_box{
		padding: 4px;
	}
}
@media print, screen and (min-width:1000px) {
	.info_select li:hover{
		color: #ef4d70;
	}
}

/* week_box */
.week_box{
    border-radius: 0 0 20px 20px;
    background: #FEF6F3;
    box-shadow: 0 5px 10px 0 rgba(107, 43, 43, 0.25);
}
.week_box:empty{
	min-height: 10em;
	display: flex;
	justify-content: center!important;
	align-items: center!important;
}
.week_box:empty::before{
	content: "掲載する情報がありません";
	font-weight: bold;
}
.week_box article{
    width: 100%;
    padding-bottom: 20px;
}
.week_box article + article{
	margin-top: 2px;
}
@media print, screen and (min-width:640px) {
	.week_box article + article{
		margin-top: 4px;
	}
}

.week_box .article_inner{
    margin-top: 40px;
}

.week_box_oa_date{
    padding: 0.5em;
    font-size: var(--fz18);
    color: #453D3D;
}

@media print, screen and (min-width:641px) {
    .week_box:empty{
        min-height: 15em;
    }
    .week_box .article_inner{
        display: flex;
    }
    .info_wrap{
        flex: 1;
    }
    .info_image{
        flex: 0 0 40%;
        margin: 0;
        padding: 0;
        max-width: 480px;
    }
    .week_box .article_inner:has(.info_image) .info_wrap{
        flex: 0 0 60%;
    }
}

/* week_box_souvenir */

.week_box_souvenir{
    padding: 0.5em 1em 0.5em;
}

.souvenir_info{
    padding: 12px;
    background: #FFF;
    border-radius: 10px 32px 10px 10px;
    color: #453D3D;
}

.souvenir_title{
    font-family: fot-tsukuardgothic-std, sans-serif;
	font-weight: 700;
	font-style: normal;

    display: inline;

    background:
        linear-gradient(
        transparent 62%,
        #FECECE 62%
        );

    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.souvenir_name,
.souvenir_about{
    font-size: var(--fz14);
}

.souvenir_iamge {
    margin-top: 16px;
}

.souvenir_iamge img{
    border-radius: 10px;
}

/* info_tit */
.info_tit{
	min-height: 3em;
	padding: 0.5em 1em 0.5em;
	position: relative;
	display: flex;
    justify-content: space-between;
    align-items: center;
	line-height: 1.2;
	transition: .3s;
}
.info_tit .img{
    width: 30%;
	max-width: 120px;
    border-radius: 10px;
    display: block;
    overflow: hidden;
}
.info_txt + .info_tit{
	margin-top: 2px;
}

.info_tit .txt{
    width: 100%;
}

.info_tit .tit{
	display: block;
    width: 100%;
    padding-bottom: 0.5em;
	color: var(--honbun-color);
    font-family: fot-tsukuardgothic-std, sans-serif;
	font-size: var(--fz20);
    border-bottom: 1px solid #D0B5B5;
}
.info_tit .date{
	margin-top: 1em;
	display: inline-block;
	font-size: var(--fz12);
    color: var(--honbun_sub_color);
}
.info_txt{
	padding: 0 1em 1em 1em;
	line-height: 1.5;
}
.info_txt dl + dl{
	margin-top: 1em;
}
.info_txt p + p{
	margin-top: 1em;
}
.info_subtit{
	margin: 1.5em 0 0.5em;
	font-size: 1.25em;
	font-weight: bold;
}
.info_subtit:first-child{
	margin-top: 0;
}
.comment{
	margin: 0.5em 0;
}
.box_tit{
	color: var(--honbun-color);
	font-size: var(--fz16);
	font-weight: 700;
}

.btn_article_backnumber{
    position: relative;
    display: block;
    margin: 0 1em;
    padding: 8px 60px;
    font-size: var(--fz20);
    text-align: center;
    border-radius: 50px;
    border: 1px solid #B2A0A3;
}
.btn_article_backnumber::after{
    display: block;
    position: absolute;
    top: 0;
    right: 10px;
    content: "";
    width: 30px;
    height: 100%;
    background: url(../img/ico_arrow_red.svg) center center no-repeat;
    background-size: contain;
}

.info_image{
    padding: 0 1em 1em 1em;
}

@media print, screen and (min-width:640px) {
	.info_txt + .info_tit{
		margin-top: 4px;
	}
	.info_tit .tit{
		margin-right: 1em;
		font-size: 1.25em;
	}
	.info_txt{
		padding: 1.5em;
	}
    .btn_article_backnumber{
        max-width: 480px;
        margin: 0 auto;
    }
}
/* @media print, screen and (min-width:1000px) {
	.info_tit:hover{
		background: #ffdb99;
	}
} */

#info_contents .week_box,
#info_contents .info_txt {
  display: none;
}

#info_contents .week_box.is-active,
#info_contents .info_txt.is-active {
  display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#info_contents .week_box.is-active .info_txt{
    display: block;
}

@media screen and (min-width:641px) {
    .info_select li{
        font-size: var(--fz28);
    }
    .info_select label{
        padding: 0.5em 0 0.5em;
    }

    .week_box_oa_date{
        font-size: var(--fz24);
    }

    .week_box_souvenir{
        /* display: flex; */
        /* gap: 26px; */
    }
    .souvenir_info{
        flex: 1;
        padding: 26px;
        border-radius: 12px 12px 12px 40px;
    }
    .week_box_souvenir:has(.souvenir_iamge) .souvenir_info{
        flex: 0 0 60%;
    }
    .souvenir_title{
        font-size: var(--fz32);
    }
    .souvenir_name{
        font-size: var(--fz20);
    }
    .souvenir_about{
        font-size: var(--fz16);
    }
    .souvenir_iamge{
        margin: 0;
        flex: 0 0 40%;
        max-width: 480px;
        padding-left: 24px;
    }

    #info_contents .week_box.is-active, #info_contents .info_txt.is-active {
        justify-content: flex-start;
    }

    .week_box:empty{
        width: 100%;
    }

    .week_box:empty::before{
        width: 100%;
        text-align: center;
    }
}


/*	featured-movie
------------------------------------ */

.featured-movie{
    padding: 80px 0 86px 0;
    background: url(../img/bg_wood-2.png) top center;
    background-size: 250px;
}

.featured-movie__inner{
    width: calc(var(--sp-vw) * 340);
    margin: 0 auto;
}

.featured-movie__inner iframe{
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
}

.featured-movie__embed{
    margin-top: 56px;
}

@media screen and (min-width:641px) {
    .featured-movie{
        background-size: 500px;
    }
}


/*	sns-links
------------------------------------ */

.sns-links{
    margin-top: -30px;
    padding: 24px 0 56px 0;
    border-radius: 30px 30px 0 0;
    background: linear-gradient(158deg, #FFDC91 15.22%, #D3D1F4 85.64%);
}

.sns-links__inner{
    width: calc(var(--sp-vw) * 340);
    margin: 0 auto;
}

.sns-links .sec-tit{
    color: #6E5854;
}

.sns-links__list{
    display: flex;
    justify-content: center;
    gap: 6%;
    margin-top: 24px;
}

.sns-links__item{
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 12px;
}

.sns-links__item p{
    color: #726060;
    text-align: center;
    font-family: Inter;
    font-size: var(--fz16);
    font-style: normal;
    font-weight: 700;
    line-height: 1;
}

.sns-links__item a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #FFF;
    border-radius: 50%;
}

.sns-links__item img{
    width: 50%;
}

@media screen and (min-width:641px) {
    
}
@media screen and (min-width:1025px) {
    .sns-links{
        margin-top: -40px;
        padding: 50px 0 80px 0;
        border-radius: 40px 40px 0 0;
    }
    .sns-links__list{
        justify-content: center;
        gap: 40px;
        margin-top: 56px;
    }
    .sns-links__item{
        flex-direction: row;
        align-items: center;
        gap: 24px;
    }
    .sns-links__item p{
        font-size: var(--fz24);
    }
    .sns-links__item a{
        width: 180px;
        height: 180px;
    }
    .sns-links__item img{
        width: 40%;
    }
}


/*	other-links
------------------------------------ */

.other-links{
    padding: 64px 0 80px;
    background: url(../img/bg_wood-3.png) top center;
    background-size: 50%;
}

.streaming-links{
    width: calc(var(--sp-vw) * 340);
    margin: 0 auto;
}

.streaming-links__list{
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
}

.streaming-links__item a{
    transition: filter 0.2s ease;
}
.streaming-links__item a:hover{
    filter: brightness(1.1);
}

.streaming-links__item img{
    border-radius: 10px;
}

.other-links .open-call{
    background: none;
    padding-bottom: 0;
}

@media screen and (min-width:641px) {
    .other-links{
        padding-bottom: 120px;
        background-size: 500px;
    }
    .streaming-links__list{
        grid-template-columns:repeat(2, 1fr);
        gap: 40px;
    }
}


/*	abc news
------------------------------------ */

section.abcnews{
    margin-top: -30px;
    padding: 40px 0 40px 0;
    border-radius: 30px 30px 0 0;
    background: #F8F3F2;
}

.abcnews__list{
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}

.abcnews__list li a{
    display: flex;
}

.abcnews__list li a:hover .news_txt .txt{
    text-decoration: underline;
}

.abcnews__list .news_img{
    width: calc(var(--sp-vw) * 160);
    max-width: 260px;
    flex-shrink: 0;
}

.abcnews__list .news_img img{
    border-radius: 6px;
}

.news_txt{
    padding-left: 12px;
}

.news_txt .txt{
    font-size: var(--fz14);
    color: var(--honbun-color);

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.news_txt .date{
    padding-top: 8px;
    font-size: var(--fz12);
    font-weight: 400;
    color: var(--honbun_sub_color);
    text-align: right;
}

.btn-othernews{
  display: block;
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  margin-top: 32px;
  padding: 16px 40px;
  color: #FFF;
  font-size: var(--fz20);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  border-radius: 80px;
  background: linear-gradient(91deg, #EE713B 12.52%, #F6394C 86.33%);
  transition: filter 0.2s ease;
}
.btn-othernews:hover{
  filter: brightness(1.3);
}
.btn-othernews::after{
    position: absolute;
    top: 0;
    right: 16px;
    display: block;
    content: "";
    width: 9px;
    height: 100%;
    background: url(../img/ico_arrow.svg) center center no-repeat;
    background-size: contain;
}

@media screen and (min-width:641px) {
    section.abcnews{
        margin-top: -40px;
        border-radius: 40px 40px 0 0;
    }
    .abcnews__list{
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-top: 48px;
    }
    .btn-othernews{
        margin-top: 80px;
        padding: 18px 0;
        font-size: var(--fz26);
    }
    .btn-othernews::after{
        width: 12px;
        right: 26px;
    }
    .abcnews__list .news_img{
    width: 60%;
    max-width: 260px;
    }
    .news_txt .txt{
        -webkit-line-clamp: 6;
    }

}


/*	bottom banner
------------------------------------ */

.bottom-banner{
    padding: 40px 0;
}

.bottom-banner__list{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bottom-banner__item{
    width: 100%;
}

.bottom-banner__item img{
    border-radius: 10px;
}

@media screen and (min-width:641px) {
    .bottom-banner{
        padding: 56px 0;
    }
    .bottom-banner__list{
        flex-direction: row;
        justify-content: center;
        gap: 40px;
    }
    .bottom-banner__item{
        max-width: 560px;
    }
}