@charset "UTF-8";
:root {  
  --themevintage: #324e5a;
  --themeocean: #0c5f81;
  --thememix: #8cbbb8;
  --themeskyblue: #cbe8ec;
  --themecream: #f6e3a2;
  --themewhite: #f4f5f5;
  --themeblack: #1a1a1a;
}

/*第一弾アップ
.header_bot_about{
  opacity: .3;
}

.header_parent_under {
  height: 50px;
  color: var(--white);
  line-height: 50px;
  border-bottom: 1px solid var(--themelightnavy);
  cursor: pointer;
  transition: .3s;
  padding-left: 10px;
  font-family: "Kiwi Maru", sans-serif;
  font-weight: 500;
  position: relative;
  margin: 15px 0 0 0;
  font-size: 14px;
  opacity: .4;
}

.header_parent_under::before{
    content: "";
    height: 1.5px;
    background: var(--themelightnavy);
    width: 100%;
    position: absolute;
    bottom: 3px;
    left: 0;
}*/


header{
	height: 60px;
	position: fixed;
	width: 100%;
  top: 0;
  left: 0;
  z-index: 3000;
  font-weight: 400;
  font-style: normal;
}
header a {
    text-decoration: none;
}


#fixed-header { 
  width: 100%;
  height: 60px;
}


.iks_logo_left{
	height: 40px;
  position: absolute;
  top: 16px;
  left: 20px;
  display: inline-block;
  z-index: 700;
}
.iks_logo_left::after{
    content: "";
    position: absolute;
    display: block;
    background: #fff;
    filter: blur(10px);
    width: 70%;
    height: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.iks_logo_left img,.iks_logo_right img{
  width: auto;
  height: 100%;
  display: block;
}

.iks_logo_right{
  display: inline-block;
    width: auto;
    height: 40px;
    position: absolute;
    top: 17px;
    left: 55px;
    z-index: 2999;
}

/* .iks_logo_right は <header> の外に置かれていて z-index も header より下（2999 < 3000）。
   header は背景が透明なのでロゴは見えるが、header の当たり判定が上に乗るため
   リンクを押せない。z-index と配置はそのままに、ヘッダーの何も無い部分だけ
   クリックを下へ通す。ヘッダー内の操作要素は個別に auto へ戻しているので、
   ヘッダーにボタンやリンクを足したときはここにも追加すること。
   PC 版（1024px 以上）は .iks_logo_right が非表示なので対象外。 */
@media screen and (max-width:1023px){
  header,
  #fixed-header,
  #fixed-header > .header{
    pointer-events: none;
  }

  .iks_logo_left,
  .iks_logo_right,
  .hamburger-fade,
  .toENpage,
  #header_ham{
    pointer-events: auto;
  }
}







#header_bot{
	height: 80px;
	width: 100%;
	z-index: 990;
	background: #e6f1f4ff;
	position: fixed;
	bottom: 0;
  left: 0;
	display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  border-top: solid 1.5px var(--themeocean);
}



#header_bot_list{
list-style: none;
display: flex;
justify-content: center;
width:100%;
height: 100%;
padding-bottom: 5px;
}

.header_bot_about{
  width:calc(100%/5);
  display: flex; 
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  row-gap: 4px;
  text-decoration: none;
}

.header_bot_about>img{
  height: 22px;
}
.header_bot_about>p{
  color: var(--themeocean);
  font-size: 9.5px;
  white-space: nowrap;
  font-family:  "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-style: normal;
}




/* ▼ ドロップダウン部分 */
.header_bot_dropdown {
  position: relative;
}

.dropdown_toggle {
  cursor: pointer;
  margin: 0 auto;
  width: calc(100% / 5); /* ← これを追加 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  row-gap: 4px; /* 他と合わせる */
  text-decoration: none;
}

.dropdown_menu {
  position: absolute;
  bottom: 50px; /* ボタンの上に出す */
  left: 50%;
  transform: translateX(-50%);
  background: var(--themewhite);
  border: 1px solid var(--themeocean);
  display: none;
  flex-direction: column;
  min-width: 120px;
  z-index: 1001;
}

