@charset "UTF-8";
/*
no name website style

last edit: 2025.5.30
*/
/*フォント設定*/
html {
  font-size: 10px; /* initial 10px */
}

body {
  font-family: "Noto Sans JP", "Yu Gothic", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  /* default font-size 16px */
  font-weight: 400;
  line-height: 1.6;
  color: #2c2c2c;
}

/*----------------------------------------------------------
/* font
-----------------------------------------------------------*/
.txt-barlow {
  font-family: "Barlow", sans-serif;
}

.txt-bodoni {
  font-family: "DM Serif Display", sans-serif;
}

.txt-zenmin {
  font-family: "Zen Old Mincho", sans-serif;
}

/*----------------------------------------------------------
/* define
-----------------------------------------------------------*/
/*----------------------------------------------------------
/* リセット・基本定義
-----------------------------------------------------------*/
/* 段落 */
p {
  margin: 0.5em 0 1.5em 0;
}

/* アンカー */
a,
a:link,
a:visited,
a:active {
  text-decoration: none;
  color: #2c2c2c;
  transition: all 0.2s ease-out;
}

a:active,
a:hover {
  color: #cacaca;
}

a.no-udline {
  text-decoration: none !important;
}

.link-underline {
  text-decoration: underline !important;
}

.link-underline:hover {
  text-decoration: none !important;
}

/*** 詳細以外のページリストスタイルリセット ***/
ul,
ul li,
ol,
ol li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*** イメージ ***/
img {
  max-width: 100%;
  height: auto;
}

/*** 汎用クラス ***/
.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.indent1 {
  padding-left: 1em;
  text-indent: -1em;
}

/*----------------------------------------------------------
/* 汎用エフェクト
-----------------------------------------------------------*/
/** fade in up **/
.delayobj_fadein-up {
  animation-name: obj-fadein_up;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}

.delayobj_fadein-up_deep {
  animation-name: obj-fadein_up_deep;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}

/* animation speed */
.anim_slow {
  animation-duration: 2.4s;
}

.anim_mid {
  animation-duration: 1.8s;
}

.anim_first {
  animation-duration: 1.3s;
}

/* duration */
.duration_sec18 {
  animation-duration: 1.8s;
}

.duration_sec1 {
  animation-duration: 1s;
}

.duration_sec08 {
  animation-duration: 0.8s;
}

.duration_sec06 {
  animation-duration: 0.6s;
}

.duration_sec04 {
  animation-duration: 0.4s;
}

.duration_sec02 {
  animation-duration: 0.2s;
}

/* delay */
.delay_sec40 {
  animation-delay: 4s;
}

.delay_sec33 {
  animation-delay: 3.3s;
}

.delay_sec28 {
  animation-delay: 2.8s;
}

.delay_sec26 {
  animation-delay: 2.6s;
}

.delay_sec20 {
  animation-delay: 2s;
}

.delay_sec16 {
  animation-delay: 1.6s;
}

.delay_sec12 {
  animation-delay: 1.2s;
}

.delay_sec10 {
  animation-delay: 1s;
}

/* animation／ fade in up */
@keyframes obj-fadein_up {
  0% {
    transform: translate(0, 40px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes obj-fadein_up_deep {
  0% {
    transform: translate(0, 80px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes obj-fadein_up_sp-menu {
  0% {
    transform: translate(0, 100%);
    opacity: 0;
  }
  100% {
    transform: translate(0, 50%);
    opacity: 1;
  }
}
/* animation／ fade in */
.delayobj_fadein {
  animation-name: obj-fadein;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}

@keyframes obj-fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/** bounce arrow **/
#scroll-arrow {
  position: absolute;
  z-index: 10;
}

#scroll-arrow > img {
  animation: bouncearrow 1.6s 0.1s ease-out alternate infinite;
}

/* animation／ bouncearrow */
@keyframes bouncearrow {
  0% {
    transform: translate(0px, 0px);
  }
  100% {
    transform: translate(0px, -15px);
  }
}
@media screen and (max-width: 767px) {
  /** bounce arrow **/
  #scroll-arrow {
    bottom: -50px;
    left: 25px;
  }
  #scroll-arrow > img {
    height: 76px;
  }
}
@media print, (min-width: 768px) {
  /** bounce arrow **/
  #scroll-arrow {
    bottom: -100px;
    left: 45px;
  }
  #scroll-arrow > img {
    height: 145px;
  }
}
/*----------------------------------------------------------
/* 基本包含
-----------------------------------------------------------*/
article {
  margin: 0 auto 0;
  width: 100%;
  max-width: 1366px;
}

