@charset "UTF-8";
/*--------------------------------------*
 * foundation
 *--------------------------------------*/
/*-----------------------
import.scss
-----------------------*/
/*-----------------------
mixin
-----------------------*/
/*mediaquery*/
/*-----------------------
01.reset
-----------------------*/
/*reset --Don't use global reset!--*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
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;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-weight: normal;
}
table caption,
table th,
table td {
  text-align: left;
  vertical-align: middle;
}
table caption,
table th {
  font-weight: 300;
}
table td {
  font-weight: 200;
}

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

a {
  display: inline-block;
  color: #000;
  text-decoration: none;
}
a:link {
  color: #000;
}
a:active {
  color: #000;
}
a:visited {
  color: #000;
}
a:hover {
  cursor: pointer;
}

a img {
  border: none;
}

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

ul {
  list-style: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  display: block;
}

input,
button,
textarea,
select {
  margin: 0;
  border: none;
  outline: none;
  letter-spacing: 0.1em;
}

img.cover,
video.cover {
  -o-object-fit: cover;
     object-fit: cover;
}

h1 {
  font-weight: normal;
}

h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

p {
  margin: 0;
}

:-moz-placeholder-shown {
  color: #8a8a8a;
}

:placeholder-shown {
  color: #8a8a8a;
}

::-webkit-input-placeholder {
  color: #8a8a8a;
}

:-moz-placeholder {
  color: #8a8a8a;
  opacity: 1;
}

::-moz-placeholder {
  color: #8a8a8a;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #8a8a8a;
}

*:focus {
  outline: none;
}

.pc {
  display: block;
}
@media (max-width: 750px) {
  .pc {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .pc {
    display: none;
  }
}

.pc-tab {
  display: block;
}
@media (max-width: 750px) {
  .pc-tab {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .pc-tab {
    display: block;
  }
}

.tab {
  display: none;
}
@media (max-width: 750px) {
  .tab {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .tab {
    display: block;
  }
}

.tab-sp {
  display: none;
}
@media (max-width: 750px) {
  .tab-sp {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .tab-sp {
    display: block;
  }
}

.sp {
  display: none;
}
@media (max-width: 750px) {
  .sp {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .sp {
    display: none;
  }
}

.fL {
  float: left;
}

.fR {
  float: right;
}

.flex {
  display: flex;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.bold {
  font-weight: bold;
}

.is-fixed {
  display: none;
}

.mT20 {
  margin-top: 20px;
}

.mT25 {
  margin-top: 25px;
}

.mT30 {
  margin-top: 30px;
}

.mT40 {
  margin-top: 40px;
}

.mT60 {
  margin-top: 60px;
}

/*--------------------------------------*
 * foundation
 *--------------------------------------*/
/*-----------------------
style.scss
-----------------------*/
html {
  font-size: 62.5%;
  line-height: 1;
}

body {
  position: relative;
  color: #fff;
  font-size: clamp(16px, 16px + 0 * (100vw - 767px) / 673, 16px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
  margin: 0 auto;
  overflow-x: visible;
  background: #000;
}

.layout {
  display: flex;
  height: 100vh;
}
.layout .layout__left,
.layout .layout__right {
  width: calc((100% - 500px) / 2);
  flex-shrink: 0;
}
.layout .layout__main {
  max-width: 500px;
  margin: 0 auto;
  flex-grow: 1;
  overflow-y: auto;
  background: #fff;
  scrollbar-width: none; /* Firefox */
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  -ms-overflow-style: none; /* IE/Edge */
}
.layout .layout__main::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}
@media (min-width: 768px) and (max-width: 1024px) {
  .layout .layout__main {
    max-width: inherit;
  }
}
@media (max-width: 750px) {
  .layout .layout__main {
    max-width: inherit;
  }
}

