@charset "UTF-8";
/* 共通部分
------------------------------------ */
:root {
  --header-height: 70px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}
@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald-Regular.ttf"), url("../fonts/Oswald-Medium.ttf");
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Regular.ttf"),
    url("../fonts/NotoSansJP-Medium.ttf");
}
body {
  color: #333;
  font-family: "NotoSansJP", sans-serif;
  line-height: 1.7;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}
a {
  font-size: 1rem;
  text-decoration: none;
}
img {
  width: 100%;
  object-fit: cover;
  align-self: flex-start;
}
h1 {
  font-size: clamp(1.5rem, 0.773rem + 3.64vw, 3.5rem);
}
h2 {
  font-size: clamp(1.25rem, 0.795rem + 2.27vw, 2.5rem);
}
h3 {
  font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
  text-align: center;
}
p {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
}
.jp {
  font-size: 80%;
}

/* 共通部分
------------------------------------ */

/* HEADER
------------------------------------ */
/* モバイルの指定 */
header {
  background-color: #fff;
  top: 0;
  left: 0;
  padding: 0.5rem 0;
  position: fixed;
  width: 100%;
  height: var(--header-height);
  z-index: 11;
  border-bottom: 1px dotted #14116e;
}
header a {
  color: #333;
}
.openbtn {
  position: absolute;
  background: #14116e;
  top: 12px;
  right: 12px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 3px;
}
/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: 0.5s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}
/*activeクラスが付与されると線が回転して×に*/
.openbtn.open span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn.open span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}
.openbtn.open span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
nav {
  overflow: hidden;
}
.main-nav {
  z-index: 1;
  width: 100%;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  height: 0;
  transition: 0.35s all linear;
}
.main-nav.active {
  visibility: visible;
  opacity: 1;
  padding: 9px 0;
  height: auto;
}
.main-nav li {
  text-align: center;
  cursor: pointer;
  padding: 1rem 0;
  transition: 0.5s;
  background-color: #fff;
  border-bottom: 1px dotted #14116e;
}
.main-nav li a {
  display: block;
}
.main-nav li:hover {
  background-color: #14116e;
  color: #fff;
}
.main-nav li:hover a {
  color: #fff;
}
.logo {
  margin: 0 10px;
  max-height: 52px;
  width: 52px;
}
.main-nav li {
  list-style: none;
}
/* ナビゲーションが開いたときに画面を暗くする処理のためのCSS */
.bg-black {
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.4;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}
/* header デスクトップ指定 */
@media (min-width: 1030px) {
  .openbtn {
    display: none;
  }
  .main-nav {
    visibility: visible;
    opacity: 1;
    height: auto;
  }
  header {
    width: 100%;
    height: 70px;
    padding: 1rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header li {
    text-align: left;
    display: inline-block;
    width: 100px;
    margin: 0;
  }
  .main-nav li {
    border: none;
  }
}
/* HEADER
------------------------------------ */

/* main
------------------------------------ */
.big-bg {
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-attachment: fixed;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  /* position: fixed; */
  top: 70px;
  left: 0;
  margin: 0;
  width: 100%;
  height: 80vh;
  z-index: -1;
}
.item1 {
  opacity: 0;
  width: 100%;
  height: 80%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 70px;
  -webkit-animation: anime 15s 0s infinite;
  animation: anime 15s 0s infinite;
}
.item1:nth-of-type(2) {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}
.item1:nth-of-type(3) {
  -webkit-animation-delay: 10s;
  animation-delay: 10s;
}
/* ふわっとアニメーション */
@keyframes anime {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes anime {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}

@media screen and (max-width: 700px) {
  .big-bg {
    width: 100%;
    height: 40vh;
  }
  .item1 {
    height: 40%;
  }
}

@media (orientation: landscape) and (max-height: 450px) {
  .big-bg {
    width: 100%;
    height: 70vh;
  }
  .item1 {
    height: 70%;
  }
}

.top-title {
  color: #fff;
  /* position: absolute; */
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: italic;
  font-weight: bold;
  letter-spacing: 0.05em;
  z-index: 10;
  text-shadow: 10px 5px 10px #10332d;
  line-height: 1.3;
  margin-top: 70px;
  max-width: 90%;
}

.wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4%;
  overflow: hidden;
}

.gray {
  background-color: #f0f0f0;
  padding-bottom: 3rem;
}
.title {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  min-height: 0vw;
  text-align: center;
}
.lineup-title {
  text-align: center;
  padding: 3rem 0 2rem;
  border-top: #14116e solid;
}

.access-map {
  text-align: center;
}
iframe {
  width: 100%;
}
#about {
  margin-top: 70px;
}
#about p {
  text-align: center;
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
  margin-bottom: 3rem;
}
#about h3 {
  margin-bottom: 2rem;
}
.about-column {
  display: flex;
  gap: 10%;
}
.about-img {
  opacity: 0;
}

.left {
  margin-top: 10px;
  text-align: center;
}

.right {
  margin-top: 100px;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .about-column {
    display: block;
  }
  .right {
    margin-top: 10px;
  }
}

#content {
  background: #fff;
  max-width: 1100px;
  margin: 3rem auto;
  padding: 20px 4%;
  text-align: center;
}

