@charset "utf-8";

/* NAVYS Header
-------------------- */

:root {--header-height: 60px;}
@media screen and (max-width: 768px) {
  :root {--header-height: calc(87*100vw/768);}
}


.header {
  align-items: center;
  background: var(--main-bg);
  display: flex;
  justify-content: space-between;
  height: var(--header-height);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.head-logo {
  color: #626262;
  font-size: 16px;
  font-weight: bold;
}

.head-logo a {
    align-items: center;
    display: flex;
    text-decoration: none!important;
}

.head-logo img {
  display: inline-block;
  height: 29px;
  margin: 0 18px 0 30px;
}

.head-trigger {
  display: block;
  height: var(--header-height);
  position: relative;
  width: 66px;
}

.head-trigger::before,
.head-trigger::after {
  background: #202020;
  content: '';
  display: block;
  height: 3px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%);
  width: 20px;
}

.head-trigger::before {
  margin: -7px auto 0;
}
.head-trigger::after {
  margin: 7px auto 0;
}

.head-trigger.-open::before {
  margin: 0;
  transform: translateX(-50%) rotate(45deg);
  width: 24px;
  
}
.head-trigger.-open::after {
  margin: 0;
  transform: translateX(-50%) rotate(-45deg);
  width: 24px;
}

@media screen and (max-width: 768px) {
  .head-logo {
    font-size: calc(20*100vw/768);
  }

  .head-logo img {
    height: calc(47*100vw/768);
    margin: 0 calc(20*100vw/768) 0 calc(30*100vw/768);
  }

  .head-trigger {
    width: calc(100*100vw/768);
  }

  .head-trigger::before,
  .head-trigger::after {
    height: calc(2*100vw/768);
    width: calc(28*100vw/768);
  }

  .head-trigger::before {
    margin: calc(-8*100vw/768) auto 0;
  }
  .head-trigger::after {
    margin: calc(8*100vw/768) auto 0;
  }

  .head-trigger.-open::before {
    width: calc(32*100vw/768);
  }
  .head-trigger.-open::after {
    width: calc(32*100vw/768);
  }
}


/* Menu
-------------------- */
.menu {
  background: #EEE;
  display: none;
  position: fixed;
  top: var(--header-height);
  width: 100%;
  z-index: 100;
}

.menu.-open {
  display: block;
}

.menu-block {
  margin: 0 auto;
  max-width: 1200px;
  padding: 70px;
}

.menu-block a {
  text-decoration: none!important;
}

.menu-list {
  color: #202020;
  display: flex;
  font-size: 15px;
  font-weight: bold;
  gap: 20px 70px;
  margin: 0 0 33px;
}

.menu-btn {
  display: flex;
  gap: 10px;
}

.menu-btn > li {
  border: 1px solid #202020;
  font-size: 12px;
  font-weight: bold;
  height: 60px;
  line-height: 60px;
  position: relative;
  text-align: center;
  width: 250px;
}

.menu-btn .-dafault {
  background: #000;
  color: #fff;
  font-size: 12px;
}

.menu-btn .-dafault img {
  display: inline-block;
  height: 20px;
  margin: 0 10px -3px 0;
}

.menu-btn .-glay {
  background: #666;
  color: var(--main-bg);
}

@media screen and (max-width: 768px) {
  .menu-block {
    max-width: 100vw;
    padding: calc(80*100vw/768) calc(100*100vw/768);
  }

  .menu-list {
    flex-wrap: wrap;
    font-size: calc(34*100vw/768);
    gap: calc(25*100vw/768);
    margin: 0 0 calc(68*100vw/768);
  }

  .menu-list > li {
    width: 100%;
  }

  .menu-btn {
    flex-wrap: wrap;
    gap: calc(30*100vw/768);
    margin: auto;
  }

  .menu-btn > li {
    border-width: calc(3*100vw/768);
    font-size: calc(28*100vw/768);
    height: calc(110*100vw/768);
    line-height: calc(110*100vw/768);
    width: calc(600*100vw/768);
  }

  .menu-btn .-dafault {
    font-size: calc(22*100vw/768);
  }
  .menu-btn .-dafault img {
    height: calc(31*100vw/768);
  }
}


.-jump_content {
  padding-top: var(--header-height);
  margin-top: calc(-1*var(--header-height));
  overflow-y: hidden;
}


/*
.header {
  border-bottom: 1px solid;
  display: flex;
  justify-content: space-between;
  height: 60px;
  position: fixed;
  width: 100%;
  z-index: 10;
}

.header_logo {
  font-size: 32px;
  font-weight: bold;
  padding: 5px 10px;
}

.header_logo a {
  color: var(--sub-text)!important;
  text-decoration: none!important;
}

@media screen and (max-width: 768px) {
  .header {
    height: calc(43*100vw/375);
  }

  .header_logo {
    font-size: calc(20*100vw/375);
    margin-right: calc(-43*100vw/375);
    padding: calc(7*100vw/375) calc(43*100vw/375) calc(7*100vw/375) calc(7*100vw/375);
    width: 100%;
  }
}
*/


.header_info {
  background: url('../img/common/header/icon_info.svg') center/30px auto no-repeat;
  border-left: 1px solid;
  display: block;
  width: 60px;
}

@media screen and (max-width: 768px) {
  .header_info {
    background-size: calc(20*100vw/375) auto;
    border-left: none;
    width: calc(43*100vw/375);
  }
}

.js-infoTrigger {
    cursor: pointer;
}

.header_info-wrap {
  display: none;
  height: 100%;
  left: 0;
  overflow-y: auto;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.header_info-mask {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 999;
}

.header_info-block {
  border: 1px solid;
  border-radius: 5px;
  padding: 40px  20px;
  position: fixed;
  right: 60px;
  top: 80px;
  width: 375px;
  z-index: 1001;
}

.header_info-head {
  font-size: 22px;
  font-weight: bold;
  margin: 0 0 35px;
}

.header_info-list {
  margin: 0 0 -20px;
  max-height: calc(100vh - 290px);
  overflow-y: auto;
}

.header_info-list > li {
  border-bottom: 1px solid;
}

.header_info-list .-link {
  display: flex;
  flex-wrap: wrap;
  font-size: var(--sub-size);
  justify-content: flex-start;
  padding: 15px 0;
}

.header_info-list .-date {
  margin: 0 25px 0 0;
}

.header_info-list .-label {
  border-radius: 3px;
  font-size: 10px;
  line-height: 1;
  padding: 5px;
}

.header_info-list .-title {
  padding: 3px 0;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .header_info-block {
    border-radius: calc(15*100vw/375);
    padding: calc(50*100vw/375) calc(20*100vw/375);
    position: absolute;
    right: 0;
    top: calc(70*100vw/375);
    width: 100%;
  }

  .header_info-head {
    font-size: calc(32*100vw/375);
    margin: 0 0 calc(35*100vw/375);
  }

  .header_info-list {
    margin: 0;
    max-height: calc(100vh - (320*100vw/375));
  }

  .header_info-list .-link {
    font-size: var(--main-size);
    padding: calc(15*100vw/375) 0;
  }

  .header_info-list .-label {
    border-radius: calc(3*100vw/375);
    font-size: calc(10*100vw/375);
    padding: calc(5*100vw/375);
  }

  .header_info-list .-title {
    padding: calc(3*100vw/375) 0;
  }
}
