@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;700;&display=swap");
:root {
  --db: #16284c;
  --db-2: #152139;
  --db-border: #36486c;
  --gray: #f3f3f3;
  --gray-text: #515151;
  --white: #fff;
  --black: #000;
  --green: #80c269;
  --green2: #598558;
  --transition: 0.4s;
}

.pc-tb-sp {
  display: none !important;
}
@media screen and (max-width: 1200px) {
  .pc-tb-sp {
    display: block !important;
  }
}
@media screen and (max-width: 1200px) and (max-width: 900px) {
  .pc-tb-sp {
    display: none !important;
  }
}

.pc {
  display: block !important;
}
@media screen and (max-width: 1200px) {
  .pc {
    display: none !important;
  }
}

.pc-tab {
  display: block !important;
}
@media screen and (max-width: 768px) {
  .pc-tab {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 1200px) {
  .sp {
    display: block !important;
  }
}

.sp-only {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: block !important;
  }
}

.pc-f {
  display: flex !important;
}
@media screen and (max-width: 1200px) {
  .pc-f {
    display: none !important;
  }
}

.sp-f {
  display: none !important;
}
@media screen and (max-width: 1200px) {
  .sp-f {
    display: flex !important;
  }
}

.wrapper {
  max-width: 1350px;
  padding: 0 25px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .wrapper {
    width: 100%;
    padding: 0 5%;
  }
}

img {
  max-width: 100%;
}

