@charset "utf-8";
/* ---------------------------------------------------------------------------------
Copyright © 2024 The CLUB

HTML CSS Selectors style

$Revision: 1.0 $
--------------------------------------------------------------------------------- */

/*---------------------------------------------------------------------------------
初期設定
--------------------------------------------------------------------------------- */
:root {
  --font-jp: "Shippori Mincho B1", serif;
  --font-en: "proforma", serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
body {
  margin: 0px;
  padding: 0px;
  background-color: #040605;
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  color: #fff;
  -webkit-text-size-adjust: none; /* フォントサイズ自動調整 */
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

.jp {
  font-family: var(--font-jp);
}
.en {
  font-family: var(--font-en);
}

h1,h2,h3,h4,h5,h6,
ul,ol,dl,
p,li,dt,dd,th,td,em,strong,blockquote {
  margin: 0px;
  padding: 0px;
  border: 0;
  vertical-align: baseline;
  font-weight: inherit;
}
em {
  font-style: normal;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
  margin: 0px;
  padding: 0px;
}
p,dd,li {
  list-style: none;
}
em,strong {
  font-weight: bold;
}
table {
  border-collapse: collapse;
}

img {
  vertical-align:top;
  max-width: 100%;
  height: auto;
}
.fit-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a img {
  border: none;
}
a:link,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
  outline: none;
}
a {
	transition: 0.2s ease-in-out;
}
a:hover {
  opacity: 0.5;
}

.none {
  display: none!important;
}

.nolink {
  pointer-events: none;
}

.fit-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

.pc {
  display: block;
}
br.pc,
span.pc,
img.pc {
  display: inline;
}
.sp {
  display: none!important;
}
.anchor {
  display: block;
  width: 100%;
  height: 0;
  position: relative;
  top: 0px;
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none!important;
  }
  .sp {
    display: block!important;
  }
  br.sp,
  span.sp,
  img.sp {
    display: inline!important;
  }
  a:hover {
    opacity: 1;
  }
  .anchor {
    top: -20px;
  }
}


.main-column {
  width: 550px;
  background-color: #040605;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.main-column article {
  background-color: #040605;
  position: relative;
  z-index: 20;
}
.sec-ttl {
  margin-bottom: 56px;
  font-family: var(--font-en);
  font-size: 46px;
  line-height: 1;
  text-align: center;
}
.pc-side-left,
.pc-side-right {
  width: calc(50% - 275px);
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 1;
}
.pc-side-left div,
.pc-side-right div {
  height: 100%;
}
.pc-side-left::before,
.pc-side-right::before {
  width: 100%;
  height: 197px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 19;
  content:"";
}
.pc-side-left::after,
.pc-side-right::after {
  display: block;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  background-color: #000;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  content:"";
}
.pc-side-left {
  left: 0;
}
.pc-side-right {
  right: 0;
}
@media only screen and (max-width: 768px) {
  .pc-side-left,
  .pc-side-right {
    display: none;
  }
  .main-column {
    width: 100%;
    margin-left: 0;
  }
}

/*---------------------------------------------------------------------------------
エフェクト
--------------------------------------------------------------------------------- */

/*ファーストビューエフェクト*/
.fv-effect {
  opacity: 0;
  transition : all 500ms 300ms ease-out;
}
.fv .fv-effect {
  opacity: 1;
  transform: translate(0,0px)!important;
}

/* 画面外にいる状態 */
.effect,.fade-effect,.d-effect {
  opacity : 0;
  transform: translate(0,0);
}
.no-fade {
  opacity: 1.0;
  transform: translate(0,0px)!important;
}
.fade-drop {
  transform: translate(0,-50px);
}
.fade-rize {
  transform: translate(0,50px);
}
.fade-left-in {
  transform: translate(-50px,0);
}
.fade-right-in {
  transform: translate(50px,0);
}
.fade-in {
  transform: translate(0,0);
}


/* 画面内に入った状態 */
.effect-on {
  opacity: 1.0;
  transform: translate(0,0px)!important;
  transition : all 300ms 300ms ease-out;
}
.effect-on .fade-img-in {
  border-radius: 0 0 0 0;
}
.effect-on .fade-img-in img {
  transform: scale(1);
}

/*アニメーション*/
.delay0.effect-on {
  transition-delay:0ms;
}