article > section {
  position: relative;
}

article > section .inner {
  width: 100%;
}

/* 最後の要素の下マージンは0 */
section p:last-of-type,
section div:last-of-type,
section ul:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  article > section {
    padding: 0 25px;
  }
}
/*----------------------------------------------------------
/* 見出し
-----------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  font-weight: bold;
}

h1 {
  text-align: center;
}

h1 img {
  width: 302px;
}

h2 {
  font-family: "DM Serif Display", sans-serif;
  font-size: 2.5rem;
  -webkit-font-smoothing: antialiased; /* フォントスムージングoff */
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  h1 {
    margin: 150px auto 150px;
  }
}
@media print, (min-width: 768px) {
  h1 img {
    width: 550px;
  }
  h2 {
    font-size: 4.2rem;
  }
}
/*----------------------------------------------------------
/* OPENING
-----------------------------------------------------------*/
/* section包含 */
#opening {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 700px;
}

/** opening info **/
.bs-intro,
.bs-info {
  font-family: "Barlow", sans-serif;
  font-size: 1.1rem;
}

.bs-intro {
  margin: 0 0 25px 0;
}

/** site menu **/
.basis-menu > ul > li:nth-of-type(n+2) {
  margin-top: 21px;
}

.basis-menu > ul > li a {
  display: block;
  font-family: "DM Serif Display", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased; /* フォントスムージングoff */
  font-weight: 300;
}

/* プレ公開時のwaitメニュー */
.basis-menu > ul .wait a {
  pointer-events: none;
  color: #cacaca;
}

@media screen and (max-width: 767px) {
  /* 基本情報とメニュー */
  .info-menu-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .info-menu-box .basis-info-box,
  .info-menu-box .basis-menu {
    width: 48%;
  }
  .info-menu-box .basis-menu.delayobj_fadein-up_deep {
    animation-name: obj-fadein_up_sp-menu;
  }
  .info-menu-box .basis-menu ul li {
    text-align: right;
  }
}
@media print, (min-width: 768px) {
  #opening h1 {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, 50%);
  }
  /** opening info **/
  .basis-info-box {
    position: absolute;
    top: 76px;
    left: 45px;
  }
  .bs-intro,
  .bs-info {
    font-size: 1.2rem;
  }
  /** site menu **/
  .basis-menu {
    position: absolute;
    right: 45px;
    bottom: 0;
  }
}
/*----------------------------------------------------------
/* CONCEPT
-----------------------------------------------------------*/
/* section包含 */
#sec_concept {
  padding-top: 38%;
  padding-bottom: 38%;
  background: url("../images/concept-bg.png") left 37% top 0/188% no-repeat;
  clip-path: polygon(0 0, 100% calc(0% + 16vw), 100% 100%, 0 calc(100% - 16vw));
}

#sec_concept p {
  font-family: "Zen Old Mincho", sans-serif;
  line-height: 2.65;
  font-size: 1.3rem;
}

#sec_concept #concept-lead {
  line-height: 2;
  font-size: 2.2rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  /* section包含 */
  #sec_concept {
    margin-bottom: 72px;
  }
  #sec_concept h2 {
    margin-bottom: 50px;
  }
}
@media print, (min-width: 768px) {
  /* 包含 */
  #sec_concept {
    margin-bottom: 258px;
    padding-top: 23%;
    padding-bottom: 38%;
    background: url("../images/concept-bg.png") 100% 82%/cover no-repeat;
    clip-path: polygon(0 0, 100% calc(0% + 16vw), 100% 100%, 0 calc(100% - 16vw));
  }
  #sec_concept .inner {
    padding-left: 16%;
  }
  #sec_concept h2 {
    margin-bottom: 90px;
  }
  #sec_concept #concept-lead {
    line-height: 2;
    font-size: 3.8rem;
  }
  #sec_concept p {
    line-height: 2.65;
    font-size: 2.2rem;
  }
}
/*----------------------------------------------------------
/* OPEN ANNOUNCE
-----------------------------------------------------------*/
/* section包含 */
#sec_open-announce {
  margin-bottom: 200px;
}