table {
  margin: 20px auto;
  width: 100%;
  table-layout: fixed;
  word-break: break-word;
  align-items: flex-start;
  -webkit-appearance: none;
  font-size: clamp(0.75rem, 2.5vw, 1rem);
}
table img {
  padding: 1px;
}
table th[colspan="2"] {
  width: 50%;
}
.table_box th:first-child {
  width: 60px;
}
th {
  border: 1px solid #b7b7b7;
  padding: 5px;
  background-color: #fff;
  vertical-align: middle;
  text-align: center;
}

td {
  border: 1px solid #b7b7b7;
  padding: 10px 2px;
  height: 50px;
  background-color: #fff;
  line-height: 1.5;
  vertical-align: middle;
  text-align: center;
}

td a {
  text-decoration: none;
}
td a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 820px) {
  table {
    overflow-x: auto;
    display: block;
  }
  .table_box table th,
  .table_box table td {
    white-space: nowrap;
    -webkit-appearance: none;
  }
  .Profile-content th,
  .Profile-content td {
    display: block;
    width: 100%;
    height: 100%;
  }
  #content th,
  td {
    font-size: 1rem;
  }
}
.v-middle {
  vertical-align: middle;
  width: 30%;
}

th {
  color: #fff;
  background: #14116e;
}
/* 奇数行のtd要素 */
/* table tr:nth-child(odd) td {
  background: #eaf6fe;
} */
.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
@media screen and (max-width: 700px) {
  .main-fixed-bg {
    background-size: cover;
    background-attachment: scroll;
  }
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}
.grid p {
  color: #fff;
  background-color: #14116e;
  padding: 5px;
  height: 60px;
  margin-bottom: 0;
  text-align: center;
  place-content: center;
  place-items: center;
  line-height: 1.2;
  font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
}
.item {
  border: 1px solid #dedede;
}

#plan {
  margin: 0 auto;
}
#plan img {
  display: flex;
  flex-flow: column;
  text-align: center;
  margin: 0 auto;
  width: clamp(3.125rem, 2.898rem + 1.14vw, 3.75rem);
}
.number {
  position: absolute;
  padding-top: 15px;
  z-index: 2;
  left: 50%;
  transform: translate(-50%);
}

#arrow {
  max-height: 48px;
  max-width: 30px;
}
.plan-inner {
  max-width: 800px;
  background-color: #fff;
  padding: 30px 0 10px;
  border-radius: 10px;
  margin: 40px auto 0;
  position: relative;
  border: 1px solid #dedede;
}
.plan-inner p {
  padding: 0 10px 10px;
  text-align: center;
  text-align: center;
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
}

/* top_page mouse_hover 背景暗くしてテキスト表示 */
.show-text {
  position: relative; /* 相対位置指定 */
  cursor: pointer;
}
.show-text .caption {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  font-size: clamp(0.75rem, 2.5vw, 1rem);
  padding: 5px;
  color: #fff;
}
.show-text .mask {
  width: 100%;
  height: 100%;
  position: absolute; /* 絶対位置指定 */
  top: 0;
  left: 0;
  opacity: 0; /* マスクを表示しない */
  background-color: rgba(0, 0, 0, 0.4); /* マスクは半透明 */
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.show-text:hover .mask {
  opacity: 1; /* マスクを表示する */
}

.lineup {
  margin-bottom: 1rem;
}

.main-fixed-bg {
  background-image: url(../images/3558097_l.jpg);
  box-sizing: border-box;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 100px 0 200px;
  position: relative;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
@media screen and (max-width: 700px) {
  .main-fixed-bg {
    background-size: cover;
    background-attachment: scroll;
    padding: 50px 0 150px;
    white-space: nowrap;
  }
}

.main-fixed-bg > h1 {
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
  text-align: center;
  font-weight: bold;
  font-size: calc(1.5vw + 1.5rem);
  font-style: italic;
}

.main-fixed-bg > h1 span {
  display: inline-block;
  animation: upText 0.05s backwards;
}
@keyframes upText {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* main
------------------------------------ */

/*
FOOTER
------------------------------------ */
footer {
  background: #333;
  text-align: center;
  padding: 26px 0;
}
footer p {
  color: #fff;
  font-size: 0.875rem;
}
/*
FOOTER 
------------------------------------ */

.page_top {
  cursor: pointer;
  position: fixed;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: 0.3s;
  color: #fff;
  box-shadow: 0 0 2px #14116e;
  background: #14116e;
  opacity: 0;
  /*   デフォルトは非表示 */
}
.page_top:hover {
  box-shadow: 0 0 10px #14116e;
}
.top_scroll {
  opacity: 1;
}

/* 最初に色が現れてから文字が出る */
.animation-target {
  position: relative;
  overflow: hidden;
  width: fit-content;
  margin: 0 auto;
}
.animation-target > a,
.animation-target > h1,
.animation-target > h2,
.animation-target > h3,
.animation-target > p,
.animation-target > div {
  opacity: 0;
}

@keyframes showElements {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animation-target.show > a,
.animation-target.show > h1,
.animation-target.show > h2,
.animation-target.show > h3,
.animation-target.show > p,
.animation-target.show > div {
  animation: showElements 0.1s 0.5s forwards;
}
.animation-target::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 12;
  width: 100%;
  height: 100%;
  /* background-color: #14116e; */
  background-color: #000;
  transform: translateX(-100%);
}
/* 左から右へ色が移動する指定 */
@keyframes showMask {
  0% {
    transform: translateX(-100%);
  }
  45%,
  55% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}
.animation-target.show::before {
  animation: showMask 1s forwards;
}
