@charset "UTF-8";

/* ===============================================
ヘッダーのスタイリング
=============================================== */
header {
    border-bottom: none;
}
@media print, only screen and (min-width: 769px) {
header {
    border-bottom: 1px solid #ddd;
}
}
.header_container {
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
  color: #fff;
  padding: 0 10px 0 0;
  margin-right: auto;
  margin-left: auto;
}
.head_logo_sp {
    width: 280px;
    height: 42px;
    margin: 6px 0 0 10px;
}

/* ===============================================
ハンバーガーボタンのスタイリング
=============================================== */
input#check[type="checkbox"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
.hamburger {
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #6C2782;
  z-index: 100;
  top: 1px;
  border-radius: 4px;
}
.hamburger span,
.hamburger span::before,
.hamburger span::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.5s;
  width: 30px;
}
.hamburger span::before {
  top: -10px;
}
.hamburger span::after {
  bottom: -10px;
}
input[type="checkbox"]:checked + .hamburger span {
  background-color: transparent;
}
input[type="checkbox"]:checked + .hamburger span::before {
  top: 0;
  transform: rotate(45deg);
}
input[type="checkbox"]:checked + .hamburger span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* ===============================================
メニューのスタイリング
=============================================== */
.nav_spmenu_bg {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
}
.nav_spmenu {
  position: fixed;
  width: 314px;
  height: 100vh;
  top: 0;
  right: -120%;
  background-color: #6C2782;
  color: #fff;
  padding: 50px 0;
  transition: all 0.5s;
  overflow: auto;
  z-index: 20;
}
.nav_spmenu_item a {
  display: block;
  font-size: 20px;
  text-transform: uppercase;
}
input[type="checkbox"]:checked ~ .nav_spmenu {
  right: 0;
}
input[type="checkbox"]:checked ~ .nav_spmenu_bg {
  background-color: rgba(51, 51, 51, 0.5);
  width: 100%;
  height: 100%;
  z-index: 19;
}
.nav_spmenu_list {
  padding: 7px 20px 80px 24px;
}
.nav_spmenu_list p {
  margin: 0 0 0 0;
}
.nav_spmenu_list li {
  font-size: 18px;
  padding: 12px 0;
  border-top: 1px solid #CD7CF7;
  line-height: 2em;
}
.nav_spmenu_list a {
  color: #FFF;
  text-decoration: none;
}
img.nav_ico {
  width: 50px;
  margin: 4px 10px 4px 0;
  float: left;
  height: 26px;
}
.nav_spmenu_list li.submenu {
  font-size: 14px;
  padding: 10px 0 10px 0;
  border-top: 1px solid #CD7CF7;
  height: 2em;
  margin-left: 60px;
}
.nav_spmenu_list li.submenu a:before {
  content: "▶ ";
}