/*--------------------------------------------------------------------------------
header
--------------------------------------------------------------------------------- */
.lang-btn {
  font-family: Arial, Helvetica, "sans-serif";
  font-size: 14px;
  line-height: 1;
  position: fixed;
  top: 57px;
	right: 50%;
  margin-right: -190px;
  z-index:212;
}
#toggle_menu {
	width: 48px;
	height: 48px;
  background: url("../img/h_menu-open.svg") no-repeat;
	position: fixed;
	top: 40px;
	right: 50%;
  margin-right: -253px;
	z-index:212;
	cursor: pointer;
}
#toggle_menu.menuclick {
  background: url("../img/h_menu-close.svg") no-repeat;
}
#toggle_menu:hover {
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	filter: alpha(opacity=50);
	-moz-opacity:0.5;
	opacity:0.5;
}

#nav-background {
	position: fixed;
	width: 550px;
	height: 100%;
	top: 0;
  right: 0;
	left: 0;
  margin: 0 auto;
	z-index:211;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0.5s, visibility 0s 0.3s;
	transition: opacity 0.5s, visibility 0s 0.3s;
  overflow: hidden;
}
.open #nav-background{
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
.nav-background-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  flex-direction: column;
	width: 100%;
	height: 100%;
  padding-bottom: 11vh;
  background-color: #040605;
  line-height: 1;
	position: absolute;
  top: 0;
  right: -550px;
  transition : all 300ms 0ms ease-out;
}
.open .nav-background-inner {
  right: 0;
}

.nav-background-inner-list {
  width: 82%;
  max-width: 350px;
  padding: 0 24px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  margin: 0 auto 56px;
}
.nav-background-inner-list li {
  margin-bottom: 40px;
}
.nav-background-inner-list a {
  font-family: var(--font-en);
  font-size: 32px;
}

.nav-background-inner-sns {
  display: flex;
  width: 82%;
  max-width: 350px;
  padding: 0 24px;
  margin: 0 auto;
}
.nav-background-inner-sns a {
  width: 32px;
  margin: 0 12px;
}
.nav-background-inner-copyright {
  width: fit-content;
  font-family: var(--font-en);
  font-size: 14px;
  line-height: 1;
  position: absolute;
  right: 0;
  bottom: 40px;
  left: 0;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .lang-btn {
    right: 80px;
    margin-right: 0;
  }
  #toggle_menu {
    width: 48px;
    height: 48px;
    background: url("../img/h_menu-open.svg") no-repeat;
    position: fixed;
    top: 40px;
    right: 22px;
    margin-right: 0;
    z-index:212;
    cursor: pointer;
  }
  #nav-background {
    width: 100%;
  }
}

/*--------------------------------------------------------------------------------
fv
--------------------------------------------------------------------------------- */
.fv-area {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 30;
}
.fv-area::after {
  width: 100%;
  height: 197px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  content:"";
}
.fv-area-ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
  z-index: 10;
}
.fv-area-ttl img {
  width: 284px;
}

.fv-slide {
  width: 100%;
  height: 100%;
}
.fv-slide div {
  height: 100%;
}
.fv-slide-item {
  position: relative;
}


/*--------------------------------------------------------------------------------
About
--------------------------------------------------------------------------------- */
.about {
  padding: 90px 0 0;
  background-color: #040605;
}
.about-sep {
  height: 644px;
}
.about-bg {
  width: 548px;
  height: 100%;
  background:url("../img/bg_01.jpg") no-repeat center;
  background-size: 100% auto;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 1;
  transform: translate(0,0px)!important;
}
.effect-on.about-bg {
  transition : all 0ms 0ms ease-out;
}

.about-mv {
  margin-bottom: 80px;
}
.about-inner {
  width: 81%;
  max-width: 350px;
  margin: 0 auto;
}
.about-ttl {
  padding-bottom: 40px;
}
.about-ttl.jp {
  font-size: 22px;
  line-height: 1.45;
}
.about-ttl.en {
  font-size: 32px;
  line-height: 1.2;
}
.about-txt {
  padding-bottom: 100px;
}
.about-txt.jp {
  font-size: 15px;
  line-height: 2.133;
}
.about-txt.en {
  font-size: 20px;
  line-height: 1.2;
}

