

/* ---------- カラー・共通値 ---------- */
:root {
  --navy: #02162e;
  --gold: #c89b3c;
  --text: #4b4b4b;
  --ivory: #f7f4ed;
  --white: #ffffff;
  --line: #d5d0c7;
}

/* ---------- ページ共通 ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--ivory);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}


/* ==================================================
   HERO
================================================== */

.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 110px);
  min-height: 680px;
  overflow: hidden;
  background: var(--navy);
}

.hero-images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  height: 100%;
}

.hero-panel {
  position: relative;
  display: block;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.hero-panel + .hero-panel {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-panel:nth-child(1) img {
  object-position: 45% center;
}

.hero-panel:nth-child(2) img {
  object-position: center;
}

.hero-panel:nth-child(3) img {
  object-position: 40% center;
}

.hero-panel:hover {
  z-index: 2;
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.hero-panel:hover img {
  transform: scale(1.025);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: rgba(2, 22, 46, 0.27);
}

.hero-content {
  position: absolute;
  top: 35%;
  left: 50%;
  z-index: 4;
  width: min(900px, 90%);
  transform: translate(-50%, -50%);
  color: var(--white);
  text-align: center;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.hero-content h1 {
  margin: 10px 20px;
  font-size: clamp(40px, 5vw, 78px);
  line-height: 1.15;
  letter-spacing: 0.09em;
  text-shadow: 0 4px 12px rgba(0,0,0,.65);
}

.hero-content p {
  margin: 0;
  padding-bottom: 10px;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-shadow: 0 3px 10px rgba(0,0,0,.65);
}

.hero-content h2 {
  margin-top: 50px;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-shadow: 0 3px 10px rgba(0,0,0,.65);
}


/* ==================================================
   01〜04 共通セクション
================================================== */



.top-section {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 350px;
  overflow: hidden;
  background: var(--ivory);
}


/* ==================================================
   左画像・右文章
================================================== */

.top-section-left .top-section-media {
  grid-column: 1;
  grid-row: 1;
}

.top-section-left .top-section-content {
  grid-column: 2;
  grid-row: 1;
}


/* ==================================================
   左文章・右画像
================================================== */

.top-section-right .top-section-content {
  grid-column: 1;
  grid-row: 1;
}

.top-section-right .top-section-media {
  grid-column: 2;
  grid-row: 1;
}


/* ==================================================
   文章エリア
================================================== */

.top-section-content {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  min-width: 0;

  padding-top: 38px;
  padding-bottom: 38px;
}

.top-section-left .top-section-content {
  padding-left: 11%;
  padding-right: 8%;
}

.top-section-right .top-section-content {
  padding-left: 10%;
  padding-right: 11%;
}


/* ==================================================
   見出し
================================================== */

.top-section-heading {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.top-section-number {
  flex-shrink: 0;

  color: var(--gold);
  font-family: "Shippori Mincho", serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}

.top-section-heading h2 {
  margin: 0;

  color: var(--navy);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
}

.top-section-heading > div > p {
  margin: 10px 20px 0;

  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
}


/* ==================================================
   説明文
================================================== */

.top-section-description {
  margin-top: 30px;
  padding-left: 70px;
}

.top-section-description p {
  margin: 0 10px 8px;

  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.06em;
}


/* ==================================================
   PLAN一覧
================================================== */

.top-plan-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 30px;
  width: 100%;

  margin-top: 30px;
  padding-left: 70px;
}

.top-plan-list > div + div {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.top-plan-list p {
  margin: 0 10px 8px;

  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}


/* ==================================================
   詳しく見るボタン
================================================== */

.top-section-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 205px;
  min-height: 48px;

  margin-top: 30px;
  margin-left: 70px;
  padding: 10px 20px;

  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);

  font-size: 14px;
  letter-spacing: 0.08em;

  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}

.top-section-btn span {
  font-size: 22px;
  line-height: 1;
}

.top-section-btn:hover {
  color: var(--navy);
  background: transparent;
  transform: translateY(-2px);
}


/* ==================================================
   画像エリア
================================================== */

.top-section-media {
  position: relative;

  width: 100%;
  min-width: 0;
  min-height: 350px;

  overflow: hidden;
}

.top-section-media img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.top-section-media-single img {
  object-position: center;
}


/* ==================================================
   左画像の斜めライン
================================================== */

.top-section-left .top-section-media-single {
  clip-path: polygon(
    0 0,
    100% 0,
    88% 100%,
    0 100%
  );
}


/* ==================================================
   右画像の斜めライン
================================================== */

.top-section-right .top-section-media-single {
  clip-path: polygon(
    12% 0,
    100% 0,
    100% 100%,
    0 100%
  );
}


/* ==================================================
   各画像の位置調整
================================================== */

.top-about .top-section-media img {
  object-position: center;
}

.top-gallery .top-section-media img {
  object-position: center;
}

.top-plan .top-section-media img {
  object-position: center;
}

.top-fish-sales .top-section-media img {
  object-position: center;
}

/* GALLERY・FISH SALESの高さを固定 */

.top-gallery,
.top-fish-sales {
  height: 330px;
  min-height: 0;
}

.top-gallery .top-section-media,
.top-fish-sales .top-section-media {
  height: 330px;
  min-height: 0;
}

.top-gallery .top-section-content,
.top-fish-sales .top-section-content {
  min-height: 0;
  padding-top: 25px;
  padding-bottom: 25px;
}

/* ==================================================
   05〜07 INFORMATION
================================================== */

.bottom-info {
  width: 100%;
  padding: 20px 28px 30px;
  background: var(--ivory);
}

.bottom-info__inner {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1.05fr)
    minmax(0, 0.95fr);
  align-items: stretch;
  gap: 18px;
  width: min(1400px, 100%);
  margin: 0 auto;
}


/* ---------- カード共通 ---------- */

.info-card {
  position: relative;
  min-width: 0;
  height: 270px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(2, 22, 46, 0.18);
}

.info-card--access,
.info-card--contact {
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(0, 42%);
}


/* ---------- カード文字側 ---------- */

.info-card__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: 28px 18px 24px 30px;
  background: var(--white);
}

.info-card__heading {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 18px;
}

.info-card__number {
  flex-shrink: 0;
  color: var(--gold);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(38px, 3vw, 50px);
  font-weight: 500;
  line-height: 1;
}

.info-card__heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(25px, 2.15vw, 34px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.info-card__text p {
  margin: 0 10px 0;
  color: var(--navy);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
}


/* ---------- SNS ---------- */

.info-card__sns {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 13px 10px 10px;
}

.info-card__sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.info-card__sns img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.info-card__sns a:hover img {
  opacity: 0.7;
  transform: translateY(-2px);
}


/* ---------- カードボタン ---------- */

.info-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: fit-content;
  min-width: 180px;
  min-height: 48px;
  margin-top: auto;
  padding: 10px 22px;
  color: var(--white);
  background: var(--navy);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.info-card__button span {
  font-size: 22px;
  line-height: 1;
}

.info-card__button:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.info-card--contact .info-card__text {
  overflow: hidden;
}

.info-card--contact .info-card__button {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 10px 8px;
  font-size: 13px;
  white-space: nowrap;
}


/* ---------- カード画像側 ---------- */

.info-card__image {
  width: 100%;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

.info-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-card--access .info-card__image img {
  object-position: center;
}

.info-card--contact .info-card__image img {
  object-position: 60% center;
}


/* ---------- キャンセルカード ---------- */

.info-card--cancel {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.cancel-card__content {
  width: fit-content;
  max-width: 84%;
  text-align: left;
}

.cancel-card__content h2 {
  margin: 0 0 28px;
  color: #d49f27;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(19px, 1.45vw, 24px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.cancel-card__content p {
  margin: 0;
  color: var(--white);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.07em;
}






/* ==================================================
   タブレット：1024px以下
================================================== */

@media screen and (max-width: 1024px) {

  /* HERO */
  .hero {
    height: 72vh;
    min-height: 600px;
  }

  .hero-content {
    top: 32%;
  }

  .hero-content h1 {
    font-size: clamp(38px, 6vw, 62px);
    letter-spacing: 0.07em;
  }

  /* 01〜04 */
  .top-section {
    min-height: 500px;
  }

  .top-section-content {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .top-section-left .top-section-content,
  .top-section-right .top-section-content {
    padding-left: 7%;
    padding-right: 7%;
  }

  .top-section-heading {
    gap: 20px;
  }

  .top-section-number {
    font-size: 48px;
  }

  .top-section-heading h2 {
    font-size: clamp(34px, 4.8vw, 50px);
  }

  .top-section-description,
  .top-plan-list {
    padding-left: 68px;
  }

  .top-section-btn {
    margin-left: 68px;
  }

  .top-section-media {
    min-height: 500px;
  }

  /* 05〜07 */
  .bottom-info__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-card--cancel {
    grid-column: 1 / -1;
    min-height: 210px;
  }

  .info-card {
    height: 260px;
  }

  .cancel-card__content{
      max-width:520px;
      margin:0 auto;
  }

  .cancel-card__content h2{
      text-align:center;
      margin-bottom:26px;
  }

  .cancel-card__content p{
      display:inline-block;
      text-align:left;
      line-height:2;
  }

}


/* ==================================================
   スマートフォン・タブレット：768px以下
================================================== */

@media screen and (max-width: 768px) {

  /* ==================================================
     HERO：3艇を縦並び
  ================================================== */

  .hero {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: hidden;
  }

  .hero-images {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
  }

  .hero-panel {
    flex: none;
    width: 100%;
    height: 230px;
    clip-path: none;
    overflow: hidden;
  }

  .hero-panel img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* 1艇目 */
  .hero-panel:nth-child(1) img {
    object-position: 50% center;
  }

  /* 2艇目 */
  .hero-panel:nth-child(2) img {
    object-position: 52% center;
  }

  /* 3艇目 */
  
  .hero-panel:nth-child(3) img {
  transform: scale(1.25);
  transform-origin: 35% 85%;
}

  .hero-panel:hover {
    transform: none;
    box-shadow: none;
  }

  .hero-panel:hover img {
    transform: none;
  }

  /* HERO中央文字 */

  .hero-content {
    position: absolute;
    top: 52%;
    left: 50%;
    z-index: 3;
    width: calc(100% - 40px);
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .hero-content h1 {
    margin-bottom: 12px;
    font-size: clamp(27px, 8vw, 44px);
    line-height: 1.3;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  .hero-content p {
    font-size: clamp(14px, 4vw, 20px);
    padding-bottom: 60px;
  }

  .hero-content h2 {
    font-size: clamp(14px, 4vw, 10px);
    
  }


  /* ==================================================
     01〜04：画像上、文章下
  ================================================== */

  .top-section,
  .top-section-left,
  .top-section-right {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  /* 画像を必ず上にする */
  .top-section-media,
  .top-section-left .top-section-media,
  .top-section-right .top-section-media {
    order: 1;
    position: relative;
    width: 100%;
    height: 300px;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    clip-path: none;
    transform: none;
  }

  /* 斜めカットを解除 */
  .top-section-media-single,
  .top-section-left .top-section-media-single,
  .top-section-right .top-section-media-single {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    clip-path: none;
    transform: none;
  }

  /* 画像 */
  .top-section-media img,
  .top-section-media-single img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin: 0;
    transform: none;
  }

  /* 文章を必ず画像の下にする */
  .top-section-content,
  .top-section-left .top-section-content,
  .top-section-right .top-section-content {
    order: 2;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 44px 24px 54px;
    overflow: visible;
    transform: none;
    box-sizing: border-box;
  }

  /* 見出し */
  .top-section-heading,
  .top-section-left .top-section-heading,
  .top-section-right .top-section-heading {
    position: static;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
    margin: 0;
    padding: 0;
    transform: none;
  }

  .top-section-number {
    flex-shrink: 0;
    margin: 0;
    font-size: 39px;
    line-height: 1;
  }

  .top-section-heading > div {
    min-width: 0;
  }

  .top-section-heading h2 {
    margin: 0;
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.1;
    word-break: break-word;
  }

  .top-section-heading > div > p {
    margin: 9px 0 0;
    font-size: 12px;
    line-height: 1.7;
  }

  /* 説明文 */
  .top-section-description {
    position: static;
    width: 100%;
    margin: 30px 20px 0;
    padding: 0;
    transform: none;
  }

  .top-section-description p {
    margin: 0;
    font-size: 14px;
    line-height: 2;
  }

  .top-section-description p + p {
    margin-top: 12px;
  }

  /* PLANのリスト */
  .top-plan-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;

    width: calc(100% - 40px); /* 左右20pxずつ内側 */
    margin: 30px 20px 0;
    padding: 0;
    box-sizing: border-box;
  }


  .top-plan-list > div {
    width: 100%;
    padding: 0;
  }

  .top-plan-list > div + div {
    padding-top: 15px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .top-plan-list p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
  }

  /* 詳しく見るボタン */
  .top-section-btn {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    margin: 35px 0 0;
    padding: 12px 20px;
    box-sizing: border-box;
    transform: none;
  }

  /* ==================================================
     05〜07
  ================================================== */

  .bottom-info {
    padding: 15px;
  }

  .bottom-info__inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* 共通カードの高さ */
  .info-card {
    height: 230px;
    min-height: 0;
  }

  /* ACCESS・CONTACTは左右2列のまま */
  .info-card--access,
  .info-card--contact {
    display: grid;
    grid-template-columns: minmax(0, 58%) minmax(0, 42%);
    height: 230px;
  }

  /* 文字側 */
  .info-card__text {
    height: 230px;
    min-height: 0;
    padding: 23px 12px 20px 20px;
  }

  /* 画像・Googleマップ側 */
  .info-card__image {
    width: 100%;
    height: 230px;
    min-height: 0;
    overflow: hidden;
  }

  .info-card__image img,
  .info-card__image iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
  }

  .info-card__heading {
    gap: 9px;
    margin-bottom: 14px;
  }

  .info-card__number {
    font-size: 35px;
  }

  .info-card__heading h2 {
    font-size: 22px;
  }

  .info-card__text p {
    font-size: 12px;
  }

  .info-card__button {
    min-width: 135px;
    min-height: 40px;
    padding: 8px 12px;
    font-size: 11px;
  }

  .info-card--contact .info-card__button {
    width: 100%;
    min-width: 0;
    font-size: 10px;
  }

  .info-card__sns {
    gap: 12px;
    margin: 10px 20px 8px;
  }

  .info-card__sns a {
    width: 30px;
    height: 30px;
  }

  .info-card__sns img {
    width: 27px;
    height: 27px;
  }

  /* キャンセルカード */
  .info-card--cancel {
    height: 220px;
    min-height: 0;
  }

  .cancel-card__content {
    max-width: 82%;
  }

}


/* ==================================================
   小さいスマートフォン：480px以下
================================================== */

@media screen and (max-width: 480px) {

  /* HERO：3艇 */

  .hero-panel {
    height: 190px;
  }
   .hero-panel:nth-child(1) img {
  transform: scale(1.4);
  transform-origin: center 70%;
  }
  .hero-panel:nth-child(3) img {
  transform: scale(1.4);
  transform-origin: 35% 80%;
}
  

  .hero-content {
    width: calc(100% - 28px);
  }

  .hero-content h1 {
    margin: 0;
    font-size: clamp(24px, 8vw, 34px);
    line-height: 1.3;
    letter-spacing: 0.03em;
  }

  .hero-content p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: 0.04em;
  }

  .hero-content h2 {
    margin-top: 65px;
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }


  /* 01〜04 */

  .top-section-media,
  .top-section-left .top-section-media,
  .top-section-right .top-section-media {
    height: 240px;
  }

  .top-section-content,
  .top-section-left .top-section-content,
  .top-section-right .top-section-content {
    padding: 38px 18px 46px;
  }

   .top-about .top-section-media img {
    object-position: center 70%;
  }

 

  .top-section-heading {
    gap: 11px;
  }

  .top-section-number {
    font-size: 33px;
  }

  .top-section-heading h2 {
    font-size: clamp(26px, 8.5vw, 34px);
  }

  .top-section-heading > div > p {
    margin-top: 7px;
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .top-section-description {
    margin-top: 25px;
  }

  .top-section-description p,
  .top-plan-list p {
    font-size: 13px;
  }

  .top-section-btn {
    min-height: 52px;
    margin-top: 30px;
    padding: 10px 18px;
    font-size: 14px;
  }


  /* 05・06を縦積み */

  .info-card--access,
  .info-card--contact {
    grid-template-columns: 1fr;
  }

  .info-card__text {
    min-height: 225px;
    padding: 25px 22px 22px;
  }

  .info-card__image {
    height: 180px;
    
  }

  .info-card__heading h2 {
    font-size: 24px;
  }

  .info-card__text p {
    font-size: 13px;
  }

  .info-card__button,
  .info-card--contact .info-card__button {
    width: 100%;
    font-size: 12px;
  }

  .cancel-card__content {
    max-width: 88%;
    padding: 34px 18px;
  }

  .cancel-card__content h2 {
    margin-bottom: 20px;
    font-size: 19px;
  }

  .cancel-card__content p {
    font-size: 14px;
  }
  /* ACCESS・CONTACTを上下に分ける */
  .info-card--access,
  .info-card--contact {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 180px;

    height: auto;
    min-height: 0;
  }

  /* 文字側 */
  .info-card--access .info-card__text,
  .info-card--contact .info-card__text {
    width: 100%;
    height: auto;
    min-height: 230px;

    padding: 28px 32px 30px;
  }

  /* マップ・画像側 */
  .info-card--access .info-card__image,
  .info-card--contact .info-card__image {
    display: block;

    width: 100%;
    height: 180px;
    min-height: 180px;

    overflow: hidden;
  }

  /* 通常画像 */
  .info-card--access .info-card__image img,
  .info-card--contact .info-card__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
  }

  /* Googleマップ */
  .info-card--access .info-card__image iframe {
    display: block;

    width: 100% !important;
    height: 100% !important;
    min-height: 180px;

    border: 0;
  }

  /* CONTACT画像の表示位置 */
  .info-card--contact .info-card__image img {
    object-position: 60% center;
  }

}


/* ==================================================
   スマートフォン：430px以下
================================================== */

@media screen and (max-width: 430px) {

  /* HERO：3艇の高さ */

  .hero-panel {
    height: 175px;
  }
 
  .hero-panel:nth-child(3) img {
  transform: scale(1.5);
  transform-origin: 45% 77%;
}

  .hero-content {
    width: calc(100% - 24px);
    top: 52%;
   
  }

  .hero-content h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1.1;
}

.hero-content p {
  font-size: 12px;
  margin: 2px 0 0;
  line-height: 1.2;
}

  .hero-content h2 {
    margin-top: 55px;
    font-size: 12px;
  }

  /* 船の見える位置 */

  .hero-panel:nth-child(1) img {
    object-position: 50% center;
  }

  .hero-panel:nth-child(2) img {
    object-position: 52% center;
  }

  .hero-panel:nth-child(3) img {
    object-position: 45% center;
  }

  /* 01〜04 */

  .top-section-media,
  .top-section-left .top-section-media,
  .top-section-right .top-section-media {
    height: 220px;
  }

  .top-section-content,
  .top-section-left .top-section-content,
  .top-section-right .top-section-content {
    padding: 35px 17px 42px;
  }

  .top-section-number {
    font-size: 31px;
  }

  .top-section-heading h2 {
    font-size: 29px;
  }

  .top-section-description {
    margin-top: 23px;
  }

  .top-section-btn {
    margin-top: 28px;
  }
  .hero-content h2 {
    margin: 20px 0 0 !important;
    font-size: 12px;
  }
}


/* ==================================================
   スマートフォン：390px以下
================================================== */

@media screen and (max-width: 390px) {

  /* HERO：3艇の高さ */

  .hero-panel {
    height: 160px;
  }

  .hero-content h1 {
    font-size: 25px;
    letter-spacing: 0.02em;
  }

  .hero-content p {
    margin-top: 13px;
    font-size: 11px;
  }

  .hero-content h2 {
    margin-top: 48px;
    font-size: 11px;
  }

  /* 01〜04 */

  .top-section-media,
  .top-section-left .top-section-media,
  .top-section-right .top-section-media {
    height: 205px;
  }

  .top-section-content,
  .top-section-left .top-section-content,
  .top-section-right .top-section-content {
    padding: 34px 16px 40px;
  }

  .top-section-heading {
    gap: 9px;
  }

  .top-section-number {
    font-size: 29px;
  }

  .top-section-heading h2 {
    font-size: 27px;
  }

  .top-section-heading > div > p {
    font-size: 10px;
  }

  .top-section-description {
    margin-top: 22px;
  }

  .top-section-description p {
    line-height: 1.9;
  }

  .top-section-btn {
    min-height: 50px;
    margin-top: 26px;
  }
}


/* ==================================================
   さらに小さいスマートフォン：360px以下
================================================== */

@media screen and (max-width: 360px) {

  /*
    .heroに固定高さは設定しない。
    3艇の合計高さは150px × 3＝450px。
  */

  .hero {
    height: auto;
    min-height: 0;
  }

  .hero-images {
    height: auto;
  }

  .hero-panel {
    height: 150px;
  }

  .hero-content {
    width: calc(100% - 20px);
  }

  .hero-content h1 {
    font-size: 22px;
  }

  .hero-content p {
    margin-top: 12px;
    font-size: 10px;
  }

  .hero-content h2 {
    margin-top: 42px;
    font-size: 10px;
  }

  /* 01〜04 */

  .top-section-media,
  .top-section-left .top-section-media,
  .top-section-right .top-section-media {
    height: 190px;
  }

  .top-section-content,
  .top-section-left .top-section-content,
  .top-section-right .top-section-content {
    padding: 32px 15px 38px;
  }

  .top-section-heading {
    gap: 8px;
  }

  .top-section-number {
    font-size: 28px;
  }

  .top-section-heading h2 {
    font-size: 25px;
  }

  .top-section-heading > div > p {
    font-size: 10px;
  }

  .top-section-description {
    margin-top: 20px;
  }

  .top-section-description p,
  .top-plan-list p {
    font-size: 12px;
  }

  .top-section-btn {
    min-height: 48px;
    margin-top: 25px;
    padding: 9px 15px;
    font-size: 13px;
  }

  /* 05〜07 */

  .info-card__text {
    padding-right: 16px;
    padding-left: 16px;
  }

  .info-card__heading {
    gap: 8px;
  }

  .info-card__number {
    font-size: 32px;
  }

  .info-card__heading h2 {
    font-size: 21px;
  }
}