/* ==============================================================
  RESET
=============================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: unset;
}

ul,
ol,
li {
  list-style: none;
}

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

img {
  max-width: 100%;
  display: block;
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

input {
  display: none;
}

button {
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
}

a:focus {
  outline: none;
}

/* ==============================================================
  VARIABLES
=============================================================== */
/* ==============================================================
  STYLE
=============================================================== */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #000;
  font-size: 4vw;
  line-height: 1;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  letter-spacing: 0.06em;
  margin: 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 15px;
  }
}

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

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

a:link {
  color: #000;
  text-decoration: none;
}

a:visited {
  color: #000;
  text-decoration: none;
}

a:hover {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
  opacity: 0.7;
}

a:active {
  color: #000;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.bg {
  display: none;
  top: 0;
  left: 0;
  z-index: -1;
  position: fixed;
  width: 100%;
  height: 100%;
  background-image: url(../img/sky_s.jpg);
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .bg {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .bg .left-bg {
    opacity: 0.5;
    position: absolute;
    height: 100%;
    width: calc((100% - 750px) / 2);
    top: 0;
    left: 0;
    background-image: url(../img/3x3_vertical.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 70%;
  }
  .bg .right-bg {
    opacity: 0.5;
    position: absolute;
    height: 100%;
    width: calc((100% - 750px) / 2);
    top: 0;
    right: 0;
    background-image: url(../img/shutaku_vertical.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 90%;
  }
}

/* ==============================================================
  HEADER
=============================================================== */
header {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  header {
    overflow-x: hidden;
  }
}
header .sp-nav {
  z-index: 101;
  position: fixed;
  right: -51%;
  top: 0;
  background-color: white;
  width: 50%;
  padding: 70px 0 10px;
  border: 1px solid #f5f5f5;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  header .sp-nav {
    right: calc(50% - 750px);
    width: 375px;
    opacity: 0;
    visibility: hidden;
  }
}
header .sp-nav ul li {
  width: 100%;
  padding: 0.5em 0 0.5em 3.5em;
}
@media screen and (min-width: 768px) {
  header .sp-nav ul li {
    padding: 0.5em 0 0.5em 7.5em;
  }
}
header .sp-nav ul li a {
  letter-spacing: 0.14em;
  line-height: 2em;
  display: block;
  width: 100%;
  height: 100%;
  color: #E50012;
  font-weight: 500;
  font-size: 4.7vw;
}
@media screen and (min-width: 768px) {
  header .sp-nav ul li a {
    font-size: 30px;
  }
}
header .sp-nav p {
  margin: 30px 0 5px;
  font-size: 2.4vw;
  text-align: center;
  line-height: 1.8em;
}
@media screen and (min-width: 768px) {
  header .sp-nav p {
    font-size: 12px;
  }
}
header .sp-nav .shutaku-logo {
  width: 50%;
  margin: 0 auto;
}
header .inner {
  top: 0;
  left: 0;
  position: fixed;
  z-index: 102;
  width: 100%;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 0 10px;
}
@media screen and (min-width: 768px) {
  header .inner {
    width: 750px;
    left: calc(50% - 375px);
  }
}
header .inner .logo {
  display: block;
  width: 35vw;
  margin: 0 0 0 0vw;
  padding: 0;
}
@media screen and (min-width: 768px) {
  header .inner .logo {
    width: 135px;
  }
}
header .inner .menu {
  display: none;
}
header .inner .mobile-menu-btn {
  width: 34px;
  height: 34px;
  display: block;
  background-color: transparent;
  border: none;
  position: relative;
}
header .inner .mobile-menu-btn span {
  position: absolute;
  display: block;
  width: 30px;
  height: 2px;
  background-color: #E50012;
  transition: all 0.3s;
}
header .inner .mobile-menu-btn span:first-child {
  top: calc(50% - 1px - 3.5px);
  left: calc(50% - 14px);
}
header .inner .mobile-menu-btn span:last-child {
  top: calc(50% - 1px + 3.5px);
  left: calc(50% - 14px);
}
header.is-sp-menu-active .sp-nav {
  right: 0;
}
@media screen and (min-width: 768px) {
  header.is-sp-menu-active .sp-nav {
    right: calc(50% - 375px);
    opacity: 1;
    visibility: visible;
  }
}
header.is-sp-menu-active .inner .mobile-menu-btn span:first-child {
  transform: translate(0, 3.5px) rotate(-45deg);
}
header.is-sp-menu-active .inner .mobile-menu-btn span:last-child {
  transform: translate(0, -3.5px) rotate(45deg);
}

/* ==============================================================
  COMMON
=============================================================== */
.contents {
  width: 100%;
  color: black;
  font-family: "Noto Sans JP", sans-serif;
  background-color: white;
  font-size: 3.8vw;
  line-height: 1;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  letter-spacing: 0.06em;
  margin: 0 auto;
  padding: 75px 5vw 0;
}
@media screen and (min-width: 768px) {
  .contents {
    width: 750px;
    padding: 75px 20px 0;
    font-size: 16px;
  }
}
.contents #kv {
  margin: 6vw 0;
}
@media screen and (min-width: 768px) {
  .contents #kv {
    margin: 80px 0;
  }
}
.contents #kv h1 {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .contents #kv h1 {
    width: 80%;
  }
}
.contents #kv p {
  margin: 3vw auto 2vw;
  width: 20em;
  padding: 0.7em;
  border: solid 1px black;
  font-size: 3.2vw;
  font-weight: 400;
  letter-spacing: 0.025em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contents #kv p {
    font-size: 15px;
    margin: 10px auto 4px;
  }
}
.contents #movie .yt-container {
  margin: 18vw auto 0vw;
  width: 100%;
  aspect-ratio: 16/9;
}
@media screen and (min-width: 768px) {
  .contents #movie .yt-container {
    margin: 100px auto 20px;
    width: 80%;
  }
}
.contents #statement {
  padding: 8vw 0;
}
@media screen and (min-width: 768px) {
  .contents #statement {
    padding: 10px 0 50px;
  }
}
.contents #statement p {
  text-align: center;
  line-height: 1.5em;
}
@media screen and (min-width: 768px) {
  .contents #statement p {
    font-size: 18px;
  }
}
.contents #nav ul {
  display: block;
}
.contents #nav ul li {
  width: 100%;
  margin: 15px auto;
}
@media screen and (min-width: 768px) {
  .contents #nav ul li {
    margin: 24px auto;
    width: 80%;
  }
}
.contents #nav ul li a {
  position: relative;
  margin: 0 auto;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: 1.2em 0;
  width: 100%;
  display: block;
  font-size: 5vw;
  color: white;
  text-align: center;
  background-color: #E50012;
}
@media screen and (min-width: 768px) {
  .contents #nav ul li a {
    font-size: 24px;
  }
}
.contents #nav ul li a::before {
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
  width: 20%;
  height: calc(100% + 2px);
  content: "";
  background-image: url(../img/button_base_tri.svg);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: top left;
}
.contents #nav ul li a::after {
  display: block;
  position: absolute;
  top: -1px;
  right: -1px;
  width: 20%;
  height: calc(100% + 2px);
  content: "";
  background-image: url(../img/button_base_tri.svg);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: top right;
}
.contents #sns {
  margin: 20vw 0;
}
@media screen and (min-width: 768px) {
  .contents #sns {
    margin: 150px 0;
  }
}
.contents #sns p {
  font-size: 4vw;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contents #sns p {
    font-size: 22px;
  }
}
.contents #sns ul {
  margin: 4vw auto;
  width: 26vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .contents #sns ul {
    margin: 25px auto;
    width: 136px;
  }
}
.contents #sns ul li {
  width: 11vw;
}
@media screen and (min-width: 768px) {
  .contents #sns ul li {
    width: 60px;
  }
}
.contents #powered_by {
  margin: 20vw 0 0 0;
}
@media screen and (min-width: 768px) {
  .contents #powered_by {
    margin: 100px 0 0 0;
  }
}
.contents #powered_by p {
  line-height: 1.8em;
  font-size: 3.2vw;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contents #powered_by p {
    font-size: 16px;
  }
}
.contents #powered_by .shutaku-logo {
  width: 55%;
  margin: 0 auto;
}

