@charset "UTF-8";
html {
  margin: 0px;
  padding: 0px;
}

:root {
  --themeocean60: rgba(180, 83, 75, 0.6);
}


.reco_foryou_wrapper {
  /*display: none;*/
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: var(--themewhite);
  width: 100%;
}
main {
  width: 100%;
  background-color: var(--themewhite);
}

/* 修正後：ロゴとハンバーガーボタンのみを初期非表示にする */
.iks_logo_left,
.hamburger-fade,
.toENpage {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* is-show クラスがついたら表示する */
.iks_logo_left.is-show,
.hamburger-fade.is-show,
.toENpage.is-show
 {
  opacity: 1;
  visibility: visible;
}


#header_bot {
  height: 75px;
  width: 100%;
  z-index: 990;
  position: fixed;
  bottom: -75px; /* ← 初期状態は隠す */
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  border-top: solid 1.5px var(--themeocean);
  transition: bottom 0.3s ease; /* ← スライド用アニメーション */
}

#header_bot.is-show {
  bottom: 0; /* ← 出てくる */
}

.fadeIn {
  transform: translate3d(0, 50px, 0);
  transition: 1s;
  opacity: 0;
}
.fadeIn.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.iks_logo_right{
  display: none;;
}

/* fv */
#top {
  position: relative;
  overflow: hidden;
}

.logo-3d {
    transform-style: preserve-3d; /* 3D回転を滑らかにする */
}
.rotate{
  position: absolute;
    cursor: pointer;
    top: 85px;
    width: 100px;
    left: 50%;
    transform: translateX(-50%);
    overflow: visible !important; /* ★最重要：破片が枠外へ飛び出せるようにする */
}

/* ロゴの中身（画像やSVG）にも発光を連動させる */
.logo-3d img,
.logo-3d svg {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
/* 破片（キラキラ）のスタイル */
.sparkle-particle {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); /* ひし形 */
  pointer-events: none;
  z-index: 9999; /* 最前面 */
  box-shadow: 0 0 12px #ffffff, 0 0 24px rgba(255, 255, 255, 1); /* 強力な発光 */
  transform: translate(-50%, -50%);
}
/*FVアニメーション用初期設定*/
.fv_sp {
  position: relative;
  height: 100svh;
}


.layer5_frontwave {
  position: absolute;
  clip-path: inset(0 0 0 100%);
  width: 100%;
  left: 0;
  top: 0;
}
.layer1_backwave{
position: absolute;
opacity: 0;
clip-path: inset(0 100% 0 0);
width: 100%;
left: 0;
top: 0;
}
.layer4_spectra{
position: absolute;
width: 100%;
left: 0;
top: 0;
}
.layer0_ikkyosai{
position: absolute;
width: 100%;
left: 0;
top: 0;
}

.scroll_down {
  position: absolute;
  right: 25px; /* 右から20px */
  bottom: 0px; /* 下から20px */
  z-index: 50;
  width: 25px;
  padding: 0 10px;
}

.scroll_down p {
  padding-bottom: calc(6svh + 10px);
  color: var(--themeocean);
  font-size: 1.1em;
  line-height: 1;
  writing-mode: vertical-lr;
  transition: 0.5s;
  margin: auto;
  font-family: "Kiwi Maru", sans-serif;
  font-weight: 700;
}

.scroll_down p::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 6svh;
  background: rgb(from var(--themeocean40) r g b / 40%);
  opacity: 0.5;
}
.scroll_down p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 6svh;
  background: var(--themeocean);
}

#type01 p:after {
  animation: sdl-flow 1.5s ease-in-out infinite;
}
.scroll_down {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
}

.scroll_down.is-show {
  opacity: 1;
  visibility: visible;
}

@keyframes sdl-flow {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  45% {
    transform: scaleY(1);
    transform-origin: top;
  }
  55% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

#type01 p {
  animation: text-blink 3s ease-in-out infinite;
}

@keyframes text-blink {
  0% {
    opacity: 0.5;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

/* uv */
#under {
  background: var(--themewhite);
  position: relative;
  margin-top: 0px;
}

.title {
  font-weight: 500;
  font-size: 22px;
}

.title_wrapper {
  font-family: "Kiwi Maru", sans-serif;
  color: var(--themevintage);
  display: inline-block;
  position: relative;
  margin-left: 5%;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: nowrap;
}
.title {
  position: relative;
  display: inline-block;
  color: var(--themevintage);
  font-size: 22px;
  margin-top: -6px;
}

.title::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--themewhite);
  opacity: 0.5;
  filter: blur(7px);
  z-index: -1;
}

.title::after {
  transform: skewX(-60deg) scaleY(-0.5);
  opacity: 0.35;
  mask-image: linear-gradient(to bottom, rgba(50, 78, 90, 0.8), transparent);
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    rgba(50, 78, 90, 0.8)
  );
  content: attr(data-text);
  position: absolute;
  left: -22px;
  top: calc(130%);
  width: 100%;
  color: var(--themevintage);
  transform-origin: top;
  mask-image: linear-gradient(
    to bottom,
    rgba(50, 78, 90, 0.7) 0%,
    rgba(50, 78, 90, 0.3) 35%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(50, 78, 90, 0.7) 0%,
    rgba(50, 78, 90, 0.3) 35%,
    transparent 100%
  );
}
.title-piece {
  width: 40px;
  z-index: 0;
}
.title-box {
  display: flex;
  margin-left: -26px;
  padding-bottom: -19px;
  left: 10;
  left: 33%;
  flex-direction: column;
  font-size: 10px;
  z-index: 100;
}

/* テーマ */
#theme {
  position: relative;
}

.theme_wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.theme_wrapper img {
  width: 250px;
  margin-bottom: 20px;
  pointer-events: none;
}

