@charset "UTF-8";




/* header menu */
.header_navi{
  display: flex;
  gap: 36px;
}
.header_navi li a{
  text-align: center;
  gap: 2px;
  cursor: pointer;
  display:grid;
}
.header_navi li a .en{
  color: var(--black);
text-align: center;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 20px;
letter-spacing: 1.28px;
text-transform: uppercase;
}
.header_navi li a .jp{
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

header .button_wrap{
  display: flex;
  gap: 12px;
}
/* primary button */
.header_pb{
  background: var(--green);
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  display: flex;
  padding: 9px 14px 9px 12px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 4px;
}
/* online button */
.header_ob{
  font-size: 14px;
  border: 1px solid var(--border12);
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  display: flex;
  padding: 9px 14px 9px 12px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 4px;
}
.header_wrap{
  position: relative;
  height: 64px;
}
header{
  width: 100%;
  display: flex ;
  padding: 12px 30px;
  background: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
}
/* ナビゲーションメニュー */
.menu-item {
  position: relative;
}
.menu-item:last-child {
  border-right: 1px solid #fff; /* 最後のメニューアイテムの右ボーダー */
}
.menu-item:hover .drop-menu-list {
  visibility: visible; /* 下層メニューを表示 */
}
.drop-menu {
  position: relative;
}
.drop-menu-list {
  background-color:var(--white); /* ドロップダウンメニューの背景色 */
  left: 0;
  position: absolute;
  top: 100%;
  visibility: hidden; /* 下層メニューを非表示 */
  width: max-content;
  z-index: 1;
  padding: 10px 10px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.12);
}
.drop-menu-item{
  text-align: left;
}
.drop-menu-item a{
  padding: 12px 10px;
  color: var(--black);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-align: left !important;
}
.drop-menu-item a:hover{
  background-color: var(--bg10);
}
/* humberger */
.hamburger {
  position: relative;
  width: 20px;
  height: 12px;
  cursor: pointer;
}

.hamburger__line {
  position: absolute;
  width: 100%;
  height: 1px;
  right: 0;
  background-color: #000;
  transition: all 0.5s;
}

.hamburger__line--1 {
  top: 0px;
}

.hamburger__line--2 {
  top: 5px;
}

.hamburger__line--3 {
  top: 10px;
}

/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
  transform: rotate(-30deg);
  top: 6px;
}

.open .hamburger__line--2 {
  opacity: 0;
}

.open .hamburger__line--3 {
  transform: rotate(30deg);
  top: 6px;
}

/*
sp-nav(ナビ)
=================================== */
.sp-nav {
  position: fixed;
  right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/
  top: 0;
  width: 100%; /* 出てくるスライドメニューの幅 */
  height: 100vh;
  background-color: #fff;
  transition: all 0.5s;
  z-index: 200;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  align-items: center;
  justify-content: center;
}

/*ハンバーガーがクリックされたら右からスライド*/
.open .sp-nav {
  right: 0;
}


/*
black-bg(ハンバーガーメニュー解除用bg)
=================================== */
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100;
}

/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
  opacity: 0.3;
  visibility: visible;
}

/* header */
header{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.humburger_menu li a{
  display: flex;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
  color: var(--black);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  padding: 12px 0;
}
.onlinestore_link_wrap{
  padding: 6px 0;
  border-top: 1px solid var(--border12);
  margin-top: 12px;
}
.onlinestore_link{
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  padding: 12px 0px;
}
.sp-nav .reservation_button_wrap{
  padding: 24px 10%;
  background-color: var(--greenbg);
  width: 100%;
}
.sp-nav .reservation_desc{
  color: var(--green);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.84px;
  margin-bottom: 10px;
}
.sp-nav .reservation_button{
  padding: 15px 24px;
  align-items: center;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: block;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  text-align: center;
}

/*  アコーディオン */
.humburger_accordion{
  width: 100%;
  margin-top: 56px;
  border-top: 1px solid var(--border12);
  padding: 10px 24px;
}
/* コンテンツ */
.accordion_menu{
  padding: 0 6px;
}
.accordion_menu li a{
  color: var(--black);
  font-size: 13px;
  padding: 10px 0;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.humburger_accordion .accordion_one .accordion_header {
  display: flex;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
  transition-duration: 0.2s;
  color: var(--black);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  padding: 12px 0;
}
.humburger_accordion .accordion_one .accordion_header .i_box {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  transform-origin: center center;
  transition-duration: 0.2s;
}
.humburger_accordion .accordion_one .accordion_header .i_box .one_i {
  display: block;
  width: 18px;
  height: 18px;
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}
.humburger_accordion .accordion_one .accordion_header.open .i_box {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.humburger_accordion .accordion_one .accordion_header .i_box .one_i:before, .humburger_accordion .accordion_one .accordion_header .i_box .one_i:after {
  display: flex;
  content: '';
  border-radius: 10px;
  width: 12px;
  height: 2px;
  position: absolute;
  top: 8px;
  left: 3px;
  transform-origin: center center;
  background-color:var(--black);
}
.humburger_accordion .accordion_one .accordion_header .i_box .one_i:before {
  width: 2px;
  height: 12px;
  top: 3px;
  left: 8px;
}
.humburger_accordion .accordion_one .accordion_header.open .i_box .one_i:before {
  content: none;
}

.humburger_accordion .accordion_one .accordion_inner {
  display: none;
  box-sizing: border-box;
}


/* sp */
@media only screen and (max-width: 768px) {
  header{
    width: 100%;
    display: flex !important;
    padding: 18px 24px;
    margin-bottom: 0;
  }
  .header_wrap{
    position: relative;
    height: 56px;
  }
  .header_logo img{
    height: 20px;
    width: auto;
  }
}
