@charset "UTF-8";
/* DLIGHT */
.dm{}

:root {
  --font-ja-min: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  --font-ja-go: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  --font-en-optima: OptimaLTPro-Roman;
  --font-en-minion: MinionPro-Regular;
  --font-en-basker-i: BaskervilleMTPro-Italic;
  --font-color-base: #ffffff;
  --font-color-catch: #A17244;
  --color-yel: #B4AF73;
  --color-bg-base: #EDE1D3;
  --fs10: calc(10 / 16 * 1rem);
  --fs11: calc(11 / 16 * 1rem);
  --fs12: calc(12 / 16 * 1rem);
  --fs13: calc(13 / 16 * 1rem);
  --fs14: calc(14 / 16 * 1rem);
  --fs15: calc(15 / 16 * 1rem);
  --fs16: calc(16 / 16 * 1rem);
  --fs18: calc(18 / 16 * 1rem);
  --fs20: calc(20 / 16 * 1rem);
  --fs21: calc(21 / 16 * 1rem);
  --fs24: calc(24 / 16 * 1rem);
  --fs25: calc(25 / 16 * 1rem);
  --fs28: calc(28 / 16 * 1rem);
  --fs30: calc(30 / 16 * 1rem);
  --fs32: calc(32 / 16 * 1rem);
  --fs36: calc(36 / 16 * 1rem);
  --fs40: calc(40 / 16 * 1rem);
  --fs42: calc(42 / 16 * 1rem);
  --fs46: calc(46 / 16 * 1rem);
  --fs61: calc(61 / 16 * 1rem);
  --fs65: calc(65 / 16 * 1rem);
  --fs85: calc(85 / 16 * 1rem);
}

body {
  font-family: var(--font-ja-min);
  font-weight: 400;
  font-style: normal;
  font-size: var(--fs16);
  letter-spacing: 0.01em;
  color: var(--font-color-base);
  line-height: 2;
  background-color: #1C1C1C;
}
body.fixed {
  overflow: hidden;
}

h1,h2,h3,h4,h5,h6,p,ul,li,
figure {
  margin: 0;
  padding: 0;
}
a {
  color: var(--font-color-base);
  text-decoration: none;
  transition: all .8s;
}
a:hover {
  opacity: .7;
}

img {
  width: 100%;
  height: auto;
  vertical-align:top;
}
img[src$=".svg"] {
  filter: blur(0px);
  transform: rotate(0.0001deg)
}

ul,li {
  list-style: none;
}

.visuallyhidden {
  position:absolute;
  clip:rect(1px, 1px, 1px, 1px);
  -webkit-clip-path:inset(0px 0px 99.9% 99.9%);
  clip-path:inset(0px 0px 99.9% 99.9%);
  overflow:hidden;
  height:1px;
  width:1px;
  padding:0;
  border:0
}


