@charset "UTF-8";


/* // CSS: 表示・非表示の制御（SCSSまたはCSSファイル内に追加） */
.c-topScheduleList {
  display: none;
}
.c-topScheduleList.is-active {
  display: block;
}

.c-dayBlock__date {
  cursor: pointer;
  background-color: transparent;
  border: none;
}
.c-dayBlock__date.is-active {
  font-weight: bold;
  text-decoration: underline;
}


/* 初期状態：ローディング画面を表示 */
#fv {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 7000;
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0s linear 0.5s;
    background: #fff;
}
#fv.hidden {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.loading__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    position: relative;
}

.loading__inner video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: fit-content;
    display: block !important;
}



/*　fv　■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■　*/

.fv{
    display: flex;
    flex-direction: column;
    /* height: 100vh; */
    height: auto;
    height: 100vh;
    overflow: hidden;
}
.fv__slider,
.fv__thumbnail {
    position: relative;
    display: block;
}

.fv__slider {
    background: #fff;

    flex: 1;
    min-height: 0;
    overflow: hidden;
    height: 100%;
    height: auto;
}
.fv__slider  .slick-list {

}

.fv__slider .slider,
.fv__slider .slider .slick-list,
.fv__slider .slider .slick-track {
    height: 100% !important;
}

.fv__slider .slider .slider-img {
    width: auto;
    height: 100% !important;
    aspect-ratio: 1 / 1;
}


.fv__slider .slider .slider-img img{
    display: block;
    height: 100% !important;
    object-fit: contain;
}
@media (any-hover: hover) {
    .fv__slider .slider .slider-img img{
        opacity: 1 !important;
    }
}

.fv__thumbnail {
    /* margin-top: 17px; */
    margin-top: 0;
    padding-block: 17px;
    /* height: 14.6%; */
    flex-shrink: 0;
    /* aspect-ratio: 10 / 1; */
    height: fit-content;
    background: #fff;
}

.fv__thumbnail .slider .slider-img {
    margin-inline: 5px;  /* 左右に5pxずつ、合計10pxの余白 */
    height: 100%;
}


/* =======================
スライダースタイル設定
======================= */
.slider-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none; /* スライダーへのクリック妨害を防ぐ */
}

.slider-navigation button {
    pointer-events: all; /* ボタンにはクリックイベントを有効化 */
    background: url("../../img/slick_arrow.svg") no-repeat center center;
    background-size: contain;
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    /* 位置調整（例） */
    margin-inline:23px;
    opacity: 0.7;
    transition: all 0.3s ease;
}
.slider-navigation button:hover {
    transform: scale(1.1);
}
.slider-navigation button img {
    display: block;
    width: 100%;
    height: 100%;
}

/* もし左右で違うデザインにしたい場合 */
.custom-prev {
  /* 左用のスタイルを個別に設定 */
}

.custom-next {
  /* 右用のスタイルを個別に設定 */
  transform: rotate(180deg);
}
.slider-navigation .custom-next:hover {
    /* 右用のスタイルを個別に設定 */
    transform: scale(1.1) rotate(180deg);
}

.fv__thumbnail .slider-navigation button {
    opacity: 1;
}




.is01{
	padding: 100px 0 130px;
}

.is_box{
	max-width: 1130px;
    max-width: calc(1130px + 30px * 2);
	margin-left: auto;
    margin-right: auto;
    padding-inline: 30px;
}

.is_title01{
	display: flex;
	align-items: center;
	gap: 20px;
	/* width: 1130px; */
	margin: 0 auto;
	font-size: 40px;
	font-weight: 500;
}

.is_title01 span{
    display: block;
	font-size: 16px;
}

.is01_tab{
    margin-top: 18px;
	display: flex;
	align-items: flex-end;
	gap: 13px;
}

.is01_tab li{
	width: 100%;
}

.is01_tab li.current button{
	background: #ffa56e;
}

.is01_tab .tab-btn{
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	width: 100%;
	height: 30px;
	border: 1px #707070 solid;
	border-radius: 6px;
	background: #fff;
	font-size: 14px;
    cursor: pointer !important;
}
.is01_tab .tab-viewmore {
    width: 100%;
}
.is01_tab .tab-viewmore .tab-btn{
	background: #333;
	color: #fff;
}
@media (any-hover: hover) {
    .is01_tab .tab-viewmore .tab-btn:hover {
        opacity: 0.7;
    }
}

.is01_tab .current button{
	background: #F8D2B2;
}

.is01_tab button:hover{
	background: #ccc;
}

/* .is01_tab .current button:hover{
	background: #ffa56e;
} */

