@charset "UTF-8";

/* =======================================
【HEADER】
========================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header01 {
  padding: 3px 0;
}

.header02 {
  padding: 18px 0 20px;
  background: rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(3.5px);
}

.header02 .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header02 .logo {
  width: 170px;
  display: block;
}

.h_btn01 {
  background: url(../img/tel.svg) no-repeat center left/0.8em;
  padding-left: 1em;
}

.h_btn01 a {
  color: #000F2D;
}

.h_btn01.mincho {
  background: url(../img/con.svg) no-repeat center left/1em;
  padding-left: 1.2em;
}

/* ---------------------------------------------------------------------------
  ★ハンバーガーメニュー
--------------------------------------------------------------------------- */
.hamburger {
  position: relative;
  z-index: 9999999;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border: 1px solid #000F2D;
  border-radius: 50em;
}

.hamburger__line {
  position: absolute;
  left: 13px;
  width: 16px;
  height: 1px;
  background-color: #000F2D;
  transition: all 0.6s;
  border-radius: 50em;
}

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

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

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

/* ---------------------------------------------------------------------------
  ★グローバルナビ
--------------------------------------------------------------------------- */
.global-nav {
  position: fixed;
  right: -50%;
  /* 初期状態で隠れる */
  top: 0;
  height: 100vh;
  width: 50%;
  color: #fefefe;
  background: #EEF1F6;
  overflow-y: auto;
  transition: all 0.6s;
  z-index: 999999;
}

.global-nav .nav-container {
  width: 90%;
  margin: 0 auto 60px;
  padding: 0 6%;
}

.global-nav .nav-container .nav-title {
  padding: 0.8em 0.8em 0.8em 5em;
  color: #313136;
  font-weight: bold;
  cursor: pointer;
  display: block;
}

.global-nav .nav-container .nav-title02 {
  padding: 0.4em 0.8em 0.4em 5.5em;
  color: #313136;
  font-weight: bold;
  cursor: pointer;
  display: block;
}

.nav-deco {
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 29em;
}

.global-nav .logo {
  display: block;
  width: 17em;
  margin: 80px auto 40px;
  text-align: center;
}

.global-nav .logo img {
  width: 100%;
}

.global-nav_btn>div {
  width: 70%;
  margin: 0 auto 20px;
}

.global-nav_btn .contact_bar_tel {
  background-color: #2C4A7B;
}

.global-nav_btn .contact_bar_sub {
  color: #313136;
}

/* ---------------------------------------------------------------------------
  ★オーバーレイ
--------------------------------------------------------------------------- */
.black-bg01 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
  cursor: pointer;
}

/* ---------------------------------------------------------------------------
  ★閉じるボタン（ナビ内）
--------------------------------------------------------------------------- */
.nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid #000F2D;
  border-radius: 50em;
  cursor: pointer;
  font-size: 16px;
  color: #000F2D;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------------------------------------------------------------------------
  ★メニューオープン時の状態
--------------------------------------------------------------------------- */
.nav-open .global-nav {
  right: 0;
}

.nav-open .black-bg01 {
  opacity: 0.8;
  visibility: visible;
}

/*# sourceMappingURL=header.css.map */
/* ==================================================
1000px周りの調整
================================================== */

@media screen and (min-width: 900px) and (max-width: 1400px) {
  .global-nav .nav-container .nav-title {
    padding: 0.8em 0.8em 0.8em 0em;
  }

  .global-nav .nav-container .nav-title02 {
    padding: 0.4em 0.8em 0.4em 0.5em;
  }

  .global-nav .nav-container {
    margin: 0 auto 10px;
  }

  .global-nav_btn .contact_bar_sub {
    white-space: nowrap;
  }
}