.dropdown_menu a {
  padding: 8px 12px;
  text-decoration: none;
  color: var(--themeocean);
  text-align: center;
}


/* 表示時 */
.header_bot_dropdown.active .dropdown_menu {
  display: flex;
}







/*ハンバーガーの仕組み*/
#header_ham {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #e6f1f4ff;
  transform: translateX(100%);
  opacity: 0;
  z-index: 999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

#header_ham {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), visibility 0.8s;
}

#header_ham.panelactive {
  visibility: visible;
  opacity: 1;
}


/* 表示状態 */
#header_ham.panelactive {
  transform: translateX(0);
  opacity: 1;
}
.header_ham_content {
  width: 100%;
  padding: 80px 0 60px;
  position: relative;
}

.iks_logo_left_ham{
  height: 42px;
  position: absolute;
  top: 16px;
  left: 15px;
  display: inline-block;
  z-index: 3000;
}

.iks_logo_left_ham img{
  width: auto;
  height: 100%;
  display: block;
}


/*ハンバーガーメニュー*/
/*========= ナビゲーションのためのCSS ===============*/

.header_parent {
  color: var(--themevintage);
  position: relative;
  height: 30px;
  line-height: 50px;
  cursor: pointer;
  transition: .3s;
  font-family: "Kiwi Maru", sans-serif;
  font-weight: 500;
  font-size: 16px;
  margin: 0 10%;
  opacity: 0;
  transform: translateY(30px);
}

/* スライドイン */
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header_parent.open {
  color: var(--themeocean);
}

.header_parent:after {
  content: "";
  position: absolute;
  right: 3%;
  top: 70%;
  width: 8px;
  height: 8px;
  border-top: solid 2px var(--themevintage);
  border-right: solid 2px var(--themevintage);
  transform: rotate(135deg);
  transition: all 0.6s ease;
}


/* ▼ 赤線（クリックで左から伸びる） */
.header_parent::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 1px;
  width: 100%;
  background: var(--themeocean);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--before-transition, transform 0.6s ease);
}

/* open時に左から右へ */
.header_parent.open::before {
  transform: scaleX(1);
}

/* ▼ open時の矢印 */
.header_parent.open:after {
  transform: rotate(-45deg);
  top: 80%;
  border-top: solid 2px var(--themeocean);
  border-right: solid 2px var(--themeocean);
}



.header_child {
  padding: 10px 10%;
  overflow: hidden;
  height: 0;
  transition: height 0.6s ease;
  pointer-events: none;
}

.header_child.open {
  pointer-events: auto;
  height: auto;
}





.header_childtheme {
  height: 38px;

}
.header_child a {
    color: var(--themevintage);
    display: block;
    margin: 9px 0;
    font-size: 13px;
    padding: 3px;
    font-weight: 500;
    font-family:  "Zen Kaku Gothic New", sans-serif;
    font-style: normal;
    text-decoration: none;
       border-bottom: .5px solid var(--themevintage);
}



.hamburger-fade {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger-fade__wrapper {
  position: relative;
  margin: -35px -10px 0px auto;
  width: 45px; /* 円の大きさ */
  height: 45px;
  background-color: var(--themeocean); /* 円の色 */
  border-radius: 50%; /* 円にする */
  display: flex; /* 中央揃え */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  scale: 0.8;
  z-index: 0;
    box-shadow: 0 0 10px 2px var(--themewhite);
}





.hamburger-fade__line {
  position: absolute;
  left: 9px;
  height: 1.7px;
  background-color: var(--themewhite);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-fade__line:nth-child(1) { top: 13px; width: 50%; }
.hamburger-fade__line:nth-child(2) { top: 21px; width: 60%; }
.hamburger-fade__line:nth-child(3) { top: 29px; width: 35%; }

.hamburger-fade.active .hamburger-fade__line {
  background-color: var(--themewhite);
}

.hamburger-fade.active .hamburger-fade__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  width: 60%;
}

.hamburger-fade.active .hamburger-fade__line:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.hamburger-fade.active .hamburger-fade__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 60%;
}




