@charset "UTF-8";

html {
  scroll-behavior: smooth;
}

html,
body {
  font-size: 62.5%;
  width: 100%;
  margin: 0;
  padding: 0;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}

body {
  background-color: #090806;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.93;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  overflow-x: hidden;
}

ul,
li {
  list-style-type: none;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #fff;
  transition: .3s ease;
}

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

.en {
  font-family: "Montserrat", sans-serif;
}

.sans {
  font-family: "Noto Sans JP", sans-serif;
}

.serif {
  font-family: "Noto Serif JP", serif;
}

.sp-only {
  display: none;
}
/* header --------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.header-wrapper {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.7);
  height: 80px;
  position: relative;
}

.page-width {
  margin: 0 auto;
  max-width: 1800px;
  width: 93.75%;
  height: 100%;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.header-logo {
  max-width: 108px;
  width: 100%;
  z-index: 999;
}

.header-logo a {
  display: block;
}

.header-logo a:hover {
  opacity: .7;
}

.header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.nav-link:hover {
  opacity: .7;
}

.nav-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-en {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.nav-ja {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  color: #fff;
}

.nav-border {
  position: relative;
}

.nav-border:before,
.nav-border:after {
  content: '';
  width: 1px;
  height: 35px;
  display: inline-block;
  background-color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.nav-border:before {
  left: -2rem;
}

.nav-border:after {
  right: -2rem;
}

.hamburger {
  display: none;
}

.header-sns {
  margin-top: 1.2rem;
}

.sns-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.4rem;
}

.sns-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .6;
}

.sns-item a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sns-item a:hover {
  opacity: 1;
}

.sp-sns-list {
  display: none;
}
.invalid{
  pointer-events: none;
  opacity: .6;
}
/* kv -------------------------------------------------*/
.kv {
  position: relative;
  height: 100vh;
  min-height: 580px;
  max-height: 1080px;
  background-image: url(../images/kv.jpg);
  background-position:center;
  background-repeat:no-repeat ;
  background-size: cover;
}
.kv-content{
  position:absolute;
  top:35%;
  left: 0;
  width: 100%;
}
.kv-img{
  max-width: 755px;
  width: 41.94%;
  min-width: 450px;
}
.kv-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.kv-img-sp{
  display: none;
}
/*  footer-------------------------------------------------*/
.footer {
  padding: 10rem 0 5.4rem;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14.2rem;
}

.footer-logo {
  max-width: 160px;
}

.footer-logo a {
  display: block;
}

.footer-logo a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-logo a:hover,
.footer-item a:hover {
  opacity: .7;
}

.footer-link {
  display: flex;
  gap: 3.5rem;
}

.footer-link .sns-list {
  align-items: flex-start;
}

.footer-list {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  gap: 1rem 5.5rem;
}

.footer-item a {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  display: block;
}

.footer-copy {
  font-size: 1.4rem;
  font-weight: 400;
}
.center{
  text-align: center;
}
/*  sp-------------------------------------------------*/
@media screen and (max-width: 1300px) {

  /* header --------------------------------------------*/
  .header-wrapper {
    height: 64px;
  }

  .header-logo {
    max-width: 77px;
  }

  .hamburger {
    display: flex;
    z-index: 999;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    transition: 0.3s;
    z-index: 10;
    opacity: 0;
    padding: 0 24px;
    display: none;
    overflow-y: scroll;
  }

  .header-nav.active {
    opacity: 1;
    display: block;
  }

  .nav-list {
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: flex-start;
    gap: 4rem;
    padding:3rem 0 8rem;
  }
  .nav-en {
  font-size: 1.7rem;
}

.nav-ja {
  font-size: 1.9rem;
}

  .hamburger {
    display: block;
    position: relative;
    height: 40px;
    width: 40px;
  }

  .hamburger span:nth-child(1),
  .hamburger span:nth-child(2) {
    position: absolute;
    right: 0;
    transition: 0.3s;
    height: 1px;
    width: 36px;
    background: #fff;
  }

  .hamburger span:nth-child(1) {
    top: 8px;
  }

  .hamburger span:nth-child(2) {
    top: 16px;
  }

  .hamburger span:nth-child(3) {
    position: absolute;
    top: 24px;
    left: 2px;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(20deg);
    top: 12px;
  }

  .hamburger.active span:nth-child(2) {
    transform: rotate(-20deg);
    top: 12px;
  }

  .nav-column {
    white-space: nowrap;
  }

  .nav-border:before,
  .nav-border:after {
    content: none;
  }

  .sp-sns-list {
    display: block;
    margin: 2rem auto 0;
  }

  .header-sns {
    display: none;
  }

  body {
    font-size: 1.4rem;
    line-height: 1.71;
  }

  .pc-only {
    display: none !important;
  }

  .sp-only {
    display: block;
  }
.page-width{
  padding: 0 14px;
  width: 100%;
}
/*  footer-------------------------------------------------*/
.footer {
  padding: 3.7rem 0 4rem;
}
.footer-flex {
  flex-direction: column;
  align-items: center;
  gap: 3.6rem;
  margin-bottom: 2.5rem;
}
.footer-list {
  grid-template-rows: repeat(6, auto);
  gap: 1rem 2.2rem;
}
.footer-item a {
  font-size: 1.3rem;
}
.footer-link {
  flex-direction: column;
  align-items: center;
  gap: 4.2rem;
}
.footer-link .sns-list {
  align-items: center;
}
}
@media screen and (max-width: 767px) {
  .kv {
    height: 75vh;
  min-height: 702px;
  background-image: url(../images/kv-sp.jpg);
  background-position:center bottom;
}
.kv-content{
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
}
.kv-img{
  width: 100%;
  margin: 0 auto;
  min-width: auto;
  max-width: 440px;
}
.kv-img-sp{
  display: block;
}
.kv-img-pc{
  display: none;

}
}