.is01_tab .dow{
	margin-bottom: 1px;
	font-weight: 700;
	text-align: center;
}

.is01_contents {
    min-height: 200px;
}

.is01_sch{
    margin-top: 27px;
	display: grid;
	grid-auto-flow: column;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	grid-template-rows: repeat(5, auto);
	gap: 0 30px;
}

.is01_sch li .sch_inner{
	display: grid;
	align-items: center;
	grid-template-columns: min(100px, 20%) 1fr;
	gap: 30px;
	padding: 10px 0;
	border-bottom: 1px #333 solid;
    height: 100%;
}

.is01_sch li:nth-child(5n+1){
	border-top: 1px #333 solid;
}

.sch_img{
    border-radius: 50%;
    aspect-ratio: 1;
    overflow: clip;
}
.sch_img a {
    overflow: hidden;
    transition: all ease 0.3s;
}
@media (any-hover: hover) {
    .sch_img a:hover img{
        scale: 1.1;
        opacity: 1;
    }
}

.sch_box{
    width: 100%;
	display: grid;
	gap: 8px;
}

.sch_name{
	font-size: 18px;
}
@media (any-hover: hover) {
    .sch_name a:hover{
        opacity: 0.5;
    }
}

.sch_ct{
	display: grid;
	grid-template-columns: 100px 1fr;
	align-items: center;
	gap: 10px;
}

.sch_category{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 22px;
	border-radius: 11px;
	background: #333333;
	color: #fff;
	font-size: 12px;
}

.sch_title{
	font-size: 14px;
	font-weight: 700;
}
@media (any-hover: hover) {
    .sch_title a:hover{
        opacity: 0.5;
    }
}





/* タブ切り替え */
.js-tab-content {
  display: none;
}
.js-tab-content.is-active {
  display: block;
}


/* no-post */
.is01_sch .no-post {
    padding-block: 30px;
    text-align: center;
}


/* ===============================
news
=============================== */
.is02{
	padding: 100px 0 50px;
	box-shadow: 0 0 80px rgba(0, 0, 0, 0.2);
}
.is02_box {
	margin-top: 24px;
}