.themefont {
  font-weight: 500;
  font-family: "Kiwi Maru", sans-serif;
  color: var(--themeocean);
}
.theme_script {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.theme_script p {
  padding: 0% !important;
  margin: 0 auto;
  text-align: center;
  font-size: 13px;
}

.theme_script img {
  width: 60px;
  height: 11px;
  margin: 0 !important;
}

.sns_icon {
  display: flex;
  flex-direction: column;
  margin: 0px auto 20px auto;
  align-items: center;
}
.sns_icon p {
  position: relative;
  text-align: center;
  font-family: "Kiwi Maru", sans-serif;
  font-size: 12px;
  color: var(--themeocean);
  padding: 0 15px 5px 6px;
  display: inline-block;
  width: fit-content;
  text-shadow: var(--thememix) 0.5px 0.5px 0px;
}
.hashtag {
  font-size: 12px;
}
.hashtag::after {
  content: "";
  position: absolute;
  background-image: url(../img/index/hashtag_decoration.svg);
  background-size: contain;
  background-repeat: no-repeat;
  top: 0px;
  height: 17px;
  width: 100%;
  top: 22px;
  display: flex;
  justify-content: center;
}

.sns_icon div {
  display: flex;
  margin-top: 30px;
}
.icon_box a {
  border-radius: 9999px;
  padding: 15px;
  width: 60px;
  height: 60px;
  margin: 0 7px;
  transition: all 0.3s;
  transform: 300degree;
  background: linear-gradient(
    125deg,
    var(--themeocean) 0%,
    var(--thememix) 70%,
    var(--themecream) 100%
  );
  border: 1px, solid, var(--thememix);
}

.sns_icon img {
  width: 100%;
  height: 100%;
}

.sns_icon a:hover {
  scale: 1.1;
  color: var(--themeocean);
}
 .kochira_arrow {
    display: inline-block;
    background-color: var(--themeocean);
    width: 47px;
    height: 1.5px;
    position: absolute;
    bottom: 4px;
    right: 4px;
    transition: all 0.3s;
}

.kochira_arrow:hover{
  opacity: 0.6;
}
.toTheme:after {
    content: "";
    background-color: var(--themeocean);
    position: absolute;
    height: 1.5px;
    width: 12px;
    transform: rotate(45deg);
    right: 3px;
    top: 28px;
    transition: all 0.3s;
}

.toTheme:hover{
  opacity: 0.6;
}

.btn {
  text-align: center;
  margin: 20px 0 30px 0;
  position: relative;
}
.btn a {
  display: inline-block;
  font-family: "Kiwi Maru", sans-serif;
  font-weight: bold;
  font-size: 12px;
  padding: 0.6em 3.5em;
  position: relative;
  transition: all 0.3s;
}
.btn span {
  display: inline-block;
  width: 40px;
  height: 1.5px;
  position: absolute;
  top: 50%;
  right: -13px;
  transition: all 0.3s;
}
.btn span::after{
  content: "";
  position: absolute;
  height: 1px;
  width: 8px;
  transform: rotate(35deg);
  right: 0px;
  top: -2.5px;
}

.btn a:hover span {
  right: -26px;
}

.btn_ocean a {
  color: var(--themeocean);
  border: 1px solid var(--themeocean);
}
.btn_ocean span,
.btn_ocean span::after {
  background: var(--themeocean);
}
.btn_ocean a:hover {
  background: var(--themeocean);
  color: var(--themewhite);
}

/* 企画を探す */
#search {
  position: relative;
  margin-top: 30px;
}

.search_wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.search_wrapper_0 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.search_circle {
  display: flex; /* テキストを中央寄せ */
  justify-content: center;
  align-items: center;
  width: 110px; /* 横幅 */
  height: 110px; /* 縦幅 */
  border-radius: 50%; /* 円にする */
  color: var(--themewhite); /* テキストの色 */
  overflow: hidden; /* 擬似要素がはみ出さないように */ /* 下線を消す */
  transition: transform 0.3s ease;
  background: linear-gradient(
    150deg,
    var(--themeocean) 0%,
    #579cad 60%,
    var(--thememix) 100%
  );
}

.search_circle_time {
  background: linear-gradient(
    150deg,
    var(--themeocean) 0%,
    #579cad 35%,
    var(--thememix) 75%,
    var(--themeskyblue) 100%
  );
}

.search_circle_map {
  background: linear-gradient(
    150deg,
    #36819a 0%,
    #579cad 17%,
    var(--thememix) 50%,
    var(--themeskyblue) 100%
  );
}

.search_button:hover {
  transform: scale(1.02);
}

.search_button:hover::after {
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}
.search_button_frame {
  position: absolute;
  width: 145px;
  height: 145px;
  inset: 0;
  z-index: 2;
}
.search_button {
  position: relative;
  perspective: 500px;
  transition: transform 0.3s ease;
}
.search_button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/index/search_frame.svg) center / contain no-repeat;
  z-index: 2;
  pointer-events: none;
  width: 110px;
  top: -10px;
  left: -3.5px;
  transform: rotateY(0deg);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}
.search_button:hover::after {
  transform: translateX(5px);
}
/* 押している間、本体を押し込む */
.button:active {
  transform: translateY(4px);
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

#button_ring {
  position: absolute;
  width: 102px;
  height: 102px;
}

.search_button_content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  filter: drop-shadow(1px 1px 2px rgba(0, 94, 135, 0.6));
  /*↓なければ円に中央ぞろえなんだけど、枠をずらしてるからこう押した方がバランス良かった*/
  left: -2px;
}
.search_button_content p {
  color: var(--themewhite);
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 16px;
  text-shadow: 2px 2px 4px rgba(0, 71, 96, 1);
}
.search_button_content img {
  width: auto;
  height: 32px;
}

/* おすすめ企画 */

.reco_wrapper {
  margin-top: 50px;
  position: relative;
}
.reco_day_wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}
.reco_day_button_wrapper{
top: -14px; 
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.reco_day_button {
  position: relative;
  display: flex;
  width: 270px;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
  padding-bottom: 3px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.reco_day_button:hover {
  transform: translate(2.5px, 2.5px); /* 影の方向に動かす */
  box-shadow: none; /* 影を消す */
  cursor: pointer;
}

.reco_day_text {
  display: inline-flex;
  text-align: center;
  font-family: "Kiwi Maru", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--themeocean);
  text-shadow: 1px 1px 0px rgb(from var(--themewhite) r g b / 100%);
  white-space: nowrap;
  z-index: 2;
  align-items: flex-end;
  margin-right: 2px;
}
.reco_day_text_date {
  font-size: 22px;
}

.day_number {
  font-family: "Kiwi Maru", sans-serif;
  font-weight: 700;
  font-size: 53px;
  display: inline-block;
  position: absolute;
  top: -22px;
  right: -3px;
  background: linear-gradient(#d29286, #c57061); /* グラデーション */
  -webkit-background-clip: text; /* 背景を文字でクリップ */
  -webkit-text-fill-color: transparent; /* テキストを透明に */
  z-index: 1;
}

.reco_day_button:hover .reco_day_arrow {
  transform: translateX(5px);
}

.day_decoration {
  content: attr(data-text);
  font-family: "Kiwi Maru", sans-serif;
  position: absolute;
  color: var(--themewhite);
  font-size: 40px;
  right: 3px;
  bottom: -8px;
  translate: (-1, -1);
  transform: skewX(-30deg) scaleY(1);
  opacity: 0.6;
}



.reco_genre_wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}

.reco_genre_title {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 9px;
  width: 330px;
}

.reco_genre_title p {
  font-size: 16px;
  font-weight: 600;
  color: var(--themeocean);
  font-family: "Kiwi Maru", sans-serif;
}

.reco_foryou_wrapper .reco_genre_title_line {
  width: 138px;
  height: 1px;
  background-color: var(--themeocean) !important;
}

.reco_genre_title_line {
  width: 160px;
  height: 1px;
  background-color: var(--themeocean) !important;
}

.reco_genre_title_circle_flex {
  content: "";
  display: flex;
  flex-direction: row;
  gap: 5px;
}
.reco_genre_title_circle {
  background-color: var(--themeocean) !important;
  border-radius: 50%;
  width: 5px;
  height: 5px;
}

.reco_genre_title_circle2 {
  background-color: rgb(from var(--themeocean) r g b / 60%) !important;
}

.reco_genre_title_circle3 {
  background-color: rgb(from var(--themeocean) r g b / 30%) !important;
}

.reco_genre_content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 8px;
  margin: 0 auto;
}
.reco_genre_button {
  position: relative;
  width: 105px;
  height: 75px;
  background-color: var(--themewhite);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.reco_day_button::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../img/index/reco_star.svg) center / contain no-repeat;
    z-index: 2;
    pointer-events: none;
    width: 18px;
    top: -22px;
    left: -2px;
    filter: drop-shadow(1px 1px 1px var(--themeocean));
}