.about-img01 {
  width: 360px;
  margin: 0 0 80px auto;
}
.about-img02 {
  width: 300px;
  margin-bottom: 80px;
}
.about-img03 {
  width: 300px;
  margin: 0 0 80px auto;
}

@media only screen and (max-width: 768px) {
  .about-bg {
    width: 100%;
  }
  .about-img01 {
    width: 70%;
  }
  .about-img02 {
    width: 58%;
  }
  .about-img03 {
    width: 55%;
  }
}

/*--------------------------------------------------------------------------------
Access
--------------------------------------------------------------------------------- */
.access {
  padding: 100px 0 0;
}
.access .sec-ttl {
  margin-bottom: 24px;
}
.access__add {
  margin-bottom: 48px;
}
.access__add.jp {
  font-size: 16px;
  text-align: center;
}
.access__add.en {
  font-size: 16px;
  text-align: center;
}

.access-rute {
  width: 81%;
  max-width: 350px;
  padding-left: 44px;
  margin: 0 auto 60px;
}
.access-rute dt {
  padding-bottom: 24px;
  position: relative;
}
.access-rute dt::before {
  width: 32px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 6px;
  left: -44px;
  content:"";
}
.access-rute dt.en::before {
  top: 13px;
}
.access-rute dt.jp {
  font-size: 14px;
  line-height: 1;
}
.access-rute dt.en {
  font-size: 16px;
  padding-bottom: 30px;
}
.access-rute dd {
  padding-bottom: 40px;
}
.access-rute dd.jp {
  font-size: 16px;
  line-height: 1.5;
}
.access-rute dd.jp span {
  font-size: 14px;
}
.access-rute dd.en {
  font-size: 20px;
  line-height: 1.5;
}
.access-rute dd.en span {
  font-size: 16px;
}
.access-map {
  width: 100%;
  height: 430px;
}
.access-map iframe {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 768px) {
}


/*--------------------------------------------------------------------------------
Guidance
--------------------------------------------------------------------------------- */
.guidance {
  padding: 80px 0 45px;
}
.guidance-inner {
  width: 81%;
  max-width: 350px;
  margin: 0 auto;
}
.guidance-ttl {
  padding-bottom: 15px;
  font-size: 24px;
  line-height: 1;
}

.guidance-txt {
  padding-bottom: 55px;
  font-size: 16px;
}
.guidance-txt.jp {}
.guidance-txt.en {}
.guidance dl {
  padding: 0 0 55px 44px;
}
.guidance dl dt {
  padding-bottom: 5px;
  font-size: 14px;
  line-height: 1;
  position: relative;
}
.guidance dl dt::before {
  width: 32px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 6px;
  left: -44px;
  content:"";
}
.guidance dl dt::before {
  top: 12px;
}
.guidance dl dt.jp {
  font-size: 16px;
  line-height: 1.5;
}
.guidance dl dt.en {
  font-size: 18px;
  line-height: 1.5;
}
.guidance dl dd {
  padding-bottom: 30px;

}
.guidance dl dd.jp {
  font-size: 16px;
  line-height: 1.5;
}
.guidance dl dd.en {
  font-size: 18px;
  line-height: 1.5;
}

.guidance-sep {
  height: 644px;
}
.guidance-bg {
  width: 548px;
  height: 100%;
  background:url("../img/bg_02.jpg") no-repeat center;
  background-size: 100% auto;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 1;
  opacity: 0;
}
.effect-on.guidance-bg {
  opacity: 1;
  transition : all 0ms 0ms ease-out;
}

@media only screen and (max-width: 768px) {
  .guidance-bg {
    width: 100%;
  }
}


/*--------------------------------------------------------------------------------
Menu
--------------------------------------------------------------------------------- */
.menu {
  padding: 100px 0 70px;
}
.menu-slide {
  margin-bottom: 80px;
}
.slideGuide {
  height: 160px;
  overflow:hidden;
}
.slideCell {
  width: 215px;
  height: 160px;
  float: left;
}

