@charset "utf-8";

html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
img,
a,
ol,
ul,
li,
form,
label,
table,
tbody,
tfoot,
thead,
tr,
td,
th,
article,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  list-style: none;
  text-decoration: none;
  vertical-align: baseline;
}

html {
  min-height: 100%;
  position: relative;
  font-family: sans-serif;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

a :hover,
.btn:hover {
  opacity: 0.6;
  cursor: pointer;
}

.btn {
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 5px;
  border: none;
  margin-top: 20px;
}

h3 {
  font-size: 50px;
}

h4 {
  font-size: 30px;
}

h5 {
  font-size: 20px;
}

.wrapper {
  width: 70%;
  padding: 80px 0 30px;
  margin: 0 auto;
}

.wrapper-title {
  text-align: center;
  margin-bottom: 30px;
}

.wrapper-title p {
  color: #4c586f;
}

.last-wrapper {
  margin-bottom: 80px;
}

.wrapper-body {
  text-align: center;
}

.news-list,
form {
  width: 80%;
  margin: 0 auto;
}

.btn-submit {
  background-color: #000000;
  color: #fff;
}

.btn-gray {
  border: 1px #3e3e3b solid;
  color: #3e3e3b;
}

header {
  height: 60px;
  background-color: #000000;
  position: fixed;
  z-index: 2;
  width: 100%;
}

.sp-menu {
  display: none;
}

#logo {
  width: 300px;
}
.sns {
  text-align: center;
  padding-bottom: 10px;
}
.sns a {
  font-size: 30px;
  margin: 5px;
}
.header_logo a {
  float: left;
  line-height: 60px;
  padding-right: 15px;
  padding-top: 3px;
  font-size: 30px;
}

.header-logo a:hover {
  opacity: 1;
}

.menu a {
  line-height: 60px;
  color: #fff;
}

.menu-left a {
  float: left;
  padding-right: 15px;
}

.top-img {
  height: 600px;
  background-image: url(img/bg.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}

.top-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: rgb(255, 255, 255);
  text-shadow: 3px 3px 1px #000000, 3px 3px 1px #000000, 3px 3px 1px #000000;
  text-align: center;
}

.news-list li {
  margin-bottom: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid;
}

.news-list a {
  color: #000000;
}

.reserve-wrap {
  text-align: center;
  margin: 0 auto;
  width: 50%;
  padding: 2%;
  background-color: #000000;
  border-radius: 20px;
}
.reserve-wrap a {
  color: #fff;
}

.slider {
  width: 300px;
  height: 200px;
  overflow: hidden;
  margin: 0 auto;
}
.slider-item {
  width: 300px;
  float: left;
}
img {
  width: 100%;
}
.slider-inner {
  width: 300%;
  animation: slider 20s infinite ease;
  animation-delay: 5s;
}

@keyframes slider {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-300px);
  }
  100% {
    transform: translateX(0);
  }
}

.boxs {
  display: flex;
}

.box {
  width: 50%;
  margin: 20px 10px;
  text-align: center;
}

.box img {
  width: 100%;
}

/* タブ切り替え */

.tab-wrap {
  background: rgb(0, 0, 0);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  padding: 0 0 20px;
}

.tab-label {
  color: rgb(175, 175, 175);
  background-color: #212121;
  cursor: pointer;
  flex: 1;
  font-weight: bold;
  font-size: 60%;
  order: -1;
  padding: 12px 24px;
  position: relative;
  text-align: center;
  transition: cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  user-select: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.tab-label:hover {
  background: rgba(255, 255, 255, 0.278);
}

.tab-switch:checked + .tab-label {
  color: rgb(255, 255, 255);
}

.tab-label::after {
  background: rgba(211, 211, 211, 0.252);
  bottom: 0;
  content: "";
  display: block;
  height: 48px;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(100%);
  transition: cubic-bezier(0.4, 0, 0.2, 1) 0.2s 80ms;
  width: 100%;
  z-index: 1;
}

.tab-switch:checked ~ .tab-label::after {
  transform: translateX(-100%);
}

.tab-switch:checked + .tab-label::after {
  opacity: 1;
  transform: translateX(0);
}

.tab-content {
  height: 0;
  opacity: 0;
  padding: 0 20px;
  pointer-events: none;
  transform: translateX(-30%);
  transition: transform 0.3s 80ms, opacity 0.3s 80ms;
  width: 100%;
}

.tab-content h4 {
  padding-top: 20px;
  text-align: center;
}

.tab-switch:checked ~ .tab-content {
  transform: translateX(30%);
}

.tab-switch:checked + .tab-label + .tab-content {
  height: auto;
  opacity: 1;
  order: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.tab-wrap::after {
  content: "";
  height: 20px;
  order: -1;
  width: 100%;
}

.tab-switch {
  display: none;
}

/* ============================== */

body {
  background: WhiteSmoke;
  font-family: sans-serif;
  margin: 0px;
}

/* ==============================
/* 幅と高さの設定
/* ============================== */

.tab-container,
.tab-content {
  max-width: calc(100vw - 10px * 2);
  width: 100%;
  color: #fff;
}

.tab-wrap {
  width: 100%;
}

/* ==============================
/* 追加(上書き有り)CSS
/* ============================== */

* {
  box-sizing: border-box;
}

.tab-container {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  overflow-x: auto;
  position: relative;
}
.tab-wrap {
  box-shadow: none;
}
.tab-content {
  left: 0;
  position: -webkit-sticky;
  position: sticky;
}

.tab-content img {
  padding-bottom: 20px;
}

.tab-wrap::before {
  content: "";
  height: 0;
  order: 1;
  width: 100%;
}

ul.price_list {
  list-style: none;
  column-count: 1;
  column-gap: 40px;
  margin: 5%;
  padding: 0;
}
ul.price_list li {
  display: inline-flex;
  padding-bottom: 8px;
  border-bottom: #d2d2d2 1px dotted;
  margin-bottom: 10%;
  width: 100%;
  color: #ffffff;
}
ul.price_list li strong {
  font-weight: bold;
  color: rgb(255, 255, 255);
  margin-right: auto;
}

tbody {
  -webkit-text-size-adjust: 100%;
}

.acc-toggle {
  display: none;
}
.acc-Label {
  padding: 1em;
  display: block;
  color: rgb(0, 0, 0);
  background: #ffffff;
  text-align: center;
}
.acc-Label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid rgb(0, 0, 0);
  border-right: 2px solid rgb(0, 0, 0);
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 3px);
  right: 20px;
  transform: rotate(135deg);
}
.acc-Label,
.acc-content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.acc-content {
  height: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  overflow: hidden;
}
.acc-toggle:checked + .acc-Label + .acc-content {
  height: auto;
  padding: 20px;
  transition: all 0.3s;
}
.acc-toggle:checked + .acc-Label::before {
  transform: rotate(-45deg) !important;
}

.acc-toggle3 {
  display: none;
}
.acc-Label3 {
  padding: 1em;
  display: block;
  color: rgb(0, 0, 0);
  background: #ffffff;
  text-align: center;
}
.acc-Label3::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid rgb(0, 0, 0);
  border-right: 2px solid rgb(0, 0, 0);
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 3px);
  right: 20px;
  transform: rotate(135deg);
}
.acc-Label3,
.acc-content3 {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.acc-content3 {
  height: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  overflow: hidden;
}
.acc-toggle3:checked + .acc-Label3 + .acc-content3 {
  height: auto;
  padding: 20px;
  transition: all 0.3s;
}
.acc-toggle3:checked + .acc-Label3::before {
  transform: rotate(-45deg) !important;
}

.instagram {
  margin: 0 auto;
  max-width: 550px;
  margin-bottom: 30px;
}

.tw {
  color: #00d5ff;
}
.ig {
  color: #ff00c3;
}
.yt {
  color: #ff000d;
}

.about-table {
  text-align: left;
  width: 100%;
  padding-bottom: 30px;
}

.about-table th,
td {
  padding: 10px 0;
}

.about-table th {
  width: 30%;
  vertical-align: top;
}

iframe {
  width: 100%;
  margin-bottom: 40px;
}

footer {
  height: 80px;
  background-color: #000000;
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #fff;
  line-height: 80px;
}

.page-title {
  border-bottom: 1px solid #ddd;
  padding: 20px 0 10px;
}

.page-text {
  padding: 20px 0 80px;
}
