body {
  background-color: #0f0f0f;
  color: #f2f2f2;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #f2f2f2;
}

img {
  width: 100%;
}

address {
  font-style: normal;
}

.wrapper {
  width: 80%;
  margin: 0 auto 40px;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: absolute;
  padding: 5px 20px;
  z-index: 998;
}

.pc-nav {
  display: none;
}

.form-header {
  background-color: #0f0f0f;
}

.logo {
  width: 200px;
}

.drawer-btn {
  position: relative;
  width: 3rem;
  height: 3rem;
  border: none;
  cursor: pointer;
  z-index: 999;
}

.drawer-btn>span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: .25rem;
  background-color: #f3f3f3;
  transform: translateX(-50%);
}

.drawer-btn>span:first-child {
  transform: translate(-50%, calc(-50% - 0.7rem));
  transition: transform 0.1s ease;
}

.drawer-btn>span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.1s ease;
}

.drawer-btn>span:last-child {
  transform: translate(-50%, calc(-50% + 0.7rem));
  transition: transform 0.1s ease;
}

.drawer-btn.is-active>span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.drawer-btn.is-active>span:nth-child(2) {
  opacity: 0;
}

.drawer-btn.is-active>span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.drawer-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(87, 86, 86, 0.5);
  visibility: hidden;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.drawer-nav.is-active {
  opacity: 1;
  visibility: visible;
}