.layout__left {
  background: url(../img/layout__left.jpg) no-repeat 50% 50%/cover;
  position: relative;
  width: 100%;
  height: auto;
}
.layout__left .btn-box {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 15%;
  text-align: center;
}
.layout__left .btn-box .deco {
  margin: 30px auto 0;
  font-weight: 900;
  font-size: clamp(20px, 20px + 0 * (100vw - 767px) / 673, 20px);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  text-shadow: 0px 0px 10px #55bdfd;
}
.layout__left .btn-box .btn {
  margin: 10px auto 0;
  text-align: center;
  width: 90%;
}

main {
  position: relative;
}

.inner {
  width: 92%;
  max-width: 480px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .inner {
    max-width: inherit;
  }
}

a:hover {
  opacity: 0.7;
}

/* ハンバーガーメニューアイコン */
.hamburger {
  width: 60px;
  height: 60px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 9px;
  z-index: 1001;
  position: fixed;
  border: 1px solid #fff;
  background: #121320;
  border-radius: 50%;
  top: 3%;
  left: 5%;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 40%;
  background-color: #fff;
  border-radius: 2px;
  transition: 0.3s ease;
  margin-left: 25%;
}
.hamburger span:nth-child(2) {
  width: 30%;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 10px);
  width: 60%;
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -11px);
  width: 60%;
}

/* ナビゲーションメニュー */
.global-nav {
  padding: 25% 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .global-nav {
    position: fixed; /* ← これ */
    top: 0;
    right: -100%; /* 初期は非表示 */
    width: 100%;
    max-width: 375px;
    height: 100vh;
    overflow-y: auto;
    background: #121320;
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 80px;
  }
  .global-nav#nav-pc {
    display: none;
  }
  .global-nav.open {
    right: 0;
  }
}
@media (max-width: 750px) {
  .global-nav {
    position: fixed; /* ← これ */
    top: 0;
    right: -100%; /* 初期は非表示 */
    width: 100%;
    max-width: 50%;
    height: 100vh;
    overflow-y: auto;
    background: #121320;
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 80px;
  }
  .global-nav#nav-pc {
    display: none;
  }
  .global-nav.open {
    right: 0;
    width: 100%;
    max-width: 60%;
  }
}
.global-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.global-nav ul li {
  margin-bottom: 1em;
  text-align: center;
}
.global-nav ul li:first-child a img {
  max-width: 130px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .global-nav ul li:last-child {
    padding-bottom: 200px;
  }
}
.global-nav ul li:last-child a img {
  max-width: 75px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .global-nav ul li:last-child a img {
    max-width: 50px;
  }
}
.global-nav ul li.flex {
  margin-top: 50px;
  gap: 30px;
  justify-content: center;
}
@media (max-width: 750px) {
  .global-nav ul li.flex {
    gap: 10px;
  }
}
.global-nav ul li a {
  color: #fff;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: clamp(22px, 22px + 0 * (100vw - 767px) / 673, 22px);
}

.fixed {
  display: none;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .fixed {
    display: block;
    position: fixed;
    z-index: 999;
    right: 0;
    bottom: 5%;
    max-width: 200px;
  }
}
@media (max-width: 750px) {
  .fixed {
    display: block;
    position: fixed;
    z-index: 999;
    right: 0;
    bottom: 5%;
    max-width: 100px;
  }
}

.mainv img {
  width: 100%;
}

#concept {
  padding: 40px 0 60px;
  background: #121320;
}
#concept h2 {
  font-size: clamp(20px, 20px + 0 * (100vw - 767px) / 673, 20px);
  font-family: "Noto Sans JP";
  font-weight: bold;
  text-align: center;
  color: #fff;
  text-shadow: 0px 0px 30px #55bdfd;
  margin: 60px auto 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #concept h2 {
    margin: 0;
    font-size: 40px;
  }
}
@media (max-width: 750px) {
  #concept h2 {
    margin: 0;
  }
}
#concept .txt {
  line-height: 2;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #concept .txt {
    font-size: 30px;
  }
}
#concept h3 {
  max-width: 274px;
  margin: 25px auto;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #concept h3 {
    max-width: 548px;
    margin: 50px auto;
  }
}

