@charset "utf-8";
section {
  /* padding: 100px 0 0; */
}

@media screen and (max-width: 768px) {
  section {
    /* padding: 50px 0; */
  }
}

/* ヘッダー */
.header {
  overflow: hidden;
}
.mv {
  width: 100vw;
  height: auto;
  overflow: hidden;
  /* padding-top: 100px; */
  position: relative;
  box-sizing: border-box;
}
.mv__image {
  width: 100%;
}
.mv__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1920 / 811;
}
.mv__illust {
  position: relative;
  display: grid;
  grid-template-areas:
    "t-left t-middle t-right"
    "b-left t-middle b-right";
  grid-auto-columns: 0.7fr 1fr 0.7fr;
  grid-template-rows: 1fr 1fr;
  width: 100vw;
  height: auto;
  z-index: 0;
}
.mv__illust::after {
  position: absolute;
  content: "";
  background: rgba(194, 233, 248, 0.5);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mv__illust picture {
  display: block;
}
.mv__illust picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.set1 {
  grid-area: t-left;
}
.set2 {
  grid-area: b-left;
}
.set3 {
  grid-area: t-middle;
}
.set4 {
  grid-area: t-right;
}
.set5 {
  grid-area: b-right;
}

.mv__text {
  max-width: 954px;

  position: absolute;
  top: calc(50% + 21px);
  left: calc(50% - 17px);
  translate: -50% -50%;
  z-index: 2;
}

.mv__text img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 922 / 366;
}

.mv__icon {
  position: absolute;
  z-index: 1;
  top: 0;
  width: 100%;
}
.mv__icon img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
}
@media screen and (max-width: 768px) {
  .mv__image img {
    aspect-ratio: 374 / 667;
  }
  .mv__illust {
    grid-template-areas: 
      "t-middle t-middle"
      "b-left b-right"
      "t-right t-right"
    ;
    grid-template-rows: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
  }
  .mv__illust picture.set1 {
    display: none;
  }
  .mv__text {
    top: 44%;
    left: 50%;
    translate: unset;
    transform: translate(-50%, -56%);
    width: 100%;
  }
  .mv__icon {
    top: 44%;
    left: 50%;
    transform: translate(-50%, -56%);
  }
  .mv__icon img {
    position: relative;
  }
}

/* ヘッダーnavメニュー */
.header__nav {
  position: sticky;
  top: 0;
  z-index: 1000; /* 手前に出すため */
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 255) 0%, #e9edf1 100%);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  /* background: linear-gradient(180deg, rgba(233, 237, 241, 0) 0%, #e9edf1 100%); */
}

@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.nav__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 900px;
  width: 90%;
  margin-inline: auto;
}
.nav-items__item {
  position: relative;
}
.nav-items__item a {
  display: block;
  padding-block: 34px;
  font-size: 18px;
  transition: opacity 0.3s ease;
}
.nav-items__item a:hover {
  opacity: 0.8;
}
.nav-items__item:nth-child(1)::after,
.nav-items__item:nth-child(2)::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: #21222c;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  border-radius: 50%;
}
.nav-items__item:nth-child(2) p {
  text-align: center;
}
.nav-items__item:nth-child(3) p {
  text-align: right;
}

/* .nav-items__item {
  text-align: center;
}
.nav-items__item:nth-child(1) {
  display: flex;
  align-items: flex-start;
}
.nav-items__item:nth-child(3) {
  display: flex;
  align-items: flex-end;
} */

/* イントロダクション */
.introduction {
  padding-inline: 24px;
}
.introduction__message {
  padding-block: 160px;
}
.introduction__text {
  text-align: center;
  font-weight: 400;
  font-size: 22px;
  line-height: 200%; /* 44px */
}

.introduction__links {
  display: flex;
  flex-direction: row;
  column-gap: 24px;
  align-items: center;
  justify-content: center;
  margin-block-end: 160px;
}
.introduction__link {
  display: block;
  max-width: 344px;
  position: relative;
  transition: opacity 0.3s ease;
}

.introduction__link:hover {
  opacity: 0.8;
}
.introduction__link p {
  color: #fff;
  text-align: center;
  font-size: 34px;
  line-height: 120%; /* 40.8px */
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  padding-bottom: 54px;
  white-space: nowrap;
}

