@charset "UTF-8";
/*===============================================================

  2015/7/17

===============================================================*/
/* 初期化
----------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  outline: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

input, textarea {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h3, h4, h5, h6, p, li, th, td, dt, dd {
  font-size: 14px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

caption, th, td {
  text-align: left;
  vertical-align: top;
}

img {
  vertical-align: top;
  border: 0;
}

ul, li {
  list-style: none;
}

option {
  padding-right: 1em;
}

address, caption {
  font-style: normal;
  font-weight: normal;
}

a {
  outline: none;
  text-decoration: underline;
}

a:focus {
  outline: none;
}

ul a, li a {
  zoom: 1;
}

/* HTML5
----------------------------------------------------------------*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* iOS3.1のhtml5対応 */
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

body {
  width: 100%;
  color: #333;
}

a {
  color: #36C;
  -webkit-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
  -ms-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
  -moz-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
  -o-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
}

a:hover {
  color: #39F;
}

img {
  width: 100%;
  height: 100%;
}

.cb {
  clear: both;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* スムーススクロール
----------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

/* --------------------------------------------------------------

                        浮かび上がる

----------------------------------------------------------------*/
.floating-element {
  opacity: 0;
  transform: translateY(100px); /* 要素を下に隠す */
  transition: transform 1.5s ease-out, opacity 1.5s ease-out;
  position: relative;
  width: 100%;
}

.visible {
  opacity: 1;
  transform: translateY(0); /* 元の位置に移動 */
}

/* --------------------------------------------------------------

                        コンテンツスタート

----------------------------------------------------------------*/
.sp {
  display: none;
}

.pc {
  display: block;
}

/*----------------------------------------------------------------
----------------------------------------------------------------*
                              ヘッダー
----------------------------------------------------------------*
----------------------------------------------------------------*/
/* ---------------------------------------------------------------
                        mixin
----------------------------------------------------------------*/
@keyframes hurueru {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  25% {
    transform: translate(2px, 2px) rotateZ(1deg);
  }
  50% {
    transform: translate(0px, 2px) rotateZ(0deg);
  }
  75% {
    transform: translate(2px, 0px) rotateZ(-1deg);
  }
  100% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
}
/* --------------------------------------------------------------

                        コンテンツスタート

----------------------------------------------------------------*/
/* ヘッダー
-----------------------------------------------*/
/*  ハンバーガーメニュー
---------------------------------------------- */
.sb-open-right {
  position: fixed;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: #000;
}

.menu-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #000;
  cursor: pointer;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 30px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}

.menu-btn span:before {
  bottom: 12px;
}

.menu-btn span:after {
  top: 12px;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
  transition: all 300ms 0s ease;
}

#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
  transition: all 300ms 0s ease;
}

#menu-btn-check:checked ~ .menu-btn {
  right: 10px;
}

#menu-btn-check {
  display: none;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #000;
}

.menu-content ul {
  padding: 70px 10px 0;
  width: 35%;
  margin-left: 10px;
}

.menu-content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}

.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 18px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}

.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #000;
  transition: all 0.5s; /*アニメーション設定*/
}

#menu-btn-check:checked ~ .menu-content {
  left: 60%; /*メニューを画面内へ*/
}

canvas[data-engine="three.js r165"] {
  z-index: 1 !important; /* 低いz-indexに強制変更 */
}

/*----------------------------------------------------------------
----------------------------------------------------------------*
                              ヘッダー
----------------------------------------------------------------*
----------------------------------------------------------------*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  margin: 15px 0;
}
header .header__inner {
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
}

html, body {
  margin: 0;
  background: black;
}

#beach {
  background-image: linear-gradient(90deg, #ecff35, #8b5cf6);
}

.section {
  height: auto;
  display: grid;
  place-content: center;
  margin-bottom: 60px;
}

.top__wrap {
  height: 100svh;
}

.video__wrap {
  margin-bottom: 120px;
}

h1, h2 {
  font-size: 20vw;
  color: white;
  font-weight: bold;
  text-align: center;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

.tour {
  width: auto;
  margin: 0 auto;
  height: auto;
  padding: 15px;
  margin-top: 30px;
}
.tour ul {
  display: flex;
  justify-content: space-between;
}
.tour ul li {
  width: 300px;
}
.tour ul li a img {
  width: 100%;
  height: auto;
}
.tour ul li a:hover {
  display: inline-block;
  animation: hurueru 0.1s infinite;
  cursor: pointer;
}
.tour ul li p {
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        スライダー
----------------------------------------------------------------*
----------------------------------------------------------------*/
.slider__section {
  position: relative;
  width: 800px;
  height: 450px;
  margin: 0 auto;
}
.slider__section .slider_wrap {
  width: 800px;
  overflow: hidden;
  margin: 0 auto;
  margin-top: 30px;
}
.slider__section .slider_wrap .slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  padding: 0;
  margin: 0;
}

.listen, .sns {
  margin-top: 30px;
}
.listen .special, .sns .special {
  margin-bottom: 30px;
  width: auto;
  margin: 10px auto;
}
.listen .special a, .sns .special a {
  font-size: 50px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  display: block;
  border: 3px solid #fff;
  padding: 20px;
  text-decoration: none;
  border-radius: 10px;
}
.listen .special a:hover, .sns .special a:hover {
  background-color: #fff;
  color: #000;
}
.listen ul, .sns ul {
  display: flex;
  justify-content: center;
}
.listen ul li, .sns ul li {
  margin: 0 10px;
  width: 200px;
  height: auto;
}
.listen ul li a img, .sns ul li a img {
  width: 100%;
  height: auto;
}
.listen ul li a:hover, .sns ul li a:hover {
  display: inline-block;
  animation: hurueru 0.1s infinite;
  cursor: pointer;
}

.contact__wrap p {
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.footer {
  margin-top: 60px;
  padding-bottom: 60px;
}
.footer p {
  color: #fff;
  text-align: center;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 11px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.modal .modal-content {
  background-image: linear-gradient(90deg, #22d3ee, #8b5cf6);
  margin: 0 auto;
  padding: 60px;
  width: 800px;
  margin-top: 100px;
  margin-bottom: 100px;
}
.modal .modal-content p {
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.5em;
  color: #fff;
}
.modal .modal--img img {
  width: 100%;
  height: auto;
}
.modal .modal__link a {
  display: block;
  width: 200px;
  margin: 0 auto;
  margin-top: 30px;
  padding: 15px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border: 2px solid #fff;
}
.modal .modal__link a:hover {
  background-color: #ec5a62;
}
.modal .close p {
  border: 2px solid #fff;
  color: #fff;
  font-size: 14px;
  text-align: center;
}
.modal .close p:hover {
  color: #fff;
  background-color: #ec5a62;
  cursor: pointer;
}/*# sourceMappingURL=common.css.map */