/* ホバーで押し込む */
.reco_genre_button:hover {
  transform: translate(1px, 1px); /* ボタン本体を少し下・右に移動 */
  box-shadow: none;
  cursor: pointer;
}
.reco_genre_button:hover::before,
.reco_genre_button:hover::after {
  display: none;
}
@media screen and (max-width: 1023px) {
  .child_button{
    width: 105px;
    height: 75px;
  }
}
.join_button::before {
  content: " ";
  position: absolute;
  background: url("../img/reco-piece_join.svg") center / contain no-repeat;
  top: 0px;
  left: 0px;
  width: 40px;
  height: 40px;
}
.join_button::after {
  content: " ";
  position: absolute;
  background: url("../img/reco-piece_join.svg") center / contain no-repeat;
  transform: scale(-1, -1);
  width: 40px;
  height: 40px;
  right: 0px;
  bottom: 0px;
}
.reco_genre_button::after {
  content: " ";
  position: absolute;
  bottom: -4.3px;
  left: -0.5px;
  width: 3.5px; /* 横幅 */
  height: 3.3px; /* 高さ */
  clip-path: polygon(100% 0%, 0% 0%, 100% 100%);
  transition: transform 0.3s ease;
}
.join_button,
.academic_button,
.enjoy_button,
.local_button,
.juken_button,
.child_button{
 transition: transform 0.3s ease;
}

.join_text {
    color: var(--field);
}
.join_button{
  box-shadow: 2px 4px 2px 0 rgb(from var(--field) r g b / 40%);
}
.academic_text {
    color: var(--stage);
}
.academic_button{
  box-shadow: 2px 4px 2px 0 rgb(from var(--stage) r g b / 40%);
}
.enjoy_text {
    color: var(--booth);
}
.enjoy_button{
  box-shadow: 2px 4px 2px 0 rgb(from var(--booth) r g b / 40%);
}
.local_text {
    color: var(--sympo);
}
.local_button{
  box-shadow: 2px 4px 2px 0 rgb(from var(--sympo) r g b / 40%);
}
.juken_text {
    color: var(--indoor);
}
.juken_button{
  box-shadow: 2px 4px 2px 0 rgb(from var(--indoor) r g b / 40%);
}
.child_text {
    color: var(--decoration);
}
.child_button{
  box-shadow: 2px 4px 2px 0 rgb(from var(--decoration) r g b / 40%);
}
/* ホバーで押し込む */
.reco_genre_button:hover {
  transform: translate(0.5px, 0.5px); /* ボタン本体を少し下・右に移動 */
  box-shadow: none;
  cursor: pointer;
}
.reco_genre_button:hover .join_button,
.reco_genre_button:hover .academic_button,
.reco_genre_button:hover .enjoy_button,
.reco_genre_button:hover .local_button,
.reco_genre_button:hover .juken_button,
.reco_genre_button:hover .child_button{
 box-shadow: none;
}
.reco_genre_button:hover::before,
.reco_genre_button:hover::after {
  display: none;
}
.reco_genre_button:active {
  opacity: 0.3;
}
#genre_button_deco {
  position: absolute;
  top: 0;
  right: 4%;
  height: 73px;
  width: auto;
  z-index: 1;
}
.genre_text {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  z-index: 2;
  line-height: 18px;
}
.reco_genre_button:hover .genre_text {
  animation: fuwafuwa 0.6s ease-in-out forwards;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}

.themeocean_button {
  border: 1px solid var(--themeocean);
  box-shadow: 3px 3px 0px var(--themeocean);
}
.themeocean_button::before,
.themeocean_button::after {
  background-color: var(--themeocean); /* 三角形の色 */
}
.themeocean_text {
  color: var(--themeocean);
}
/*移植したやつ*/

.reco_wrapper {
  margin-top: 50px;
  position: relative;
}



.reco_genre_wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}

.reco_genre_title {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 9px;
  width:330px;
}

.reco_genre_title p {
    font-size: 16px ;
    font-weight: 500 ;
    color: var(--themeocean) ;
    font-family: "Kiwi Maru", sans-serif ;
}


.join_text {
    color: var(--field);
}
.join_button{
  box-shadow: 2px 4px 2px 0 rgb(from var(--field) r g b / 40%);
}
.academic_text {
    color: var(--stage);
}
.academic_button{
  box-shadow: 2px 4px 2px 0 rgb(from var(--stage) r g b / 40%);
}
.enjoy_text {
    color: var(--booth);
}
.enjoy_button{
  box-shadow: 2px 4px 2px 0 rgb(from var(--booth) r g b / 40%);
}
.local_text {
    color: var(--sympo);
}
.local_button{
  box-shadow: 2px 4px 2px 0 rgb(from var(--sympo) r g b / 40%);
}
.juken_text {
    color: var(--indoor);
}
.juken_button{
  box-shadow: 2px 4px 2px 0 rgb(from var(--indoor) r g b / 40%);
}
.child_text {
    color: var(--decoration);
}
.child_button{
  box-shadow: 2px 4px 2px 0 rgb(from var(--decoration) r g b / 40%);
}
.reco_foryou_wrapper .reco_genre_title_line {
  width: 138px;
  height: 1px;
  background-color: var(--themeocean);
}

.reco_genre_title_line {
  height: 1px;
  background-color: var(--themeocean);
  flex: 1;
}


.reco_genre_title_circle_flex {
  display: flex;
  flex-direction: row;
  gap: 5px;
}
.reco_genre_title_circle {
  background-color: var(--themeocean);
  border-radius: 50%;
  width: 5px;
  height: 5px;
}

.reco_genre_content {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  grid-template-rows: repeat(2, auto);   
  gap: 12px; 
  margin: 0 auto;
}
.reco_genre_button {
  position: relative;
  width: 105px;
  height: 75px;
  background-color: var(--themewhite);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}
.reco_genre_button::before {
  content: " ";
  position: absolute;
  top: -1.3px;
  right: -4.3px;
  width: 3.3px;   /* 横幅 */
  height: 3.3px;  /* 高さ */
  clip-path: polygon(0% 100%, 0% 0%, 100% 100%);
  transition: transform 0.3s ease;
}
.reco_genre_button::after {
  content: " ";
  position: absolute;
  bottom: -4.3px;
  left: -0.5px;
  width: 3.5px;   /* 横幅 */
  height: 3.3px;  /* 高さ */
  clip-path: polygon(100% 0%, 0% 0%, 100% 100%);
  transition: transform 0.3s ease;
}

/* ホバーで押し込む */
.reco_genre_button:hover {
  transform: translate(1px, 1px); /* ボタン本体を少し下・右に移動 */
  box-shadow: none;
  cursor: pointer;
}
.reco_genre_button:hover::before,
.reco_genre_button:hover::after {
  display: none;
}
#genre_button_deco {
  position: absolute;
  top: 0;
  right: 4%;
  height: 73px;
  width: auto;
  z-index: 1;
}
.genre_text {
    font-family: 'Kiwi Maru';
    position: absolute;
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    z-index: 2;
    line-height: 15px;
}
.reco_genre_button:hover .genre_text {
  animation: fuwafuwa 0.6s ease-in-out forwards;
}

@keyframes fuwafuwa {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}


.themeocean_button {
  border: 1px solid var(--themeocean);
  box-shadow: 3px 3px 0px var(--themeocean);
}
.themeocean_button::before,
.themeocean_button::after {
  background-color: var(--themeocean); /* 三角形の色 */
}
.themeocean_text {
  color: var(--themeocean);
}