html body {
  position: relative;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
html body.js-noscroll {
  overflow: hidden;
}
html body header {
  position: fixed;
  top: 0;
  right: 0;
  width: 170px;
  height: 100vh;
  z-index: 999;
  background: var(--white);
}
@media screen and (max-width: 1200px) {
  html body header {
    left: 0;
    right: auto;
    width: 100%;
    height: 120px;
    background: inherit;
  }
}
html body header .inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 1200px) {
  html body header .inner {
    flex-direction: row;
    align-items: flex-start;
    padding: 20px 25px 0 20px;
    position: relative;
  }
}
html body header .inner .top {
  z-index: 30;
  margin-top: 37px;
}
@media screen and (max-width: 1200px) {
  html body header .inner .top {
    margin-top: 0;
    width: 70px;
  }
}
html body header .inner .top a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
html body header .inner .top a img {
  margin-bottom: 13px;
}
@media screen and (max-width: 1200px) {
  html body header .inner .top a img {
    margin-bottom: 7px;
  }
}
html body header .inner .top a p {
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--db);
}
@media screen and (max-width: 1200px) {
  html body header .inner .top a p {
    font-size: 10px;
  }
}
@media screen and (max-width: 1200px) {
  html body header .inner .bottom {
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--db);
  }
}
html body header .inner .bottom.js-transition {
  transition: opacity 0.3s, visibility 0.3s;
}
html body header .inner .bottom.js-fadeIn {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 1200px) {
  html body header .inner .bottom nav {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 1200px) {
  html body header .inner .bottom nav ul {
    height: 80%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
html body header .inner .bottom nav ul li {
  margin-bottom: 33px;
}
@media screen and (max-width: 1200px) {
  html body header .inner .bottom nav ul li {
    text-align: center;
    height: auto;
    width: 100%;
  }
}
html body header .inner .bottom nav ul li a {
  font-family: "Shippori Mincho", serif;
  font-weight: bold;
  color: var(--db);
  letter-spacing: 0.12em;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 1200px) {
  html body header .inner .bottom nav ul li a {
    color: var(--white);
    font-weight: normal;
    font-size: 20px;
  }
}
html body header .inner .bottom nav ul li a.borderNone::after {
  width: 0;
  height: 0;
}
html body header .inner .bottom nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--db);
  transform-origin: left top;
  transform: scaleX(0);
  transition: transform var(--transition);
}
@media screen and (max-width: 1200px) {
  html body header .inner .bottom nav ul li a::after {
    background: var(--white);
  }
}
html body header .inner .bottom nav ul li a:hover::after {
  transform: scaleX(1);
}
html body header .inner .hamburger {
  z-index: 100;
  cursor: pointer;
  height: 60px;
  width: 60px;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
}
html body header .inner .hamburger.js-span-move {
  background: var(--db);
}
html body header .inner .hamburger.js-span-move .inner-box span {
  background: var(--white);
  transition: background 0.3s ease 0s, top 0.3s ease 0s, transform 0.3s ease 0.3s, opacity 0.3s ease 0s;
}
html body header .inner .hamburger.js-span-move .inner-box span:nth-child(1) {
  top: 50%;
  transform: rotate(20deg);
}
html body header .inner .hamburger.js-span-move .inner-box span:nth-child(2) {
  opacity: 0;
}
html body header .inner .hamburger.js-span-move .inner-box span:nth-child(3) {
  top: 50%;
  transform: rotate(-20deg);
}
html body header .inner .hamburger .inner-box {
  width: 40px;
  height: 14px;
  position: relative;
}
html body header .inner .hamburger .inner-box span {
  transition: top 0.3s ease 0.3s, transform 0.3s ease 0s, opacity 0.3s ease 0s;
  position: absolute;
  height: 2px;
  width: 100%;
  left: 0;
  background: var(--db);
}
html body header .inner .hamburger .inner-box span:nth-child(1) {
  top: 0;
}
html body header .inner .hamburger .inner-box span:nth-child(2) {
  top: 50%;
}
html body header .inner .hamburger .inner-box span:nth-child(3) {
  top: 100%;
}
html body footer .inner {
  height: 550px;
  width: 100%;
  display: flex;
}
@media screen and (max-width: 768px) {
  html body footer .inner {
    height: auto;
    flex-direction: column-reverse;
  }
}
html body footer .inner .footer-left {
  color: var(--white);
  height: 100%;
  width: 50%;
  background: var(--db-2);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body footer .inner .footer-left {
    padding-top: 35px;
    width: 100%;
  }
}
html body footer .inner .footer-left .footer-top img {
  display: block;
  margin: 0 auto 30px;
}
@media screen and (max-width: 768px) {
  html body footer .inner .footer-left .footer-top img {
    width: 45px;
    margin-bottom: 13px;
  }
}
html body footer .inner .footer-left .footer-top .company {
  font-size: 35px;
  margin-bottom: 25px;
  letter-spacing: 0.12em;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 768px) {
  html body footer .inner .footer-left .footer-top .company {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
  }
}
html body footer .inner .footer-left .footer-top .address {
  text-align: center;
  margin-bottom: 45px;
  letter-spacing: 0.12em;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body footer .inner .footer-left .footer-top .address {
    font-size: 13px;
    margin-bottom: 25px;
  }
}
html body footer .inner .footer-left .footer-top .footer-tel {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  html body footer .inner .footer-left .footer-top .footer-tel .tel-icon i {
    font-size: 1.5em;
  }
}
html body footer .inner .footer-left .footer-top .footer-tel .tel-number {
  margin-left: 15px;
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  html body footer .inner .footer-left .footer-top .footer-tel .tel-number {
    font-size: 18px;
  }
}
html body footer .inner .footer-left .footer-copy {
  margin-top: 100px;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  html body footer .inner .footer-left .footer-copy {
    margin-top: 35px;
    font-size: 10px;
  }
}
html body footer .inner .footer-right {
  height: 100%;
  width: 50%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  html body footer .inner .footer-right {
    width: 100%;
    height: 225px;
  }
}
html body footer .inner .footer-right iframe {
  position: absolute;
  top: -150px;
  width: 100%;
  height: calc(100% + 150px + 150px);
}
@media screen and (max-width: 768px) {
  html body footer .inner .footer-right iframe {
    height: 225px;
    top: 0;
  }
}
/*# sourceMappingURL=common.css.map */