@charset "UTF-8";
/**
 * Main Stylesheet for zmp-c-001 theme
 * 
 */

@import url("base-style.css");

/*------------------------------------------
  ヘッダー
--------------------------------------------*/
.header-in {
  flex-direction: row;
  align-items: center;
  justify-content: left;
}

.header-in .ccopy {
  margin-top: 15px;
}

/*------------------------------------------
  ヘッダーハンバーガーメニュー
--------------------------------------------*/
@media screen and (min-width: 768px){
  header .hamb_menu {
    display: none;
  }
}
.hamb_menu .btn_menu {
  position: fixed;
  top: 4px;
  right: 7px;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  z-index: 311;
  background-color: navy;
}
.hamb_menu .btn_menu:hover {
  opacity: 1;
}
.hamb_menu .btn_menu span,
.hamb_menu .btn_menu span:before,
.hamb_menu .btn_menu span:after {
  content: "";
  position: absolute;
  display: block;
  top: 27px;
  height: 3px;
  width: 30px;
  border-radius: 3px;
  background-color: #fff;
  transition: all 1s ease;
}
.hamb_menu .btn_menu span:before {
  top: -11px;
  transition: all 1s ease;
}
.hamb_menu .btn_menu span:after {
  top: 11px;
  transition: all 1s ease;
}
.hamb_menu #menu_onoff {
  display: none;
}
.hamb_menu #menu_onoff:checked ~ .btn_menu span {
  background-color: rgba(255, 255, 255, 0);
}
.hamb_menu #menu_onoff:checked ~ .btn_menu span:before {
  top: 0;
  transform: rotate(45deg);
  transition: all 1s ease;
}
.hamb_menu #menu_onoff:checked ~ .btn_menu span:after {
  top: 0;
  transform: rotate(-45deg);
  transition: all 1s ease;
}
.hamb_menu .menu_contents {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 310;
  background-color: #fff;
  transition: all 0.3s;
}
.hamb_menu #menu_onoff:checked ~ .menu_contents {
  left: 0;
}
.hamb_menu #menu_onoff:checked ~ .menu_contents li {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.hamb_menu .menu_contents ul {
  padding: 120px 10px 0;
}
.hamb_menu .menu_contents li {
  list-style: none;
  opacity: 0;
  transform: translateX(200px);
  transition: transform 0.6s ease, opacity 0.2s ease;
}
.hamb_menu .menu_contents li:nth-child(2) {
  transition-delay: 0.05s !important;
}
.hamb_menu .menu_contents li:nth-child(3) {
  transition-delay: 0.1s !important;
}
.hamb_menu .menu_contents li:nth-child(4) {
  transition-delay: 0.15s !important;
}
.hamb_menu .menu_contents li:nth-child(5) {
  transition-delay: 0.2s !important;
}
.hamb_menu .menu_contents li:nth-child(6) {
  transition-delay: 0.25s !important;
}
.hamb_menu .menu_contents li:nth-child(7) {
  transition-delay: 0.3s !important;
}
.hamb_menu .menu_contents li:nth-child(8) {
  transition-delay: 0.35s !important;
}
.hamb_menu .menu_contents li a {
  position: relative;
  display: block;
  width: 100%;
  font-size: 110%;
  box-sizing: border-box;
  color: #fff;
  text-decoration: none;
  padding: 15px 0;
  text-align: center;
  transition: color 0.6s ease;
}
.hamb_menu .menu_contents li.a_dummy {
  cursor: pointer;
  font-size: 110%;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  transition: color 0.6s ease;
}

/*------------------------------------------
  ヘッダーナビゲーション
--------------------------------------------*/
#header-container .navi {
  margin-top: 1em;
}

/*------------------------------------------
  フッター ハンバーガーメニュー
--------------------------------------------*/
.menu-drawer a {
  text-align: center;
  border-bottom: 1px dotted;
  padding: 10px 0;
}

/*------------------------------------------
  フッターメニュー
--------------------------------------------*/

@media screen and (max-width: 768px){
  .navi-footer-in > .menu-footer li.menu-item {
    width: 100%;
    border-bottom: 1px dotted;
    padding: 10px 0;
  }
}

/*------------------------------------------
  フッター
--------------------------------------------*/
.footer {
  background-color: #173046;
  color: #fff;
}
.footer a {
  color: #fff;
}

/*------------------------------------------
  見出し
--------------------------------------------*/
.article h2 {
  background-color: var(--main-color);
  color: #fff;
}
.article h3 {
  border-left: 14px solid var(--main-color);
  border-right: 3px solid var(--main-color);
  border-top: 3px solid var(--main-color);
  border-bottom: 3px solid var(--main-color);
}
.article h4 {
  border-top: 2px solid var(--main-color);
  border-bottom: 2px solid var(--main-color);
}
.article h5 {
  border-bottom: 2px solid var(--main-color);
}

/*------------------------------------------
  トップページ
--------------------------------------------*/
.top_image {
  background-image: url(../img/topimg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}

/*------------------------------------------
  本文ページ
--------------------------------------------*/
.eye-catch {
  margin-left: auto;
  margin-right: auto;
}