.reco_day_wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}
.reco_day_button {
    position: relative;
    display: flex;
    max-width: 350px;
    height: 40px;
    box-shadow: 2.5px 2.5px 2px #54767a6e;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
    padding-bottom: 5px;
    transition: all 0.3s ease;
    background: linear-gradient(150deg, #2d94b0 0%, #a8dcdf 30%, #e0ebec 60%, #cae8eb 85%, #a2d9dd 100%);
}
.reco_day_button::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../img/index/reco_star.svg) center / contain no-repeat;
    z-index: 2;
    pointer-events: none;
    width: 17px;
    top: -30px;
    left: -4px;
    filter: drop-shadow(1px 1px 0px var(--themeocean));
}
.day_decoration{
  content: attr(data-text);
  position: absolute;
  font-size: 36px;
  right: 1px;
  bottom: -8px;
  transform: skewX(-20deg) scaleY(1);
  opacity: 0.6;
}

.reco_day_button:hover {
  transform: translate(1.5px, 1.5px); /* 影の方向に動かす */
  box-shadow: none;                   /* 影を消す */
  cursor: pointer;
}


.reco_day_text {
    display: inline-flex;
    text-align: center;
    font-family: "Kiwi Maru", sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: var(--themeocean);
    white-space: nowrap;
    z-index: 2;
    align-items: flex-end;
    margin-right: 2px;
    text-shadow: 1px 1px 0px rgb(from var(--themewhite) r g b / 100%);
}
.reco_day_text_date {
  font-size: 22px;
}














/* ご案内 */
.info_wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 50px auto;
  justify-content: center;
  flex-direction: row;
}

.info_ocean {
  background: var(--themeocean);
  box-shadow:
    0 0 0 8.5px var(--themeocean) inset,
    0 0 0 9px var(--themewhite) inset;
  width: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
  aspect-ratio: 1 / 1;
}

.info_mix {
  background: var(--thememix);
  box-shadow:
    0 0 0 8.5px var(--thememix) inset,
    0 0 0 9px var(--themewhite) inset;
  width: 120px;
  position: relative;
  background-color: var(--thememix);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  transition: all 0.3s;
  aspect-ratio: 1 / 1;
}

.info_ocean img {
  height: 40px;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.4));
}

.info_mix img {
  height: 40px;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.25));
}

.info_ocean {
  background: var(--themeocean);
  box-shadow:
    0 0 0 8.5px var(--themeocean) inset,
    0 0 0 9px var(--themewhite) inset;
}
.info_mix {
  background: var(--thememix);
  box-shadow:
    0 0 0 8.5px var(--thememix) inset,
    0 0 0 9px var(--themewhite) inset;
}

.info_ocean:hover {
  background: rgb(from var(--themeocean) r g b / 70%);
  box-shadow:
    0 0 0 11.5px var(--themeocean) inset,
    0 0 0 12px var(--themewhite) inset;
}
.info_ocean:hover .info_script{
  color: var(--themeblack);
}
.info_mix:hover {
  background: rgb(from var(--thememix) r g b / 70%);
  box-shadow:
    0 0 0 11.5px var(--thememix) inset,
    0 0 0 12px var(--themewhite) inset;
}
.info_mix:hover .info_script{
  color: var(--themeblack);
}

.info_script {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

.info_script p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: var(--themewhite);
}
.info_script p:first-child {
  font-size: 12px;
  line-height: 1;
  text-align: center;
  margin-bottom: 3px;
}
.info_script p:last-child {
  font-size: 9px;
  text-align: center;
}
.info_ocean .info_script {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}
.info_mix .info_script {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
}

/* 企画特集 */
#pickup_sp {
  position: relative;
}
#pickup_pc{
  display: none;
}
.slider_wrapper {
  position: relative;
  margin: 0 auto;
  overflow: visible; /* ←ココ重要！チラ見せを許可 */
  width: 100%;
  max-width: 1000px;
}

.slider_inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.slider_inner_img {
  width: 70%;
  height: auto;
  margin: 0 auto;
  cursor: pointer;
}
.slider_inner_img:hover {
  opacity: 0.8;
}

.slider_contents {
  overflow: visible !important; /* ← Slickがoverflow:hiddenを付ける場合があるため上書き */
}
.slider-items {
  display: block !important; /* ←重要！ */
}

/* 基本のトランジション */
.slider_inner {
  transition: all 0.4s ease;
}

.slider_inner_text {
  padding: 0 17.5%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  align-items: center;
}
.slider_inner_text p:nth-of-type(1) {
  padding: 0 3%;
  font-size: 15px;
  font-weight: 500;
  color: var(--themeblack);
  font-family: "Kiwi Maru", sans-serif;
  text-align: center;
  white-space: nowrap;
}
.slider_inner_text p:nth-of-type(2) {
  padding: 0 2%;
  font-size: 13px;
  font-weight: 400;
  color: var(--themeblack);
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: justify;
  line-height: 16px;
}
.slider_inner_text span {
  width: 100%;
  height: 1px;
  background-color: var(--themeocean);
}

/* slickが自動で付けるクラス：中央スライド */
.slider_items .slider_items.slick-center {
  transform: scale(1);
  opacity: 1;
}

.slider_wrapper_2 {
  position: relative;
  margin: 0 auto;
  overflow: visible; /* ←ココ重要！チラ見せを許可 */
  width: 100%;
  max-width: 1000px;
}

.reco_foryou_content {
  margin-top: 25px;
  margin-bottom: 80px;
  background-color: #ece3d7;
  padding: 15px 0 20px 0;
}

.reco_foryou_content .slider-controls {
  margin-bottom: 0;
}

.slider_inner_2 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.slider_inner_img_2 {
  width: 120px;
  aspect-ratio: 1 / 1;
  height: auto;
  margin: 0 auto;
  cursor: pointer;
}
.slider_inner_img_2:hover {
  opacity: 0.8;
}

.slider_contents_2 {
  overflow: visible !important; /* ← Slickがoverflow:hiddenを付ける場合があるため上書き */
}
.slider-items_2 {
  display: block !important; /* ←重要！ */
}

/* 基本のトランジション */
.slider_inner_2 {
  transition: all 0.4s ease;
}

.slider_inner_text_2 {
  padding: 0 17.5%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  align-items: center;
}
.slider_inner_text_2 p:nth-of-type(1) {
  padding: 10px 0 0 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--themeblack);
  font-family: "Kiwi Maru", sans-serif;
  text-align: center;
  white-space: nowrap;
}
.slider_inner_text_2 p:nth-of-type(2) {
  padding: 5px 0%;
  font-size: 13px;
  font-weight: 400;
  color: var(--themeblack);
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: justify;
  line-height: 12px;
  white-space: nowrap;
}
.slider_inner_text_2 span {
  width: 125px;
  height: 1px;
  background-color: var(--themeblack);
}

.slider_items_2 {
  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
  opacity: 0.5;
  transform: scale(0.8);
}
.slider_inner_text_2 {
  opacity: 0;
}

.slider_inner_text_2 span {
  display: none;
  opacity: 0.5;
}

/* slickが自動で付けるクラス：中央スライド */
.slider_items_2.slick-center {
  transform: scale(1);
  opacity: 1;
}

.slick-center .slider_inner_text_2 {
  opacity: 1;
  transition: all 0.3s ease;
}

.slick-center .slider_inner_text_2 span {
  display: block;
  opacity: 1;
  transition: all 0.3s ease;
}

.time-carousel-navigation {
  margin: 0px auto 15px auto;
}

.time-carousel-navigation p {
  font-size: 18px;
  color: var(--themeocean);
  font-family: "Kiwi Maru", sans-serif;
  font-weight: 700;
  text-align: center;
}