.introduction__link p::before {
  content: attr(data-en);
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50%;
  font-size: 22px;
  font-weight: 500;
  line-height: 2;
}
.introduction__link p span {
  color: #fff;
  font-size: 22px;
  line-height: 200%;
}
.introduction__link-image {
}
.introduction__link-image::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: calc(120 / 380 * 100%);
  border-left: 1px dashed #fff;
  transform: translateX(-50%);
}
.introduction__link-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 344 / 380;
}
@media screen and (max-width: 1000px) {
  .introduction__link p {
    font-size: 21px;
    padding-bottom: 41px;
  }
  .introduction__link p::before {
    font-size: 16px;
    bottom: -5px;
  }
}
@media screen and (max-width: 768px) {
  .introduction__message {
    padding-block: 119px;
  }
  .introduction__text {
    font-size: 18px;
  }
  .introduction__links {
    flex-direction: column;
    row-gap: 24px;
  }
  .introduction__link {
    max-width: 100%;
  }
  .introduction__link-image img {
    aspect-ratio: 327 / 220;
  }
  .introduction__link-image::after {
    height: calc(48 / 220 * 100%);
  }
  .introduction__link p {
    font-size: 28px;
    padding-bottom: 41px;
  }
  .introduction__link p::before {
    font-size: 18px;
    bottom: -5px;
  }
}

/* マリンアクティビティ */
.marine-activity {
  padding-block-end: 155px;
  background: #e9edf1;
}

.marine-activity__place {
  font-size: 32px;
  font-weight: 700;
  line-height: 200%; /* 64px */
  margin-block-end: 21px;
  margin-block-start: 40px;
}
.marine-activity__card-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 40px;
  row-gap: 22px;
}
.marine-activity__card {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  max-width: 520px;
}

.card__img {
}
.card__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 520 / 320;
  border-radius: 8px;
}

.card__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 200%; /* 44px */
}
.card__description {
}
.card__details {
  display: flex;
  flex-direction: column;
  row-gap: 13px;
}
.card__details dl {
  display: flex;
  /* column-gap: 15px; */
  flex-wrap: wrap;
  width: 100%;
}
.card__details dl dt {
  width: calc(71 / 520 * 100%);
  /* width: calc(55 / 520 * 100%); */
  /* width: 11.5%; */
}
.card__details dl dt span {
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid #8b5c19;
  background: #fff;
}
.short {
  letter-spacing: 1px;
}
.card__details dl dd {
  width: auto;
  /* width: calc(447 / 520 * 100%); */
  /* width: calc(449 / 520 * 100%); */
  /* overflow-wrap: break-word; */
  word-break: break-all;
}

.card__add {
}
@media screen and (max-width: 1050px) {
  .card__details dl dt {
    width: calc(110 / 520 * 100%);
  }
}
@media screen and (max-width: 768px) {
  .marine-activity {
    padding-block-start: 32px;
  }
  .marine-activity__place {
    font-size: 22px;
  }
  .marine-activity__card-container {
    /* grid-template-columns: 1fr; */
    display: flex;
    flex-direction: column;
    row-gap: 24px;
  }
  .marine-activity__card {
    margin-inline: auto;
  }
  .card__title {
    font-size: 18px;
  }
  .card__details dl dt {
    width: calc(110 / 520 * 100%);
  }
  .card__details dl dd.long-text {
    width: calc(410 / 520 * 100%);
  }
  .card__img img.ceiling {
    aspect-ratio: 327 / 320;
  }
}

/* ダイビング */

.marine-activity__card-large {
  display: flex;
  flex-direction: column;
  row-gap: 17px;
  max-width: 1080px;
}
.diving {
  margin-block-start: -8px;
}
.card__img-large {
}
.card__img-large img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1080 / 340;
  border-radius: 8px;
}

.card__details-course-wrapper {
  display: flex;
  flex-direction: row;
  column-gap: 40px;
}
.card__details-course {
  width: 50%;
}

