@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core html defaults */
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.diving-course {
  position: relative;
  padding-block: 6.5625rem 6.75rem;
  background-color: #F2FAFF;
  margin-top: 5.8125rem;
}
@media screen and (max-width: 767px) {
  .diving-course {
    padding-block: 3rem;
  }
}

.diving-course__inner.inner {
  position: relative;
  max-width: 66.25rem;
}
@media screen and (max-width: 767px) {
  .diving-course__inner.inner {
    max-width: 41.25rem;
  }
}

.diving-course__inner::after {
  content: "";
  position: absolute;
  top: -9.75rem;
  right: 3.5rem;
  width: 9.625rem;
  height: 5.4375rem;
  background: url("../images/renovation/common/twofish_illust.png") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .diving-course__inner::after {
    width: 20%;
    top: -3%;
    right: 5%;
  }
}

.diving-course__title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #005bac;
}
@media screen and (max-width: 767px) {
  .diving-course__title {
    font-size: 1.5rem;
  }
}

.diving-course__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.625rem;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .diving-course__list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.875rem;
  }
}

.diving-course__item {
  display: flex;
  flex-direction: column;
}

.diving-course__img {
  aspect-ratio: 455/284;
}

.diving-course__img img {
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
}

.diving-course__body {
  margin-top: 1.125rem;
}
@media screen and (max-width: 767px) {
  .diving-course__body {
    margin-top: 0.875rem;
  }
}

.diving-course__name {
  font-size: 1.5625rem;
  font-weight: bold;
  color: #005bac;
}
@media screen and (max-width: 767px) {
  .diving-course__name {
    font-size: 1.125rem;
  }
}

.diving-course__desc {
  font-size: 1rem;
  line-height: 1.75;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .diving-course__desc {
    font-size: 0.875rem;
    margin-top: 0.3125rem;
  }
}

.diving-course__details-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #ffffff;
  border: 1px solid #005bac;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #005bac;
  cursor: pointer;
  transition: opacity 0.3s ease;
  margin-top: 1rem;
}
.diving-course__details-btn:hover {
  opacity: 0.8;
}
.diving-course__details-btn.is-active {
  border-radius: 8px 8px 0 0;
}

.diving-course__details-text {
  flex: 1;
  text-align: left;
}

.diving-course__details-icon {
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  transform: rotate(90deg);
}
.diving-course__details-icon.is-rotated {
  transform: rotate(270deg);
}
.diving-course__details-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.diving-course__details-content {
  display: none;
  background-color: #ffffff;
  border-right: 1px solid #005bac;
  border-left: 1px solid #005bac;
  border-bottom: 1px solid #005bac;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  margin-top: -2px;
  z-index: 1;
  position: relative;
}

.diving-course__details-inner {
  padding: 1.25rem;
}

.diving-course__details-section {
  margin-bottom: 1.5rem;
}
.diving-course__details-section:last-child {
  margin-bottom: 0;
}

.diving-course__details-section-title {
  font-size: 1rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 0.75rem;
}

.diving-course__details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.diving-course__details-item {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #000000;
}
.diving-course__details-item:last-child {
  margin-bottom: 0;
}
.diving-course__details-item::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: #005bac;
  font-size: 0.75rem;
}

@media screen and (max-width: 767px) {
  .diving-course__details-btn {
    padding: 0.625rem 0.75rem;
    font-size: 0.8125rem;
  }
  .diving-course__details-inner {
    padding: 1rem;
  }
  .diving-course__details-section-title {
    font-size: 0.9375rem;
  }
  .diving-course__details-item {
    font-size: 0.8125rem;
  }
}
.diving-spot {
  margin-top: 8.0625rem;
}
@media screen and (max-width: 767px) {
  .diving-spot {
    margin-top: 4.375rem;
  }
}

.diving-spot__title {
  font-size: 2.5rem;
  text-align: center;
  font-weight: bold;
  color: #005bac;
  margin-top: 4.125rem;
}
@media screen and (max-width: 767px) {
  .diving-spot__title {
    margin-top: 2.5rem;
    font-size: 1.75rem;
    line-height: 1.6;
  }
}