.time-carousel-navigation span {
  font-size: 14px;
  margin-left: 3px;
}

.slider-controls {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 16px;
  align-items: center;
  padding: 0 10%;
  margin-bottom: 50px;
}
.slider-progress {
  width: 100%;
  height: 2px;
  background-color: #c5c4c4;
  overflow: hidden;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background-color: var(--themeocean); /* メインカラー */
  transition: width 0.4s ease;
}

.slider-progress_2 {
  width: 100%;
  height: 2px;
  background-color: var(--themeocean);
  overflow: hidden;
}

.progress-bar_2 {
  width: 0%;
  height: 100%;
  background-color: var(--themeocean); /* メインカラー */
  transition: width 0.4s ease;
}

.slider-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.slider_nav_left {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.slider-count {
  color: var(--themeocean);
  display: flex;
  align-items: center;
  gap: 8px;
}
.slider-count span {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-size: 11px;
    margin-right: -5px;
    color: var(--themeocean);
}
.prev-btn,
.next-btn {
  width: 30px; /* 円のサイズ */
  height: 30px;
  border: 1px solid var(--themeocean); /* 赤錆色の枠線 */
  border-radius: 50%; /* 円形 */
  background: transparent; /* 背景透明 */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.prev-btn:focus-visible,
.next-btn:focus-visible {
  outline: none;
}

/* 矢印のスタイル */
.arrow-left {
  position: relative;
  display: inline-block;
  width: 30px; /* 矢印の長さ */
  height: 1px; /* 横線の太さ */
  left: 11px;
  top: 1px;
  background-color: var(--themeocean);
}
.arrow-right {
  position: relative;
  display: inline-block;
  width: 30px; /* 矢印の長さ */
  height: 1px; /* 横線の太さ */
  left: -11px;
  top: 1px;
  background-color: var(--themeocean);
}

.arrow-left::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -2px;
  width: 9px; /* くの字の長さ */
  height: 1px;
  background-color: var(--themeocean);
  transform: translateY(-50%) rotate(-35deg);
}
.arrow-right::after {
  content: "";
  position: absolute;
  left: 20px;
  top: -2px;
  width: 9px; /* くの字の長さ */
  height: 1px;
  background-color: var(--themeocean);
  transform: translateY(-50%) rotate(35deg);
}

.view-all {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
}
.view-all p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--themevintage);
}
.view-all img {
  width: 20px;
  height: auto;
}

#test_btn_open {
  display: block;
  width: 100%;
  padding: 7px 15px;
  border: 1px solid var(--themeocean);
  box-shadow: 1px 0 3px 1px var(--themeocean60);
  background-color: var(--themewhite);
  color: var(--themeocean);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: "Zen Kaku Gothic New", sans-serif;
  position: relative;
}

#test_btn_open:hover {
  box-shadow: none;

  transform: scale(1.03);
}

#test_btn_open:active {
  background-color: var(--themeocean60);
  box-shadow: none;

  transform: scale(1.03);
}
#test_btn_open::before,
#test_btn_open::after {
  content: " ";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--themeocean60);
}

#test_btn_open::before {
  bottom: 0;
  right: 8px;
}
#test_btn_open::after {
  bottom: 8px;
  right: 0;
}


/* モーダルと背景の指定 */
.modal{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
  z-index: 5000;
}

/* モーダルの擬似要素の指定 */
.modal:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: -0.2em;
}


#overlay{
  background: var(--themeblack);
  opacity: .8;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
}
/* クラスが追加された時の指定 */
#overlay.is-active,
.modal-window.is-active{
  visibility: visible;
  display: block;
}

/* モーダル内側の指定 */
.modal-window{
    position: fixed;
    display: none;
    width: 94%;
    max-width: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: var(--themewhite);
}



/* モーダルを閉じるボタンの指定 */
.modal-close{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 6px;
  right: 6px;
  width: 36px;
  height: 36px;
  color: var(--themewhite);
  background:var(--themeocean);
  border-radius: 50%;
  cursor: pointer;
  padding-bottom: 1px;
  padding-left: 0.5px;
}

.modal_scroll{
    max-height: 500px;
    overflow-y: scroll;
}
.modal_scroll::-webkit-scrollbar-thumb {
  background-color: var(--thememix) !important; /* スクロールバー本体 */
  border-radius: 10px !important;
}


/* モーダルのコンテンツ部分の指定 */
.modal-content{
  text-align: left;
  line-height: 1.8;
  padding: 20px 30px 20px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  justify-content: center;
}

.modal_btn {
    display: flex;
    width: 100%;
    max-width: 440px;
    gap: 10px;
    flex-direction: row;
    transition: all .5s;
    align-items: flex-start;
    justify-content: center;
}
.modal_btn img{
   width: 40%;
   height:fit-content;
   aspect-ratio: 3/2;
}

.modal_title{
   font-family: "Kiwi Maru", serif;
   font-weight: 500;
   border-bottom: 1px solid var(--themeocean);
   margin-bottom: 5px;
   font-size: 1em;
   line-height: 1.3;

}
.modal_detail{
  font-family: 'Zen Kaku Gothic New',serif;
    font-size: 0.7em;
}









/* モーダルを開くボタン */
.modal-open{
  display: block;
  width: fit-content;
  margin: 3% auto 0 auto;
  font-family: "Shippori Mincho", serif;
  font-weight: bold;
  font-size: 12px;
  border-radius: 9999px;
  padding: 0.6em 3.5em;
  position: relative;
  transition: all .3s;
  cursor: pointer;
  color: var(--themeocean);
  border:1.5px solid var(--themeocean);
}
.modal-open::before{
    position: absolute;
    content: "";
    display: block;
    width: 0.8em;
    height: 1px;
    background-color:#fff;
    right: 13px;
    top: 50%;
    transform: translate(0, -50%);
}
.modal-open::after{
position: absolute;
    content: "";
    display: block;
    width:0.8em;
    height: 1px;
    background-color: #fff;
    right: 13px;
    top: 50%;
    transform: translate(0, -50%) rotate(90deg);
    transition: all .3s;
}


.modal-open:hover{
  background: var(--themewhite);
  color: var(--themevintage);
}


.modal-open:hover::before,.modal-open:hover::after{
    background-color: var(--themevintage);
}


@media screen and (max-width: 370px) {
  .reco_genre_content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 12px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .logo-3d {
    position: absolute;
    transform-style: preserve-3d;
    transform-origin: center center;
    cursor: pointer;
    left: 15.6%;
    top: 20%;
    width: 16%;
    scale: 1;
}
}


