@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%;
  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;
}

/* Zen Old Mincho */
.zen {
  font-family: "zen-old-mincho", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* Cormorant Garamond */
.garamond {
  font-family: cormorant-garamond, serif;
  font-weight: 400;
  font-style: normal;
}

body {
  color: #404040;
  font-family: "zen-old-mincho", serif;
  font-weight: 700;
  font-size: 14px;
  font-style: normal;
  font-optical-sizing: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}
@media screen and (max-width: 1200px) {
  .wrapper {
    padding-top: 0;
  }
}

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

.sentence {
  line-height: 1.785;
  letter-spacing: 0.025em;
}

.link a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 190px;
}
.link a:hover .link__arrow {
  transform: scale(1.3);
}
.link__text {
  display: inline-block;
  width: 130px;
  padding: 7px 0;
  border-bottom: 1px solid #404040;
  color: #212121;
  text-align: center;
  white-space: nowrap;
}
.link__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #E40215;
  transition: 0.3s;
}
.link__arrow img {
  width: 15px;
}
@media screen and (max-width: 576px) {
  .link a {
    width: 175px;
  }
  .link__text {
    width: 120px;
    font-size: 13px;
  }
  .link__arrow {
    width: 42px;
    height: 42px;
  }
  .link__arrow img {
    width: 12px;
  }
}

/*
 * 可視範囲に入るとフェードイン
 */
.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__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99;
  width: 170px;
  height: 170px;
  background-color: #E40B18;
}
.header__logo img {
  width: 75px;
}
.header__contents {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  overflow: auto;
  width: 100%;
  background-color: #fff;
}
.header__inner {
  display: flex;
  justify-content: space-between;
}
.header__logomark {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  background-color: #E40B18;
}
.header__logomark img {
  width: 45px;
}
.header__button {
  display: none;
}
@media screen and (min-width: 1600px) {
  .header__logo {
    width: 220px;
    height: 220px;
  }
  .header__logo img {
    width: 85px;
  }
}
@media screen and (max-width: 1200px) {
  .header__logomark {
    width: 160px;
    height: 160px;
    margin-top: 30px;
    margin-bottom: 60px;
  }
  .header__logomark img {
    width: 100px;
  }
  .header__button {
    display: block;
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 100;
    width: 50px;
    height: 24px;
  }
  .header__button.active .header__line {
    background-color: #fff;
  }
  .header__button.active .header__line--top {
    top: 50%;
    transform: translateY(-50%) rotate(30deg);
  }
  .header__button.active .header__line--middle {
    opacity: 0;
  }
  .header__button.active .header__line--bottom {
    top: 50%;
    transform: translateY(-50%) rotate(-30deg);
  }
  .header__line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #212121;
    transition: 0.3s;
  }
  .header__line--top {
    top: 0;
    transform: translateY(-50%);
  }
  .header__line--middle {
    top: 50%;
    transform: translateY(-50%);
  }
  .header__line--bottom {
    top: 100%;
    transform: translateY(50%);
  }
  .header__contents {
    display: none;
    height: 100%;
    background-color: #E40B18;
    color: #fff;
  }
  .header__inner {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .header__logo {
    width: 120px;
    height: 120px;
  }
  .header__logo img {
    width: 50px;
  }
  .header__logomark {
    width: 120px;
    height: 120px;
    margin-top: 20px;
    margin-bottom: 50px;
  }
  .header__logomark img {
    width: 70px;
  }
  .header__button {
    right: 20px;
    width: 40px;
    height: 20px;
  }
}