/* SMARTPHONE
================================================== */
@media ( max-width: 768px ) {
  
  /* SITE COMMON */
  /* ============================== */
  body {
    font-size: var(--fs13);
  }
  
  .brPc {
    display:  none;
  }
  .brSp {
    display: block;
    font-size: 1px;
  }
  .view-pc {
    display: none;
  }
  .view-sp {
    display: block;
  }

  .ani-fadeup {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: opacity 1s,visibility 1s, transform 1s;
  }
  .ani-fadeup.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
  }

  .parallax-img {
    --parallax-y: -50;
  }
  
  
  /* SITE LAYOUT */
  /* ============================== */
  #wrapper {
    min-width: 320px;
    overflow: hidden;
  }
  #wrapper::after {
    content: '';
    display: block;
    width: 100%;
    height: 30vh;
    background: #000000;
    background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(28, 28, 28, 0) 100%);
    position: fixed;
    bottom: 0;
    left: 0;
    transition: all 1s;
    pointer-events: none;
    z-index: 100;
  }
  body.footer-visible #wrapper::after {
    opacity: 0;
  }
  #page-main {
    position: relative;
    padding: 0 0 120px;
    opacity: 0;
    -webkit-filter: blur(10px);
    transform: scale(1.1);
    transition: all 3s ease-out;
    z-index: 1;
  }
  body.pageloaded #page-main {
    opacity: 1;
    -webkit-filter: blur(0);
    transform: scale(1);
  }
  #pageArtic {
    margin: 0 auto 120px;
  }
  body#index #pageArtic {
    margin: 0;
  }
  
  
  /* SITE HEADER */
  /* ============================== */
  #site-header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 48px;
    padding: 0 5%;
    z-index: 5;
    transition: all .8s ease-in-out;
  }
  body.scrollOn #site-header {
    background-color: rgba(0, 0, 0, 0.64);
  }
  .sh--nav {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 20px;
  }
  .sh--nav-rev {
    font-family: var(--font-en-optima);
    font-size: var(--fs14);
    height: 24px;
    border: 1px solid #FFF;
    order: 3;
  }
  .sh--nav-rev a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 16px;
    line-height: 1;
    color: #FFF;
  }
  .sh--nav-insta {
    width: 26px;
    margin: 0 0 0 auto;
    order: 2;
  }
  .sh--gnav-ol-nav .sh--nav-insta {
    margin: auto;
  }


  /* PAGE HEADER */
  /* ============================== */
  #page-header {
    padding: 180px 0 100px;
    text-align: center;
  }
  .ph--en-tt {
    font-family: var(--font-en-optima);
    font-size: var(--fs40);
    line-height: 0.9;
    margin-bottom: 10px;
  }
  .ph--en-read {
    font-size: var(--fs12);
    font-family: var(--font-en-minion);
    line-height: 1.2;
  }


  /* PAGE TEXT */
  /* ============================== */
  .sec-en-txt {
    margin-bottom: 60px;
  }
  .sec-en-tt {
    font-family: var(--font-en-optima);
    font-size: var(--fs32);
    line-height: 0.9;
    margin-bottom: 10px;
  }
  .sec-en-read {
    font-size: var(--fs12);
    font-family: var(--font-en-minion);
    line-height: 1.2;
  }
  .sec-header {
    margin-bottom: 30px;
  }
  .sec-header h2 {
    font-size: var(--fs18);
    font-weight: normal;
    line-height: 1;
    letter-spacing: 0.15em;
  }

  .sec-en-side {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 14px;
    padding: 30px 0;
    border-top: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
    z-index: 100;
  }
  .sec-en-side span::before,
  .sec-en-side span::after {
    display: block;
    content: '';
    width: 1px;
    height: 20px;
    background-color: #FFF;
    position: absolute;
    left: 50%;
    margin: 0;
  }
  .sec-en-side span::before {
    top: 0;
  }
  .sec-en-side span::after {
    bottom: 0;
  }
  .sec-en-side span {
    font-family: var(--font-en-optima);
    font-size: var(--fs10);
    writing-mode: vertical-rl;
    line-height: 1;
    margin: 0 0 0 1px;
  }
  
  
  /* BUTTON*/
  /* ============================== */
  .btn-normal {
    font-family: var(--font-en-optima);
    font-size: var(--fs16);
    width: 240px;
    height: 48px;
    border: 1px solid #FFF;
  }
  .btn-normal a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    line-height: 1;
    color: #FFF;
  }
  .btn-normal a:hover {
    background-color: rgba(0,0,0,.4);
  }


  /* モーダルボタン */
  .open-btn {
    padding: 6px 20px;
    font-weight: bold;
    border: 1px solid #FFF;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  .open-btn:hover {
    background-color: #000;
  }
  .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .close-btn .material-icons {
    font-size: 36px !important;
    line-height: 1 !important;
  }


  /* MODAL*/
  /* ============================== */
  /* モーダル */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.76);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .modal.active {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    opacity: 1;
    pointer-events: auto;
  }
  .modal-content {
    background: #000;
    padding: 50px 15px 15px;
    width: 90vw;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
  }
  .modal.active .modal-content {
    animation: fadeInScale 0.4s ease forwards;
  }
  @keyframes fadeInScale {
    0% {
      opacity: 0;
      transform: scale(0.8);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }


  /* SITE FOOTER */
  /* ============================== */
  #site-footer {
    position: relative;
    z-index: 2;
  }
  
  .sf--ph {
    margin: 0 auto 72px;
  }
  .sf--ph > div {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 0.52;
    overflow: hidden;
  }
  .sf--ph > div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin: auto;
  }
  
  
  .sf--information {
    font-size: var(--fs14);
  }
  .sf--info-logo {
    width: 120px;
    filter: invert(100%);
    margin: 0 auto 30px;
  }
  .sf--info-acc {
    text-align: center;
    margin-bottom: 40px;
  }
  .sf--info-acc > p {
    line-height: 1;
  }
  .sf--info-acc > p + p {
    margin-top: 15px;
  }
  .sf--info-acc-add {
    line-height: 1.6 !important;
  }
  .sf--info-acc-map a {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sf--info-acc-map a::after {
    font-family: 'Material Icons';
    font-size: var(--fs21);
    content: '\e55f';
    display: inline-block;
  }
  .sf--info-acc-map span {
    border-bottom: 1px solid var(--font-color-base);
  }
  .sf--guide {
    margin-bottom: 20px;
  }
  .sf--guide table {
    border-collapse: collapse;
    margin: auto;
  }
  .sf--guide th,
  .sf--guide td {
    text-align: left;
    line-height: 1;
    padding-bottom: 10px;
  }
  .sf--guide th {
    font-weight: normal;
    text-align-last: justify;
    vertical-align: top;
    white-space: nowrap;
  }
  .sf--guide td span {
    font-size: var(--fs12);
  }
  
  .sf--insta,
  .sf--nav-wrap {
    display: none;
  }
  
  
  /* COPYRIGHT */
  .sf--copyright {
    padding: 20px 0;
  }
  .sf--copyright-txt {
    font-size: var(--fs11);
    text-align: center;
  }
  
}