.menu-category {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.menu-category li {
  padding-bottom: 10px;
  margin: 0 20px;
  font-family: var(--font-en);
  font-size: 22px;
  line-height: 1;
  position: relative;
  cursor: pointer;
}
.menu-category li.select::after {
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  content:"";
}

.menu-detail {
  width: 81%;
  max-width: 350px;
  margin: 0 auto;
}
/*.menu-detail-list {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.2;
}
.menu-detail-list dt {
  width: calc(100% - 100px);
  padding-bottom: 30px;
}
.menu-detail-list.jp dt {
  font-size: 20px;
}
.menu-detail-list.en dt {
  font-size: 20px;
}
.menu-detail-list dd {
  width: 94px;
  padding-bottom: 30px;
  text-align: right;
}
.menu-detail-list.jp dd {
  font-size: 20px;
}
.menu-detail-list.en dd {
  font-size: 20px;
}*/
.menu-detail-list {
  padding-left: 44px;
  line-height: 1.2;
  font-size: 20px;
}
.menu-detail-list > dt {
  padding: 0 0 15px 0;
  position: relative;
}
.menu-detail-list > dt::before {
  width: 32px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 12px;
  left: -44px;
  content:"";
}
.menu-detail-list dd {
  padding-bottom: 20px;
}
.menu-detail-list ul {
  padding-top: 5px;
}
.menu-detail-list li {
  padding-bottom: 20px;
}

.menu-detail-list li.jp,
.menu-detail-list li.en {
  font-size: 20px;
}
.menu-detail-list li.small {
  font-size: 16px;
}
.menu-detail-list dl dt {
  padding-bottom: 5px;
  font-size: 16px;
  font-weight: 700;
}
.menu-detail-list dl dd {
  font-size: 14px;
}


@media only screen and (max-width: 768px) {
}


/*--------------------------------------------------------------------------------
Contact
--------------------------------------------------------------------------------- */
.contact {
  padding: 30px 0 70px;
}
.contact-inner {
  width: 81%;
  max-width: 350px;
  margin: 0 auto;
}
.contact__tel {
  margin-bottom: 48px;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
}
.contact__tel a {
  font-size: 30px;
}
.contact__btn {
  margin-bottom: 48px;
}
.contact__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 100%;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.5);
  font-size: 20px;
  line-height: 1;
}
.contact__note {
  background-color: #202020;
  padding: 24px;
  font-size: 16px;
  line-height: 1.75;
  text-align: center;
}

@media only screen and (max-width: 768px) {
}


/*--------------------------------------------------------------------------------
footer
--------------------------------------------------------------------------------- */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.5);
  background-color: #040605;
  position: relative;
  z-index: 20;
}
#page-top {
  width: 56px;
  background-color: #000;
  position: absolute;
  top: -28px;
  right: 24px;
  z-index: 3;
}
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 100%;
  height: 56px;
  border: 1px solid rgba(255,255,255,0.5);
  font-family: var(--font-en);
  font-size: 16px;
  line-height: 1;
  text-align: center;
}

.footer .copyright {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}
.footer-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
}
.footer-sns a {
  width: 24px;
  margin: 0 7px;
}

@media only screen and (max-width: 768px) {
}

/*--------------------------------------------------------------------------------
JS
--------------------------------------------------------------------------------- */

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-slider div { transition: none; }
.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;

    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

.slick-prev,
.slick-next {
  width: 43px;
	height: 43px;
	position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
	background-color:  transparent;
	border: none;
	cursor: pointer;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
	z-index: 20;
}

.slick-prev {
	background-image: url("../img/common/btn_slide_prev.svg");
  left: 0;
}
.slick-next {
	background-image: url("../img/common/btn_slide_next.svg");
  right: 0;
}
.slick-prev:before,
.slick-next:before {
  display: none !important;
}
.slick-prev:active,
.slick-next:active {
  border: none;
}
.slick-disabled {
  display: none !important;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  opacity:0.5;

}
/* Dots */
.slick-dotted.slick-slider {
}
.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  position: absolute;
  bottom: -40px;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  z-index: 20;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 8px!important;
  height: 8px!important;
  margin: 0 7px!important;
  padding: 0!important;
  cursor: pointer;
  text-align: center;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 8px;
  height: 8px;
  padding: 0px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  box-sizing: border-box;
  font-family: 'slick';
  font-size: 6px;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  content: '';
  text-align: center;
  background-color: #1f1f1f;
  border: 1px solid #79736D;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  background-color: #79736D;
  border: 1px solid #79736D;
}

