
/**************** COMMON ****************/
/* #page-top ボタンタグのリセットCSS */
#page-top {
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    position: fixed;  /* #page-top自体を画面に固定 */
    bottom: 50px; /* 下に50px */
    right: 50px;  /* 右に50px */
    z-index: 10000; /* 重なり順 */
}

/* #page-top a 基本スタイル */
#page-top a {
    text-decoration: none;
    color: #fff;
    text-align: center;
    font-weight: bold;
    display: block;
    transition: transform 0.3s ease; /* transformのアニメーションを追加 */
}

/* ホバー時に少し上に動く */
#page-top a:hover {
    text-decoration: none;
    transform: translateY(-10px); /* 画像を上に5px移動 */
}

/* 画像のスタイル */
#page-top a img {
    width: 75px; /* 幅を固定 */
    height: auto; /* 高さを自動調整 */
}

/* スマホ表示（767px 以下） */
@media only screen and (max-width: 767px) {
    #page-top {
        bottom: 100px; /* 下から100px */
        right: 10px;  /* 右から10px */
    }
    #page-top a img {
        width: 50px; /* 画像の幅を50pxに */
    }
}

/* タブレット・デスクトップ表示（768px 以上） */
@media only screen and (min-width: 768px) {
    #page-top a img {
        width: 75px; /* 幅を75pxに */
    }
}

/* 上からフェードイン */
.slide-top {
	opacity: 0;
	transform: translate(0, -20px);
	transition: all 0.5s ease-out;
 }

/* 下からフェードイン */
.slide-bottom {
	opacity: 0;
	transform: translate(0, 20px);
	transition: all 0.5s ease-out;
 }

 /* 左からフェードイン */
.slide-left {
	opacity: 0;
	transform: translate(-20px, 0);
	transition: all 0.5s ease-out;
 }

/* 右からフェードイン */
.slide-right {
	opacity: 0;
	transform: translate(20px, 0);
	transition: all 0.5s ease-out;
 }
.slide-right02 {
	opacity: 0;
	transform: translate(20px, 0);
	transition: all 0.5s ease-out;
 }
.slide-right03 {
	opacity: 0;
	transform: translate(20px, 0);
	transition: all 1.5s ease-out;
 }
.slide-right04 {
	opacity: 0;
	transform: translate(20px, 0);
	transition: all 2s ease-out;
 }


/*-----------TOPのの動き-------------*/

/*以下フェードイン表示の指定*/
.fadein {
    opacity: 0;
    animation: fadein 6s ease forwards;
}
@keyframes fadein {
    100% {  opacity: 1;}
}
 
/*以下遅延の指定*/
.txt01 {animation-delay: 0.2s;}
.txt02 {animation-delay: 0.5s;}
.txt03 {animation-delay: 0.8s;}
.txt04 {animation-delay: 1.1s;}
.txt05 {animation-delay: 1.5s;}
.txt06 {animation-delay: 2.1s;}


/*-----------TOP動画-------------*/

/**************** STORY TAB ****************/

/**************** STORY TAB ****************/

/* ラジオボタンは非表示にする */
input[type="radio"] {
  display: none;
}

/* タブのエリア */
.tab_area {
  font-size: 0;
  display: flex;
  flex-wrap: wrap-reverse;
  margin: 0 0 20px 0;
}

@media only screen and (max-width:751px){
.tab_area {
  display: flex;
  justify-content: flex-start;
}
}

/* 各ラベルのスタイル */
.tab_area label {
  line-height: 1.3;
  text-align: center;
  color: #fff;
  border: 2px solid #f7e1fd; /* ボタンの枠線 */
  font-size: 18px; /* 少し小さめに */
  font-family: "vdl-gigamaru", sans-serif;
  font-weight: 500;
  font-style: normal;
  cursor: pointer;
  margin: 0 12px 12px 0; /* 右と下にマージン */
  padding: 10px 20px; /* パディングを追加してボタンっぽく */
  border-radius: 8px; /* 角を丸くする */
  transition: all 0.3s ease; /* ホバー時のアニメーション */
  background-color: #ff91c9;
}

/* パネルエリア（デフォルトは非表示） */
.tab_panel {
  width: 100%;
  padding: 0;
  display: none;
  box-sizing: border-box;
}

.tab_panel p {
  font-size: 14px;
  letter-spacing: 1px;
  text-align: center;
}

/* 選択されたタブに色をつける */
#tab1:checked ~ .tab_area .tab1_label,
#tab2:checked ~ .tab_area .tab2_label,
#tab3:checked ~ .tab_area .tab3_label,
#tab4:checked ~ .tab_area .tab4_label,
#tab5:checked ~ .tab_area .tab5_label,
#tab6:checked ~ .tab_area .tab6_label,
#tab7:checked ~ .tab_area .tab7_label,
#tab8:checked ~ .tab_area .tab8_label {
  color: #fff;
  background-color: #ff329c; /* 背景色を変更 */
  border-color: #ff329c; /* 枠線の色を変更 */
}

/* 各ラベルのホバー時のスタイル */
.tab_area label:hover {
  color: #fff;
  background-color: #e5a2df; /* ホバー時に背景色を変更 */
  border-color: #e5a2df; /* 枠線の色を変更 */
}

/* パネル表示（タブ選択時に関連パネルが表示される） */
#tab1:checked ~ .panel_area #panel1 { display: block; }
#tab2:checked ~ .panel_area #panel2 { display: block; }
#tab3:checked ~ .panel_area #panel3 { display: block; }
#tab4:checked ~ .panel_area #panel4 { display: block; }
#tab5:checked ~ .panel_area #panel5 { display: block; }
#tab6:checked ~ .panel_area #panel6 { display: block; }
#tab7:checked ~ .panel_area #panel7 { display: block; }
#tab8:checked ~ .panel_area #panel8 { display: block; }





.slick-track{
    margin:0;
}
.box{
    box-sizing:border-box;
    padding:0;
    background:#000;
    position:relative;
}
.box img{
    width:100%;
    height:auto;
    display:block;
    margin:0 auto;
}

button.slick-next{
    display:block;
}
.slick-initialized .slick-slide {
    margin: 0;
}

/**************** PC ****************/

/* PC用 */

/**************** PC ****************/

@media only screen and (min-width:751px){

.tab_area label{
    display:inline-block;
	text-align: center;
	font-size:30px;
    background-color: #ff91c9;
    color: #fff;

}
	.panel_area {
		padding-top: 1em;
		margin-bottom: 2em;
	}	

}




/**************** MOBILE ****************/

/* モニター幅750px以下 */

/**************** MOBILE ****************/

@media only screen and (max-width:750px){

.panel_area {
		
	}	
	
}