.drawer-nav-inner {
  position: relative;
  width: 70%;
  height: 100vh;
  background-color: #222;
  padding: 4rem 1.5rem 1rem;
  margin: 0 0 0 auto;
  overflow: scroll;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.drawer-nav.is-active .drawer-nav-inner {
  transform: translateX(0);
}

.drawer-nav-menu {
  list-style-type: none;
  padding-left: 0;
}

.drawer-nav-link {
  display: block;
  text-decoration: none;
  color: #f3f3f3;
  font-weight: bold;
  padding: 1rem 1rem;
  border-bottom: 1px dotted lightgray;
}

body.is-active {
  height: 100%;
  overflow: hidden;
  /* これのおかげでメニューを出している時は画面が移動しない */
}

/* 下記のコードはレスポンシブの際に修正がいる */
.web-bg {
  display: none;
}

.web-left {
  display: none;
}



.catchphrase {
  text-align: center;
  line-height: 3rem;
  font-size: 4.5rem;
  overflow: hidden;
}

.catchphrase p {
  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
  font-family: "Jaro", sans-serif;
  opacity: 0;
  transform: translatex(20px);
  transition: all .5s ease, transform 1s ease;
}

.catchphrase p:first-child {
  padding-top: 10px;
}

.catchphrase p.show {
  opacity: 1;
  transform: translatex(0);
}

.catchphrase p:first-child:hover {
  scale: 1.2;
}

.catchphrase p:nth-child(2):hover {
  color: #6fe4fe;
}

.catchphrase p:nth-child(3):hover {
  display: inline-block;
  animation: sway 0.6s ease-in-out infinite alternate;
  transform-origin: center;
}

.about-content {
  margin-top: 5rem;
  margin-bottom: 9rem;
}

.about-inner {
  line-height: 3;
  text-align: center;

}

.about-inner p {
  padding: 20px 0;
}

.first-content-ttl {
  text-align: center;
  margin-top: 1rem;
  border-bottom: 1px dotted #f3f3f3;
  margin-bottom: 2rem;
}

.first-content-ttl p {
  margin: 5px 0 10px;
}

.content-ttl {
  text-align: center;
  margin-top: 8rem;
  border-bottom: 1px dotted #f3f3f3;
  margin-bottom: 2rem;
}

.first-content-ttl h2,
.content-ttl h2 {
  font-size: 2rem;
}

.content-ttl p {
  margin: 5px 0 10px;
}

.feature-item img {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
  margin-top: 10px;
}

.feature-item P {
  margin-top: 10px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  /* 任意で間隔 */
  margin: 0 auto;
}

.grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sns-content {
  margin-bottom: 96px;
}

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

.sns-btn {
  display: inline-block;
  margin: 50px auto 0;
  border-bottom: 1px solid #f2f2f2;
}

/* shop----------------- */
.shop-content {
  margin-bottom: 40px;
}

.shop-inner {
  padding: 10px 0;
}

.shop-inner h3 {
  text-align: center;
  padding: 10px 0;
}

.shop-inner img {
  width: 100%;
}

.info-content {
  border-spacing: 0;
}

.info-content th,
.info-content td {
  border-bottom: 1px solid #f3f3f3;
}

.shop-ttl {
  text-align: center;
  margin-bottom: 20px;
}





.info-content th {
  padding: 8px 25px 8px 0;
  width: 30%;
  text-align: left;
}

.map {
  margin-bottom: 100px;
}

.map iframe {
  aspect-ratio: 1/1;
  width: 100%;
}

/* course ----------- */
.course-tabs {
  margin-top: 50px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-menu {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
}

.tab-menu li {
  cursor: pointer;
  padding: 10px 15px;
}

.tab-menu li.active {
  background-color: #004d66;
  color: white;
}

.course-content {
  border-spacing: 0;
}

.course-content th,
.course-content td {
  border-bottom: 1px solid #f3f3f3;
}

.course-content th {
  padding: 8px 25px 8px 0;
  width: 30%;
  text-align: left;
  vertical-align: top;
}

.course-content td {
  padding: 8px;
  line-height: 1.7;
}

.course-item {
  width: 100%;
}

.lesson-inner img {
  width: 100%;
}

.lesson-inner h3 {
  margin: 20px auto;
  text-align: center;
  font-size: 1.5rem;
}

.lesson-inner p {
  line-height: 2;
  margin-top: 20px;
  margin-bottom: 30px;
}


/* course-page */
.season {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0 .5rem;
  border-bottom: 1px solid #f3f3f3;
  border-left: 8px solid #f3f3f3;
}

.creature-item p {
  text-align: center;
  background-color: #004d66;
}

.map-img {
  margin-bottom: 3rem;
}

.map-img img {
  width: 100%;
}

.point-img img {
  aspect-ratio: 3/2;
  object-fit: cover;
}





footer {
  margin-top: 100px;
  padding: 30px;
  background-color: #f3f3f3;
  color: #0f0f0f;
}

.footer-logo a {
  color: #0f0f0f;
  font-size: 1.2rem;
}

.footer-nav-menu {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 15px 0;
}

.footer-nav-menu a {
  color: #0f0f0f;
  border-bottom: 1px dotted #0f0f0f;
}

.info {
  position: relative;
}

.info address {
  margin: 5px 0;
}

.sns-icon {
  width: 30px;
  position: absolute;
  bottom: 5px;
  right: 5px;
}

.form-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
}


.form-bg {
  background-color: #e7e7e7;
  color: #0f0f0f;
}

.form-content-ttl {
  text-align: center;
  margin-top: 1rem;
  border-bottom: 1px dotted #0f0f0f;
  margin-bottom: 2rem;
}

.form-item {
  margin: 2rem 0;
  display: flex;
  border-bottom: 1px solid #0f0f0f;
  padding-bottom: 1rem;
}

.rental-form p {
  font-weight: bold;
  font-size: 1.2rem;
}

.form-item-label-required {
  border-radius: 5px;
  margin-right: .5rem;
  padding: .5rem;
  display: inline-block;
  text-align: center;
  background: #5bc8ac;
  color: #0f0f0f;
  font-size: .875rem;
}

.radio-form {
  flex-direction: column;
  gap: 0px;
}

.radio-form p {
  margin-bottom: .5rem;
}

.form-item-label {
  width: 40%;
}

.form-item-input {
  width: 60%;
}

.submit {
  display: block;
  padding: 20px;
  width: fit-content;
  margin: 0 auto;
  background-color: #004d66;
  color: #f3f3f3;
  border-radius: 1rem;
}



.swiper-wrapper {
  transition-timing-function: linear;
}

.swiper-slide img {
  height: auto;
  width: 100%;
}

.top-visual {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

.top-visual-img {
  background: url('../img/top-view-bg-02.webp');
  background-position: center center;
  background-size: cover;
}

.shop-visual-img {
  background: url('../img/shop-img/shop-view-bg.webp');
  background-position: center center;
  background-size: cover;
}

.course-visual-img {
  background-image: url('../img/course-img/course-top-bg.webp');
  background-position: center center;
  background-size: cover;
}

.spots-visual-img {
  background-image: url('../img/spots-img/spots-top-bg.webp');
  background-position: center center;
  background-size: cover;
}

/* スライダーを配置 */
.swiper {
  position: relative;
  z-index: 1;
  top: 65%;
}

.swiper-button-next,
.swiper-button-prev {
  color: #f3f3f3;
}

.shop-inner {
  position: relative;
}

.shop-swiper .swiper-button-next,
.shop-swiper .swiper-button-prev {
  top: 33%;
  color: #005fa3;
  background-color: #f3f3f3;
  opacity: 0.7;
  border-radius: 40px;
  padding: 25px;
}

.shop-swiper .swiper-button-prev {
  left: 5px;
}

.shop-swiper .swiper-button-next {
  right: 5px;
}

/* 下記のおかげで、スライダー下部にあるドットを本文の部分と被らないようにできる */
.swiper-pagination {
  position: relative;
  margin-top: 20px;
}

/* 下記の部分で大なり小なりを小さくしている */
.shop-swiper .swiper-button-next::after,
.shop-swiper .swiper-button-prev::after {
  font-size: 1.5rem;
}

/* ページの下部にあるドットの色の変更 */
.swiper-pagination-bullet {
  background-color: #f3f3f3;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #005fa3;
}





.fish {
  position: absolute;
  top: 40%;
  left: 80%;
  transform: translate(-50%, -50%);
  width: 190%;
  z-index: 2;
}

.shop-top-img {
  position: absolute;
  top: 40%;
  left: 80%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
}

.course-top-img {
  position: absolute;
  top: 44%;
  left: 70%;
  transform: translate(-50%, -50%);
  width: 140%;
  z-index: 2;
}

.spots-top-img {
  position: absolute;
  top: 40%;
  left: 75%;
  transform: translate(-50%, -50%);
  width: 105%;
  z-index: 2;
}





/* fade-up */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}

.delay-0 {
  transition-delay: 1s;
}

.delay-1 {
  transition-delay: 1.5s;
}

.delay-2 {
  transition-delay: 2s;
}

.delay-3 {
  transition-delay: 2.5s;
}

.delay-4 {
  transition-delay: 3s;
}


@keyframes sway {
  0% {
    transform: rotate(-1deg);
  }

  100% {
    transform: rotate(1deg);
  }
}

@media (min-width: 768px) {
  .web-wrapper {
    width: 690px;
    position: relative;
  }

  .header {
    display: none;
  }

  .form-bg .header {
    display: block;
    padding: 1rem;
  }

  .form-footer {
    width: 40vw;
    margin: 0 auto;
  }

  .drawer-btn {
    display: none;
  }

  .pc-nav-menu {
    display: flex;
    gap: 1rem;
  }

  .web {
    max-width: 375px;
    background-color: #0f0f0f;
    position: relative;
    left: 10%;
  }

  .web-bg {
    display: block;
    position: fixed;
    height: 100vh;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url(../img/web-bg-02.webp);
    background-size: cover;
    background-position: right top;
  }

  .web-right {
    position: absolute;
    top: 30%;
    right: 8%;
  }

  .web-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background-color: #ffffff2e;
    gap: 2rem;
    font-size: 3rem;
    font-family: "Jaro", sans-serif;
  }

  .web-logo {
    margin-top: 3rem;
  }

  .top-visual {
    height: 75vh;
  }
}

@media (min-width: 1024px) {
  .web {
    left: 20%;
  }
  
  .web-right {
    right: 15%;
  }

  .form-container {
    max-width: 820px;
  }
}

@media (min-width: 1440px) {
  .web {
    left: 40%;
  }

  .web-right {
    right: 10%;
  }

  .web-left {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40vw;
    height: 100%;
    padding: 2rem;
  }

  .main-catch {
    font-size: 5rem;
  }

  .web-catch p {
    margin-top: 2rem;
  }

}

@media (min-width: 1920px) {
  .web {
    max-width: 550px;
  }
}