#menu {
  background: #061e3e;
  padding: 50px 0 30px;
}
#menu h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(30px, 30px + 0 * (100vw - 767px) / 673, 30px);
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #menu h2 {
    font-size: 60px;
  }
}
#menu .box {
  margin: 40px auto 0;
  padding-bottom: 25px;
  border-bottom: 1px solid #4b556b;
  width: 80%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #menu .box {
    width: 100%;
  }
}
@media (max-width: 750px) {
  #menu .box {
    width: 100%;
  }
}
#menu .box:not(:nth-of-type(n + 2)) {
  margin-top: 25px;
}
#menu .box:last-of-type {
  border: none;
}
#menu .box h3 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(21px, 21px + 0 * (100vw - 767px) / 673, 21px);
}
@media (min-width: 768px) and (max-width: 1024px) {
  #menu .box h3 {
    font-size: 42px;
  }
}
#menu .box h3 img {
  max-width: 100px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #menu .box h3 img {
    max-width: 200px;
  }
}
#menu .box h4 {
  margin: 20px auto 15px;
  font-size: clamp(18px, 18px + 0 * (100vw - 767px) / 673, 18px);
  font-weight: 500;
  text-align: left;
  text-shadow: 0px 0px 10px #55bdfd;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #menu .box h4 {
    font-size: 36px;
  }
}
#menu .box .txt {
  letter-spacing: 0.05em;
  font-family: "Poppins", sans-serif;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #menu .box .txt {
    font-size: 32px;
  }
}
#menu .box .btn {
  text-align: center;
  margin: 20px auto 0;
}
#menu .box .btn a {
  color: #fff;
  font-family: "Poppins", sans-serif;
  padding: 6px 51px;
  border: 1px solid #fff;
  border-radius: 30px;
}

.cta {
  background: #061e3e;
  padding: 0 0 50px;
}
.cta h2 {
  font-size: clamp(15px, 15px + 0 * (100vw - 767px) / 673, 15px);
  text-align: center;
  font-weight: 500;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .cta h2 {
    font-size: 30px;
  }
}
.cta .flex-box {
  margin: 10px auto 0;
  display: flex;
  gap: 7px;
}

#access {
  background: #17013c;
  padding: 50px 0 60px;
}
#access h2 {
  font-size: clamp(30px, 30px + 0 * (100vw - 767px) / 673, 30px);
  text-align: center;
  font-family: "Poppins", sans-serif;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #access h2 {
    font-size: 60px;
  }
}
#access .map {
  margin: 40px auto 0;
}
#access .map iframe {
  width: 100%;
  max-width: inherit;
  max-height: 272px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #access .map iframe {
    max-width: inherit;
    max-height: inherit;
    width: 100%;
  }
}
#access .add {
  margin: 20px auto 0;
  text-align: center;
  font-size: clamp(15px, 15px + 0 * (100vw - 767px) / 673, 15px);
}
@media (min-width: 768px) and (max-width: 1024px) {
  #access .add {
    font-size: 30px;
  }
}
#access h3 {
  text-align: center;
}
#access h3 span.center {
  font-size: clamp(15px, 15px + 0 * (100vw - 767px) / 673, 15px);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #fff;
  text-shadow: 0px 0px 10px #ff0;
  padding: 5px 30px;
  border: 3px solid #fff;
  box-shadow: 0px 0px 10px #ff0;
  display: inline-block;
  margin: 30px auto 20px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #access h3 span.center {
    font-size: 30px;
  }
}
#access .box {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 80%;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #access .box {
    width: 100%;
  }
}
@media (max-width: 750px) {
  #access .box {
    width: 100%;
  }
}
#access .box .flex-left {
  max-width: 100px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #access .box .flex-left {
    max-width: 200px;
  }
}
#access .box .flex-right dl {
  display: flex;
  align-items: center;
  gap: 30px;
}
#access .box .flex-right dl dt,
#access .box .flex-right dl dd {
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 16px + 0 * (100vw - 767px) / 673, 16px);
}
@media (min-width: 768px) and (max-width: 1024px) {
  #access .box .flex-right dl dt,
  #access .box .flex-right dl dd {
    font-size: 32px;
  }
}
#access .box .flex-right dl dt {
  min-width: 88px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #access .box .flex-right dl dt {
    min-width: 165px;
  }
}
#access #o-box {
  padding-bottom: 26px;
  border-bottom: 1px solid #4b556b;
}
#access #c-box {
  padding-top: 26px;
}