.card__details--secondary {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.card__details--secondary dl {
  display: flex;
  /* column-gap: 11px; */
  flex-wrap: wrap;
  width: 100%;
}
.card__details--secondary dl dt {
  width: calc(113 / 520 * 100%);
  /* width: 11.5%; */
}
.card__details--secondary dl dt span {
  padding-block: 4px;
  border-radius: 4px;
  border: 1px solid #8b5c19;
  background: #fff;
}
.tag-padding {
  /* padding-inline: 10px; */
  width: 53.6px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card__details--secondary dl dd {
}

.card__details-title {
  margin-block-end: 8px;
}

.card__link {
  width: 100%;
  max-width: 462px;
  margin-inline: auto;
  margin-block-start: 8px;
}
@media screen and (max-width: 768px) {
  .marine-activity__card-large {
    max-width: 520px;
    margin-inline: auto;
  }
  .card__img-large img {
    aspect-ratio: 327 / 200;
  }
  .card__details-course-wrapper {
    flex-direction: column;
    row-gap: 37px;
  }
  .card__details-course {
    width: 100%;
  }

  .card__details--secondary {
  }
  .card__details--secondary dl {
  }
  .card__details--secondary dl dt {
    /* width: calc(55 / 520 * 100%); */
    /* width: 11.5%; */
  }
  .card__details--secondary dl dt span {
  }
  .tag-padding {
  }

  .card__details--secondary dl dd {
  }

  .card__details-title {
    margin-block-end: 10px;
  }

  .card__link {
    max-width: 311px;
    margin-block-start: 6px;
  }
  .card__link svg {
  }
}

/* ホエールウォッチング */
.whale {
  margin-block-start: -4px;
}
.card__details-course-wrapper--secondary {
  display: flex;
  flex-direction: row;
  column-gap: 8px;
}

.whale-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .whale {
    margin-block-start: -4px;
  }
  .card__details-course-wrapper--secondary {
    flex-direction: column;
    row-gap: 4px;
  }

  .whale-right {
  }
}
/* ゴルフ */
.golf {
  padding-block-end: 162px;
  background: #d3d7cf;
}
.golf__bg {
}
.golf__bg img {
}
.golf__heading {
}
.golf__inner {
  max-width: 1668px;
  margin-inline: auto;
  padding-inline: 100px;
}
.golf__links {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 24px;
}
.golf__link {
  position: relative;
  display: block;
  transition: opacity 0.3s ease;
}
.golf__link:hover {
  opacity: 0.7;
}
.golf__link:nth-child(1) {
  grid-row: 1 / 2;
  grid-column: 1 / 3;
}
.golf__link:nth-child(2) {
  grid-row: 1 / 2;
  grid-column: 3 / 5;
}
.golf__link:nth-child(3) {
  grid-row: 1 / 2;
  grid-column: 5 / 7;
}
.golf__link:nth-child(4) {
  grid-row: 2 / 3;
  grid-column: 2 / 4;
}
.golf__link:nth-child(5) {
  grid-row: 2 / 3;
  grid-column: 4 / 6;
}
.golf__link img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 540 / 380;
}
.golf__link-title {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  color: #fff;
  font-size: 34px;
  line-height: 120%; /* 40.8px */
  white-space: nowrap;
  text-align: center;
}
.golf__link-title.padding-modify {
  top: calc(50% + 21px);
}
.golf__link svg {
  width: 80px;
  height: 58px;
  position: absolute;
  right: 32px;
  bottom: 40px;
}

.golf__copyright {
  color: #fff;
  font-size: 12px;
  line-height: 120%; /* 14.4px */
  position: absolute;
  right: 8px;
  bottom: 8px;
}
@media screen and (max-width: 1400px) {
  .golf__link-title {
    font-size: 28px;
  }
  .golf__inner {
    padding-inline: 50px;
  }
  .golf__links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 24px;
  }

  .golf__link:nth-child(1) {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  }
  .golf__link:nth-child(2) {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
  }
  .golf__link:nth-child(3) {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
  }
  .golf__link:nth-child(4) {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
  }
  .golf__link:nth-child(5) {
    grid-row: 3 / 4;
    grid-column: 1 / 2;
  }
  .golf__link svg {
    width: 55px;
    height: 40px;
    position: absolute;
    right: 8px;
    bottom: 32px;
  }
}
@media screen and (max-width: 768px) {
  .golf {
    /* padding-block-end: 162px; */
  }
  .golf__bg {
  }
  .golf__bg img {
  }
  .heading06.golf__heading {
    padding-top: 77px;
  }
  .golf__inner {
    max-width: 100%;
    margin-inline: auto;
    padding-inline: 24px;
  }
  .golf__links {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
  }
  .golf__link {
  }
  .golf__link:hover {
  }
  .golf__link:nth-child(1) {
  }
  .golf__link:nth-child(2) {
  }
  .golf__link:nth-child(3) {
  }
  .golf__link:nth-child(4) {
  }
  .golf__link:nth-child(5) {
  }
  .golf__link img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 327 / 200;
  }
  .golf__link-title {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    color: #fff;
    font-size: 22px;
    line-height: 200%;
  }
  .golf__link-title.padding-modify {
    top: calc(50% + 2px);
  }
  .golf__link svg {
    width: 55px;
    height: 40px;
    position: absolute;
    right: 16px;
    bottom: 32px;
  }

  .golf__copyright {
  }
}

