@charset "UTF-8";
/*
@function rem($size) {
  @return $size / 10 + rem;
}
*/
* {
  box-sizing: border-box;
}

:root,
html {
  font-size: 100%;
}

body {
  color: #212121;
  font-weight: 400;
  line-height: 1.5;
  min-height: 100vh;
  /* Fallback */
  min-height: calc(var(--vh, 1vh) * 100);
  font-family: "Zen Old Mincho", serif;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  /*
  background: {
    image: url("../images/lp/back-mv@2x.jpg");
    size: cover;
    position: center;
    repeat: no-repeat;
    attachment: fixed;
  }
  @include sp {
    background: {
      image: url("../images/lp/back-mv_sp@2x.jpg");
    }
  }
  */
}
body .fixed-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  display: block;
}
body .fixed-bg picture,
body .fixed-bg img.fixed-bg__img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
body.loading-state {
  overflow: hidden;
  height: 100vh;
}
body.drawer-open {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body.drawer-open {
    position: fixed;
    width: 100%;
  }
}

/*//////////////////////////////////////////
//  共通設定
//////////////////////////////////////////*/
.inner {
  max-width: 87.5rem;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.s-inner {
  max-width: 67.5rem;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

img,
video {
  max-width: 100%;
  height: auto;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: initial;
  }
}

em {
  font-style: normal;
}

.picture {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  br.sp {
    display: inline;
  }
}
.ttl-catch {
  font-size: 1rem;
  font-weight: 700;
  color: #c59c4f;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  .ttl-catch {
    font-size: 4.2666666667vw;
    gap: 2.1333333333vw;
  }
}
.ttl-catch:before {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 0.0625rem;
  background: #c59c4f;
  margin-left: -4.375rem;
}
@media screen and (max-width: 768px) {
  .ttl-catch:before {
    width: 8.5333333333vw;
    margin-left: -10.6666666667vw;
  }
}

.ttl-head {
  writing-mode: vertical-rl;
  font-size: 3rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.12em;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .ttl-head {
    font-size: 8.5333333333vw;
  }
}
.ttl-head .big {
  font-size: 4.5rem;
}
@media screen and (max-width: 1400px) {
  .ttl-head .big {
    font-size: 5.1391862955vw;
  }
}
@media screen and (max-width: 768px) {
  .ttl-head .big {
    font-size: 14.9333333333vw;
  }
}
.ttl-head .small {
  font-size: 3.5rem;
}
@media screen and (max-width: 1400px) {
  .ttl-head .small {
    font-size: 3.9971448965vw;
  }
}
@media screen and (max-width: 768px) {
  .ttl-head .small {
    font-size: 10.6666666667vw;
  }
}
.ttl-head:before {
  content: "";
  display: inline-block;
  width: 7.546875rem;
  height: 7.125rem;
  position: absolute;
  top: -4.25rem;
  z-index: -1;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-image: url("../images/lp/icon-head.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .ttl-head:before {
    width: 32.2vw;
    height: 30.4vw;
  }
}
.ttl-head rt {
  letter-spacing: 0.32em;
  font-size: 1rem;
  margin-left: 0.25rem;
}
@media screen and (max-width: 768px) {
  .ttl-head rt {
    font-size: 3.2vw;
    margin-left: 0;
  }
}

.ttl-head-horizontal {
  font-size: 2.5rem;
  color: #fff;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .ttl-head-horizontal {
    font-size: 8.5333333333vw;
    line-height: 1.75;
    margin-top: 1.875rem;
  }
}

.ttl-en-txt {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 2rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .ttl-en-txt {
    font-size: 2.9333333333vw;
    line-height: 1.75;
  }
}

.txt-area .txt {
  color: #fff;
  font-size: 1.125rem;
  line-height: 2.5;
}
@media screen and (max-width: 768px) {
  .txt-area .txt {
    font-size: 4.2666666667vw;
    line-height: 2.5;
  }
}
.txt-area .txt:not(:first-child) {
  margin-top: 2rem;
}

