@charset "utf-8";

/* [Init] ============================== */
html.menu-open {
  overflow-y: hidden;
}

.l-header-wrap,
.l-header-wrap *,
.l-header-wrap *::before,
.l-header-wrap *::after {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  font-feature-settings: normal;
}

.l-header-wrap img {
  vertical-align: bottom;
}

.l-header-wrap a {
  text-decoration: none;
}

.l-header-wrap a:hover,
.l-header-wrap a:active,
.l-header-wrap a:focus {
  text-decoration: underline;
}

/* [Header] ============================== */
.l-header-wrap {
  height: 60px;
  font-size: 16px;
  overflow-x: hidden;
}

.l-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,.075);
}
@media (min-width: 768px) {
  .l-header-wrap {
    height: 80px;
  }

  .l-header {
    height: 80px;
  }
}

/* [Header Logo] ============================== */
.l-header__logo {
  flex-shrink: 0;
  width: 120px;
  margin: 0 auto 0 10px;
}

.l-header__logo img {
  max-width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .l-header__logo {
    width: 160px;
    /* margin: 0 auto 0 10px; */
  }
}

/* [Header Feature] ============================== */
.l-header__feat {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  margin-right: 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.l-header__feat ._list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
}

.l-header__feat ._pickup {
  list-style: none;
  margin: 0;
  padding: 0;
}

.l-header__feat a._pickup-btn {
  position: relative;
  display: inline-block;
  max-width: 100%;
  width: 120px;
  padding: 12px;
  background-color: #364c93;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

.l-header__feat a._pickup-btn::before {
  content: '';
  position: absolute;
  left: 2px;
  right: 2px;
  top: 2px;
  bottom: 2px;
  border: 1px solid #fff;
  pointer-events: none;
  opacity: 0.5;
}

@media (min-width: 768px) {
  .l-header__feat ._list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 3px 20px;
  }
}

/* [Header Navigation] ============================== */
.l-header__nav {
  position: relative;
}

/* Navi Menu Button */
.l-header__nav ._nav__menu {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.l-header__nav ._nav__menu ._line {
  position: absolute;
  left: calc(50% - 10px);
  top: calc(50% - 1px);
  display: block;
  width: 20px;
  height: 2px;
  background-color: #364c93;
  transition: all 0.2s;
}

.l-header__nav ._nav__menu ._line:nth-of-type(1) {
  margin: -3px 0 0;
}

.l-header__nav ._nav__menu ._line:nth-of-type(2) {
  margin: 3px 0 0;
}

.l-header__nav ._nav__menu ._text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  width: 100%;
  color: #364c93;
  pointer-events: none;
}

.l-header__nav ._nav__menu ._text._default {}

.l-header__nav ._nav__menu ._text._opened {
  display: none;
}

@media (min-width: 768px) {

}

/* Navi List */
.l-header__nav ._nav__list {
  position: fixed;
  right: -400px;
  top: 60px;
  max-width: 100%;
  width: 364px;
  height: calc(100dvh - 60px);
  padding: 10px 20px 150px;
  background-color: #fff;
  border-top: 3px solid #e7edff;
  box-shadow: 0 0 20px rgba(0,0,0,.1);
  overflow-x: hidden;
  overflow-y: auto;
  transition: right 0.4s;
}

.l-header__nav ._nav__list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

.l-header__nav ._nav__list ul ul {
  margin: 0 -10px 0.5em;
  font-size: 13.5px;
}

.l-header__nav ._nav__list li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 1em 10px 0;
}

.l-header__nav ._nav__list li._half {
  width: 50%;
}

.l-header__nav ._nav__list ul a {
  display: block;
  position: relative;
  padding: 1em 1em 0.75em 0;
  border-bottom: 2px solid #364c93;
  font-weight: bold;
  color: #364c93;
  -webkit-font-feature-settings: 'palt' 1;
  font-feature-settings: 'palt' 1;

}

.l-header__nav ._nav__list ul a::after {
  content: '';
  position: absolute;
  right: 0.75em;
  bottom: 1.25em;
  width: 8px;
  height: 8px;
  border: solid #364c93;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
  opacity: 0.5;
}

.l-header__nav ._nav__list ul ul a {
  font-weight: normal;
  color: inherit;
  border-bottom: 1px solid #ccc;
}

.l-header__nav ._nav__list ul ul a::after {
  border: solid #666;
  border-width: 1px 1px 0 0;
}

.l-header__nav ._nav__list ._bnr-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: 300px;
  height: 80px;
  margin: 2em auto;
  border: 1px solid #ddd;
}

@media (min-width: 768px) {
  .l-header__nav ._nav__list {
    top: 70px;
  }
}

/* Menu Checkbox --OFF */
input#nav-menu {
  appearance: none;
  visibility: hidden;
  position: fixed;
  left: 100%;
  bottom: 100%;
  width: 0;
  height: 0;
}

/* Menu Checkbox --ON */
input#nav-menu:checked {}

input#nav-menu:checked + ._nav__menu {
  background-color: #e7edff;
}

input#nav-menu:checked + ._nav__menu ._line:nth-of-type(1) {
  margin: 0;
  transform: rotate(45deg);
}

input#nav-menu:checked + ._nav__menu ._line:nth-of-type(2) {
  margin: 0;
  transform: rotate(-45deg);
}

input#nav-menu:checked + ._nav__menu ._text._default {
  display: none;
}

input#nav-menu:checked + ._nav__menu ._text._opened {
  display: block;
}

input#nav-menu:checked ~ ._nav__list {
  right: 0;
}