@media screen and (min-width: 1024px) {
  /*レスポンシブ用*/
  #fixed-header {
    opacity: 1;
    transform: translateY(0px);
  }
  main {
    margin-top: 65px !important;
  }

  #top {
    min-height: 0;
  }
  .background{
    width: 100%;
  }

  .layer-1_stars {
    opacity:1;
  }

  #under {
    margin-top: -90px;
  }

  .title_wrapper {
    margin-left: 10%;
    margin-bottom: 50px;
    margin-top: 60px;
  }
  title {
    font-size: 33px;
    line-height: 35px;
  }
  .title_wrapper span {
    font-size: 14px;
  }
  title::before {
    width: 75px;
    height: 75px;
    top: -15px;
    left: -25px;
  }
  title::after {
    height: 1.5px;
  }
  .title-piece {
    scale: 1.5;
  }
  .title-box {
    margin-left: 0px;
    scale: 1.5;
  }
  #layer0_ikkyosai{
    filter: drop-shadow(rgba(21, 95, 150, 0.3) 3px 3px 1px);
  }
  .FV-smart{
    display: none;
  }

  /* テーマ */
  .theme_wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  .theme_wrapper img {
    width: 325px;
    margin-bottom: 20px;
  }

  .theme_script {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .theme_script p {
    padding: 0% !important;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
  }

  .theme_script img {
    width: 80px;
    height: 14px;
    margin: 0 !important;
  }
  .btn a {
    font-size: 16px;
  }

  /* 企画を探す */
  .search_wrapper {
    gap: 25px;
  }
  .search_wrapper_0 {
    margin-bottom: 50px;
  }

  .search_button {
    width: 180px;
    height: 180px;
  }
  .search_button:hover {
    transform: scale(1.04);
  }

  #button_ring {
    width: 166px;
    height: 166px;
  }
  .search_button_content p {
    font-size: 20px;
    line-height: 29px;
  }
  .search_button_content img {
    height: 50px;
  }
  .search_button_content {
    gap: 10px;
  }
  .search_circle {
    width: 180px;
    height: 180px;
  }
  .search_button::after {
    width: 180px;
    top: -18px;
    left: -5.5px;
  }

  /* おすすめ企画 */
  .reco_wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 60px;
  }
  .reco_day_wrapper {
    gap: 58px;
  }
  .reco_day_button {
    padding-bottom: 5px;
    scale: 1.4;
    margin-bottom: 0px;
    width: 250px;
  }
  .reco_day_button::after{
    width: 15px;
    top: -29px;
    left: -2px;
  }
.reco_day_buttonwrapper{
    top: -14px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 55px;
}

.reco_sun_button{
  padding-top: 30px;
}
.reco_mon_button{
 padding-top: 30px;
}

  .day_number {
    font-size: 62px;
    top: -24px;
    right: -2px;
  }
  .reco_genre_title p {
    font-size: 25px;
  }
  .reco_genre_title_line {
    height: 1px;
  }
  .reco_genre_title_day {
    width: 380px;
  }
  .reco_genre_title_circle_flex {
    gap: 5px;
  }
  .reco_genre_title_circle {
    width: 6px;
    height: 6px;
  }
  .reco_genre_wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 33px;
    justify-content: center;
    align-items: flex-start;
  }

  .reco_genre_content {
    gap: 15px;
  }
  .reco_genre_button {
    width: 175px;
    height: 120px;
  }
  .reco_genre_button::before {
    content: " ";
    position: absolute;
    top: -1.3px;
    right: -5.3px;
    width: 4.3px; /* 横幅 */
    height: 4.3px; /* 高さ */
    clip-path: polygon(0% 100%, 0% 0%, 100% 100%);
    transition: transform 0.3s ease;
  }
  .reco_genre_button::after {
    content: " ";
    position: absolute;
    bottom: -5.3px;
    left: -0.3px;
    width: 4.3px; /* 横幅 */
    height: 4.3px; /* 高さ */
    clip-path: polygon(100% 0%, 0% 0%, 100% 100%);
    transition: transform 0.3s ease;
  }

  /* ホバーで押し込む */
  .reco_genre_button:hover {
    transform: translate(2px, 2px); /* ボタン本体を少し下・右に移動 */
    box-shadow: none;
    cursor: pointer;
  }
  .reco_genre_button:hover::before,
  .reco_genre_button:hover::after {
    display: none;
  }
  #genre_button_deco {
    position: absolute;
    top: 0;
    right: 4%;
    height: 118px;
    width: auto;
    z-index: 1;
  }
  .genre_text {
    font-size: 18px;
    line-height: 28px;
  }
  
.reco_day_button {
    padding-bottom: 5px;
    width: none;
    scale: 1.5;
}
.reco_sun_button{
  padding-top: 30px;
}
.reco_mon_button{
 padding-top: 30px;
}
.reco_genre_title_day {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  width: 380px;
}
.reco_genre_title_course {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  width: 560px;
}


  .reco_foryou_wrapper {
    width: 1024px;
    margin: 20px auto 10px auto;
  }
  .reco_foryou_wrapper .reco_genre_title_line {
    width: 778px;
    height: 1px;
    background-color: var(--themeocean);
  }

  /* ご案内 */
  /*
  .info_wrapper {
    margin: 0 auto 30px auto;
    gap: 0px;
    width: 76%;
    max-width: none;
  }*/
  .info_wrapper{
  margin: 0 auto 30px auto;
        gap: 0px;
        width: 40%;
        max-width: none;
  }
  .info_ocean {
    flex: 1;
  }
  .info_mix {
    flex: 1;
  }
  .info_script p:first-child {
    font-size: 15px;
    line-height: 1;
    text-align: center;
    margin-bottom: 5px;
  }
  .info_script p:last-child {
    font-size: 12px !important;
  }

  /* 特集 */

  .slider_wrapper {
    max-width: none;
  }
  .slider_contents {
    width: 80%;
    overflow: hidden;
    margin: 0 auto;
  }

  .slider_inner {
    gap: 15px;
  }
  .slider_inner a {
    width: 100%;
  }

  .slider_inner_img {
    width: 100%;
  }
  .slider_inner_img:hover {
    opacity: 0.8;
  }

  .slider_inner_text {
    gap: 5px;
    width: 100%;
    padding: 0;
  }
  .slider_inner_text p:nth-of-type(1) {
    padding: 0 3%;
    font-size: 20px;
  }
  .slider_inner_text p:nth-of-type(2) {
    padding: 0;
    font-size: 17px;
    text-align: justify;
    line-height: 20px;
    width: 100%;
  }
  .slider_inner_text span {
    width: 100%;
    height: 1.5px;
    background-color: var(--themeblack);
  }

  .slider_inner {
    margin: 0 30px; /* slick-slideの余白と打ち消し合うようにマイナス指定 */
  }

  .slider_items {
    transition:
      transform 0.4s ease,
      opacity 0.4s ease;
    opacity: 0.5;
    transform: scale(0.85);
  }

  /* slickが自動で付けるクラス：中央スライド */
  .slider_items.slick-center {
    transform: scale(1);
    opacity: 1;
  }

  .slider-controls {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
    align-items: center;
    padding: 0 10%;
    margin-bottom: 40px;
  }
  .slider-progress {
    height: 3px;
  }
  .slider-progress_2 {
    height: 3px;
  }

  .progress-bar {
    width: 0%;
    height: 100%;
    background-color: var(--themeocean); /* メインカラー */
    transition: width 0.4s ease;
  }

  .progress-bar_2 {
    width: 0%;
    height: 100%;
    background-color: var(--themeocean); /* メインカラー */
    transition: width 0.4s ease;
  }

  .slider-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .slider_nav_left {
    gap: 40px;
    margin-left: 15px;
  }
  .slider_nav_right {
    margin-right: 15px;
  }

  .slider-count {
    gap: 10px;
  }
  .slider-count span {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--themeocean);
  }
  .number_line {
    width: 1px;
    height: 14px;
    background-color: var(--themeocean);
    margin-top: 1px;
  }

  .prev-btn,
  .next-btn {
    width: 45px; /* 円のサイズ */
    height: 45px;
    border: 1.3px solid var(--themeocean); /* 赤錆色の枠線 */
  }

  #test_btn_open {
    padding: 12px 25px;
    font-size: 17px;
  }

  #test_btn_open::before,
  #test_btn_open::after {
    content: " ";
    position: absolute;
    width: 13px;
    height: 13px;
    background-color: var(--themeocean60);
  }

  #test_btn_open::before {
    bottom: 0;
    right: 13px;
  }
  #test_btn_open::after {
    bottom: 13px;
    right: 0;
  }

  /* 矢印のスタイル */
  .arrow-left {
    width: 45px; /* 矢印の長さ */
    height: 1px; /* 横線の太さ */
    left: 20px;
    top: 1px;
    transition: 0.3s ease;
  }
  .arrow-right {
    width: 45px; /* 矢印の長さ */
    height: 1px; /* 横線の太さ */
    left: -20px;
    top: 1px;
    transition: 0.3s ease;
  }

  .prev-btn:hover .arrow-left {
    left: 15px;
  }

  .next-btn:hover .arrow-right {
    left: -15px;
  }

  .arrow-left::before {
    content: "";
    position: absolute;
    left: -1px;
    top: -3px;
    width: 12px; /* くの字の長さ */
    height: 1px;
    background-color: var(--themeocean);
    transform: translateY(-50%) rotate(-35deg);
  }
  .arrow-right::after {
    content: "";
    position: absolute;
    left: 32px;
    top: -3px;
    width: 12px; /* くの字の長さ */
    height: 1px;
    background-color: var(--themeocean);
    transform: translateY(-50%) rotate(35deg);
  }

  .view-all {
    gap: 15px;
  }
  .view-all:hover {
    opacity: 0.7;
  }
  .view-all p {
    font-size: 18px;
    cursor: pointer;
  }
  .view-all img {
    width: 35px;
  }