.open-date {
  margin: 0 0 0 0;
  line-height: 1.2;
  text-align: center;
  font-family: "DM Serif Display", sans-serif;
  font-size: 3rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased; /* フォントスムージングoff */
  font-weight: 300;
}

/** INSTAGRAM LINE 共通 **/
.sns-info-box p {
  text-align: center;
}

.sns-info-box .sns-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.sns-info-box .sns-intro > span {
  display: block;
  width: 219px;
  font-family: "Zen Old Mincho", sans-serif;
  font-weight: bold;
  border-right: solid 1px #707070;
  border-left: solid 1px #707070;
}

.sns-info-box .sns-links img {
  width: 32px;
}

@media screen and (max-width: 767px) {
  #sec_open-announce .inner > div:nth-of-type(n+2) {
    margin-top: 40px;
  }
}
@media print, (min-width: 768px) {
  /* section包含 */
  #sec_open-announce {
    margin-bottom: 258px;
  }
  .open-date {
    font-size: 5.3rem;
  }
  #sec_open-announce .inner > div:nth-of-type(n+2) {
    margin-top: 75px;
  }
  .sns-info-box .sns-intro {
    margin: 0 auto 30px;
  }
  .sns-info-box .sns-intro > span {
    width: 551px;
    font-size: 3rem;
  }
  .sns-info-box .sns-links img {
    width: 62px;
  }
}
/*----------------------------------------------------------
/* access
-----------------------------------------------------------*/
/* section包含 */
#sec_access {
  margin-bottom: 88px;
}

#sec_access h2 {
  width: 100%;
}

.map-box img {
  width: 100%;
}

/* ボタン */
.gglmapbtn > a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  width: 188px;
  height: 43px;
  font-family: "Barlow", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  background-color: #2c2c2c;
  border-radius: 6px;
  transition: all 0.2s ease-out;
}

.gglmapbtn > a:hover {
  background-color: #cacaca;
}

.access-infobox > p {
  font-size: 1.4rem;
}

.access-infobox .address {
  margin-bottom: 35px;
}

.access-infobox .guide {
  margin-bottom: 50px;
}

.access-infobox .open-time > span {
  display: block;
  margin: 0 auto 10px;
  font-family: "Barlow", sans-serif;
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  #sec_access h2 {
    margin-bottom: 44px;
  }
  .map-box {
    margin: 0 0 70px 0;
  }
  .access-infobox > p {
    text-align: center;
  }
}
@media print, (min-width: 768px) {
  /* section包含 */
  #sec_access {
    margin-bottom: 344px;
  }
  #sec_access .inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    margin: 0 auto 0;
    width: 80%;
  }
  #sec_access h2 {
    margin-bottom: 76px;
  }
  /* map */
  .map-box {
    margin-right: 30px;
    width: 43.7%;
  }
  /* access info */
  .access-infobox {
    min-width: 250px;
  }
  /* ボタン */
  .access-infobox .gglmapbtn {
    margin-bottom: 57px;
  }
  .gglmapbtn > a {
    width: 250px;
    height: 57px;
    font-size: 3rem;
  }
  .access-infobox .address,
  .access-infobox .guide,
  .access-infobox .open-time {
    line-height: 2.4;
    font-size: 1.8rem;
  }
  .access-infobox .address {
    margin-bottom: 45px;
  }
  .access-infobox .guide {
    margin-bottom: 80px;
  }
  .access-infobox .open-time > span {
    font-size: 2.8rem;
  }
}
@media print, (min-width: 992px) {
  /* map */
  .map-box {
    margin-right: 60px;
  }
  /* access info */
  .access-infobox {
    min-width: 320px;
  }
}
/*----------------------------------------------------------
/* footer
-----------------------------------------------------------*/
footer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  margin: 0 auto 0;
  font-size: 1rem;
  color: #fff;
  background-color: #2c2c2c;
}

@media print, (min-width: 768px) {
  footer {
    font-size: 1.8rem;
  }
}/*# sourceMappingURL=style.css.map */