.diving-spot__map {
  text-align: center;
  aspect-ratio: 1010/1106;
  max-width: 63.125rem;
  margin-inline: auto;
  margin-top: 3.625rem;
}
.diving-spot__map img {
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .diving-spot__map {
    margin-top: 1.875rem;
  }
}

.diving-spot__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2.125rem;
  row-gap: 1.875rem;
  margin-top: 2.25rem;
  max-width: 69.375rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .diving-spot__list {
    grid-template-columns: 1fr;
    margin-top: 1.75rem;
    column-gap: initial;
  }
}

.diving-spot__item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.diving-spot__img {
  aspect-ratio: 344/205;
}

.diving-spot__img img {
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.diving-spot__label {
  font-size: 1.125rem;
  font-weight: bold;
  color: #005bac;
}

.diving-spot__desc {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.diving-calendar {
  position: relative;
  padding-block: 6.25rem;
  margin-top: 7.0625rem;
  background-color: #F2FAFF;
}
@media screen and (max-width: 767px) {
  .diving-calendar {
    margin-top: 4.375rem;
    padding-block: 3rem;
  }
}

.diving-calendar__title {
  font-size: 2rem;
  font-weight: bold;
  color: #005bac;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .diving-calendar__title {
    font-size: 1.75rem;
  }
}

.calendar-embed {
  margin-top: 2.375rem;
}

.calendar-embed iframe {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.calendar-info {
  margin-top: 3.75rem;
  max-width: 67.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .calendar-info {
    max-width: 100%;
  }
}

.diving-calendar__inner {
  position: relative;
}

.diving-calendar::after {
  content: "";
  position: absolute;
  top: -1.25rem;
  right: 10.5rem;
  width: 9.625rem;
  height: 5.4375rem;
  background: url("../images/renovation/common/twofish_illust.png") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .diving-calendar::after {
    width: 20%;
    top: -2.5%;
    right: 5%;
  }
}

.diving-staff {
  overflow-x: clip;
  margin-top: 5.9375rem;
}

.diving-staff__inner.inner {
  position: relative;
  max-width: 62.5rem;
}
@media screen and (max-width: 767px) {
  .diving-staff__inner.inner {
    max-width: 37.5rem;
  }
}

.diving-staff__inner::before,
.diving-staff__inner::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: -1;
}

.diving-staff__inner::before {
  top: -0.1875rem;
  left: -2.9375rem;
  width: 13.3125rem;
  height: 7.625rem;
  background-image: url("../images/renovation/common/threefish_illust.png");
}
@media screen and (max-width: 767px) {
  .diving-staff__inner::before {
    top: -2.5%;
    left: -4%;
    width: 25%;
  }
}

.diving-staff__inner::after {
  top: -1.75rem;
  right: -1.375rem;
  width: 7.5rem;
  height: 11.25rem;
  background-image: url("../images/renovation/common/bubble_ver2.png");
}
@media screen and (max-width: 767px) {
  .diving-staff__inner::after {
    top: -3.2%;
    right: -2%;
    width: 18%;
  }
}

.diving-staff__title {
  font-size: 2rem;
  font-weight: bold;
  color: #005bac;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .diving-staff__title {
    font-size: 1.5rem;
  }
}

.diving-staff__list {
  display: grid;
  gap: 3.0625rem;
  margin-top: 3.9375rem;
}
@media screen and (max-width: 767px) {
  .diving-staff__list {
    margin-top: 2.5rem;
    gap: 1.875rem;
  }
}

.diving-staff__card {
  background-color: #ffffff;
  border-radius: 1.25rem;
  box-shadow: 0px 0px 18px rgba(18, 116, 176, 0.29);
  padding: 2.5rem 1.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .diving-staff__card {
    padding: 2rem 1rem;
  }
}

.diving-staff__label {
  position: absolute;
  top: -0.75rem;
  left: 0;
  display: inline-block;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  background-color: #1f99e7;
}

