@charset "UTF-8";
*, *::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%;
  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;
}

@font-face {
  /*フォントの名前*/
  font-family: "nimbus";
  /*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
  src: url("../fonts/nimbus-sans-bold.woff2") format("woff2"), url("../fonts/nimbus-sans-bold.woff") format("woff");
}
.nimbus {
  font-family: "nimbus", sans-serif;
}

body {
  background-color: #FAF5EC;
  color: #1A1311;
  font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 16px;
  font-style: normal;
  line-height: 1;
  -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: repeat-y;
  background-size: 100% auto;
  background-attachment: fixed;
}

.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;
  }
}

.fence {
  position: absolute;
  z-index: -1;
  width: 528px;
}
@media screen and (max-width: 576px) {
  .fence {
    width: 240px;
  }
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
}
.header__inner {
  padding: 62px 62px 0;
}
.header__contents {
  display: flex;
  justify-content: space-between;
}
.header__item a span {
  font-size: 13px;
  letter-spacing: 0.1em;
}
.header__item:not(:last-of-type) {
  margin-bottom: 15px;
}
.header__instagram {
  margin-top: 30px;
  width: 16px;
}
.header__logo {
  width: 157px;
}
.header__button {
  display: none;
  position: fixed;
}
@media screen and (max-width: 1200px) {
  .header__inner {
    padding: 40px 40px 0;
  }
  .header__logo {
    width: 140px;
  }
}
@media screen and (max-width: 576px) {
  .header__inner {
    padding: 20px 20px 0;
  }
  .header__list {
    display: none;
  }
  .header__logo {
    width: 100px;
  }
  .header__button {
    display: block;
    top: 20px;
    right: 20px;
    z-index: 100;
    width: 40px;
    height: 26px;
  }
  .header__button.active .header__line--top {
    top: 50%;
    transform: rotate(30deg);
  }
  .header__button.active .header__line--middle {
    opacity: 0;
  }
  .header__button.active .header__line--bottom {
    top: 50%;
    transform: rotate(-30deg);
  }
  .header__line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #212121;
    transition: 0.3s;
  }
  .header__line--top {
    transform: translateY(-12px);
  }
  .header__line--middle {
    transform: translateY(-50%);
  }
  .header__line--bottom {
    transform: translateY(11px);
  }
}

.menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  padding-top: 40px;
  overflow: auto;
  background-color: #FAF5EC;
}
.menu__logo {
  width: 110px;
  margin: 0 auto 50px;
}
.menu__list {
  margin-bottom: 30px;
}
.menu__item {
  text-align: center;
}
.menu__item:not(:last-of-type) {
  margin-bottom: 30px;
}
.menu__item a p:first-of-type {
  font-size: 24px;
  letter-spacing: 0.1em;
}
.menu__item a p:last-of-type {
  font-size: 13px;
  letter-spacing: 0.025em;
}
.menu__instagram {
  width: 20px;
  margin: auto;
}

.footer {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}
.footer__logo {
  width: 216px;
  margin: 0 auto 45px;
}
.footer__inner {
  width: 85.7%;
  margin: auto;
}
.footer__contents {
  display: flex;
  justify-content: space-between;
  margin-bottom: 69px;
}
.footer__info li {
  font-size: 14px;
  line-height: 1.71;
  letter-spacing: 0.025em;
}
.footer__info--main {
  margin-bottom: 15px;
}
.footer__info--sub {
  margin-bottom: 25px;
}
.footer__name {
  margin-bottom: 15px;
}
.footer__name span:first-of-type {
  font-size: 22px;
  letter-spacing: 0.025em;
}
.footer__name span:last-of-type {
  letter-spacing: 0.025em;
}
.footer__instagram {
  width: 20px;
}
.footer__nav {
  position: relative;
}
.footer__nav ul {
  margin-bottom: 60px;
  padding-left: 118px;
}
.footer__nav li:not(:last-of-type) {
  margin-bottom: 20px;
}
.footer__back {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}
.footer__back a span {
  vertical-align: middle;
}
.footer__back a span:first-of-type {
  display: block;
  width: 1px;
  height: 94px;
  margin: 0 auto 11px;
  background-color: #E46B46;
}
.footer__back a span:last-of-type {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.01em;
  writing-mode: vertical-lr;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1200px) {
  .footer {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .footer__logo {
    width: 170px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 576px) {
  .footer {
    padding-top: 60px;
    padding-bottom: 30px;
  }
  .footer__logo {
    width: 140px;
    margin-bottom: 40px;
  }
  .footer__inner {
    width: 100%;
    padding: 0 20px;
  }
  .footer__contents {
    display: block;
    margin-bottom: 80px;
  }
  .footer__info {
    margin-bottom: 35px;
  }
  .footer__nav {
    margin: auto;
  }
  .footer__nav ul {
    margin-bottom: 30px;
    padding-left: 0;
  }
  .footer__button a {
    margin-left: 0;
  }
  .footer__bottom {
    flex-direction: column-reverse;
    font-size: 11px;
  }
  .footer__privacy {
    margin-bottom: 10px;
  }
}

.inquiry {
  position: relative;
  padding-top: 185px;
  padding-bottom: 185px;
  background-image: url(../images/inquiry_background.jpg?20251117);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}
.inquiry__heading {
  margin-bottom: 55px;
  text-align: center;
}
.inquiry__sentence {
  width: 417px;
  margin: 0 auto 60px;
  line-height: 1.8125;
  letter-spacing: 0.025em;
  text-align: center;
}
.inquiry__link a {
  margin: auto;
}
@media screen and (max-width: 576px) {
  .inquiry {
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .inquiry__heading {
    margin-bottom: 45px;
  }
  .inquiry__sentence {
    width: 100%;
    margin-bottom: 50px;
    padding: 0 20px;
    font-size: 14px;
    text-align: left;
  }
}

.heading--en {
  margin-bottom: 15px;
  font-size: 55px;
  line-height: 1.127;
  letter-spacing: 0.025em;
}
.heading--ja {
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1200px) {
  .heading--en {
    margin-bottom: 10px;
    font-size: 45px;
  }
}
@media screen and (max-width: 576px) {
  .heading--en {
    margin-bottom: 5px;
    font-size: 38px;
  }
  .heading--ja {
    font-size: 15px;
  }
}

.link a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 280px;
  height: 80px;
  padding: 0 34px;
  border-radius: 5px;
  background-color: #E46B46;
  transition: 0.4s;
}
.link a span {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.link a img {
  width: 24px;
}
.link a:hover {
  background-color: #1A1311;
}
@media screen and (max-width: 576px) {
  .link a {
    width: 240px;
    height: 70px;
  }
  .link a img {
    width: 22px;
  }
}/*# sourceMappingURL=main.css.map */