/*PC用企画特集*/
#pickup_sp{
  display: none;
}
#pickup_pc {
  display: block;
  position: relative;
  width: 100%;
  height: 120vh;
  margin-top: 100px;
  overflow: hidden;
}


/* グリッド配置（8つのコンテンツ） */
#pickup_pc .pickup_grid_wrapper {
    top: 100px;
    width: 76%;
    margin: 0px auto;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 10px;
    list-style: none;
}
.grid_items {
  opacity: 0;
  transform: translateY(60px);
}
.grid_items::marker{
  display: none;
}

#pickup_pc .grid_items{
  width: 190px;
}

#pickup_pc .grid_inner_text p {
    color: var(--themewhite);
    font-size: 15px;
    font-family: "Kiwi Maru", serif;
    text-shadow: var(--themevintage) 1px 1px 3px;
}
.pickup-background {
position: absolute;
left: -1vw;
width: 101vw;
z-index: 0;
top: 70px;
opacity: 1;
overflow: hidden;
}

  .modal_scroll {
    max-height: 600px;
    overflow-y: scroll;
  }

  .modal_btn {
    display: flex;
    width: 100%;
    gap: 10px;
    flex-direction: row;
    transition: all 0.5s;
    align-items: flex-start;
    justify-content: center;
  }
  .modal_btn img {
    width: 45%;
    height: fit-content;
    aspect-ratio: 3/2;
  }

  .modal-content {
    text-align: left;
    line-height: 1.8;
    padding: 40px 50px 40px 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
  }

  .modal-window {
    position: fixed;
    display: none;
    width: 100%;
    max-width: 1024px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: var(--themewhite);
  }

  .committee_project_wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    padding: 0 15%;
  }

  .committee_project_wrapper img {
    width: 385px;
    margin-bottom: 20px;
  }

  .committee_project_content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .committee_project_content p {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: var(--themeblack);
    padding-right: 0 !important;
  }

  .committee_project_content .btn {
    padding-left: 15%;
  }
  .committee_image_link:hover {
    opacity: 0.8;
  }
  .committee_image_link {
    transition: 0.3s;
  }

  .scroll_down {
    position: absolute;
    right: 40px;
    top: 65svh;
    z-index: 50;
    padding: 0 10px;
  }

  .scroll_down p {
    padding-bottom: calc(7svh + 15px);
    color: var(--themeocean);
    font-size: 1.8em;
    line-height: 1;
    writing-mode: vertical-lr;
    transition: 0.5s;
    margin: auto;
    font-family: "Kiwi Maru", sans-serif;
    font-weight: 500;
  }

    .scroll_down p::before {
    content: "";
    position: absolute;
    top: 100px;
    left: 50%;
    width: 1.5px;
    height: 10svh;
    background: var(--beige40);
    opacity: 0.5;
    background: var(--themewhite);
  }
  .scroll_down p::after {
    content: "";
    position: absolute;
    top: 100px;
    left: 50%;
    width: 1.5px;
    height: 10svh;
  }

  #type01 p:after {
    animation: sdl-flow 1.5s ease-in-out infinite;
    background: var(--themewhite);
  }

  @keyframes sdl-flow {
    0% {
      transform: scaleY(0);
      transform-origin: top;
    }
    45% {
      transform: scaleY(1);
      transform-origin: top;
    }
    55% {
      transform: scaleY(1);
      transform-origin: bottom;
    }
    100% {
      transform: scaleY(0);
      transform-origin: bottom;
    }
  }

  #type01 p {
    animation: text-blink 3s ease-in-out infinite;
    color: var(--themewhite);
  }

  @keyframes text-blink {
    0% {
      opacity: 0.5;
    }
    70% {
      opacity: 1;
    }
    100% {
      opacity: 0.5;
    }
  }

  .hashtag{
    font-size: 20px;
  }
  .hashtag::after {
    height: 24px;
    width: 200%;
    top: 30px;
}

  .sns_icon div {
    gap: 15px;
  }

  .sns_icon {
    margin-top: 40px;
  }

  .sns_icon p {
    font-size: 20px;
  }

  .sns_icon a {
    width: 70px;
    height: 70px;
  }
  .kochira_arrow {
    display: inline-block;
    background-color: var(--themeocean);
    width: 78px;
    height: 2px;
    position: absolute;
    top: 42px;
    right: -3px;
    transition: all 0.3s;
}
  .toTheme:after {
  content: "";
  background-color: var(--themeocean);
  position: absolute;
  height: 2px;
  width: 20px;
  transform: rotate(45deg);
  right: -5px;
  top: 35px;
  transition: all 0.3s;
}
  
.totheme{
  width: auto;
}

  .modal_title {
    font-size: 1.3em;
  }
  .modal_detail {
    font-size: 1em;
  }

  .modal-open {
    font-size: 16px;
  }

  .search-form-1 {
    transform: scale(1.4);
    transform-origin: bottom center;
  }
  .search-form-1 input {
    font-size: 16px !important;
  }

  .slider_inner_img_2 {
    width: 170px;
  }
  .slider_inner_text_2 p:nth-of-type(1) {
    font-size: 20px;
  }
  .slider_inner_text_2 span {
    width: 200px;
  }
  .slider_inner_text_2 p:nth-of-type(2) {
    font-size: 16px;
  }

  .time-carousel-navigation {
    margin: 0px auto 20px auto;
  }

  .time-carousel-navigation p {
    font-size: 24px;
    color: var(--themeocean);
    font-family: "Kiwi Maru", sans-serif;
    font-weight: 700;
    text-align: center;
  }

  .time-carousel-navigation span {
    font-size: 17px;
    margin-left: 5px;
  }
  .reco_foryou_content {
    padding: 30px 0 40px 0;
  }
}