.is_more{
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

.is_more a{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	color: #333;
}

.is_more a:hover{
	color: #E60711;
}

.is_more01{
	width: 70px;
	height: 70px;
	border: 1px #ccc solid;
	border-radius: 50%;
	background: url("../../img/arrow-right_b.svg") center center/26px no-repeat;
	transition: 0.3s ease-in-out;
}

.is_more a:hover .is_more01{
	border-color: #333;
	background-image: url("../../img/arrow-right_w.svg");
	background-color: #333;
}

.is_more02{
	font-size: 14px;
}


/* ===============================
LINE UP
=============================== */
.is03{
	padding: 100px 0 50px;
}

.is03_box{
	margin-top: 80px;
}

.is_title01 + .is03_box{
	margin-top: 35px;
}

.is03_box h3{
	margin-bottom: 30px;
	font-size: 28px;
	font-weight: 600;
	text-align: center;
}

.is03_box h3 span{
	position: relative;
	display: inline-block;
}

.is03_box h3 span:before,
.is03_box h3 span:after{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	content: "";
	width: 80px;
	height: 1px;
	background: #707070;
}

.is03_box h3 span:before{
	left: calc(100% + 22px);
}

.is03_box h3 span:after{
	right: calc(100% + 22px);
}

.is03_va{
	margin-top: 35px;
	text-align: center;
}

.is03_va a{
	position: relative;
	display: inline-block;
	box-sizing: border-box;
	width: 150px;
	padding: 7px 18px;
	text-align: left;
	border: 1px #333 solid;
	border-radius: 16px;
	background: #333;
	color: #fff;
	line-height: 1;
}

.is03_va a:hover{
	background: #fff;
	color: #333;
}

.is03_va a:after{
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translateY(-50%);
	content: "";
	width: 13px;
	height: 11px;
	background: url("../../img/arrow-right_w.svg") center center/contain no-repeat;
	transition: 0.3s ease-in-out;
}

.is03_va a:hover:after{
	background-image: url("../../img/arrow-right_b.svg");
}



/* ===============================
ToDAY’s MEMBER
=============================== */
.is04{
	/* padding: 100px 0 120px; */
	padding: min(6.94vw, 100px) 0 min(8.33vw, 120px);
	overflow: clip;
}

.is04 .is_title01{
	position: relative;
	flex-direction: column;
	padding-bottom: 16px;
	line-height: 1;
}

.is04 .is_title01:after{
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	content: "";
	width: 48px;
	height: 1px;
	background: #707070;
}

.is04_box{
	margin-top: 75px;
}

.is04_l{
	position: relative;
	display: flex;
	box-sizing: border-box;
}
.is04_l_l {
    width: 41.56%;
}
.is04_l_r {
    flex: 1;
    margin-top: 70px;
    margin-left: -20px;
    padding: 42px 40px 42px 45px;
    border: 1px #707070 solid;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    background: #fff;
    position: relative;
}
/* Newsの個別スタイル */
.singleNews .is04_l_r {
    margin-top: 0;
    margin-left: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: unset;
    background: #fff;
}

.is04_img{
	border-radius: 20px;
	margin-bottom: 17px;
	overflow: clip;
}
.is04_img a:hover img {
    opacity: 1;
    z-index: unset;
    /* transform: scale(1.05); */
}


.is04_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.is04_name {
    display: flex;
    align-items: end;
    flex-wrap: wrap;
    gap: 5px 12px;
    margin-bottom: 15px;
}

.is04_name01{
	font-size: 18px;
}

.is04_name02{
	color: #666;
	font-size: 14px;
}

.singleNews .is04_name01,
.singleNews .is04_name02 {
    text-align: center;
}

.is04_sns{
    /* margin-top: 20px; */
	display: flex;
	justify-content: start;
	gap: 12px;
    flex-wrap: wrap;
}
.is04_sns li {
    width: min(38px, 100%);
    min-width: 38px;
}

.is04_l_prof{
	display: grid;
	grid-template-columns: auto 1fr;
	padding-top: 17px;
}

.is04_l_prof dt{
	font-weight: 700;
	padding-bottom: 5px;
	border-bottom: 1px #C9C9C9 solid;
}

.is04_l_prof dd{
	padding: 0 0 5px 44px;
	border-bottom: 1px #C9C9C9 solid;
}

.is04_l_prof dt:not(:last-of-type),
.is04_l_prof dd:not(:last-of-type){
	margin-bottom: 14px;
}

/* シャッフルアイコン */
.is04_l_shuffle {
    /* デフォルトのスタイルをリセット */
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    /* カスタムスタイル  */
    display: block;
    position: absolute;
    top: -34px;
    right: 17px;
    color: #B4B4B4;
}
.is04_l_shuffle-icon {
    width: 20px;
    position: relative;
}
.is04_l_shuffle-icon img {

    width: 20px;
}

.is04_va{
	position: absolute;
	right: -6px;
	bottom: -9px;
}

.is04_va a{
	position: relative;
	display: inline-block;
	box-sizing: border-box;
	width: 150px;
	padding: 7px 18px;
	text-align: left;
	border: 1px #EF7F27 solid;
	border-radius: 16px;
	background: #EF7F27;
	color: #fff;
	line-height: 1;
}

.is04_va a:hover{
	border-color: #333;
	background: #fff;
	color: #333;
}

.is04_va a:after{
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translateY(-50%);
	content: "";
	width: 13px;
	height: 11px;
	background: url("../../img/arrow-right_w.svg") center center/contain no-repeat;
	transition: 0.3s ease-in-out;
}

.is04_va a:hover:after{
	background-image: url("../../img/arrow-right_b.svg");
}






/* ===============================
バナー
=============================== */

.bottom_banner {
	padding: min(6.94vw, 100px) 0 min(8.33vw, 120px);
    display: flex;
    flex-direction: column;
    gap: 40px 10px;
}
.bottom_banner_item_title {
    text-align: left;
}
.bottom_banner_list{
    margin-top: 30px;
	display: flex;
	justify-content: center;
	overflow: clip;

    max-width: 1190px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-inline: 30px !important;
}
.bottom_banner_list li{
	margin: 0 10px;
}
/* .bottom_banner_list img{
	width: 280px;
} */

/* ===============================
slidesToShowよりも枚数が少ない時
=============================== */

.slide-few-adjust {
    max-width: 1190px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-inline: 30px !important;
    /* display: flex !important; */
}
.slide-few-adjust.bottom_banner_list {
    justify-content: start !important;
    width: 100% !important;
}

.slide-few-adjust.bottom_banner_list img {
    width: 100% !important;
    /* max-width: 300px; */
}
.slide-few-adjust .slick-track {
    width: 100% !important;
    /* display: flex !important;
    justify-content: space-between !important; */
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
}
.slide-few-adjust .slick-track:before,
.slide-few-adjust .slick-track:after {
    display: none !important;
}

.slide-few-adjust .slick-slide {
    float: unset !important;
    /* width: 100% !important; */
}
.slide-few-adjust .slick-list {
    /* width: 100% !important; */
}