/*//////////////////////////////////////////
//  header
//////////////////////////////////////////*/
.main-header {
  position: absolute;
  width: 100%;
  z-index: 10;
}
.main-header .inner {
  display: flex;
  justify-content: flex-end;
  padding-top: 2.5rem;
  padding-right: 2.5rem;
}
.main-header .main-menu {
  display: flex;
  flex-direction: row-reverse;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .main-header .main-menu {
    display: none;
  }
}
.main-header .main-menu__item {
  writing-mode: vertical-rl;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1;
}
.main-header .main-menu .menu-link[target=_blank] {
  position: relative;
}
.main-header .main-menu .menu-link[target=_blank]::after {
  content: "";
  display: inline-block;
  content: "";
  display: inline-block;
  width: 0.8125rem;
  height: 0.8125rem;
  margin-top: 0.5rem;
  background-image: url("../images/lp/icon-exlink.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.main-header .drawer-toggle {
  display: none;
}
@media screen and (max-width: 768px) {
  .main-header .drawer-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 2rem;
    right: 1.4375rem;
    z-index: 100;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 0.5rem;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .main-header .drawer-hamburger-icon {
    position: relative;
    display: block;
    width: 2.5625rem;
    height: 0.125rem;
    background-color: #fff;
    transition: all 0.3s ease;
  }
  .main-header .drawer-hamburger-icon::before, .main-header .drawer-hamburger-icon::after {
    content: "";
    position: absolute;
    left: 0;
    display: block;
    width: 2.5625rem;
    height: 0.125rem;
    background-color: #fff;
    transition: all 0.3s ease;
  }
  .main-header .drawer-hamburger-icon::before {
    top: -0.625rem;
  }
  .main-header .drawer-hamburger-icon::after {
    top: 0.625rem;
  }
}
@media screen and (max-width: 768px) {
  .main-header .drawer-menu-text {
    color: #fff;
    font-size: 0;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    text-align: center;
  }
  .main-header .drawer-menu-text::before {
    content: "MENU";
    font-size: 0.8125rem;
    display: inline-block;
    font-family: "Zen Old Mincho", serif;
    margin-top: 0.25rem;
  }
}
@media screen and (max-width: 768px) {
  .drawer-open .main-header .drawer-hamburger-icon {
    background-color: transparent;
  }
  .drawer-open .main-header .drawer-hamburger-icon::before {
    top: 0;
    transform: rotate(45deg);
  }
  .drawer-open .main-header .drawer-hamburger-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }
}
@media screen and (max-width: 768px) {
  .drawer-open .main-header .drawer-menu-text::before {
    content: "閉じる";
  }
}
.main-header .drawer-nav {
  display: none;
}
@media screen and (max-width: 768px) {
  .main-header .drawer-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #000;
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 99;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .main-header .drawer-menu {
    list-style: none;
    padding: 5rem 2.5rem 2.5rem;
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .main-header .drawer-menu__item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
}
@media screen and (max-width: 768px) {
  .main-header .drawer-menu-link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.875rem 0;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: opacity 0.3s ease;
    gap: 0.375rem;
  }
  .main-header .drawer-menu-link:hover {
    opacity: 0.7;
  }
  .main-header .drawer-menu-link[target=_blank] {
    position: relative;
    padding-right: 1.25rem;
  }
  .main-header .drawer-menu-link[target=_blank]::after {
    content: "";
    width: 0.875rem;
    height: 0.875rem;
    background-image: url("../images/lp/icon-exlink.svg");
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 768px) {
  .main-header .drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
}

/*//////////////////////////////////////////
//  footer
//////////////////////////////////////////*/
.main-footer {
  padding: 6.875rem 1.25rem 4.25rem;
}
@media screen and (max-width: 768px) {
  .main-footer {
    padding: 20.5333333333vw 0 9.0666666667vw;
  }
}
.main-footer .inner {
  display: flex;
  gap: 6.6875rem;
}
@media screen and (max-width: 1400px) {
  .main-footer .inner {
    gap: 7.6374018558vw;
  }
}
@media screen and (max-width: 768px) {
  .main-footer .inner {
    flex-direction: column;
    align-items: center;
    gap: 10.6666666667vw;
  }
}
.main-footer .f-logo {
  width: 14.436875rem;
}
@media screen and (max-width: 1400px) {
  .main-footer .f-logo {
    width: 16.4875089222vw;
  }
}
@media screen and (max-width: 768px) {
  .main-footer .f-logo {
    width: 61.5973333333vw;
  }
  .main-footer .f-logo img {
    width: 100%;
  }
}
.main-footer .f-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .main-footer .f-nav {
    align-items: center;
    gap: 33.3333333333vw;
  }
}
.main-footer .f-nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1rem 0;
}
@media screen and (max-width: 768px) {
  .main-footer .f-nav__list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .main-footer .f-nav__item {
    width: 100%;
  }
}
.main-footer .f-nav__item:not(:last-child):after {
  content: "";
  display: inline-block;
  width: 1.125rem;
  height: 0.0625rem;
  transform: rotate(-45deg) translateY(-2px);
  transform-origin: center;
  background: #fff;
  margin: 0 1.0625rem 0;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .main-footer .f-nav__item:not(:last-child):after {
    content: none;
  }
}
@media screen and (max-width: 768px) {
  .main-footer .f-nav__item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
}
.main-footer .f-nav__link {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .main-footer .f-nav__link {
    font-size: 4.8vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.875rem 0;
  }
}
.main-footer .f-nav__link[target=_blank] {
  position: relative;
}
.main-footer .f-nav__link[target=_blank]::after {
  content: "";
  display: inline-block;
  content: "";
  display: inline-block;
  width: 0.8125rem;
  height: 0.8125rem;
  margin-left: 0.375rem;
  background-image: url("../images/lp/icon-exlink.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .main-footer .f-nav__link[target=_blank]::after {
    width: 3.4666666667vw;
    height: 3.4666666667vw;
    margin-left: 0.625rem;
  }
}
.main-footer .f-nav .copyright {
  color: #fff;
  font-size: 0.875rem;
}

@media screen and (max-width: 768px) {
  body.drawer-open .main-header .drawer-nav {
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  body.drawer-open .main-header .drawer-overlay {
    opacity: 1;
    visibility: visible;
  }
}/*# sourceMappingURL=common.css.map */