/* 乗り物・体験・観光 */
.sightseeing {
  padding-block-end: 195.55px;
  background: #ece9ee;
}
.sightseeing__bg {
}
.sightseeing__bg img {
}
.sightseeing__inner {
}
.sightseeing__items-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 16px;
  margin-block-end: 70px;
}
.sightseeing__item-small {
  /* display: flex;
  flex-direction: column; */
  display: grid;
  grid-template-columns: subgrid;
  grid-row: span 4;
  row-gap: 16px;
}
.item__small-image {
}
.item__small-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 349.33 / 240;
  border-radius: 8px;
}
.item__small-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 200%; /* 44px */
}
.item__small-text {
}
.item__small-link {
}

.sightseeing__items-bottom {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.sightseeing__item-large {
  display: flex;
  flex-direction: row;
  column-gap: 16px;
  align-items: flex-start;
}
.item__large-image {
  /* flex-shrink: 0; */
  width: calc(532 / 1080 * 100%);
}
.item__large-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 532 / 280;
  border-radius: 8px;
}
.item__large-content {
  width: calc(532 / 1080 * 100%);
}
.item__large-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 200%; /* 64px */
  margin-block-end: 19px;
}
.item__large-tag {
  padding: 5px 8px;
  border-radius: 4px;
  border: 1px solid #8b5c19;
  background: #fff;
}
.item__large-text {
  margin-block-start: 8px;
  margin-block-end: 16px;
}
.item__large-link {
  width: fit-content;
  /* max-width: 177px; */
}

@media screen and (max-width: 768px) {
  .sightseeing {
    /* padding-block-end: 195.55px; */
  }
  .sightseeing__bg {
  }
  .sightseeing__bg img {
  }
  .sightseeing__inner {
  }
  .sightseeing__items-top {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    margin-block-end: 120px;
  }
  .sightseeing__item-small {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
  }
  .item__small-image {
  }
  .item__small-image img {
    aspect-ratio: 327 / 200;
  }
  .item__small-title {
  }
  .item__small-text {
  }
  .item__small-link {
  }

  .sightseeing__items-bottom {
  }
  .sightseeing__item-large {
    flex-direction: column;
    align-items: center;
    row-gap: 16px;
  }
  .item__large-image {
    /* flex-shrink: 0; */
    width: 100%;
  }
  .item__large-image img {
    aspect-ratio: 327 / 200;
  }
  .item__large-content {
    width: 100%;
  }
  .item__large-title {
    font-size: 22px;
    margin-block-end: 16px;
  }
  .item__large-tag {
    padding: 5px 8px;
    border-radius: 4px;
    border: 1px solid #8b5c19;
    background: #fff;
  }
  .item__large-text {
    margin-block-start: 8px;
    margin-block-end: 16px;
  }
  .item__large-link {
    width: auto;
    /* max-width: 177px; */
  }
}

/* フッター */
footer {
  /* text-align: center !important; */
  margin: 0 auto !important;
  background-color: #ece9ee !important;
}
.footer__inner {
  display: flex;
  flex-direction: row;
  column-gap: 40px;
  align-items: center;

  padding-inline: 108px 100px;
  max-width: 1080px;
  margin-inline: auto;
}
.logo {
  display: block;
  width: 199.994px;
}
footer .logo img {
  width: 100%;
  height: auto;
  aspect-ratio: 200 / 44;
}

.info {
  font-size: 12px;
  font-weight: 400;
  line-height: 170%; /* 20.4px */
}
.address {
}
.address p {
}
.tel {
}
.tel p {
}

.copy-right {
  text-align: center;
  background: #ece9ee;
  font-size: 12px;
  line-height: 170%; /* 20.4px */
  padding-block: 22px 12px;
}

@media screen and (max-width: 768px) {
  footer {
  }
  .footer__inner {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    align-items: center;
    align-items: flex-start;

    padding-inline: 0;
    max-width: 200px;
    margin-inline: auto;
  }
  .logo {
    display: block;
    width: 200px;
  }
  footer .logo img {
  }

  .info {
    font-size: 12px;
    font-weight: 400;
    line-height: 170%; /* 20.4px */
  }
  .address {
  }
  .address p {
  }
  .tel {
  }
  .tel p {
  }

  .copy-right {
    font-size: 10px;
    padding-block: 80px 17px;
  }
}

/* エンディング */

/* パララックス */

/* .parallax-container {
    perspective: 1000px;
    overflow-x: scroll;
    scroll-behavior: smooth;
    white-space: nowrap;
}

.parallax-container img {
    display: inline-block;
    transform-style: preserve-3d;
    pointer-events: none;
} */

/* オープニングアニメーション */

/* #opening-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    height: 100%;
    z-index: 999;
} */

/* #content {
    display: none;
} */

#opening-video {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 9999;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#opening-video.passive {
  display: none;
}
