@charset "UTF-8";
@import url("https://use.typekit.net/ldw8tol.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
*, *::before,
*::after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  color: inherit;
  font-size: 100%;
  text-decoration: none;
  vertical-align: baseline;
  background: transparent;
}

span {
  color: inherit;
  font-weight: inherit;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #333;
  margin: 0;
  padding: 0;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

img[src$=".svg"] {
  width: 100%;
}

input, select, textarea, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input, select {
  vertical-align: middle;
}

/* Azo Sans */
.azo {
  font-family: "azo-sans-web", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* Cormorant Garamond */
.noto {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

body {
  background-color: #212121;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 14px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}

.wrapper {
  position: relative;
  overflow: hidden;
}

.layer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(../images/background.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  mix-blend-mode: overlay;
}

.display--sp {
  display: none;
}
@media screen and (max-width: 576px) {
  .display--pc {
    display: none;
  }
  .display--sp {
    display: block;
  }
}

.heading {
  font-weight: 700;
  font-size: 55px;
  line-height: 1.49;
}
.heading--en {
  margin-top: 5px;
}
.heading--en img {
  width: auto;
  height: 14px;
}
@media screen and (max-width: 1200px) {
  .heading {
    font-size: 35px;
  }
}
@media screen and (max-width: 576px) {
  .heading {
    font-size: 28px;
  }
}

.sentence {
  line-height: 2.28;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1200px) {
  .sentence {
    line-height: 2;
  }
}

/*
 * 可視範囲に入るとフェードイン
 */
.fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s, transform 1s;
}
.fade-up.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
@media screen and (max-width: 576px) {
  .fade-up.is-inview {
    transition-delay: 0.2s;
  }
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  padding-left: 1.8%;
  padding-right: 176px;
}
.header__logo {
  width: 310px;
}
.header__contents {
  display: flex;
}
.header__list {
  display: flex;
  align-items: center;
  margin-right: 40px;
}
.header__item {
  white-space: nowrap;
}
.header__item:not(:last-of-type) {
  margin-right: 50px;
}
.header__item a:hover span::after {
  transform-origin: left top;
  transform: scale(1, 1);
}
.header__item span {
  display: inline-block;
  position: relative;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.025em;
}
.header__item span::after {
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
  width: 100%;
  height: 1px;
  background: #fff;
  content: "";
}
.header__button {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  width: 136px;
  height: 136px;
  border: 1px solid #707070;
  background: #333333;
  background: linear-gradient(45deg, rgb(51, 51, 51) 0%, rgb(34, 34, 34) 7%, rgb(65, 65, 65) 14%, rgb(123, 123, 123) 32%, rgb(5, 5, 5) 100%);
  cursor: pointer;
}
.header__button.active .header__line--top {
  transform: translate(-50%, -50%) rotate(20deg);
}
.header__button.active .header__line--middle {
  transform: translate(50%, -50%);
  opacity: 0;
}
.header__button.active .header__line--bottom {
  transform: translate(-50%, -50%) rotate(-20deg);
}
.header__line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 1px;
  background-color: #fff;
  transition: 0.3s;
}
.header__line--top {
  transform: translate(-50%, -7px);
}
.header__line--middle {
  transform: translate(-50%, -50%);
}
.header__line--bottom {
  transform: translate(-50%, 7px);
}
@media screen and (max-width: 1200px) {
  .header__list {
    display: none;
  }
  .header__button {
    width: 115px;
    height: 115px;
  }
  .header__logo {
    width: 260px;
  }
}
@media screen and (max-width: 576px) {
  .header__inner {
    padding: 15px 20px;
  }
  .header__logo {
    width: 175px;
  }
  .header__button {
    width: 60px;
    height: 60px;
  }
  .header__line {
    width: 36px;
  }
}

.footer {
  position: relative;
  padding-top: 217px;
  padding-bottom: 100px;
  background-color: #212121;
  color: #fff;
}
.footer__pattern {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(38.6%);
  height: 100%;
}
.footer__pattern img {
  width: auto;
  height: 100%;
  max-width: none;
}
.footer__inner {
  position: relative;
  z-index: 5;
  width: 85.7%;
  margin: auto;
}
.footer__contents {
  display: flex;
  justify-content: space-between;
  margin-bottom: 69px;
}
.footer__logo {
  width: 277px;
  margin-bottom: 35px;
}
.footer__info li {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.76;
  letter-spacing: 0.05em;
}
.footer__nav {
  position: relative;
  width: 300px;
}
.footer__nav ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer__nav li {
  width: 50%;
  margin-bottom: 20px;
}
.footer__nav li a span {
  font-weight: 500;
  letter-spacing: 0.025em;
  vertical-align: middle;
}
.footer__nav li a::before {
  display: inline-block;
  width: 10px;
  height: 2px;
  margin-right: 10px;
  background-color: #005DAA;
  vertical-align: middle;
  content: "";
}
.footer__button a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 260px;
  height: 66px;
}
.footer__button a span {
  position: relative;
  margin-right: 17px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.15em;
}
.footer__button a img {
  position: relative;
  width: 15px;
}
.footer__button a::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: skewX(-22deg);
  width: 100%;
  height: 100%;
  background-color: #005DAA;
  content: "";
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1200px) {
  .footer {
    padding-top: 140px;
    padding-bottom: 60px;
  }
  .footer__pattern {
    transform: translateX(50%);
  }
}
@media screen and (max-width: 576px) {
  .footer {
    padding-top: 60px;
    padding-bottom: 30px;
  }
  .footer__pattern {
    display: none;
  }
  .footer__inner {
    width: 100%;
    padding: 0 20px;
  }
  .footer__contents {
    display: block;
    margin-bottom: 80px;
  }
  .footer__info {
    margin-bottom: 35px;
  }
  .footer__info ul {
    text-align: center;
  }
  .footer__logo {
    width: 180px;
    margin: 0 auto 30px;
  }
  .footer__nav {
    margin: auto;
  }
  .footer__nav ul {
    margin-bottom: 15px;
  }
  .footer__button a {
    margin: auto;
  }
  .footer__bottom {
    flex-direction: column-reverse;
    font-size: 11px;
  }
  .footer__privacy {
    margin-bottom: 10px;
  }
}

.inquiry {
  position: relative;
  padding-top: 300px;
  padding-bottom: 120px;
  background-image: url(../images/inquiry_background.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.inquiry__title--en {
  position: absolute;
  top: 175px;
  right: 0;
  transform: translateX(1%);
  opacity: 0.45;
}
.inquiry__contents {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.inquiry__contents > div {
  position: relative;
  width: 590px;
  height: 251px;
}
.inquiry__contents > div::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: skewX(-22deg);
  width: 100%;
  height: 100%;
  content: "";
}
.inquiry__detail {
  position: relative;
  z-index: 5;
}
.inquiry__description {
  position: relative;
  z-index: 5;
  padding-top: 40px;
  padding-left: 90px;
}
.inquiry__description::before {
  background-color: #212121;
}
.inquiry__heading {
  margin-bottom: 10px;
}
.inquiry__sentence {
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.1em;
}
.inquiry__contact {
  margin-top: 120px;
  margin-left: -80px;
  padding-top: 37px;
  padding-left: 105px;
}
.inquiry__contact::before {
  background-color: #fff;
}
.inquiry__tel {
  width: 380px;
}
.inquiry__hour {
  margin-top: -8px;
  margin-bottom: 20px;
  margin-left: 42px;
  color: #212121;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.inquiry__link {
  margin-left: -40px;
}
.inquiry__link a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 430px;
  height: 76px;
}
.inquiry__link a::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: skewX(-22deg);
  width: 100%;
  height: 100%;
  background-color: #005DAA;
  content: "";
}
.inquiry__link a span, .inquiry__link a img {
  position: relative;
  z-index: 5;
  vertical-align: middle;
}
.inquiry__link a span {
  margin-right: 18px;
  font-weight: 700;
  font-size: 20px;
}
.inquiry__link a img {
  width: 16px;
}
@media screen and (max-width: 1200px) {
  .inquiry__title--en {
    top: 120px;
  }
  .inquiry__contents {
    display: block;
  }
  .inquiry__description {
    transform: translateX(-5%);
    margin: 0 auto -10px;
  }
  .inquiry__contact {
    transform: translateX(5%);
    margin: 0 auto;
  }
}
@media screen and (max-width: 576px) {
  .inquiry {
    padding-top: 110px;
    padding-bottom: 60px;
  }
  .inquiry__title--en {
    top: 60px;
  }
  .inquiry__contents > div {
    width: 100%;
    height: 200px;
  }
  .inquiry__description {
    padding-right: 30px;
    padding-left: 60px;
  }
  .inquiry__sentence {
    font-size: 14px;
  }
  .inquiry__sentence br {
    display: none;
  }
  .inquiry__contact {
    padding-left: 60px;
  }
  .inquiry__tel {
    width: 240px;
  }
  .inquiry__hour {
    margin-top: -4px;
    margin-bottom: 15px;
    margin-left: 0;
    font-size: 13px;
  }
  .inquiry__link a {
    width: 280px;
    height: 56px;
  }
  .inquiry__link a span {
    font-size: 16px;
  }
  .inquiry__link a img {
    width: 14px;
  }
}

.division {
  position: absolute;
  z-index: 20;
  height: 75px;
}
.division img {
  width: auto;
  height: 75px;
}
.division--top-right {
  top: 0;
  right: 0;
  transform: translateY(-99.9%);
  transform: translateY(calc(-100% + 1px));
  width: 55%;
}
.division--top-right img {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-99.9%);
  transform: translateX(calc(-100% + 1px));
}
.division--top-left {
  top: 0;
  left: 0;
  transform: translateY(-99.9%);
  transform: translateY(calc(-100% + 1px));
  width: 55%;
}
.division--top-left img {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(99.9%);
  transform: translateX(calc(100% - 1px));
}
.division--bottom-right {
  bottom: 0;
  right: 0;
  transform: translateY(99.9%);
  transform: translateY(calc(100% - 1px));
  width: 40%;
}
.division--bottom-right img {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-99.9%);
  transform: translateX(calc(-100% + 1px));
}
.division--wht {
  background-color: #fff;
}
.division--blu {
  background-color: #005DAA;
}
.division--blk {
  background-color: #1A1311;
}
@media screen and (max-width: 576px) {
  .division {
    height: 36px;
  }
  .division img {
    width: auto;
    height: 36px;
  }
}/*# sourceMappingURL=main.css.map */