/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Roboto:ital,wght@0,700;1,700&display=swap');
body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  background-color: #1a1a1a;
  color: #fff;
  overflow-x: hidden;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
img {
  max-width: 100%;
}
/*---*/
.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity .5s;
}
.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.menu-trigger {
  display: inline-block;
  width: 36px;
  height: 28px;
  vertical-align: middle;
  cursor: pointer;
  position: absolute;
  top: 25px;
  right: 30px;
  z-index: 100;
  transform: translateX(0);
  transition: transform .5s;
}
.menu-trigger.active {
  position: fixed;
  transform: translateX(-250px);
}
.menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
}
.menu-trigger.active span {
  background-color: #bbb;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(12px) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2) {
  top: 12px;
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-12px) rotate(45deg);
}
nav {
  width: 250px;
  height: 100%;
  background-color: #333;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  transform: translate(250px);
  transition: all .5s;
}
nav.open {
  transform: translateZ(0);
}
nav li {
  color: #fff;
  padding: 10px 5px;
  border-bottom: solid 1px #fff;
  list-style: none;
}
nav li a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  color: #fff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}
nav li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}
/*---*/
.menu-btn {
  position: absolute;
  top: 15px;
  right: 16px;
  display: flex;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #fff;
}
.menu-btn span, .menu-btn span:before, .menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #fff;
  position: absolute;
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}
/*#menu-btn-check:checked ~ .menu-btn,*/ #menu-btn-check:checked ~ .menu-content {
  position: fixed;
}
#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);
  position: fixed;
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
#menu-btn-check {
  display: none;
}
.menu-content {
  width: 40%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 80;
  background-color: #333;
  transition: all 0.5s;
}
.menu-content ul {
  width: 95%;
  height: auto;
  margin: 0 5px;
  position: fixed;
  top: 70px;
  overscroll-behavior: none;
  overflow: hidden;
}
.menu-content ul li {
  border-bottom: solid 1px #fff;
  list-style: none;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #fff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}
.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}
#menu-btn-check:checked ~ .menu-content {
  left: 60%;
}
/*-----SP-----*/
@media screen and (max-width: 520px) {
  .menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    background-color: #333;
    transition: all 0.5s;
    overscroll-behavior: none;
  }
  #menu-btn-check:checked ~ .menu-content {
    top: 0;
    left: 0;
  }
}
h1.logo {
  width: 167px;
  height: 71px;
  display: inline-block;
  margin: 0;
  padding: 0;
}
/*-----PC-----*/
@media screen and (min-width: 961px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  .wrapper {
    width: 1000px;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
  }
  #header {
    width: 100%;
    height: auto;
    margin: 16px;
    display: block;
  }
  #header .header_text {
    display: inline-block;
    margin-left: 10px;
    position: relative;
    top: -10px;
  }
  #header .g_nav {
    display: inline-block;
    position: absolute;
    right: 80px;
  }
  #header .g_nav li {
    height: 50px;
    line-height: 50px;
    float: left;
    margin-right: 10px;
  }
  #header .g_nav li img {
    vertical-align: middle;
  }
  #main {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }
  #footer {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 30px 0;
    background: url("../img/index/bkg_mv.png") top no-repeat;
    background-size: cover;
    color: #fff;
  }
  #footer .footer_list {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
    padding: 0;
  }
  #footer .footer_list li {
    margin: 10px auto;
    padding: 0;
  }
  #footer .footer_list li .footer_tel {
    font-size: 3rem;
    font-family: 'Roboto', sans-serif;
    text-align: center;
  }
  #footer .footer_list li .footer_text {
    text-align: center;
  }
  #footer .copyright {
    font-size: 0.9rem;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    margin: 20px auto;
  }
  h2.title {
    margin: 20px 0;
    font-family: 'Roboto', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    font-style: oblique;
    text-align: center;
  }
  h2.title span {
    display: block;
    font-size: 2rem;
    font-style: italic;
  }
}
/*-----Tablet-----*/
@media screen and (min-width: 521px) and (max-width: 960px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .wrapper {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
  }
  #header {
    width: 100%;
    height: auto;
    margin: 16px;
    display: block;
  }
  #header .header_text {
    display: inline-block;
    margin-left: 10px;
    position: relative;
    top: -10px;
  }
  #header .g_nav {
    display: inline-block;
    position: absolute;
    right: 80px;
  }
  #header .g_nav li {
    height: 50px;
    line-height: 50px;
    float: left;
    margin-right: 10px;
  }
  #header .g_nav li img {
    vertical-align: middle;
  }
  #main {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }
  #footer {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 30px 0;
    background: url("../img/index/bkg_mv.png") top no-repeat;
    background-size: cover;
    color: #fff;
  }
  #footer .footer_list {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
    padding: 0;
  }
  #footer .footer_list li {
    margin: 10px auto;
    padding: 0;
  }
  #footer .footer_list li .footer_tel {
    font-size: 3rem;
    font-family: 'Roboto', sans-serif;
    text-align: center;
  }
  #footer .footer_list li .footer_text {
    text-align: center;
  }
  #footer .copyright {
    font-size: 0.9rem;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    margin: 20px auto;
  }
  h2.title {
    margin: 20px 0;
    font-family: 'Roboto', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    font-style: oblique;
    text-align: center;
  }
  h2.title span {
    display: block;
    font-size: 2rem;
    font-style: italic;
  }
}
/*-----SP-----*/
@media screen and (max-width: 520px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .wrapper {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
  }
  #header {
    max-width: 100%;
    height: auto;
    margin: 16px;
    display: block;
  }
  #header .logo img {
    max-width: 70%;
  }
  #header .header_text {
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
    top: -10px;
    font-size: 13px;
  }
  #header .g_nav {
    position: absolute;
    top: 13px;
    right: 0;
  }
  #header .g_nav li {
    max-width: 60%;
    height: 50px;
    line-height: 50px;
    float: left;
    margin-right: 5px;
  }
  #header .g_nav li:nth-child(1), #header .g_nav li:nth-child(3) {
    display: none;
  }
  #header .g_nav li img {
    vertical-align: middle;
    max-width: 100%;
  }
  #main {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }
  #footer {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 30px 0;
    background: url("../img/index/bkg_mv.png") top no-repeat;
    background-size: cover;
    color: #fff;
  }
  #footer .footer_list {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
  }
  #footer .footer_list li {
    margin: 10px auto;
    padding: 0;
  }
  #footer .footer_list li .footer_tel {
    font-size: 2rem;
    font-family: 'Roboto', sans-serif;
    text-align: center;
  }
  #footer .footer_list li .footer_text {
    text-align: center;
  }
  #footer .copyright {
    font-size: 0.9rem;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    margin: 20px auto;
  }
  h2.title {
    margin: 20px 0;
    font-family: 'Roboto', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    font-style: oblique;
    text-align: center;
  }
  h2.title span {
    display: block;
    font-size: 2rem;
    font-style: italic;
  }
}