.menu {
  display: flex;
  align-items: center;
  padding-right: 40px;
}
.menu__list {
  display: flex;
  align-items: center;
}
.menu__item:not(:last-of-type) {
  margin-right: 50px;
}
.menu__item:first-of-type .menu__ja {
  display: none;
}
.menu__item:first-of-type .menu__en {
  display: inline-block;
}
.menu__ja {
  letter-spacing: 0.1em;
}
.menu__en {
  display: none;
}
.menu__instagram {
  width: 20px;
}
.menu__instagram img:last-of-type {
  display: none;
}
@media screen and (max-width: 1200px) {
  .menu {
    padding: 0 5%;
  }
  .menu__list {
    display: block;
  }
  .menu__item:first-of-type .menu__ja {
    display: inline-block;
  }
  .menu__item:not(:last-of-type) {
    margin-bottom: 35px;
  }
  .menu__ja {
    margin-right: 8px;
    font-size: 28px;
    letter-spacing: 0.05em;
  }
  .menu__en {
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0.05em;
  }
  .menu__instagram {
    width: 25px;
    margin-top: 50px;
  }
  .menu__instagram img:first-of-type {
    display: none;
  }
  .menu__instagram img:last-of-type {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .menu {
    padding: 0 20px;
  }
  .menu__item:not(:last-of-type) {
    margin-bottom: 25px;
  }
  .menu__ja {
    font-size: 20px;
  }
  .menu__en {
    font-size: 11px;
  }
  .menu__instagram {
    width: 22px;
  }
}

.footer {
  padding-top: 53px;
  padding-bottom: 22px;
  background-color: #212121;
  color: #fff;
}
.footer__inner {
  width: 85.7%;
  margin: auto;
}
.footer__catch {
  position: relative;
  width: 210px;
  margin: 0 auto 85px;
}
.footer__catch span {
  font-size: 32px;
  line-height: 1.6;
  letter-spacing: 0.25em;
}
.footer__catch img {
  position: absolute;
  bottom: 10px;
  right: 0;
  width: 23px;
}
.footer__contents {
  display: flex;
  justify-content: space-between;
  margin-bottom: 110px;
}
.footer__info ul {
  margin-bottom: 30px;
  font-size: 13px;
  line-height: 1.76;
  letter-spacing: 0.05em;
  font-family: YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}
.footer__logo {
  width: 144px;
  margin-bottom: 35px;
}
.footer__instagram {
  width: 20px;
}
.footer__nav {
  position: relative;
}
.footer__nav ul {
  margin-bottom: 95px;
  padding-right: 85px;
  letter-spacing: 0.1em;
}
.footer__nav li:not(:last-of-type) {
  margin-bottom: 20px;
}
.footer__button a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 230px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 5px;
}
.footer__button a span {
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.footer__back {
  position: absolute;
  top: 0;
  right: 0;
}
.footer__back a {
  display: inline-block;
  min-width: 14px;
}
.footer__back a span {
  letter-spacing: 0.01em;
  white-space: nowrap;
  writing-mode: vertical-lr;
}
.footer__back a span::before {
  display: inline-block;
  width: 1px;
  height: 95px;
  margin-bottom: 10px;
  background-color: #E40215;
  content: "";
}
@media screen and (max-width: 576px) {
  .footer__inner {
    width: 100%;
    padding: 0 20px;
  }
  .footer__catch {
    width: 175px;
    margin-bottom: 55px;
  }
  .footer__catch span {
    font-size: 26px;
  }
  .footer__catch img {
    width: 20px;
  }
  .footer__contents {
    display: block;
    margin-bottom: 80px;
  }
  .footer__info {
    margin-bottom: 50px;
  }
  .footer__logo {
    width: 100px;
  }
  .footer__nav ul {
    margin-bottom: 65px;
  }
  .footer__bottom {
    flex-direction: column-reverse;
    font-size: 11px;
  }
  .footer__privacy {
    margin-bottom: 10px;
  }
}

.inquiry {
  position: relative;
  padding-top: 185px;
  padding-bottom: 108px;
  background-color: #E40215;
  color: #fff;
  text-align: center;
}
.inquiry__pattern {
  position: absolute;
  left: 0;
  width: 100%;
}
.inquiry__pattern--top {
  top: -1px;
}
.inquiry__pattern--bottom {
  bottom: -1px;
}
.inquiry__pattern img {
  width: 100%;
  height: auto;
}
.inquiry__inner {
  position: relative;
  z-index: 5;
  padding-bottom: 70px;
}
.inquiry__heading {
  margin-bottom: 30px;
  font-size: 55px;
  letter-spacing: 0.01em;
}
.inquiry__lead {
  margin-bottom: 45px;
  font-size: 22px;
  line-height: 1.9;
  letter-spacing: 0.025em;
}
.inquiry__link a {
  margin: auto;
}
.inquiry__link .link__text {
  border-color: #fff;
  color: #fff;
}
.inquiry__link .link__arrow {
  background-color: #fff;
}
.inquiry__line {
  position: relative;
  width: 100%;
}
.inquiry__line > img {
  position: relative;
  z-index: 5;
}
.inquiry__line .st0 {
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 18;
  stroke-miterlimit: 10;
  stroke-dasharray: 1500; /* この行を追加 */
  stroke-dashoffset: 1500; /* この行を追加 */
}
.inquiry__line svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1600px) {
  .inquiry {
    padding-bottom: 200px;
  }
}
@media screen and (max-width: 1200px) {
  .inquiry {
    padding-top: 120px;
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 576px) {
  .inquiry {
    padding-top: 90px;
    padding-bottom: 70px;
  }
  .inquiry__inner {
    padding-bottom: 50px;
  }
  .inquiry__heading {
    margin-bottom: 25px;
    font-size: 40px;
  }
  .inquiry__lead {
    margin-bottom: 35px;
    font-size: 18px;
  }
}/*# sourceMappingURL=main.css.map */