/* ==============================================================
  INFO
=============================================================== */
.contents {
  /* -----------------
  info
  ----------------- */
  /* -----------------
  reservation
  ----------------- */
  /* -----------------
  access
  ----------------- */
}
.contents .title .logo {
  margin: 5px auto 20px;
  width: 40%;
}
@media screen and (min-width: 768px) {
  .contents .title .logo {
    width: 25%;
  }
}
.contents .title h1 {
  position: relative;
  color: white;
  font-size: 6.7vw;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-align: center;
  background-image: url(../img/dot_base.png);
  background-repeat: no-repeat;
  background-size: 100%;
  line-height: 1.3em;
  padding: 0.5em 0;
  text-shadow: 2px 2px 0px #E50012, -2px 2px 0px #E50012, 2px 2px 2px #E50012, -2px 2px 2px #E50012, -2px -2px 0 #E50012, 2px -2px 0 #E50012, -2px -2px 2px #E50012, 2px -2px 2px #E50012;
}
@media screen and (min-width: 768px) {
  .contents .title h1 {
    font-size: 36px;
  }
}
.contents .title h1::before {
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
  width: 20%;
  height: calc(100% + 2px);
  content: "";
  background-image: url(../img/button_base_tri.svg);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: top left;
}
.contents .title h1::after {
  display: block;
  position: absolute;
  top: -1px;
  right: -1px;
  width: 20%;
  height: calc(100% + 2px);
  content: "";
  background-image: url(../img/button_base_tri.svg);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: top right;
}
.contents .info {
  padding: 0 5vw;
}
@media screen and (min-width: 768px) {
  .contents .info {
    padding: 0 30px;
  }
}
.contents .info .statement {
  font-size: 3.6vw;
  margin: 40px 0 40px;
  line-height: 1.5em;
}
@media screen and (min-width: 768px) {
  .contents .info .statement {
    font-size: 16px;
  }
}
.contents .info dl {
  margin: 30px 0;
}
.contents .info dl dt {
  font-size: 4.6vw;
}
@media screen and (min-width: 768px) {
  .contents .info dl dt {
    font-size: 20px;
  }
}
.contents .info dl dd {
  font-size: 3.6vw;
  margin: 10px 0 40px 1em;
  line-height: 1.5em;
}
@media screen and (min-width: 768px) {
  .contents .info dl dd {
    font-size: 16px;
    margin: 20px 0 40px 1em;
  }
}
.contents .info dl dd > dl {
  margin: 0;
}
.contents .info dl dd > dl dt {
  font-weight: 500;
  font-size: 3.6vw;
}
@media screen and (min-width: 768px) {
  .contents .info dl dd > dl dt {
    font-size: 16px;
  }
}
.contents .info dl dd > dl dd {
  margin: 5px 0 30px 1em;
}
.contents .info dl dd ul {
  margin: 0 0 0 1em;
}
.contents .info dl dd ul li {
  list-style: disc;
}
.contents .info button {
  position: relative;
  margin: 0 auto;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: 0.8em 0;
  width: 100%;
  display: block;
  font-size: 4vw;
  color: white;
  text-align: center;
  background-color: #E50012;
}
@media screen and (min-width: 768px) {
  .contents .info button {
    font-size: 26px;
  }
}
.contents .info button::before {
  transition: all 0.3s;
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: white;
  right: 20px;
  top: calc(50% - 1px);
}
@media screen and (min-width: 768px) {
  .contents .info button::before {
    right: 30px;
  }
}
.contents .info button::after {
  transition: all 0.3s;
  content: "";
  display: block;
  position: absolute;
  height: 20px;
  width: 2px;
  background-color: white;
  right: 29px;
  top: calc(50% - 10px);
}
@media screen and (min-width: 768px) {
  .contents .info button::after {
    right: 39px;
  }
}
.contents .info button.is-opened::before {
  transform: rotate(45deg);
}
.contents .info button.is-opened::after {
  transform: rotate(45deg);
}
.contents .info .reg_notice {
  padding: 1em 0;
  text-align: center;
  display: block;
  font-size: 3vw;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .contents .info .reg_notice {
    font-size: 16px;
  }
}
.contents .info .accordion {
  display: none;
  padding: 20px 14px;
  margin: 0 0 30px;
  background-color: #f8f8f8;
}
@media screen and (min-width: 768px) {
  .contents .info .accordion {
    padding: 30px 18px;
  }
}
.contents .info .accordion.is-opened {
  display: block;
}
.contents .info .accordion p {
  font-size: 3.2vw;
  line-height: 1.5em;
  margin: 10px 0 30px 0em;
}
@media screen and (min-width: 768px) {
  .contents .info .accordion p {
    font-size: 16px;
  }
}
.contents .info .accordion ul {
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .contents .info .accordion ul {
    font-size: 15px;
  }
}
.contents .info .accordion ul li {
  letter-spacing: 0.07em;
  font-size: 3.2vw;
  line-height: 1.35em;
  list-style: disc;
  margin: 0 0 10px 0;
}
@media screen and (min-width: 768px) {
  .contents .info .accordion ul li {
    font-size: 15px;
    line-height: 1.5em;
    margin: 0 0 15px 0;
  }
}
.contents .info .caution {
  color: #E50012;
  font-size: 3.2vw;
  line-height: 1.5em;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .contents .info .caution {
    font-size: 15px;
  }
}
.contents .reservation {
  padding: 0 5vw;
}
@media screen and (min-width: 768px) {
  .contents .reservation {
    padding: 0 30px;
  }
}
.contents .reservation h2 {
  position: relative;
  margin: 40px 0 20px;
  display: block;
  text-align: center;
  color: #E50012;
  font-weight: 600;
  font-size: 4vw;
  letter-spacing: 0.1em;
  line-height: 1em;
}
@media screen and (min-width: 768px) {
  .contents .reservation h2 {
    font-size: 28px;
  }
}
.contents .reservation h2::before {
  content: "";
  display: block;
  width: 25%;
  height: 1px;
  background-color: #E50012;
  position: absolute;
  top: 50%;
  left: 0;
}
.contents .reservation h2::after {
  content: "";
  display: block;
  width: 25%;
  height: 1px;
  background-color: #E50012;
  position: absolute;
  top: 50%;
  right: 0;
}
.contents .reservation h2.reserv::before, .contents .reservation h2.reserv::after {
  width: 35%;
}
.contents .reservation .bus_hours {
  display: block;
  margin: 35px 0 0;
  text-align: center;
  font-size: 10vw;
  font-weight: 600;
  letter-spacing: 0.07em;
}
@media screen and (min-width: 768px) {
  .contents .reservation .bus_hours {
    font-size: 70px;
  }
}
.contents .reservation .hours-notice {
  padding: 5px 0 0;
  text-align: center;
  font-size: 3.2vw;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .contents .reservation .hours-notice {
    font-size: 16px;
  }
}
.contents .reservation .holiday {
  width: 73%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 15px 0 0;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .contents .reservation .holiday {
    width: 65%;
  }
}
.contents .reservation .holiday dt {
  font-size: 4.6vw;
  padding: 1em 0;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .contents .reservation .holiday dt {
    font-size: 25px;
  }
}
.contents .reservation .holiday dd {
  font-size: 3.2vw;
  letter-spacing: 0.05em;
  line-height: 1.2em;
}
@media screen and (min-width: 768px) {
  .contents .reservation .holiday dd {
    font-size: 22px;
  }
}
.contents .reservation .res_copy {
  font-size: 3.6vw;
  line-height: 1.5em;
  letter-spacing: 0.034em;
}
@media screen and (min-width: 768px) {
  .contents .reservation .res_copy {
    font-size: 18px;
  }
}
.contents .reservation .res_copy em {
  font-weight: 600;
  color: #E50012;
}
.contents .reservation .shutaku-logo {
  width: 55%;
  margin: 10vw auto 5vw;
}
@media screen and (min-width: 768px) {
  .contents .reservation .shutaku-logo {
    width: 45%;
    margin: 50px auto 10px;
  }
}
.contents .reservation .tel {
  display: block;
  margin: 35px 0 10px;
  text-align: center;
  font-size: 5.5vw;
  font-weight: 600;
  letter-spacing: 0.07em;
}
@media screen and (min-width: 768px) {
  .contents .reservation .tel {
    font-size: 40px;
  }
}
.contents .reservation .tel-caution {
  text-align: center;
  font-size: 3.2vw;
  line-height: 1.4em;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .contents .reservation .tel-caution {
    font-size: 16px;
  }
}
.contents .reservation .tel-caution em {
  font-weight: 600;
  color: #E50012;
}
.contents .reservation .map {
  margin: 30px 0 10px;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}
