@charset "UTF-8";
/*font*/
/*color*/
/*$c-base: #***;
$c-main: #***;
$c-accent: #***;
$c-primary: #***;
$c-secondary: #***;*/
/*******/
/*breakpoints*/
html {
  font-size: 62.5%;
  scroll-padding-top: 20rem;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 54.6875%;
  }
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 15vw;
  }
}
@media screen and (max-width: 320px) {
  html {
    scroll-padding-top: 7rem;
  }
}

body {
  background-color: #000;
  color: #fff;
  font-size: 1.6rem;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.75;
}

a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  color: #fff;
}

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

li {
  list-style-type: none;
}

/*********ここまでfoundation*********/
.l-header {
  background-color: #000;
  position: fixed;
  width: 100%;
  z-index: 100;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.l-header__inner {
  padding: 3.6rem 0;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding: 1rem 0;
  }
}
.l-header__logo-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .l-header__logo-wrap {
    margin-bottom: 0;
    position: relative;
    z-index: 10;
  }
}
.l-header__logo {
  width: 50%;
  max-width: 250px;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 40%;
    max-width: 400px;
    min-width: 150px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__btnwrap--pc {
    display: none;
  }
}
.l-header__btnwrap--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__btnwrap--sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 2rem 1rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    background-color: #000;
    height: auto;
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 3;
    opacity: 0;
    width: 100%;
    max-width: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (max-width: 767px) {
  .l-header__nav-list {
    display: block;
    border-radius: 0;
    padding-top: 13vw;
  }
}
@media screen and (max-width: 575px) {
  .l-header__nav-list {
    padding-top: 7rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav-item {
    height: auto;
    border-bottom: 1px solid #777;
  }
}
.l-header__nav-item > a {
  display: inline-block;
  height: 100%;
  font-size: 1.8rem;
  font-weight: 400;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header__nav-item > a {
    color: #d1be83;
    display: block;
    height: auto;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
    padding: 1em;
    font-size: 1.8rem;
    position: relative;
  }
}
.l-header__nav-item > a:hover {
  color: #d1be83;
}
.l-header {
  /*===ハンバーガーメニュー===*/
}
.l-header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__hamburger {
    display: block;
    width: 3rem;
    height: 3rem;
    z-index: 10;
    position: absolute;
    top: 2rem;
    right: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__hamburger span {
    position: absolute;
    display: block;
    left: 0;
    height: 1px;
    z-index: 3;
    background-color: #d1be83;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}
@media screen and (max-width: 767px) {
  .l-header__hamburger span:nth-of-type(1) {
    top: 20%;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .l-header__hamburger span:nth-of-type(2) {
    top: 50%;
    width: 100%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .l-header__hamburger span:nth-of-type(3) {
    bottom: 20%;
    width: 100%;
  }
}
.l-header__hamburger.open span:nth-of-type(1) {
  -webkit-transform: rotate(-315deg);
          transform: rotate(-315deg);
  top: 50%;
  width: 100%;
}
.l-header__hamburger.open span:nth-of-type(2) {
  opacity: 0;
}
.l-header__hamburger.open span:nth-of-type(3) {
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
  top: 50%;
}
.l-header__mask {
  display: none;
}

.open .l-header__logo-wrap {
  background-color: #000;
}
.open .l-header__nav {
  right: 0;
  opacity: 1;
}

/*===//ハンバーガーメニュー===*/
/*===//スクロールした時のヘッダーの色===*/
.change-color.l-header {
  background-color: rgba(0, 0, 0, 0.8);
}

body.nav-open {
  overflow: hidden;
  height: 100%;
}

.l-footer {
  border-top: 1px solid #fff;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 3rem 0;
  }
}
.l-footer__inner {
  text-align: center;
}
.l-footer__copy {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    font-size: 1.8rem;
  }
}

/*==========main==========*/
.l-main {
  padding-top: 20rem;
}
@media screen and (max-width: 767px) {
  .l-main {
    padding-top: 20vw;
  }
}
@media screen and (max-width: 320px) {
  .l-main {
    padding-top: 7rem;
  }
}

/*==========//main==========*/
/*==========button==========*/
.c-btn-contact {
  border: 1px solid #d1be83;
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 600;
  padding: 1rem 0.5rem 1rem 8.5rem;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 35rem;
}
@media screen and (max-width: 767px) {
  .c-btn-contact {
    font-size: 1.8rem;
    max-width: 35rem;
    width: 100%;
    padding: 1rem 0.5rem 1rem 4rem;
    text-align: center;
  }
}
.c-btn-contact::before {
  background-image: url(../img/component/btn-contact.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  position: absolute;
  width: 4.6rem;
  aspect-ratio: 4.6/3.2;
  top: 50%;
  left: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-btn-contact::before {
    width: 3rem;
  }
}
.c-btn-contact:hover {
  color: #fff;
  background-color: #d1be83;
}

/*==========非表示==========*/
.c-hidden--xl {
  display: block;
}
@media screen and (max-width: 1279px) {
  .c-hidden--xl {
    display: none;
  }
}

.c-hidden--lg {
  display: block;
}
@media screen and (max-width: 1023px) {
  .c-hidden--lg {
    display: none;
  }
}

.c-hidden--md {
  display: block;
}
@media screen and (max-width: 767px) {
  .c-hidden--md {
    display: none;
  }
}

.c-hidden--sm {
  display: block;
}
@media screen and (max-width: 575px) {
  .c-hidden--sm {
    display: none;
  }
}

.c-hidden--xs {
  display: block;
}
@media screen and (max-width: 320px) {
  .c-hidden--xs {
    display: none;
  }
}

/*==========//非表示==========*/
/*==========表示==========*/
.c-visible--xl {
  display: none;
}
@media screen and (max-width: 1279px) {
  .c-visible--xl {
    display: block;
  }
}

.c-visible--lg {
  display: none;
}
@media screen and (max-width: 1023px) {
  .c-visible--lg {
    display: block;
  }
}

.c-visible--md {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-visible--md {
    display: block;
  }
}

.c-visible--sm {
  display: none;
}
@media screen and (max-width: 575px) {
  .c-visible--sm {
    display: block;
  }
}

.c-visible--xs {
  display: none;
}
@media screen and (max-width: 320px) {
  .c-visible--xs {
    display: block;
  }
}

/*==========//表示==========*/
.c-sec__title {
  display: inline-block;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-sec__title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 320px) {
  .c-sec__title {
    font-size: 2rem;
  }
}
.c-sec__title--ja {
  border-bottom: 1px solid #d1be83;
  border-left: 10px solid #d1be83;
  display: block;
  padding: 0.3em 5rem 0.45em;
}
@media screen and (max-width: 767px) {
  .c-sec__title--ja {
    border-left: 6px solid #d1be83;
    padding: 0.3em 3rem 0.45em;
  }
}
.c-sec__title--en {
  display: block;
  font-size: 36.1111111111%;
  letter-spacing: 0.13em;
}

/*==========definition-list==========*/
.c-definition-list {
  max-width: 100rem;
  margin: 0 auto;
}
.c-definition-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-definition-list__title {
  border-bottom: 1px solid #555;
  padding: 2rem 1rem 2rem 2.8rem;
  width: 16%;
}
@media screen and (max-width: 575px) {
  .c-definition-list__title {
    padding: 1rem 1rem 1rem 1rem;
    width: 30%;
  }
}
.c-definition-list__text {
  border-bottom: 1px solid #777;
  line-height: 2;
  padding: 2rem 1rem 2rem 5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 575px) {
  .c-definition-list__text {
    padding: 1rem 1rem 1rem 1.5rem;
  }
}

/*==========//outline==========*/
/*==========wrapper==========*/
.c-wrapper {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

/*==========//wrapper==========*/
/*==========comingsoon==========*/
.p-comingsoon__inner {
  padding: 5rem 0 0;
  max-width: 1030px;
  height: calc(100vh - 343px);
}
@media screen and (max-width: 767px) {
  .p-comingsoon__inner {
    padding: 1rem 0 0;
    height: calc(100vh - 200px);
  }
}
.p-comingsoon__text {
  margin-top: 5rem;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-comingsoon__text {
    margin-top: 2rem;
    font-size: 1.8rem;
  }
}

/*==========//comingsoon==========*/
/*==========kv==========*/
@media screen and (max-width: 1279px) {
  .p-top-kv {
    height: auto;
  }
}
.p-top-kv__inner {
  padding: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top-kv__inner {
    padding: 1rem;
  }
}
.p-top-kv__img-wrap {
  margin: 0 auto;
  width: 100%;
  max-width: 1920px;
}
.p-top-kv__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/*==========//kv==========*/
/*==========MENU==========*/
.p-top-menu {
  padding: 11rem 0 7rem;
}
@media screen and (max-width: 767px) {
  .p-top-menu {
    padding: 5rem 0 3rem;
  }
}
.p-top-menu__inner {
  max-width: 1030px;
}
.p-top-menu__list-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 5rem;
  padding: 0 5%;
}
@media screen and (max-width: 767px) {
  .p-top-menu__list-wrap {
    padding: 0;
    margin-top: 2rem;
  }
}
.p-top-menu__item {
  font-size: 2.4rem;
  font-weight: 700;
  padding: 2rem 0;
}
@media screen and (max-width: 767px) {
  .p-top-menu__item {
    font-size: 1.8rem;
    padding: 1.5rem 0;
  }
}
@media screen and (max-width: 575px) {
  .p-top-menu__item {
    font-size: 1.5rem;
    padding: 1.5rem 0;
  }
}
.p-top-menu__item a {
  padding: 0.5rem;
  position: relative;
  text-decoration: none;
}
.p-top-menu__item a::after {
  background: #fff;
  bottom: -5px;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 0;
  z-index: 0;
}
.p-top-menu__item a:hover::after {
  width: 100%;
}

/*==========//MENU==========*/
/*==========//banner==========*/
.p-top-banner__inner a {
  display: block;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top-banner__inner a {
    width: 100%;
  }
}
.p-top-banner__inner a:hover {
  opacity: 0.7;
}

/*==========//banner==========*/
/*==========NEWS==========*/
.p-top-news__inner {
  padding: 10rem 0 0;
  max-width: 1030px;
}
@media screen and (max-width: 767px) {
  .p-top-news__inner {
    padding: 5rem 0 0;
  }
}
.p-top-news__list {
  max-width: 84rem;
  margin: 0 auto;
  padding: 8rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__list {
    padding: 2rem 0 5rem;
  }
}
.p-top-news__item {
  border-bottom: 1px solid #777;
}
.p-top-news__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  padding: 1.6rem 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top-news__item a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 1.6rem;
  }
}
.p-top-news__item-date {
  width: 36.9047619048%;
}
@media screen and (max-width: 767px) {
  .p-top-news__item-date {
    font-size: 1.4rem;
  }
}
.p-top-news__item-title {
  font-family: "Noto Sans JP", sans-serif;
}

/*==========//NEWS==========*/
/*==========about==========*/
.p-top-about__inner {
  max-width: 1120px;
}
.p-top-about__item {
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  .p-top-about__item {
    padding: 5rem 0;
  }
}
.p-top-about__title {
  color: #d1be83;
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-top-about__title {
    font-size: 5vw;
  }
}
.p-top-about__title span {
  display: block;
}
.p-top-about__title--right {
  text-align: right;
}
.p-top-about__body {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem 2.7%;
  padding: 7rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-top-about__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 3rem 0 0;
  }
}
.p-top-about__item:nth-of-type(odd) .p-top-about__body {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-top-about__item:nth-of-type(odd) .p-top-about__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top-about__text {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__text {
    font-size: 1.6rem;
  }
}
.p-top-about__imgwrap {
  -ms-flex-preferred-size: 45%;
      flex-basis: 45%;
}

/*==========//about==========*/
/*==========ACCESS==========*/
.p-top-access {
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  .p-top-access {
    padding: 4rem 0;
  }
}
.p-top-access__inner {
  max-width: 1050px;
}
.p-top-access__body {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem 5%;
  padding: 6rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-top-access__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 3rem 0 0;
  }
}
.p-top-access__textwrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-top-access__list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 4.3rem;
}
.p-top-access__label {
  width: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top-access__label {
    width: 3rem;
  }
}
.p-top-access__data {
  font-size: 2rem;
  font-weight: 700;
  padding: 1.2rem 0 1.2rem 4rem;
  width: calc(100% - 4rem);
}
@media screen and (max-width: 767px) {
  .p-top-access__data {
    font-size: 1.6rem;
    padding: 0.6rem 0 0.6rem 2rem;
    width: calc(100% - 3rem);
  }
}
@media screen and (max-width: 767px) {
  .p-top-access__btnwrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-top-access__map {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
@media screen and (max-width: 767px) {
  .p-top-access__map {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-access__map iframe {
    width: 100%;
  }
}

/*==========//ACCESS==========*//*# sourceMappingURL=style.css.map */