.diving-staff__body {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2.625rem;
}
@media screen and (max-width: 767px) {
  .diving-staff__body {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.diving-staff__image {
  aspect-ratio: 360/260;
  border-radius: 0.5rem;
  width: 38.8421052632%;
}
@media screen and (max-width: 767px) {
  .diving-staff__image {
    width: 100%;
  }
}

.diving-staff__image img {
  object-fit: cover;
  height: 100%;
  border-radius: 20px;
}

.diving-staff__content {
  flex: 1;
}

.diving-staff__name {
  font-size: 1.75rem;
  font-weight: bold;
  color: #005bac;
}
@media screen and (max-width: 767px) {
  .diving-staff__name {
    font-size: 1.25rem;
  }
}

.diving-staff__nickname {
  font-size: 0.9375rem;
  margin-left: 0.75rem;
}
@media screen and (max-width: 767px) {
  .diving-staff__nickname {
    margin-left: 0.5rem;
  }
}

.diving-staff__en {
  font-size: 1.125rem;
  color: #005bac;
}
@media screen and (max-width: 767px) {
  .diving-staff__en {
    font-size: 1rem;
  }
}

.diving-staff__one-word {
  font-size: 1.375rem;
  font-weight: bold;
  color: #005bac;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .diving-staff__one-word {
    font-size: 1.125rem;
    margin-top: 0.625rem;
  }
}

.diving-staff__text {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .diving-staff__text {
    font-size: 0.875rem;
    margin-top: 0.5rem;
  }
}

.diving-staff__profile {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  display: grid;
  gap: 0.125rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .diving-staff__profile {
    font-size: 0.875rem;
    margin-top: 1.25rem;
  }
}

.diving-staff__profile-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.service-facility {
  position: relative;
  padding-block: 6.625rem 9.125rem;
  background-color: #F2FAFF;
  margin-top: 7.8125rem;
}
@media screen and (max-width: 767px) {
  .service-facility {
    padding-block: 3rem 4.375rem;
    margin-top: 4.375rem;
  }
}

.service-facility__inner.inner {
  position: relative;
}

.service-facility__inner::after {
  content: "";
  position: absolute;
  top: -7.875rem;
  right: 6.25rem;
  width: 9.625rem;
  height: 5.4375rem;
  background: url("../images/renovation/common/twofish_illust.png") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .service-facility__inner::after {
    width: 20%;
    top: -21.5%;
    right: 5%;
  }
}

.service-facility__title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #005bac;
}
@media screen and (max-width: 767px) {
  .service-facility__title {
    font-size: 1.5rem;
  }
}

.service-facility__list {
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .service-facility__list {
    margin-top: 2.5rem;
  }
}

.service-facility__list.swiper {
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-facility__list.swiper .swiper-slide {
  height: auto;
  flex-shrink: 0;
}
.service-facility__list.swiper .service-facility__item {
  outline: none;
  cursor: grab;
}
.service-facility__list.swiper .service-facility__item:active {
  cursor: grabbing;
}
.service-facility__list.swiper .service-facility__image {
  aspect-ratio: 424/336;
  overflow: hidden;
  border-radius: 1.25rem;
}
.service-facility__list.swiper .service-facility__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.service-facility__list.swiper .service-facility__caption {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .service-facility__list.swiper .service-facility__caption {
    font-size: 0.875rem;
    margin-top: 0.5rem;
  }
}
.service-facility__list.swiper[style*="opacity: 1"] {
  opacity: 1;
}

.service-facility__list:not(.swiper) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .service-facility__list:not(.swiper) {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
.service-facility__list:not(.swiper) .service-facility__item .service-facility__image {
  aspect-ratio: 424/336;
  border-radius: 1.25rem;
  overflow: hidden;
}
.service-facility__list:not(.swiper) .service-facility__item .service-facility__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-facility__list:not(.swiper) .service-facility__item .service-facility__caption {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service-facility__list:not(.swiper) .service-facility__item .service-facility__caption {
    font-size: 0.875rem;
    margin-top: 0.5rem;
  }
}

.calendar-embed {
  max-width: 61.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .calendar-embed {
    max-width: 100%;
  }
}

.service-footer {
  margin-top: initial;
}

/*# sourceMappingURL=service.css.map */
