@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ",
    sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: left;
}
section h2 {
  font-size: 4.2rem;
}
section h3 {
  font-size: 4.2rem;
  line-height: 4.8rem;
}
section h4 {
  font-size: 2.4rem;
}
section h5 {
  font-size: 1.8rem;
}

a:hover {
  opacity: 0.5;
}
.none {
  display: none;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
/* header */
#header {
  z-index: 9999;
  position: fixed;
  top: 0px;
  left: 0px;
}
/* Global Menu */

header {
  margin-bottom: 13em;
  width: 100%;
  background-color: #fff;
}

/* PC用ヘッダー */
@media (min-width: 960px) {
  .global-nav {
    display: none;
  }
  .sp-logo {
    display: none;
  }
  .header-content-wrapper {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }
  .header-content-wrapper h1 {
    width: 5%;
    padding: 5px;
  }
  .header-content-wrapper h1 img {
    width: 100%;
  }
  .header-voice {
    position: relative;
  }
  .header-content-wrapper ul > li {
    display: inline-block;
  }
  .header-content-wrapper ul > li > a {
    padding: 15px 20px;
    display: block;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-decoration: none;
    color: #333;
  }
  .header-content-wrapper ul > li > span {
    margin-left: 1.2em;
  }
  .header-content-wrapper ul > li:hover > a {
    background-color: #efefef;
    color: #444;
  }
  /* Submenu */

  .header-content-wrapper ul li ul {
    position: absolute;
    top: 55px;
    left: 0px;
    width: 200%;
  }
  .header-content-wrapper ul li ul li {
    display: block;
  }
  .header-content-wrapper ul li ul li a {
    background-color: #efefef;
    color: #444;
  }
  .header-content-wrapper ul li ul li a:hover {
    background-color: #ddd;
    opacity: 1;
  }
  .header ul li ul {
    display: none;
  }
  .header ul li:hover ul {
    display: block;
  }
  .twitter {
    width: 4.5%;
  }
  .twitter img {
    width: 100%;
  }
  .header-button-wrapper {
    display: flex;
  }
  .header-button-wrapper a {
    display: block;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 600;
  }
  .header-button-wrapper a:hover {
    opacity: 1;
  }
}
.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
/* レンタルボタン小 */
.btn-rental-small {
  overflow: hidden;
  padding: 14px 30px;
  color: #fff;
  border-radius: 0;
  background: #000;
  margin-left: 25px;
}
a.btn-rental-small span {
  position: relative;
}
a.btn-rental-small::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateX(-96%);
  transform: translateX(-96%);
  background: #f55731;
}
a.btn-rental-small:hover::before {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
/* お問い合わせボタン */
.btn-contact-small {
  overflow: hidden;
  padding: 14px 30px;
  color: #fff;
  border-radius: 0;
  background: #000;
  margin-left: 20px;
}
a.btn-contact-small span {
  position: relative;
}
a.btn-contact-small::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateX(-96%);
  transform: translateX(-96%);
  background: #1b63c7;
}
a.btn-contact-small:hover::before {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

/* スマホ用ヘッダー */
@media (max-width: 960px) {
  .header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
  }
  .global-nav {
    position: fixed;
    right: -960px; /* これで隠れる */
    top: 0;
    width: 70%; /* スマホに収まるくらい */
    height: 100vh;
    padding-top: 60px;
    background-color: #fff;
    transition: all 0.6s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  .sp-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 75px;
    padding: 12px 20px 0;
  }
  .sp-logo img {
    width: 100%;
  }
  .hamburger {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px; /* クリックしやすいようにちゃんと幅を指定する */
    height: 60px; /* クリックしやすいようにちゃんと高さを指定する */
    cursor: pointer;
    z-index: 300;
  }
  .global-nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .global-nav__list li {
    text-align: center;
    padding: 15px 0;
    margin: 0 20px;
    border-bottom: solid 1px #333;
  }
  .global-nav__list a {
    text-decoration: none;
    color: #333;
  }

  .global-nav__item {
    text-align: center;
    padding: 0 14px;
  }
  .global-nav__item a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #111;
  }
  .global-nav__item a:hover {
    background-color: #eee;
  }
  .hamburger__line {
    position: absolute;
    left: 11px;
    width: 26px;
    height: 3px;
    background-color: #111;
    transition: all 0.6s;
  }
  .hamburger__line--1 {
    top: 20px;
  }
  .hamburger__line--2 {
    top: 28px;
  }
  .hamburger__line--3 {
    top: 36px;
  }
  .black-bg {
    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;
  }
  /* 表示された時用のCSS */
  .nav-open .global-nav {
    right: 0;
  }
  .nav-open .black-bg {
    opacity: 0.8;
    visibility: visible;
  }
  .nav-open .hamburger__line--1 {
    transform: rotate(45deg);
    top: 20px;
  }
  .nav-open .hamburger__line--2 {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger__line--3 {
    transform: rotate(-45deg);
    top: 20px;
  }
  /* PCヘッダー 表示させない */
  .header-content-wrapper {
    display: none;
  }
  /* 戻るボタン */
  .btn {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 1rem 4rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #212529;
    border-radius: 0.5rem;
  }
}
/* ここまでスマホ */

/* セクションページのトップ */
.section-title-top {
  margin-top: 50px;
  background-color: #0a244d;
  color: #fff;
  width: 100vw;
  height: 230px;
  padding: 90px 140px 0;
  position: relative;
}
.section-title-top .section-title-top_link {
  font-size: 1.4rem;
  text-align: left;
  position: absolute;
  top: 30px;
}
.section-title-top_link a {
  color: #fff;
  text-decoration: underline;
}
.section-title-top h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 3.2rem;
  line-height: 4.2rem;
  font-weight: 600;
  text-align: center;
}
.section-title-top p {
  font-size: 2.4rem;
  text-align: center;
  padding-top: 10px;
}
.section-title-deco {
  padding-top: 30px;
  width: 300px;
  border-bottom: 3px solid #fff;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .section-title-top {
    margin-top: 0;
    padding: 90px 24px 90px;
  }
}

/* フッター */
.section-footer {
  width: 100vw;
  padding: 30px 0 30px;
  background-color: #fff;
  bottom: 0px;
}
.section-footer-wrapper {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.section-footer-wrapper nav {
  text-align: left;
}
.section-footer-wrapper a {
  text-decoration: none;
  color: #333;
}
.section-footer_logo {
  width: 240px;
  margin: 0 auto;
  padding-top: 20px;
}
.section-footer_logo img {
  width: 100%;
}
.section-footer_tel_wrapper {
  margin-top: 10px;
}
.section-footer_tel_number {
  padding-top: 10px;
}
.section-footer small {
  display: block;
  text-align: center;
  font-size: 1.4rem;
  margin-top: 20px;
}
@media (max-width: 960px) {
  .section-footer {
    padding: 30px 24px;
  }
}