.contents .reservation .gmap-link {
  display: block;
  margin: 0 auto;
  width: 100%;
  font-size: 3.2vw;
  color: #E50012;
  text-decoration: underline;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .contents .reservation .gmap-link {
    letter-spacing: 0.02em;
    font-size: 16px;
  }
}
.contents .reservation .address {
  margin: 30px 0;
}
.contents .reservation .address p {
  font-size: 5.6vw;
}
@media screen and (min-width: 768px) {
  .contents .reservation .address p {
    font-size: 24px;
    letter-spacing: 0.05em;
  }
}
.contents .reservation .address ul {
  margin: 10px 0;
  padding: 0 0 0 1.3em;
}
@media screen and (min-width: 768px) {
  .contents .reservation .address ul {
    padding: 0 0 0 30px;
  }
}
.contents .reservation .address ul li {
  font-size: 3.6vw;
  line-height: 1.8em;
  list-style: disc;
}
@media screen and (min-width: 768px) {
  .contents .reservation .address ul li {
    letter-spacing: 0.05em;
    font-size: 18px;
  }
}
.contents .reservation .btn-reserv {
  position: relative;
  margin: 50px auto 0;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: 0.8em 0;
  width: 100%;
  display: block;
  font-size: 4vw;
  color: white;
  text-align: center;
  background-color: #E50012;
}
@media screen and (min-width: 768px) {
  .contents .reservation .btn-reserv {
    font-size: 26px;
  }
}
.contents .reservation .notice {
  padding: 0.8em 0;
  font-size: 3.2vw;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .contents .reservation .notice {
    font-size: 16px;
  }
}
.contents .access {
  padding: 0 5vw;
}
.contents .access .logo {
  margin: 80px auto 0px;
  width: 70%;
}
@media screen and (min-width: 768px) {
  .contents .access .logo {
    width: 60%;
  }
}
.contents .access h2 {
  font-size: 3.6vw;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contents .access h2 {
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}
.contents .access .photo {
  margin: 20px 0 5px;
}
.contents .access .notice {
  font-size: 3.6vw;
  font-weight: 400;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contents .access .notice {
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}
.contents .access .map {
  margin: 30px 0 10px;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}
.contents .access .gmap-link {
  display: block;
  margin: 0 auto;
  width: 100%;
  font-size: 3.2vw;
  color: #E50012;
  text-decoration: underline;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .contents .access .gmap-link {
    letter-spacing: 0.02em;
    font-size: 16px;
  }
}

/* ==============================================================
  FOOTER
=============================================================== */
footer {
  margin: 0;
  background-color: white;
  padding: 50px 0 30px 0;
}
@media screen and (min-width: 768px) {
  footer {
    margin: 0 auto;
    width: 750px;
  }
}
footer .pagetop {
  display: block;
  width: 25%;
  margin: 0 auto 50px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  footer .pagetop {
    width: 15%;
  }
}
footer p {
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 2.7vw;
}
@media screen and (min-width: 768px) {
  footer p {
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */