@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Anton&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;
}

.noto {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.anton {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  color: #212121;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 15px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 1200px) {
  body {
    font-size: 14px;
  }
}

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

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

/*
 * 可視範囲に入るとフェードイン
 */
.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;
  }
}

.link a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 240px;
  padding-right: 10px;
  padding-bottom: 18px;
}
.link a::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  content: "";
}
.link a:hover .link__arrow::before {
  transform: translate(-50%, -50%) scale(1.25);
}
.link__text {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.025em;
}
.link__arrow {
  position: relative;
}
.link__arrow::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background-color: #F55500;
  content: "";
  transition: 0.4s;
}
.link__arrow img {
  position: relative;
  width: 8px;
  z-index: 5;
}
@media screen and (max-width: 1200px) {
  .link a {
    width: 220px;
  }
  .link__text {
    font-size: 15px;
  }
  .link__arrow::before {
    width: 75px;
    height: 75px;
  }
}
@media screen and (max-width: 576px) {
  .link a {
    width: 200px;
  }
  .link__text {
    font-size: 14px;
  }
  .link__arrow::before {
    width: 65px;
    height: 65px;
  }
}

.inquiry {
  padding-top: 235px;
  background-image: url(../images/inquiry_background.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}
.inquiry__heading {
  position: relative;
  z-index: 5;
  margin-bottom: 50px;
}
.inquiry__heading--en {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -190px);
  z-index: -1;
  color: #fff;
  font-size: 250px;
  opacity: 0.07;
}
.inquiry__heading--ja {
  font-weight: bold;
  font-size: 60px;
  letter-spacing: 0.05em;
  text-align: center;
  text-indent: 0.05em;
}
.inquiry__lead {
  margin-bottom: 65px;
  text-align: center;
}
.inquiry__lead span {
  display: inline-block;
  width: 420px;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.025em;
  text-align: left;
}
.inquiry__link a {
  margin: auto;
}
.inquiry__image img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1200px) {
  .inquiry {
    padding-top: 170px;
  }
  .inquiry__heading {
    margin-bottom: 60px;
  }
  .inquiry__heading--en {
    transform: translate(-50%, -135px);
    font-size: 180px;
  }
  .inquiry__heading--ja {
    font-size: 45px;
  }
}
@media screen and (max-width: 576px) {
  .inquiry {
    padding-top: 100px;
  }
  .inquiry__heading {
    margin-bottom: 40px;
  }
  .inquiry__heading--en {
    transform: translate(-50%, -55px);
    font-size: 80px;
  }
  .inquiry__heading--ja {
    font-size: 26px;
  }
  .inquiry__lead {
    margin-bottom: 55px;
    padding: 0 20px;
  }
  .inquiry__lead span {
    width: 100%;
    font-size: 14px;
  }
}

.header__button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 110;
  width: 100px;
  height: 100px;
  background-color: #212121;
  cursor: pointer;
}
.header__button-text {
  color: #fff;
  font-size: 22px;
}
.header__button-line {
  width: 46px;
  height: 3px;
  background-color: #fff;
}
@media screen and (max-width: 576px) {
  .header__button {
    width: 70px;
    height: 70px;
  }
  .header__button-text {
    font-size: 18px;
  }
  .header__button-line {
    width: 40px;
  }
}

.menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  width: 600px;
  height: 100%;
  padding: 100px 30px 50px;
  overflow: auto;
  background-color: #0A51A1;
  color: #fff;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.menu::-webkit-scrollbar {
  display: none;
}
.menu__layer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.menu__list {
  margin-bottom: 40px;
}
.menu__item--en, .menu__item--ja {
  vertical-align: middle;
}
.menu__item--en {
  margin-right: 10px;
  font-size: 48px;
  letter-spacing: 0.025em;
}
.menu__item--ja {
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.1em;
}
.menu__item:not(:last-of-type) {
  margin-bottom: 20px;
}
.menu__item a:hover .menu__pattern {
  opacity: 1;
}
.menu__pattern {
  opacity: 0;
  width: 48px;
  margin-right: 10px;
  vertical-align: middle;
  transition: 0.3s;
}
.menu__others {
  padding-left: 67px;
}
.menu__sns {
  margin-bottom: 45px;
}
.menu__sns-item--instagram {
  width: 20px;
}
.menu__bottom {
  font-size: 13px;
}
.menu__privacy {
  margin-bottom: 10px;
}
.menu__privacy a {
  font-weight: 500;
}
.menu__credit {
  font-weight: 500;
}
@media screen and (max-width: 576px) {
  .menu {
    width: 100%;
    padding: 80px 20px 20px;
  }
  .menu__pattern {
    display: none;
  }
  .menu__list {
    margin-bottom: 30px;
  }
  .menu__item--en {
    font-size: 35px;
  }
  .menu__item--ja {
    font-size: 14px;
  }
  .menu__item:not(:last-of-type) {
    margin-bottom: 12px;
  }
  .menu__others {
    padding-left: 0;
  }
  .menu__sns {
    margin-bottom: 35px;
  }
  .menu__bottom {
    font-size: 12px;
  }
}

.footer {
  position: relative;
  z-index: 5;
  padding-top: 140px;
  padding-bottom: 80px;
  background-color: #212121;
  color: #fff;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  width: 91.4%;
  margin: auto;
}
.footer__logo {
  width: 240px;
  margin-bottom: 45px;
}
.footer__info ul {
  margin-bottom: 40px;
}
.footer__info li {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
}
.footer__sns--instagram {
  width: 25px;
}
.footer__name {
  position: relative;
  width: 100%;
  margin-top: 55px;
  margin-bottom: 30px;
  overflow: hidden;
}
.footer__name img {
  width: 100%;
  height: auto;
}
.footer__nav ul {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.footer__nav li {
  margin-left: 38px;
}
.footer__nav li a {
  display: inline-block;
  position: relative;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.025em;
}
.footer__nav li a::after {
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
  width: 100%;
  height: 1px;
  background: #fff;
  content: "";
}
.footer__nav li a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}
.footer__button a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 240px;
  height: 62px;
  margin-right: 0;
  margin-left: auto;
  border-radius: 9px;
  background-color: #fff;
  transition: 0.3s;
}
.footer__button a:hover {
  background-color: #F56D26;
}
.footer__button a span {
  color: #212121;
  font-size: 16px;
  letter-spacing: 0.025em;
  text-indent: 0.025em;
}
.footer__button a img {
  position: absolute;
  top: 50%;
  right: 33px;
  transform: translateY(-50%);
  width: 9px;
}
.footer__bottom {
  width: 100%;
  text-align: right;
}
.footer__privacy {
  margin-bottom: 15px;
}
.footer__privacy a {
  font-weight: 500;
  font-size: 12px;
}
.footer__credit {
  color: #3C3C3C;
  font-size: 12px;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 1200px) {
  .footer {
    padding-bottom: 50px;
  }
  .footer__inner {
    display: block;
  }
  .footer__info {
    margin-bottom: 30px;
  }
  .footer__nav li {
    margin-right: 15px;
    margin-left: 0;
  }
  .footer__contact a {
    margin-left: 0;
  }
}
@media screen and (max-width: 576px) {
  .footer {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  .footer__info {
    margin-bottom: 40px;
  }
  .footer__info li {
    margin-right: 0;
  }
  .footer__info li br {
    display: block;
  }
  .footer__logo {
    width: 170px;
    margin-bottom: 35px;
  }
  .footer__sns--instagram {
    width: 20px;
  }
  .footer__copyright {
    font-size: 12px;
  }
  .footer__nav ul {
    display: block;
    margin-bottom: 40px;
  }
  .footer__nav li {
    margin-right: 0;
  }
  .footer__nav li:not(:last-of-type) {
    margin-bottom: 8px;
  }
  .footer__button a {
    width: 200px;
    height: 52px;
    margin-left: 0;
  }
  .footer__button a span {
    font-size: 15px;
  }
  .footer__button a img {
    width: 8px;
  }
  .footer__name {
    margin-top: 40px;
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=main.css.map */