/*アクティブクラスがついたら位置を0に*/
#header_ham.panelactive{
    left: 0;
}

#header_ham-list{
    margin: 0 auto;
}
/*ナビゲーション*/
#header_ham li{
    list-style: none; 
}

#header_ham li a{
   position: relative;
   color: #eae9dc;
   text-decoration: none;
   display: inline-block;
   text-transform: uppercase;
   letter-spacing: 0.1em;
   font-weight: bold;
   text-align: left;
   font-size: 12px;

}


#header_ham li a::after {
  position: absolute;
  bottom: 3px;
  left: 0;
  content: '';
  width: 100%;
  height: 0.5px;
  background: #eae9dc;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
#header_ham li a:hover::after {
  transform: scale(1, 1);
}










/* モーダルと背景の指定 */
.modal_2{
  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_2:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: -0.2em;
}

/* クラスが追加された時の指定 */
.modal_2.is-active{
  opacity: 1;
  visibility: visible;
}

#overlay_2{
  background: var(--themevintage);
  opacity: .8;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
}

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


}

.modal_scroll_2 {
  overflow: auto; /* スクロール可能に */
  /* --- スクロールバー非表示設定 --- */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* 旧 Edge / IE 対応 */
}
.modal_scroll_2 ::-webkit-scrollbar {
  display: none; /* Chrome / Safari / Edge (Chromium) */
}





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

.modal_scroll_2{
    max-height: 650px;
    overflow-y: scroll;

}


.modal-window_2 .reco_genre_content {
  transform: scale(0.95);
}
.modal-window_2 .reco_day_wrapper {
  margin-bottom: 35px;
}



/*========= ボタンのためのCSS ===============
.header_openbtn div{
  position: relative;
  cursor: pointer;
  height:24px;
  width: 100%;
}*/
   
/*×に変化
.header_openbtn div span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 1.5px;
    background-color: #eae9dc;
    width: 26px;
  }

.header_openbtn div span:nth-of-type(1) {
   top:20%;   
}

.header_openbtn div span:nth-of-type(2) {
   top:50%;
}

.header_openbtn div span:nth-of-type(3) {
   top:80%;
}

.header_openbtn.active div span:nth-of-type(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 30%;
}
.header_openbtn.active div span:nth-of-type(2) {opacity: 0;}

.header_openbtn.active div span:nth-of-type(3){
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
    width: 30%;
}*/ 

/*ハンバーガーメニュー fin*/

.toENpage {
    position: relative;
    margin: -35px -10px 0px auto;
    width: 35px;
    height: 35px;
    top: 42px;
    right: 65px;
    color: var(--themewhite);
    text-shadow: var(--thememix) 0.5px 0.5px 0px;
    background-color: var(--thememix);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    padding-top: 4.5px;
    align-items: center;
    cursor: pointer;
    scale: 0.8;
    z-index: 0;
    box-shadow: 0 0 10px 2px var(--themewhite);
    text-shadow: var(--thememix) 0.5px 0.5px 0px;
    z-index: 1001;
}

/*一応残しとく*/
.header_menu_btn {
 display: none;
 flex-direction: row;
 gap: 15px;
 margin: 0px auto 20px auto;
 justify-content: center;
 align-items: center;
}

.mypage_btn,.english_btn {
        width: fit-content;
        padding: 10px 28px;
        font-size: 12px;
        line-height: 33px;
        background-color: var(--themeocean);
        color: var(--themewhite);
        text-align: center;
        cursor: pointer;
        transition: .3s;
        position: relative;
}
.mypage_btn{
        padding: 10px 22px 10px 40px;
      }


.english_btn{
  background-color: var(--thememix) !important;
}
.mypage_btn::before{
        position: absolute;
        content: "";
        background-image: url(../img/icon/header_mypage_icon.svg);
        width: 16px;
        aspect-ratio: 1 / 1;
        top: 50%;
        left: 16px;
        transform: translateY(-50%);
}