/* DESKTOP
================================================== */
@media ( min-width: 769px ) {
  
  /* SITE COMMON */
  /* ============================== */
  .brPc {
    display: block;
    font-size: 1px;
  }
  .brSp {
    display: none;
  }
  .view-pc {
    display: block;
  }
  .view-sp {
    display: none;
  }

  .ani-fadeup {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: opacity 1s,visibility 1s, transform 1s;
  }
  .ani-fadeup.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
  }
  
  .parallax-img {
    --parallax-y: -100;
  }
  
  
  /* SITE LAYOUT */
  /* ============================== */
  #wrapper {
    min-width: 1200px;
    overflow: hidden;
  }
  #wrapper::after {
    content: '';
    display: block;
    width: 100%;
    height: 30vh;
    background: #000000;
    background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(28, 28, 28, 0) 100%);
    position: fixed;
    bottom: 0;
    left: 0;
    transition: all 1s;
    pointer-events: none;
    z-index: 100;
  }
  body.footer-visible #wrapper::after {
    opacity: 0;
  }
  #page-main {
    position: relative;
    padding: 0 0 200px;
    opacity: 0;
    -webkit-filter: blur(10px);
    transform: scale(1.1);
    transition: all 3s ease-out;
    z-index: 1;
  }
  body.pageloaded #page-main {
    opacity: 1;
    -webkit-filter: blur(0);
    transform: scale(1);
  }
  #pageArtic {
    margin: 0 auto 120px;
  }
  body#index #pageArtic {
    margin: 0;
  }
  
  
  /* SITE HEADER */
  /* ============================== */
  #site-header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 96px;
    justify-content: flex-end;
    align-items: center;
    padding: 0 80px;
    z-index: 5;
    transition: all .8s ease-in-out;
  }
  .sh--logo {
    visibility: hidden;
    width: 130px;
  }
  .sh--logo img {
    filter: invert(100%);
  }
  #pid-index .sh--logo {
    opacity: 0;
  }
  .sh--nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 36px;
    margin: 0 0 0 auto;
  }
  .sh--nav-rev {
    font-family: var(--font-en-optima);
    font-size: var(--fs21);
    width: 190px;
    height: 42px;
    border: 1px solid #FFF;
  }
  .sh--nav-rev a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    line-height: 1;
    color: #FFF;
  }
  .sh--nav-insta {
    width: 32px;
    margin: auto;
  }
  
  
  /* PAGE HEADER */
  /* ============================== */
  #page-header {
    padding: 284px 0 100px;
    text-align: center;
  }
  .ph--en-tt {
    font-family: var(--font-en-optima);
    font-size: var(--fs85);
    line-height: 0.9;
    margin-bottom: 10px;
  }
  .ph--en-read {
    font-family: var(--font-en-minion);
    line-height: 1.2;
  }


  /* PAGE TEXT */
  /* ============================== */
  .sec-en-txt {
    margin-bottom: 110px;
  }
  .sec-en-tt {
    font-family: var(--font-en-optima);
    font-size: var(--fs65);
    line-height: 0.9;
    margin-bottom: 10px;
  }
  .sec-en-read {
    font-family: var(--font-en-minion);
    line-height: 1.2;
  }
  .sec-header {
    margin-bottom: 50px;
  }
  .sec-header h2 {
    font-size: var(--fs25);
    font-weight: normal;
    line-height: 1;
    letter-spacing: 0.15em;
  }

  .sec-en-side {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    padding: 50px 0;
    border-top: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
    z-index: 100;
  }
  .sec-en-side span::before,
  .sec-en-side span::after {
    display: block;
    content: '';
    width: 1px;
    height: 30px;
    background-color: #FFF;
    position: absolute;
    left: 50%;
    margin: 0;
  }
  .sec-en-side span::before {
    top: 0;
  }
  .sec-en-side span::after {
    bottom: 0;
  }
  .sec-en-side span {
    font-family: var(--font-en-optima);
    font-size: var(--fs16);
    writing-mode: vertical-rl;
    line-height: 1;
    margin: 0;
  }
  
  
  /* BUTTON*/
  /* ============================== */
  .btn-normal {
    font-family: var(--font-en-optima);
    font-size: var(--fs21);
    width: 360px;
    height: 54px;
    border: 1px solid #FFF;
  }
  .btn-normal a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    line-height: 1;
    color: #FFF;
  }
  .btn-normal a:hover {
    background-color: rgba(0,0,0,.4);
  }

  /* MODAL*/
  /* ============================== */
  /* モーダルボタン */
  .open-btn {
    padding: 6px 20px;
    font-weight: bold;
    border: 1px solid #FFF;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  .open-btn:hover {
    background-color: #000;
  }
  .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .close-btn .material-icons {
    font-size: 36px !important;
    line-height: 1 !important;
  }

  /* モーダル */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.76);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .modal.active {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    opacity: 1;
    pointer-events: auto;
  }
  .modal-content {
    background: #000;
    padding: 50px;
    width: max-content;
    max-width: 960px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
  }
  .modal.active .modal-content {
    animation: fadeInScale 0.4s ease forwards;
  }
  @keyframes fadeInScale {
    0% {
      opacity: 0;
      transform: scale(0.8);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* SITE FOOTER */
  /* ============================== */
  #site-footer {
    position: relative;
    z-index: 2;
  }
  
  .sf--ph {
    margin: 0 auto 72px;
  }
  .sf--ph > div {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 0.3;
    overflow: hidden;
  }
  .sf--ph > div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin: auto;
  }
  
  .sf--inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1500px;
    margin: auto;
    padding: 0 50px;
    color: #FFF;
  }
  .sf--inner a {
    color: #FFF;
  }
  
  .sf--information {
    font-size: var(--fs14);
  }
  .sf--info-logo {
    width: 176px;
    filter: invert(100%);
    margin-bottom: 30px;
  }
  .sf--info-acc {
    margin-bottom: 40px;
  }
  .sf--info-acc > p {
    line-height: 1;
  }
  .sf--info-acc > p + p {
    margin-top: 8px;
  }
  .sf--info-acc-add {
    line-height: 1.6 !important;
  }
  .sf--info-acc-map a {
    display: flex;
    align-items: center;
  }
  .sf--info-acc-map a::after {
    font-family: 'Material Icons';
    font-size: var(--fs21);
    content: '\e55f';
    display: inline-block;
  }
  .sf--info-acc-map span {
    border-bottom: 1px solid var(--font-color-base);
  }
  .sf--guide {
    margin-bottom: 20px;
  }
  .sf--guide table {
    border-collapse: collapse;
  }
  .sf--guide th,
  .sf--guide td {
    text-align: left;
    line-height: 1;
    padding-bottom: 10px;
  }
  .sf--guide th {
    text-align-last: justify;
    font-weight: normal;
  }
  
  .sf--insta {
    width: 42px;
  }
  
  .sf--nav-wrap {
    padding-bottom: 70px;
  }
  .sf--nav {
    margin-bottom: 30px;
  }
  .sf--nav li {
    font-family: var(--font-en-optima);
    font-size: var(--fs21);
    line-height: 1;
  }
  .sf--nav li + li {
    margin-top: 12px;
  }
  .sf--nav-rsv {
    font-family: var(--font-en-optima);
    font-size: var(--fs24);
    width: 340px;
    height: 54px;
    border: 1px solid #FFF;
  }
  .sf--nav-rsv a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    line-height: 1;
    color: #FFF;
  }
  
  /* COPYRIGHT */
  .sf--copyright {
    padding: 30px 0;
  }
  .sf--copyright-txt {
    font-size: var(--fs12);
    color: #FFF;
    text-align: center;
  }

}