#recruit {
  background: #17013c;
  padding: 0 0 50px;
}
#recruit .box {
  position: relative;
  text-align: center;
}
#recruit .box .btn {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 23%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #recruit .box .btn {
    bottom: 20%;
  }
}
#recruit .box .btn a {
  font-size: clamp(20px, 20px + 0 * (100vw - 767px) / 673, 20px);
  border-radius: 57px;
  background: linear-gradient(#ffd951 0%, #feba26 100%);
  padding: 13px 71px;
  position: relative;
  color: #17013c;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #recruit .box .btn a {
    font-size: 30px;
    width: 60%;
    padding: 26px 75px;
  }
}
#recruit .box .btn a::before {
  position: absolute;
  content: "";
  top: 45%;
  right: 5%;
  border-right: 2px solid #17013c;
  border-bottom: 2px solid #17013c;
  transform: rotate(-45deg);
  width: 6px;
  height: 6px;
}

#information {
  background: #061e3e;
  padding: 40px 0 60px;
}
#information h2 {
  text-align: center;
}
#information h2 span {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 15px + 0 * (100vw - 767px) / 673, 15px);
  letter-spacing: 0.12em;
  text-align: center;
  color: #fff;
  text-shadow: 0px 0px 10px #ff0;
  display: inline-block;
  padding: 3px 10px;
  border: 3px solid #fff;
  box-shadow: 0px 0px 10px #ff0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #information h2 span {
    font-size: 30px;
  }
}
#information h3 {
  margin: 20px auto 0;
  text-align: center;
  font-size: clamp(30px, 30px + 0 * (100vw - 767px) / 673, 30px);
  font-weight: bold;
  text-align: center;
  color: #fff;
  text-shadow: 0px 0px 40px #55bdfd;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #information h3 {
    font-size: 60px;
  }
}
#information .sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin: 15px auto 0;
}
#information .sns .img img,
#information .sns .img a {
  max-width: 25px;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #information .sns .img img,
  #information .sns .img a {
    max-width: 50px;
  }
}
#information .txt {
  margin: 17px auto 0;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #information .txt {
    font-size: 30px;
  }
}

#reserve {
  background: url(../img/reserve-bg.jpg) 50% 50%/cover no-repeat;
  padding: 50px 0;
}
#reserve h2 {
  font-size: clamp(30px, 30px + 0 * (100vw - 767px) / 673, 30px);
  font-family: "Poppins", sans-serif;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #reserve h2 {
    font-size: 60px;
  }
}
#reserve .img {
  margin: 25px auto 0;
}
#reserve .txt {
  margin: 25px auto 0;
  text-align: center;
  font-size: clamp(15px, 15px + 0 * (100vw - 767px) / 673, 15px);
}
@media (min-width: 768px) and (max-width: 1024px) {
  #reserve .txt {
    font-size: 30px;
  }
}
#reserve .deco {
  margin: 30px auto 0;
  font-weight: 900;
  font-size: clamp(15px, 15px + 0 * (100vw - 767px) / 673, 15px);
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  text-shadow: 0px 0px 10px #55bdfd;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #reserve .deco {
    font-size: 30px;
  }
}
#reserve .btn {
  margin: 10px auto 0;
  text-align: center;
  width: 90%;
}

#footer {
  background: #121320;
  padding: 30px 0;
}
#footer p {
  text-align: center;
  font-size: clamp(13px, 13px + 0 * (100vw - 767px) / 673, 13px);
}