@media screen and (min-width: 1440px) {
  #square_x5F_layer_x5F_00 {
    width: 600px;
    transform: translateX(-2%);
  }
  #circle_x5F_layer_x5F_00 {
    width: 600px;
    transform: translateX(-2%);
  }
  #title_x5F_layer_x5F_00 {
    transform: translateX(-76%);
    width: 780px;
    margin-top: -632px;
  }

  #title_x5F_layer_x5F_01 {
    transform: translateX(1%) translateY(9%) scale(0.9, 0.9);
  }

  .info_red img {
    height: 56px;
  }
  .info_beige img {
    height: 56px;
  }
  .info_script p:first-child {
    font-size: 22px;
  }
  .info_script p:last-child {
    font-size: 12px !important;
  }
}

.search-form-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  border: 2px solid var(--themeocean);
  border-radius: 3px;
  margin-top: 15px;
}

.search-form-1 input {
    width: 250px;
    height: 35px;
    padding: 5px 15px;
    border: none;
    box-sizing: border-box;
    font-size: 1em;
    outline: none;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--themevintage);
}

.search-form-1 input::placeholder {
  color: var(--themevintage);
}

.search-form-1 button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 35px;
  border: none;
  background-color: var(--themeocean);
  cursor: pointer;
}

.search-form-1 button::after {
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.031 16.6168L22.3137 20.8995L20.8995 22.3137L16.6168 18.031C15.0769 19.263 13.124 20 11 20C6.032 20 2 15.968 2 11C2 6.032 6.032 2 11 2C15.968 2 20 6.032 20 11C20 13.124 19.263 15.0769 18.031 16.6168ZM16.0247 15.8748C17.2475 14.6146 18 12.8956 18 11C18 7.1325 14.8675 4 11 4C7.1325 4 4 7.1325 4 11C4 14.8675 7.1325 18 11 18C12.8956 18 14.6146 17.2475 15.8748 16.0247L16.0247 15.8748Z' fill='%23fff'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: "";
}

/* 診断モーダル初期状態は非表示 */
.hidden {
  display: none !important;
}

/* 診断モーダルオーバーレイ */
.diagnosis-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 診断モーダルコンテンツ */
.diagnosis-modal-content {
  background: linear-gradient(to bottom, var(--themeocean) 100px, white 200px);
  padding: 30px;
  border-radius: 8px;
  position: relative;
  max-width: 90%;
  max-height: 70vh;
  overflow-y: auto;
  z-index: 10000;
}

/* 診断モーダル閉じるボタン */
.diagnosis-modal-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: var(--themewhite);
  cursor: pointer;
  padding: 5px 10px;
  z-index: 10000;
  transition: opacity 0.3s;
}

.diagnosis-modal-close-btn:hover {
  opacity: 0.7;
}

/* 診断モーダルタイトル */
#diagnosisModal h2 {
  padding-left: 0;
  color: var(--themewhite);
  border-bottom: solid 3px var(--themewhite);
  text-align: center;
}

#diagnosisModal h2::before {
  background: linear-gradient(90deg, var(--themewhite), transparent);
  z-index: 0;
}

/* 診断ボタン */
.diagnosis-optionButton,
#test_btn_open {
  display: block;
  width: 80%;
  margin: 15px auto;
  padding: 12px 20px;
  border: 2px solid var(--themeocean);
  box-shadow: 1px 0 3px 1px var(--themeocean60);
  background-color: var(--themewhite);
  color: var(--themeocean);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: "Zen Kaku Gothic New", sans-serif;
  position: relative;
}

#test_btn_open {
  width: 200px;
  margin: 10px auto;
}

.diagnosis-optionButton:hover,
#test_btn_open:hover {
  box-shadow: none;
  transform: scale(1.03);
}

.diagnosis-optionButton:active,
#test_btn_open:active {
  background-color: var(--themeocean60);
  box-shadow: none;
  transform: scale(1.03);
}

.diagnosis-optionButton::before,
.diagnosis-optionButton::after,
#test_btn_open::before,
#test_btn_open::after {
  content: " ";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: var(--themeocean60);
}

.diagnosis-optionButton::before {
  top: 0;
  left: 15px;
}

.diagnosis-optionButton::after {
  top: 15px;
  left: 0;
}

/* 診断モーダルボタン */
.diagnosis-modal-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}

.diagnosis-back-button {
  display: block;
  width: 40%;
  padding: 8px 16px;
  border: 2px solid var(--themeocean);
  box-shadow: 1px 0 3px 1px var(--themeocean60);
  background-color: var(--themewhite);
  color: var(--themeocean);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: "Zen Kaku Gothic New", sans-serif;
  position: relative;
  margin: 0 auto;
}

.diagnosis-back-button:hover {
  box-shadow: none;
  transform: scale(1.03);
}

.diagnosis-back-button:active {
  background-color: var(--themeocean60);
  box-shadow: none;
  transform: scale(1.03);
}

.diagnosis-retry-button {
  display: block;
  width: 70%;
  margin: 15px auto;
  padding: 12px 20px;
  border: 2px solid var(--themeocean);
  box-shadow: 1px 0 3px 1px var(--themeocean60);
  background-color: var(--themewhite);
  color: var(--themeocean);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: "Zen Kaku Gothic New", sans-serif;
  position: relative;
}

.diagnosis-retry-button:hover {
  box-shadow: none;
  transform: scale(1.03);
}

.diagnosis-retry-button:active {
  background-color: var(--themeocean60);
  box-shadow: none;
  transform: scale(1.03);
}

.diagnosis-retry-button::before,
.diagnosis-retry-button::after {
  content: " ";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: var(--themeocean60);
}

.diagnosis-retry-button::before {
  bottom: 0;
  right: 15px;
}

.diagnosis-retry-button::after {
  top: 15px;
  right: 0;
}

/* 診断質問テキスト */
.diagnosis-questionText {
  font-size: 16px;
  font-weight: bold;
  color: var(--themewhite);
  text-align: center;
}

/* 診断結果表示 */
.diagnosis-test_koma-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.diagnosis-test_explain {
  max-width: 310px;
  color: var(--themeocean);
}

.diagnosis-resultContent {
  padding: 5px;
  background-color: var(--themewhite);
  box-shadow: 3px 0 10px 6px var(--themewhite);
}

.diagnosis-resultContent .card_heart {
  top: 20px;
}

.diagnosis-resultBox p {
  color: var(--themeocean);
  transform: translateY(20px);
}

/* 診断モーダルサイズ */
#diagnosisModal > div {
  width: 310px;
}

#diagnosisCloseBtn {
  padding: 3px 10px;
}

#diagnosisCloseBtn:active::before,
#diagnosisCloseBtn:active::after {
  transform: translate(-50%, -50%) scale(0.9) rotate(45deg);
}

/* 診断モーダル内のカード */
#diagnosisModal .card {
  transform: scale(0.75, 0.75);
  margin-bottom: 0;
  display: block;
}

/* レスポンシブ対応 */
@media screen and (min-width: 1024px) {
  #diagnosisModal > div {
    width: 800px;
  }

  .diagnosis-text_explain {
    max-width: 50%;
    font-size: 13px;
  }

  #test_btn_open {
    margin: 30px auto;
  }

  #diagnosisModal .card {
    transform: scale(1);
  }

  .diagnosis-resultBox p {
    font-size: 15px;
    transform: inherit;
  }

  .diagnosis-resultContent {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
  }

  .diagnosis-resultContent .card_heart {
    top: 0px;
  }
  .diagnosis-retry-button {
    width: 40%;
  }
}