.english_btn:hover,.mypage_btn:hover {
  opacity: .7;
}




.pcheader{
  display: none;
}


.display_none{display: none!important;}

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








/*PC版*/
@media screen and (min-width:1024px){


header{height: 65px;}
#header_bot,.iks_logo_left,.iks_logo_right{
  display: none;
}


#fixed-header { 
  height: 65px;
}


.hamburger-fade,.toENpage {
  display: none;
}



.pcheader {
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: center;
  background-color: #e6f1f4ff;
  position: relative;
  font-family: "Kiwi Maru", sans-serif;
  font-weight: 500;
  width: 100%;
  top: 0;
  z-index: 3000;
}

.iks_logo_pc{
  height: 40px;
  margin-left: 20px;
  transition: all .3s;

}
.iks_logo_pc img{
  width: auto;
  height: 100%;
  display: block;
}

.iks_logo_pc:hover{
  opacity: .6;
}


.header_nav{
  display: flex;
  align-items: center;
  margin-right: 20px;
  height: 100%;
}


.headercontent {
  font-size: 14px;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.headercontent p {
  font-size: 14px;
  color: var(--themevintage);
  white-space: nowrap;
  margin-bottom: 0 !important;
}
.headercontent p:hover{
  opacity: 0.6;
}
/*第一弾アップ*/
.headercontent_under {
  font-size: 14px;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;

}
.headercontent_under p {
  font-size: 14px;
  color: var(--themevintage);
   opacity: .7;
}



.dropdown__lists {
    display: none;/*デフォルトでは非表示の状態にしておく*/
    width: 100%;
    position: absolute;
    top: 65px;
    left: 0;
    padding-left: 0;
    font-weight: 400;
}
.others_lists {
  display: none;/*デフォルトでは非表示の状態にしておく*/
    position: absolute;
    top: 65px;
    right: 0;
}
.headercontent:hover {
  background-color: var(--themeocean);
}
.headercontent:hover p{
  color: white;
}
.headercontent:hover .dropdown__lists {
    display: block;/*Gナビメニューにホバーしたら表示*/
}
.headercontent:hover .others_lists {
    display: block;/*Gナビメニューにホバーしたら表示*/
}




.dropdown__list {
    background-color: var(--themeocean);
    list-style: none;
    height: 50px;
    transition: all .3s;
    position: relative;
    width: 300px;
    padding-left: 0;
}


.dropdown__list:hover{
  background-color: #08425a;

}

.dropdown__list a {
    display: flex;
    align-items: center;
    color: var(--themewhite);
    text-decoration: none;
    position: relative;
    height: 100%;
    width: 100%;
    padding-left: 20px;
}

.dropdown__list div{
    display: inline-block;
    width: 20px;
    height: 0.5px;
    position: absolute;
    top: 50%;
    right: 10px;
    transition: all .3s;
    background-color: var(--white);
}
.dropdown__list div::after{
  content: "";
  position: absolute;
  height: 0.5px;
  width: 7px;
  transform:rotate(45deg);
  right: 0px;
  top: -2.5px;
  background-color: var(--white);
}



.mypage_btn,.english_btn {
        width: fit-content;
        padding: 0 28px;
        font-size: 12px;
        line-height: 33px;
        background-color: var(--themeocean);
        color: var(--themewhite);
        text-align: center;
        cursor: pointer;
        transition: .3s;
        margin-left: 15px;
        position: relative;
}
.mypage_btn{
        padding: 0 14px 0 36px;
      }


.english_btn{
  background-color: var(--thememix) !important;
  margin-left: 25px !important;
}
.mypage_btn::before{
         position: absolute;
        content: "";
        background-image: url(../img/icon/header_mypage_icon.svg);
        width: 15px;
        aspect-ratio: 1 / 1;
        top: 50%;
        left: 10px;
        transform: translateY(-50%);
}

.english_btn:hover,.mypage_btn:hover {
  opacity: .7;
}
.display_none{display: none!important;}

}
