@charset "UTF-8";
/*HEADER*/
/*******************************************************************/
#header {
  left: 0;
  position: fixed;
  top: 0px;
  z-index: 9000;
  height: auto;
  width: 100%;
  padding: 10px 0;
  background: #151515;
}
@media screen and (max-width: 768px) {
  #header {
    width: 100%;
    top: 0;
    margin: 0;
    box-shadow: none;
    justify-content: flex-start;
    height: 72px;
    background: #151515;
    z-index: 9999;
    padding-bottom: 0;
    border-bottom: none;
    padding: 0;
  }
}
#header .mw {
  margin: auto;
  padding: 0 0 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #header .mw {
    padding: 0 20px 0 0;
  }
}
#header .logo-wrapper {
  width: 200px;
  padding: 0;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  #header .logo-wrapper {
    padding: 0;
    width: 180px;
  }
}
#header .logo-wrapper a {
  line-height: 1.6;
  color: #333 !important;
  letter-spacing: 4px;
}
#header .logo-wrapper img {
  padding: 0px;
}
@media screen and (max-width: 768px) {
  #header .logo-wrapper img {
    padding: 0px 40px 0 20px;
  }
}

/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  max-width: 550px;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 50%;
  height: 100dvh; /*ナビの高さ*/
  min-height: 104vh;
  background: #c8102e;
  /*動き*/
  transition: all 0.6s;
  overflow: hidden;
  /*アクティブクラスがついたら位置を0に*/
}
@media screen and (max-width: 1000px) {
  #g-nav {
    width: 100%;
    display: block;
  }
}
#g-nav.panelactive {
  right: 0;
  /*ナビゲーションの縦スクロール*/
}
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  z-index: 999;
  width: 100%;
  height: 100dvh; /*表示する高さ*/
  min-height: 104vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 768px) {
  #g-nav.panelactive #g-nav-list {
    width: 100%;
  }
}
#g-nav ul {
  padding: 120px 20px;
}
#g-nav ul li {
  padding: 0 0 20px;
}
#g-nav ul li a {
  color: #fff;
  font-weight: 600;
  display: block;
  padding: 15px 20px;
  font-size: 2.4rem;
  position: relative;
  letter-spacing: 2px;
  border-bottom: solid 1px;
}
#g-nav ul li a:after {
  content: "〉";
  right: 10px;
  position: absolute;
  color: #fff;
}
#g-nav ul li a i {
  font-size: 1.4rem;
  opacity: 0.8;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: absolute;
  z-index: 9999;
  top: calc(50% - 25px);
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 1000px) {
  .openbtn1 {
    display: block;
    top: 6px;
  }
}
@media screen and (max-width: 768px) {
  .openbtn1 {
    display: block;
    top: 12px;
  }
}
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  width: 65%;
}
@media screen and (max-width: 1000px) {
  .openbtn1 span {
    background-color: #fff;
  }
}
.openbtn1 span:nth-of-type(1) {
  top: 15px;
}
.openbtn1 span:nth-of-type(2) {
  top: 23px;
}
.openbtn1 span:nth-of-type(3) {
  top: 31px;
}
.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
  background-color: #fff !important;
}
.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
  background-color: #fff !important;
}

/*FOOTER*/
/*******************************************************************/
/*============================
#footer
============================*/
footer#footer section {
  display: flex;
}
@media screen and (max-width: 768px) {
  footer#footer section {
    flex-wrap: wrap;
  }
}
footer#footer section div.contact {
  width: 65%;
  padding: 60px 0;
  text-align: center;
  background-color: #f5f5f5;
}
@media screen and (max-width: 768px) {
  footer#footer section div.contact {
    width: 100%;
  }
}
footer#footer section div.contact h3.font-DinMed {
  margin: 0 0 2rem;
  line-height: 1;
  letter-spacing: -0.1rem;
  font-size: 6.4rem;
}
@media screen and (max-width: 768px) {
  footer#footer section div.contact h3.font-DinMed {
    font-size: 4.8rem;
  }
}
footer#footer section div.contact div.btn_wrap a.btn {
  background: #c8102e;
  color: #fff;
  width: 240px;
  padding: 18px 20px 15px;
  display: flex;
  align-items: center;
  letter-spacing: 2px;
  font-size: 24px;
  justify-content: center;
  line-height: 1;
  position: relative;
  margin: auto;
}
footer#footer section div.contact div.btn_wrap a.btn:before {
  content: "";
  background: #fff;
  height: 1px;
  width: 40px;
  right: 0;
  position: absolute;
}
footer#footer section div.contact div.btn_wrap a.btn:after {
  content: "";
  background: #c8102e;
  height: 1px;
  width: 40px;
  right: -40px;
  position: absolute;
}
footer#footer section div.content {
  width: 35%;
  padding: 60px 0 40px 40px;
  background-color: #c8102e;
  color: #fff;
}
@media screen and (max-width: 768px) {
  footer#footer section div.content {
    width: 100%;
    padding: 60px 20px 20px 20px;
  }
}
footer#footer section div.content ul {
  font-family: din-condensed, sans-serif;
  display: flex;
}
footer#footer section div.content ul li.parent {
  padding: 0 20px 20px 0;
}
footer#footer section div.content ul li.parent ol li {
  padding: 0 20px 20px 0;
}
footer#footer section div.content ul li.parent ol li a {
  color: #fff;
  transition: all 0.2s ease-out;
  text-decoration: none;
  font-size: 24px;
  letter-spacing: 2px;
}
footer#footer section div.content div.copy {
  font-size: 1.4rem;
  font-family: din-condensed, sans-serif;
  letter-spacing: 1px;
}/*# sourceMappingURL=main.css.map */