@charset "utf-8";

/* 初期スタイル調整 */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* body全体の初期スタイル調整 */
body {
  font-size: 16px;
  line-height: 1.5;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Arial, "メイリオ", Meiryo, sans-serif;
  color: #fff;
  background-color: #001914;
}

/* 各要素の初期スタイル調整 */
h1, h2, h3 {
  margin-top: 0;
  margin-bottom: 30px;
  line-height: 1.2;
}

a {
  color: #fff;
  text-decoration: none;
}
a:hover {
  color: #fff;
  text-decoration: underline;
}

p {
  margin-top: 0;
  margin-bottom: 1em;
}
ul {
  margin: 1em 0;
  padding: 0;
  list-style: none;
}
figure {
  margin: 0;
}
img {
  max-width: 100%;
  height: auto;
}
address {
  font-style: normal;
}
/* ---------- 初期スタイル調整 ここまで ---------- */


/* --------------------------------------------------
  共通部分のスタイル指定
-------------------------------------------------- */

/* ヘッダー */
.header {
  position: fixed; /* メニューボタンの絶対配置の基準となる */
  width: 100%;
  padding: 15px 0 0;
  background-image: linear-gradient(to bottom, #005c4c, #00362d);
  opacity: 0.95;
  z-index: 10000;
}

/* ロゴ */
.logo {
  width: 60px;
  margin: 0 20px;  /* 左右中央揃えに配置 */
  /*padding-bottom: 5px;*/
}

/* ナビゲーション用チェックボックス */
/* --------------------
  チェックボックスでメニュー項目の表示／非表示を切り替える。
  ブラウザ上にはチェックボックスを表示したくないため、
  「display: none;」で非表示にしている。
  -------------------- */
.nav-toggle {
  display: none;
}

/* ハンバーガーボタン */
.btn-burger {
  position: absolute; /* 親要素（.header）を基準に絶対配置 */
  top: 18px;
  right: 15px;
  z-index: 2; /* ボックスの重なりの優先順位を指定。数値が大きいほど、手前（上）に配置される */
  display: block; /* ブロックレベル性質になるため、幅・高さを指定できる */
  width: 50px;
  height: 50px;
  background: url("../images/burger.svg") center center / 35px 20px no-repeat; /* ハンバーガーボタンの画像を指定 */
  fill: #fff;
  cursor: pointer; /* カーソルの形状を指定 */
}

/* メニューが開いたときの、ハンバーガーボタンの画像を指定 */
.nav-toggle:checked ~ .btn-burger {
  background: url("../images/close.svg") center center / 26px 26px no-repeat;
}

/* ナビゲーション */
.nav {
  padding-top: 10px;
  background: url("../img/nav_bg.png") center center / cover no-repeat;
}

.nav-list {
  display: none; /* 最初はメニュー（ul要素）を非表示にしておく指定 */
  margin: 0;
  padding-bottom: 10px;
}

.nav-list li {
  margin: 0;
  padding: 10px;
  text-align: center;
}

.nav-list a {
  display: block;  /* ブロックレベルで扱い、縦並びに表示している */
  color: #fff;
}

/* メニューが開いたとき、<ul>を表示する */
.nav-toggle:checked ~ .nav .nav-list {
  display: block;
}

/* ----------ナビゲーションのスタイル指定 ここまで---------- */

/* セクション */
.section {
  max-width: 1000px;
  margin: 25px auto;
  padding: 0 10px;
}

.btn-square {
  text-align: right;
  color: #ff5722;
  margin-top: 10px;
}

.btn-square a{
  text-align: right;
  color: #ff5722;
  margin-top: 10px;
}


/* 更新内容 */
.update-content {
  width: 100%;
  height: 170px;
  overflow: auto;
  background-color: #00362d;
}

.update-content p {
  padding: 10px;
}

/*play料金*/
body {
  width: 100%;
}

h2 {
    text-align: center;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;
}

table {
  border-collapse: collapse;
  border-spacing: 5px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

table tr{
  border-bottom: solid 2px #000;
}

table tr:last-child{
  border-bottom: none;
}

table th{
  position: relative;
  text-align: left;
  width: 20%;
  background-color: #00826C;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

table th:after{
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top:calc(50% - 10px);
  right:-10px;
  border-left: 10px solid #00826C;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

table td{
  text-align: left;
  width: 20%;
  text-align: center;
  background-color: #00362D;
  padding: 10px 0;
}

/* google-map */
.g-map {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.g-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 見出し（h2） */
.heading-section {
  text-align: center;
}

/* トップページ横並び要素の見出し（h3） */
.heading-topic {
  margin-bottom: 10px;
  padding-top: 20px;
  font-size: 20px;
  text-align: center;
  color: #fff;
  
}

/* フッター全体 */
.footer {
  padding: 40px 0 30px;
  color: #fff;
  text-align: center;
  background: url("../img/footer_bg.png") center center / cover no-repeat; /* 背景画像の指定 */
}

/* フッターロゴ */
.footer-logo {
  max-width: 35%;
  margin: 0 auto;
}

/* 連絡先 */
.footer-address {
  max-width: 90%;
  margin: 0 auto;
}

/* SNSのリンクボタン */
.footer-sns {
  margin: 20px 0;
  text-align: center; /* 中身を左右中央揃えで配置 */
}
.footer-sns a {
/* インラインの性質を保ちながら、ブロックレベルの性質を加えている。横並びに配置しながら、外余白を指定 */
  display: inline-block;
  margin: 0 5px;
}
.footer-sns img {
  vertical-align: middle; /* 垂直方向中央揃えで配置*/
}

/* コピーライト */
.copyright {
  margin: 0;
}
.copyright small {
  font-size: 11px;
}

/* --------------------------------------------------
  トップページ
-------------------------------------------------- */

/* メインイメージ */
.top {
  /*height: 1000px;*/
  display: block;
  margin-bottom: 10px;
  text-align: center;
  /*background: url("../images/top_imege-01_sp.jpg") center bottom / cover no-repeat;*/
}

/* トップ画像 */
.pc { 
  display: none !important;
  text-align: center;
}
.sp {
  display: block !important;
}
.top-text-logo {
  text-align: center;
}
.top-text-logo img{
  display: inline-block;
  margin: 0 auto;
}
/* 横並び要素（幅768px未満では縦並びで配置される） */
.col {
  max-width: 300px;
  margin: 0 auto 25px;
}
.col-image {
  margin-bottom: 10px;
}
.col p {
  margin-bottom: 10px;
}

/*区切り線*/
.sp_border {
  height: 3px;
  margin-bottom: 25px;
  border-width: 0;
  background-color: #00362d;
  background-image: -webkit-linear-gradient(135deg,
  #ff5722 0px,#ff5722 2px, transparent 2px, transparent 4px,
  #ff5722 4px, #ff5722 6px, transparent 6px, transparent);
  background-image:         linear-gradient(-45deg,
  #ff5722 0px,#ff5722 2px, transparent 2px, transparent 4px,
  #ff5722 4px, #ff5722 6px, transparent 6px, transparent);
  background-size: 6px 6px;
}


/* --------------------------------------------------
  営業案内
-------------------------------------------------- */

/* 営業時間 */
.open-time {
  text-align: center;
}
.open-time-list {
  display: inline-block;
  margin: 0 0 0 30px;
  list-style: disc;
  text-align: left;
}

/* 入場料（テーブル） */
/* テーブル全体への指定 */
.price-table {
  width: 100%;
  border-collapse: collapse; /* テーブルの境界線が重ねて表示する */
  font-size: 12px;
}
/* <thead>に対する指定 */
.price-table thead {
  color: #fff;
  background-color: #4184e2;
}
/* <th>と<td>に対する指定 */
.price-table th,
.price-table td {
  padding: 20px 15px;
  font-weight: 500;
  border: 1px solid #707070;
}
/* <tbody>内の<th>に対する指定 */
.price-table tbody th {
  text-align: left;
  background-color: #fff;
}
/* <tbody>内の<td>に対する指定 */
.price-table tbody td {
  background-color: #fff;
}

/* --------------------------------------------------
  お問い合わせフォーム
-------------------------------------------------- */

/* フォームの3つのブロックに対する指定 */
.form-group {
  margin-bottom: 20px;
}
/* 項目名に対する指定 */
.form-label {
  display: block;
  margin-bottom: 10px;
  color: #032559;
}
/* 送信ボタンを囲む<div>に対する指定 */
.form-btn {
  margin: 30px 0;
  text-align: center;
}

/* 入力欄に対する指定 */
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #999;
}
/* 入力欄が:focus（入力状態）のとき */
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: #032559;
  outline: none;
}

/* 送信ボタン */
button[type="submit"] {
  background: none;
  border: none;
  cursor: pointer;
}
/* 送信ボタンが:hoverのとき */
button[type="submit"]:hover {
  opacity: 0.65;
}

/* --------------------------------------------------
  幅768px未満のスタイル指定 ここまで
-------------------------------------------------- */



/* --------------------------------------------------
  幅768px以上のスタイル指定 ここから
-------------------------------------------------- */

@media screen and (min-width: 768px) {
  /* ヘッダー */
  .header {
    position: fixed;
    padding: 20px 0 0;
    opacity: 0.95;
  }

  /* ロゴ */
  .logo {
    width: auto;
    /* margin: 0 0 20px; */
    padding: 0;
    text-align: center;
  }

  .logo img {
    width: 75px;
  }

  /* ハンバーガーボタン */
  .btn-burger {
    display: none; /* 768px以上では使用しない */
  }

  /* ナビゲーション */
  .nav {
    padding: 20px 0;
  }

  /* トップ画像 */
  .pc { 
    display: inline !important;
    text-align: center;
    margin-top: 164px;
  }
  .sp {
    display: none !important;
  }

  .nav-list {
    /* flexbox（横並びにする要素の親に指定） */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* フレックスアイテムを主軸方向（横方向）中央揃えで配置 */
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /* フレックスアイテムを交差軸方向（縦方向）中央揃えで配置 */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
  }

  .nav-list li {
    /* フレックスアイテムに対する指定 */
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    padding: 0 20px;
    line-height: 1;
    border-right: 1px solid #fff; /* 縦棒を表示 */
  }

  .nav-list li:first-child {
    border-left: 1px solid #fff; /* 縦棒を表示 */
  }
  /* 幅768px未満でメニューを開いた状態から、ウィンドウ幅を768px以上に広げたとき、メニューにflexboxを適用して<li>を横並び表示に切り替える */
  .nav-toggle:checked ~ .nav .nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  /* セクション */
  .section {
    margin-bottom: 100px;
    margin-top: 164px;
  }

  /* 見出し（h2） */
  .heading-section {
    margin-bottom: 50px;
  }

  /* フッター */
  .footer {
    padding: 50px 0 20px;
    background-image: linear-gradient(to bottom, #005c4c, #00362d);
  }
  .footer-logo {
    max-width: 10%;
  }
  .footer-sns {
    margin: 30px 0;
  }

  /* --------------------------------------------------
  トップページ
  -------------------------------------------------- */

  /* メインイメージ */
  .top {
    height: 400px;
    margin-bottom: 70px;
    margin: auto;
  }

  /* 横並び */
  .row {
    /* flexbox（横並びにする要素の親に指定） */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  /* 横並び要素 */
  .col {
    /* フレックスアイテムに対する指定 */
    -webkit-box-flex: 0;
    -ms-flex: 0 1 32%;
    flex: 0 1 32%;
    margin: 0;
  }

  /*区切り線*/
  .sp_border {
    display: none;
  }

  /* --------------------------------------------------
  営業案内
  -------------------------------------------------- */

  /* 入場料（テーブル） */
  .price-table {
    font-size: 16px;
  }

  /* <th>と<td>に対する指定 */
  .price-table th,
  .price-table td {
    padding: 20px;
  }

  /* --------------------------------------------------
  お問い合わせフォーム
  -------------------------------------------------- */

  /* フォームの3つのブロックに対する指定 */
  .form-group {
    /* flexbox（横並びにする要素の親に指定） */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 800px; /* 横幅の最大値 */
    margin-bottom: 10px;
  }

  /* 項目名に対する指定 */
  .form-label {
    /* フレックスアイテムに対する指定 */
    -webkit-box-flex: 0;
    -ms-flex: 0 0 12em;
    flex: 0 0 12em;
    max-width: 12em;
    margin: 0;
    padding-top: 5px;
  }

  /* 入力欄を囲む<div>に対する指定 */
  .form-col {
    /* フレックスアイテムに対する指定 */
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}

  /* --------------------------------------------------
  幅768px以上のスタイル指定 ここまで
  -------------------------------------------------- */
