@charset "UTF-8";
/* ブレイクポイントマップ*/
/* 色の定義 */
/* css関数 */
:root {
  --wave-overlap: min(1.19vw, 20px);
  --wave-height: min(1.19vw, 20px);
  --wave-flow: min(1.19vw, 40px);
}

@media screen and (max-width: 768px) {
  :root {
    --wave-overlap: 20px;
    --wave-height: 20px;
    --wave-flow: 20px;
  }
}
html {
  box-sizing: border-box;
  font-size: clamp(14px, 16 / 1680 * 100vw, 18px);
  overflow-x: hidden;
  scroll-behavior: smooth;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html {
    font-size: clamp(14px, 28 / 750 * 100vw, 28px);
  }
}

body {
  background-color: #fff;
  color: #282828;
  font-family: "M PLUS 2", sans-serif;
  font-weight: 700;
}

a {
  cursor: pointer;
  text-decoration: none;
}

.only-pc-l {
  display: block;
}
@media screen and (max-width: 768px) {
  .only-pc-l {
    display: none;
  }
}

.only-pc {
  display: block;
}
@media (max-width: 1100px) {
  .only-pc {
    display: none;
  }
}

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

.u-visually-hidden {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.js-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Layout Container */
.l-container {
  margin-inline: auto;
  position: relative;
  width: min(100%, 1680px);
  z-index: 2;
}

.l-container--1680 {
  max-width: 1680px;
}

.l-container--w2200 {
  margin-inline: auto;
  max-width: 2200px;
  width: min(100%, 2200px);
}

.l-container--step {
  max-width: 1680px;
  padding-inline: clamp(40px, 290px - 250 * (1680px - 100vw) / 500, 290px);
}
@media screen and (max-width: 1179px) {
  .l-container--step {
    padding-inline: 40px;
  }
}
@media (min-width: 769px) and (max-width: 960px) {
  .l-container--step {
    padding-inline: max(5.3%, 160px);
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  .l-container--step {
    padding-inline: 5.3333333333%;
  }
}

/*parts*/
/*リンクボタン*/
.linkButton {
  align-items: center;
  align-items: center;
  background-color: #ffffff;
  border: 3px solid #14C1E5;
  border-radius: 999px;
  box-shadow: 0 4px 0 0 #14C1E5;
  color: #14C1E5;
  display: inline-flex;
  font-size: clamp(14px, 1.07vw, 18px);
  justify-content: center;
  letter-spacing: 0.225rem;
  position: relative;
  text-align: center;
  transition: box-shadow 0.3s ease;
}
@media screen and (max-width: 768px) {
  .linkButton {
    font-size: clamp(14px, 3.73vw, 28px);
    padding-left: 2.25em;
    padding-right: 2.25em;
  }
}
.linkButton::after {
  background-image: url(../img/common_icon_button-blueArrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 0.55em;
  position: absolute;
  right: 1.2em;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5em;
}
@media screen and (max-width: 768px) {
  .linkButton::after {
    height: 0.41em;
    right: 7.8260869565%;
    width: 1.1em;
  }
}
.linkButton:hover {
  box-shadow: none;
}

/*海中の背景*/
.wave-bg {
  background: url("../img/common_bg_blue-base-pc.webp") no-repeat center top/cover;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .wave-bg {
    background-image: url("../img/common_bg_blue-base-sp.webp");
    background-size: cover;
  }
}
.wave-bg::before {
  background-image: url("../img/common_bg_blue-wave-pc.webp");
  background-position: center top;
  background-repeat: repeat-x;
  background-size: cover;
  content: "";
  height: var(--wave-flow);
  left: 0;
  position: absolute;
  top: clamp(-40px, -1.13vw, -1px);
  width: 100%;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .wave-bg::before {
    background-image: url("../img/common_bg_blue-wave-sp.webp");
    background-size: contain;
    height: 20px;
    top: -2.4vw;
  }
}

/* float-bubbles */
.float-bubbles {
  /* 画像（デフォルト） */
  --bubbles-left: url("../img/common_bg_babble-left-pc.svg");
  --bubbles-right: url("../img/common_bg_babble-right-pc.svg");
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: var(--bubbles-z, 1);
}
@media screen and (max-width: 768px) {
  .float-bubbles {
    --bubbles-left: url("../img/common_bg_babble-left-sp.svg");
    --bubbles-right: url("../img/common_bg_babble-right-sp.svg");
  }
}

/* 泡はセクション内で切る（下セクション侵入防止） */
.float-bubbles__clip {
  height: var(--bubbles-clip-h, 100%);
  inset: 0;
  left: var(--bubbles-clip-left, 0);
  overflow: hidden;
  position: absolute;
  top: var(--bubbles-clip-top, 0);
  width: calc(100% - var(--bubbles-clip-left, 0));
}

/* アニメーションは layer 側 */
.float-bubbles__layer {
  animation-delay: var(--bubbles-delay, 0s);
  animation-duration: var(--bubbles-duration, 4.2s);
  animation-iteration-count: infinite;
  animation-name: floatBubbles;
  animation-timing-function: ease-in-out;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  will-change: transform;
}

/* LEFT */
.float-bubbles__layer--left {
  --bubbles-floatY: var(--bubbles-left-floatY, var(--bubbles-floatY, 10px));
  animation-delay: var(--bubbles-left-delay, 0s);
  animation-duration: var(--bubbles-left-duration, 4.2s);
  background-image: var(--bubbles-left);
  background-position: left top;
  height: var(--bubbles-left-h, 1978px);
  left: var(--bubbles-left-x, 2.4%);
  top: var(--bubbles-left-top, 80px);
  width: var(--bubbles-left-w, min(47.7vw, 803px));
}
@media screen and (max-width: 768px) {
  .float-bubbles__layer--left {
    height: var(--bubbles-left-h-sp, 100%);
    left: var(--bubbles-left-x-sp, 0);
    top: var(--bubbles-left-top-sp, 12px);
    width: var(--bubbles-left-w-sp, 50%);
  }
}

/* LEFT見切れ（デフォルト挙動） */
@media screen and (max-width: 1500px) {
  .float-bubbles__layer--left {
    left: var(--bubbles-left-x-1500, -10%);
  }
}
@media screen and (max-width: 1200px) {
  .float-bubbles__layer--left {
    left: var(--bubbles-left-x-1200, -18%);
  }
}
@media screen and (max-width: 1200px) and (max-width: 960px) {
  .float-bubbles__layer--left {
    left: 0;
  }
}
/* RIGHT */
.float-bubbles__layer--right {
  --bubbles-floatY: var(--bubbles-right-floatY, var(--bubbles-floatY, 10px));
  animation-delay: var(--bubbles-right-delay, 0.8s);
  animation-duration: var(--bubbles-right-duration, 4.8s);
  background-image: var(--bubbles-right);
  background-position: right top;
  height: var(--bubbles-right-h, 1978px);
  right: var(--bubbles-right-x, 31px);
  top: var(--bubbles-right-top, 4.76vw);
  width: var(--bubbles-right-w, min(47.7vw, 803px));
}
@media screen and (max-width: 768px) {
  .float-bubbles__layer--right {
    height: var(--bubbles-right-h-sp, 100%);
    right: var(--bubbles-right-x-sp, 0);
    top: var(--bubbles-right-top-sp, 0);
    width: var(--bubbles-right-w-sp, 50%);
  }
}

@media screen and (max-width: 1500px) {
  .float-bubbles__layer--right {
    right: var(--bubbles-right-x-1500, -10%);
  }
}
@media screen and (max-width: 1200px) {
  .float-bubbles__layer--right {
    right: var(--bubbles-right-x-1200, -18%);
  }
}
@media screen and (max-width: 1200px) and (max-width: 960px) {
  .float-bubbles__layer--right {
    right: 0;
  }
}
/* KEYFRAMES */
@keyframes floatBubbles {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(calc(var(--bubbles-floatY, 10px) * -1));
  }
  100% {
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .float-bubbles__layer {
    animation: none;
  }
}
/*3枚並びのカード*/
.three-cards {
  display: grid;
  gap: min(0.65vw, 11px);
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 960px) {
  .three-cards {
    gap: 40px;
    grid-template-columns: 1fr;
  }
}

/*3枚並びカードの1枚*/
.section-card {
  background-color: #F3FAFB;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.section-card__figure {
  flex-shrink: 0;
  display: block;
  height: 13.6904761905vw;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 960px) {
  .section-card__figure {
    height: 36vw;
  }
}

.section-card__img {
  -o-object-fit: cover;
  display: block;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.section-card__body {
  padding: 1.6em 1.88em;
}
@media screen and (max-width: 768px) {
  .section-card__body {
    padding: 1.35em 1.42em;
  }
}

.section-card__title {
  color: #0487C9;
  font-size: clamp(18px, 1.42vw, 32px);
  letter-spacing: 0.2em;
  line-height: 2.7;
}
@media (max-width: 960px) {
  .section-card__title {
    font-size: clamp(16px, 4.26vw, 32px);
    line-height: 1.5;
  }
}

.section-card__text {
  font-size: clamp(14px, 0.95vw, 16px);
  letter-spacing: 0.1em;
  line-height: 2.1;
}
@media (max-width: 960px) {
  .section-card__text {
    font-size: min(3.73vw, 28px);
    letter-spacing: 0.05em;
    line-height: 1.9;
    margin-bottom: 0.53em;
  }
}

/*sectionHead-flag/下層ページ旗付きsectionHead*/
.sectionHead-flag {
  margin-bottom: min(3.69vw, 62px);
  margin-inline: auto;
  position: relative;
}
@media (max-width: 960px) {
  .sectionHead-flag {
    margin-bottom: min(8vw, 60px);
  }
}

.sectionHead-flag::before {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: min(5.23vw, 88px);
  left: 50%;
  position: absolute;
  top: clamp(-95px, -5.64vw, -65px);
  transform: translateX(-50%);
  width: min(3.57vw, 60px);
}
@media (max-width: 960px) {
  .sectionHead-flag::before {
    height: min(16.6vw, 125px);
    top: clamp(-134px, -16vw, -60px);
    width: min(11.3vw, 85px);
  }
}

/*各セクションのタイトル*/
.section-title {
  margin-inline: auto;
}

.section-title__img {
  display: block;
  height: 100%;
  width: 100%;
}

/*下層charmページ/大画像✜その下のテキスト*/
.section-lead {
  display: grid;
  gap: min(1.78vw, 30px);
  grid-template-columns: 1fr;
  justify-items: center;
  margin-bottom: min(2.38vw, 40px);
  width: 100%;
}
@media (max-width: 960px) {
  .section-lead {
    gap: min(5.33vw, 40px);
    margin-bottom: clamp(32px, 5.33vw, 40px);
  }
}

.section-lead__figure {
  border-radius: 20px;
  height: auto;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 960px) {
  .section-lead__figure {
    height: min(50.6vw, 380px);
  }
}

.section-lead__img {
  display: block;
  height: auto;
  width: 100%;
}
@media (max-width: 960px) {
  .section-lead__img {
    -o-object-fit: cover;
    aspect-ratio: 669/380;
    height: 100%;
       object-fit: cover;
  }
}

.section-lead__title {
  color: #0487C9;
  font-size: clamp(20px, 1.42vw, 24px);
  letter-spacing: 0.15em;
  line-height: 2.7;
}
@media (max-width: 960px) {
  .section-lead__title {
    font-size: clamp(18px, 4.26vw, 32px);
    line-height: 2;
    margin-bottom: 0.5em;
  }
}

.section-lead__text {
  letter-spacing: 0.1em;
  line-height: 2.1;
}
@media (max-width: 960px) {
  .section-lead__text {
    font-size: clamp(14px, 3.73vw, 28px);
    letter-spacing: 0.05em;
    line-height: 1.9;
  }
}

/*serviceSection (ship/maintenance&sale・leisure/fishing共通)*/
.serviceSection {
  padding-bottom: min(8.92vw, 150px);
  padding-top: min(7.8vw, 120px);
  text-align: center;
}
@media (max-width: 960px) {
  .serviceSection {
    padding-bottom: clamp(60px, 16vw, 120px);
    padding-top: clamp(40px, 8vw, 60px);
  }
}

.serviceSection__title {
  height: auto;
  margin-bottom: min(3.69vw, 62px);
  margin-inline: auto;
  width: min(17.1vw, 288px);
}
@media (max-width: 960px) {
  .serviceSection__title {
    margin-bottom: clamp(40px, 8vw, 60px);
    width: min(37.2vw, 279px);
  }
}

.serviceSection__media {
  border-radius: 20px;
  height: min(22.6vw, 380px);
  margin-bottom: min(2.38vw, 40px);
  margin-inline: auto;
  width: min(100%, 1100px);
}
@media (max-width: 960px) {
  .serviceSection__media {
    height: min(50.6vw, 380px);
    margin-bottom: clamp(40px, 8vw, 60px);
    width: min(100%, 670px);
  }
}

.serviceSection__lead {
  align-items: baseline;
  display: flex;
  gap: 0;
  justify-content: center;
  margin-bottom: 1.5476190476vw;
  margin-inline: auto;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 960px) {
  .serviceSection__lead {
    display: block;
    margin-bottom: clamp(20px, 4vw, 30px);
  }
}
.serviceSection__lead::after {
  background-image: url(../img/common_item_wave-line.svg);
  background-repeat: repeat-x;
  background-size: contain;
  bottom: -2px;
  content: "";
  display: block;
  height: clamp(3px, 0.29vw, 5px);
  left: 0;
  position: absolute;
  right: 0;
}
@media (max-width: 960px) {
  .serviceSection__lead::after {
    display: none;
  }
}

.serviceSection__leadLine {
  color: #0487C9;
  display: inline-block;
  font-size: min(1.42vw, 24px);
  letter-spacing: 0.2em;
  line-height: 2;
  margin-right: -0.2em;
  position: relative;
  text-align: center;
}
@media (max-width: 960px) {
  .serviceSection__leadLine {
    display: inline-block;
    font-size: clamp(18px, 3.26vw, 32px);
    letter-spacing: 0.15em;
    line-height: 2.3;
    margin-inline: auto;
    margin-right: -0.15em;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.serviceSection__leadLine::after {
  content: "";
  display: none;
}
@media (max-width: 960px) {
  .serviceSection__leadLine::after {
    background-image: url(../img/common_item_wave-line.svg);
    background-repeat: repeat-x;
    background-size: cover;
    bottom: -2px;
    display: block;
    height: clamp(6px, 1.06vw, 8px);
    left: 0;
    position: absolute;
    right: 0;
  }
  .punct {
    letter-spacing: -0.07em;
  }
}

@media (max-width: 960px) {
}

.serviceSection__text {
  font-size: min(1.07vw, 18px);
  letter-spacing: 0.1em;
  line-height: 2.1;
}
@media (max-width: 960px) {
  .serviceSection__text {
    font-size: clamp(14px, 3.73vw, 28px);
    letter-spacing: 0.05em;
    line-height: 1.9;
  }
}

/*コンタクトページ/注意書き*/
.contact-notice {
  background: #eeeeee;
  border-radius: 10px;
  margin-bottom: min(5.59vw, 94px);
  padding-block: min(2.97vw, 50px);
  padding-left: 4.6%;
  padding-right: 3%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contact-notice {
    line-break: strict;
    margin-bottom: clamp(40px, 6.13vw, 46px);
    padding-block: max(20px, 8.93vw);
    padding-left: clamp(18px, 3.33vw, 25px);
    padding-right: clamp(16px, 3.33vw, 25px);
  }
}

.contact-notice__list {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
@media screen and (max-width: 768px) {
  .contact-notice__list {
    gap: 1em;
  }
}

.contact-notice__item {
  font-family: Inter;
  font-size: min(1.48vw, 25px);
  font-weight: 400;
  padding-left: 1.5em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact-notice__item {
    font-size: clamp(14px, 2.26vw, 17px);
    line-height: 1.3;
  }
}
.contact-notice__item::before {
  background: currentColor;
  content: "";
  height: 0.85em;
  left: 0;
  position: absolute;
  top: 0.25em;
  transform: rotate(45deg);
  width: 0.85em;
}

.contact-notice__link {
  color: inherit;
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  padding-bottom: 0.12em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact-notice__link {
    padding-bottom: 0;
  }
}
.contact-notice__link::after {
  background-color: #000;
  bottom: 0.05em;
  content: "";
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contact-notice__link::after {
    bottom: 0.2em;
  }
}

/* テンプレートパーツ/top-access */
.top-access {
  background-color: #ffffff;
  overflow: hidden;
  padding-block: min(7.14vw, 120px);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-access {
    padding-block: min(13.3vw, 100px);
  }
}

.top-access__title {
  height: min(4.8vw, 82px);
  margin-bottom: clamp(56px, 5.9vw, 100px);
  margin-inline: auto;
  position: relative;
  text-align: center;
  width: min(18.5vw, 317px);
}
@media screen and (max-width: 768px) {
  .top-access__title {
    height: min(10.9vw, 82px);
    margin-bottom: min(40.1vw, 68px);
    width: min(41.6vw, 312px);
  }
}
.top-access__title::after {
  background-image: url(../img/common_item_shipWave.webp);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: min(2.38vw, 40px);
  left: 45%;
  position: absolute;
  top: calc(100% + 17px);
  width: min(8.39vw, 141px);
}
@media screen and (max-width: 768px) {
  .top-access__title::after {
    height: clamp(21px, 5.33vw, 40px);
    left: 46%;
    width: clamp(102px, 18.9vw, 142px);
  }
}
.top-access__title img {
  height: 100%;
  width: 100%;
}

.top-access__inner {
  margin-inline: auto;
  padding-left: clamp(40px, 17.2vw, 350px);
  padding-right: 0;
  width: 100%;
}
@media (min-width: 769px) and (max-width: 1179px) {
  .top-access__inner {
    padding-left: max(4.76vw, 80px);
  }
}
@media screen and (max-width: 768px) {
  .top-access__inner {
    padding-left: 5.3333333333%;
  }
}

.top-access__content {
  align-items: flex-start;
  display: grid;
  gap: 6.8345323741%;
  grid-template-columns: 24% 1fr;
  justify-content: start;
  margin-top: min(8.27vw, 139px);
}
@media (min-width: 769px) and (max-width: 1179px) {
  .top-access__content {
    grid-template-columns: 40% 1fr;
  }
}
@media screen and (max-width: 768px) {
  .top-access__content {
    display: flex;
    flex-direction: column-reverse;
    margin-top: min(15.8vw, 119px);
  }
}

.top-access__info {
  padding-bottom: min(4.7vw, 85px);
  padding-top: min(5vw, 85px);
  text-align: left;
}
@media screen and (max-width: 768px) {
  .top-access__info {
    margin-top: 40px;
    padding: 0;
    text-align: center;
  }
}

.top-access__address,
.top-access__tel {
  display: block;
  font-size: clamp(14px, 0.95vw, 18px);
  letter-spacing: 0.1em;
  line-height: 2.5;
  padding-bottom: 1em;
  padding-left: 1.7em;
  position: relative;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .top-access__address,
  .top-access__tel {
    font-size: clamp(14px, 4.26vw, 32px);
    letter-spacing: 0.22em;
    line-height: 2.8;
    padding-bottom: 0.15em;
    padding-left: 2.2em;
  }
}
.top-access__address::before,
.top-access__tel::before {
  background-image: url(../img/common_icon_pin.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 1.5em;
  left: 0;
  position: absolute;
  top: 15%;
  width: 1.5em;
}
@media screen and (max-width: 768px) {
  .top-access__address::before,
  .top-access__tel::before {
    top: 20%;
  }
}
.top-access__address::after,
.top-access__tel::after {
  background-image: url("../img/common_item_wave-line.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  bottom: 0;
  content: "";
  height: 0.875em;
  left: 0;
  position: absolute;
  width: 18.75em;
}
@media screen and (max-width: 768px) {
  .top-access__address::after,
  .top-access__tel::after {
    width: 20em;
  }
}

.top-access__tel {
  color: inherit;
  cursor: default;
  margin-bottom: min(3.5vw, 60px);
  margin-top: 0.8em;
  padding-left: 2.2em;
  pointer-events: none;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .top-access__tel {
    cursor: pointer;
    margin-bottom: clamp(40px, 7.06vw, 53px);
    margin-top: 0;
    pointer-events: auto;
  }
}
.top-access__tel::before {
  background-image: url(../img/common_icon_tel.svg);
}
@media screen and (max-width: 768px) {
  .top-access__tel::before {
    height: 1.2em;
    top: 50%;
    transform: translateY(-50%);
    width: 1.2em;
  }
}

.top-access__button {
  background-color: #fff;
  height: clamp(46px, 4.16vw, 70px);
  width: clamp(208px, 18.6vw, 306px);
}
@media screen and (max-width: 768px) {
  .top-access__button {
    height: 13.3vw;
    width: 69.3vw;
  }
}

.top-access__map {
  border-radius: 20px 0 0 20px;
  height: clamp(260px, 24.4vw, 410px);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-access__map {
    height: min(54.6vw, 410px);
  }
}

.top-access__map iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

/* テンプレートパーツ/cta */
.cta {
  background: url(../img/cta_bg_pc.webp) no-repeat center center/cover;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media (max-width: 960px) {
  .cta {
    background: url(../img/cta_bg_sp.webp) no-repeat center center/cover;
  }
}
.cta::after {
  background-color: rgba(0, 88, 104, 0.34);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.cta__content {
  height: clamp(49px, 4.16vw, 70px);
  margin-bottom: min(12.4vw, 209px);
  margin-left: auto;
  margin-right: 17.2619047619%;
  margin-top: min(12.7vw, 215px);
  position: relative;
  width: clamp(243px, 20.59vw, 346px);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .cta__content {
    height: clamp(51px, 13.3vw, 100px);
    margin-inline: auto;
    margin-top: min(57.3vw, 430px);
    width: clamp(270px, 69.3vw, 520px);
  }
}

.cta__button {
  height: 100%;
  width: 100%;
}

/* テンプレートパーツ/下層ページfv */
.lower-fv {
  background-image: var(--lower-fv-bg-pc);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: calc(var(--header-height) - var(--wave-overlap));
  padding-top: var(--wave-overlap);
  position: relative;
  position: relative;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .lower-fv {
    background-image: var(--lower-fv-bg-sp, var(--lower-fv-bg-pc));
  }
}
.lower-fv::after {
  background: rgba(4, 128, 150, 0.51);
  content: "";
  display: block;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
}

.lower-fv__titleImg {
  display: block;
  height: min(9.1vw, 153px);
  width: min(24.1vw, 406px);
}
@media screen and (max-width: 768px) {
  .lower-fv__titleImg {
    height: min(20.4vw, 153px);
    width: min(54.1vw, 406px);
  }
}

.lower-fv__inner {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-inline: auto;
  padding-bottom: min(7.26vw, 122px);
  padding-top: min(6.13vw, 103px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .lower-fv__inner {
    justify-content: center;
    padding-bottom: min(19.6vw, 147px);
    padding-top: min(15.86vw, 119px);
  }
}

/* Auto-generated _all.scss for pages */
/*お知らせ一覧ページ*/
.newsArchive {
  padding-bottom: min(7.2vw, 121px);
  padding-top: min(6.36vw, 107px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .newsArchive {
    padding-bottom: min(12.4vw, 93px);
    padding-top: min(7.86vw, 59px);
  }
}

.newsArchive__inner {
  padding-inline: clamp(40px, 10.29vw, 173px);
}
@media screen and (max-width: 768px) {
  .newsArchive__inner {
    padding-inline: 20px;
    width: 100%;
  }
}

.newsArchive__title {
  height: auto;
  margin-bottom: min(4.46vw, 75px);
  width: min(17vw, 287px);
}
@media screen and (max-width: 768px) {
  .newsArchive__title {
    margin-bottom: min(7.73vw, 58px);
    width: min(38.2vw, 287px);
  }
}

.newsArchive__list {
  border-top: 1px solid #000;
  margin-bottom: min(4.76vw, 80px);
}
@media screen and (max-width: 768px) {
  .newsArchive__list {
    margin-bottom: min(9.33vw, 70px);
  }
}

.newsArchive__item {
  border-bottom: 1px solid #000;
  padding-left: 0.8em;
}

.newsArchive__item:nth-child(odd) {
  background: #E7F7FE;
}

.newsArchive__item:nth-child(even) {
  background: #ffffff;
}

.newsArchive__link {
  align-items: center;
  display: grid;
  gap: 8.8%;
  grid-template-columns: 7.8% 1fr;
  padding-block: 1.875em;
  padding-right: 3em;
}
@media screen and (max-width: 768px) {
  .newsArchive__link {
    gap: 2.95%;
    grid-template-columns: 23% 1fr;
    padding-block: 0.8em;
    padding-right: 0.5em;
  }
}
.newsArchive__link:hover .newsArchive__text {
  opacity: 0.6;
}

.newsArchive__date {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(16px, 1.07vw, 18px);
  font-weight: 400;
  line-height: 2.2;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .newsArchive__date {
    font-size: clamp(14px, 2.4vw, 18px);
  }
}

.newsArchive__text {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.7;
  overflow: hidden;
  transition: opacity 0.5s ease;
  white-space: normal;
}
@media screen and (max-width: 768px) {
  .newsArchive__text {
    font-size: clamp(14px, 2.13vw, 16px);
    line-height: normal;
  }
}

.newsArchive__paginationList {
  align-items: center;
  display: flex;
  gap: 1.27em;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .newsArchive__paginationList {
    gap: 1.4em;
  }
}

.newsArchive__paginationItem {
  align-items: center;
  display: flex;
  justify-content: center;
  transition: opacity 0.5s ease;
}
.newsArchive__paginationItem:hover {
  opacity: 0.6;
}

.newsArchive__paginationItem a,
.newsArchive__paginationItem span {
  align-items: center;
  background: #d9d9d9;
  border-radius: 999px;
  color: #000;
  display: inline-flex;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  height: 39px;
  justify-content: center;
  line-height: 1;
  width: 39px;
}
@media screen and (max-width: 768px) {
  .newsArchive__paginationItem a,
  .newsArchive__paginationItem span {
    font-size: 10px;
    height: 25px;
    width: 25px;
  }
}

.newsArchive__paginationItem .prev,
.newsArchive__paginationItem .next {
  background: transparent;
}

.newsArchive__paginationItem .current {
  background: #39c3e6;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .newsArchive__paginationItem .current {
    background: #39c3e6;
    color: #ffffff;
  }
}

.newsArchive__paginationItem .prev,
.newsArchive__paginationItem .next {
  height: 21px;
  width: 21px;
}
@media screen and (max-width: 768px) {
  .newsArchive__paginationItem .prev,
  .newsArchive__paginationItem .next {
    height: 10px;
    width: 14px;
  }
}
.newsArchive__paginationItem .prev img,
.newsArchive__paginationItem .next img {
  height: 100%;
  width: 100%;
}

.newsArchive__paginationItem .prev {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .newsArchive__paginationItem .prev {
    margin-right: 10px;
  }
}

.newsArchive__paginationItem .next {
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .newsArchive__paginationItem .next {
    margin-left: 10px;
  }
}

/* siteFooter*/
.siteFooter {
  background: url(../img/footer_bg_blue.webp) no-repeat center top/cover;
  padding-top: min(4.58vw, 77px);
  position: relative;
}
@media (max-width: 960px) {
  .siteFooter {
    padding-top: min(8.26vw, 62px);
  }
}

.siteFooter__content {
  align-items: flex-start;
  display: grid;
  gap: 60px;
  grid-template-columns: 24.8% 1fr;
  margin-bottom: 131px;
}
@media (min-width: 769px) and (max-width: 1179px) {
  .siteFooter__content {
    gap: clamp(24px, 6vw, 140px);
  }
}
@media (max-width: 960px) {
  .siteFooter__content {
    align-items: center;
    gap: 40px;
    grid-template-columns: 1fr;
    margin-bottom: 100px;
  }
}

.siteFooter__company {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}
@media (max-width: 960px) {
  .siteFooter__company {
    align-items: center;
  }
}

.siteFooter__logoLink {
  height: auto;
  margin-bottom: 33px;
  width: 140px;
}
@media (max-width: 960px) {
  .siteFooter__logoLink {
    margin-bottom: min(4vw, 30px);
    width: min(18.67vw, 140px);
  }
}

.siteFooter__logo {
  height: 100%;
  width: 100%;
}

.siteFooter__companyName {
  font-size: clamp(20px, 1.42vw, 24px);
  letter-spacing: 0.15em;
  line-height: 1.6;
  margin-bottom: 30px;
}
@media (max-width: 960px) {
  .siteFooter__companyName {
    font-size: clamp(25px, 4.26vw, 32px);
    letter-spacing: 0.11em;
    line-height: 1.25;
    margin-bottom: 22px;
  }
}

.siteFooter__address,
.siteFooter__telLink {
  font-size: 16px;
  letter-spacing: 0.15em;
  line-height: 2.5;
  white-space: nowrap;
}
@media (max-width: 960px) {
  .siteFooter__address,
  .siteFooter__telLink {
    font-size: clamp(19px, 3.2vw, 24px);
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
}

.siteFooter__telLink {
  color: inherit;
  cursor: default;
  pointer-events: none;
  text-decoration: none;
}
@media (max-width: 960px) {
  .siteFooter__telLink {
    cursor: pointer;
    pointer-events: auto;
  }
}

.siteFooter__right {
  margin-top: 158px;
}
@media (max-width: 960px) {
  .siteFooter__right {
    justify-self: center;
    text-align: center;
    width: 100%;
    margin-top: 0;
  }
}
@media (max-width: 960px) {
}

.siteFooter__nav {
  width: 100%;
}

.siteFooter__navList {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: auto;
  row-gap: 25px;
  width: clamp(620px, 38.7vw, 650px);
}
@media (max-width: 960px) {
  .siteFooter__navList {
    justify-content: center;
    margin-inline: auto;
    max-width: 100%;
    min-width: 100%;
    row-gap: 1em;
    width: 100%;
  }
}

.siteFooter__navItem {
  display: flex;
  justify-content: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 960px) {
  .siteFooter__navItem:nth-child(even) .siteFooter__navLink {
    text-align: left;
  }
  .siteFooter__navItem:nth-child(odd) .siteFooter__navLink {
    text-align: right;
  }
  .siteFooter__navItem:nth-child(1) {
    flex: 0 0 50%;
  }
}
@media (max-width: 960px) {
}
@media (max-width: 960px) {
}
.siteFooter__navItem:nth-child(1) .siteFooter__navLink {
  padding-left: 0;
  padding-right: 1.1em;
}
@media (max-width: 960px) {
  .siteFooter__navItem:nth-child(2) {
    flex: 0 0 50%;
  }
  .siteFooter__navItem:nth-child(2):after {
    content: none;
  }
}
@media (max-width: 960px) {
}
.siteFooter__navItem:nth-child(2) .siteFooter__navLink {
  padding-left: 1em;
  padding-right: 1em;
}
@media (max-width: 960px) {
  .siteFooter__navItem:nth-child(2) .siteFooter__navLink {
    padding-right: 0;
  }
}
.siteFooter__navItem:nth-child(3) {
  flex: 0 0 33.333%;
}
@media (max-width: 960px) {
  .siteFooter__navItem:nth-child(3) {
    flex: 0 0 50%;
  }
}
.siteFooter__navItem:nth-child(3) .siteFooter__navLink {
  padding-left: 0.7em;
  padding-right: 0.3em;
}
@media (max-width: 960px) {
  .siteFooter__navItem:nth-child(3) .siteFooter__navLink {
    padding-left: 0;
    padding-right: 1.1em;
  }
  .siteFooter__navItem:nth-child(4) {
    flex: 0 0 50%;
  }
}
@media (max-width: 960px) {
}
.siteFooter__navItem:nth-child(4):after {
  content: none;
}
.siteFooter__navItem:nth-child(4) .siteFooter__navLink {
  padding-right: 0;
}
@media (max-width: 960px) {
  .siteFooter__navItem:nth-child(4) .siteFooter__navLink {
    padding-left: 1em;
    text-align: left;
  }
  .siteFooter__navItem:nth-child(5) {
    flex: 0 0 33.3%;
  }
}
@media (max-width: 960px) {
}
.siteFooter__navItem:nth-child(5) .siteFooter__navLink {
  padding-left: 0;
  padding-right: 0.8em;
  text-align: right;
}
@media (max-width: 960px) {
  .siteFooter__navItem:nth-child(6) {
    flex: 0 0 33.3%;
  }
  .siteFooter__navItem:nth-child(6) .siteFooter__navLink {
    padding-inline: 0;
    text-align: center;
  }
  .siteFooter__navItem:nth-child(7) {
    flex: 0 0 33.3%;
  }
}
@media (max-width: 960px) {
}
@media (max-width: 960px) {
}
.siteFooter__navItem:nth-child(7):after {
  content: none;
}
.siteFooter__navItem:nth-child(7) .siteFooter__navLink {
  padding-right: 0;
}
@media (max-width: 960px) {
  .siteFooter__navItem:nth-child(7) .siteFooter__navLink {
    padding-left: 0.5em;
  }
}

.siteFooter__navLink {
  color: #FFF7F7;
  display: block;
  font-size: clamp(16px, 1.07vw, 18px);
  letter-spacing: 0.2em;
  padding-inline: 1em;
  text-align: center;
  transition: color 0.5s ease;
  width: 100%;
}
@media (max-width: 960px) {
  .siteFooter__navLink {
    font-size: clamp(14px, 3.73vw, 24px);
    padding-inline: 1.3em;
  }
}

.siteFooter__navLink:hover {
  color: #1D2088;
}

.siteFooter__navItem::after {
  background-color: #FFF7F7;
  content: "";
  height: 18px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
}

.siteFooter__cta {
  display: flex;
  justify-content: flex-end;
  margin-top: min(2.98vw, 50px);
}
@media (max-width: 960px) {
  .siteFooter__cta {
    justify-content: center;
    margin-right: 0;
    margin-top: min(8vw, 60px);
  }
}

.siteFooter__button {
  height: 70px;
  width: 282px;
}
@media (max-width: 960px) {
  .siteFooter__button {
    font-size: clamp(14px, 3.73vw, 24px);
    height: min(13.33vw, 100px);
    width: min(69.33vw, 520px);
  }
}

.siteFooter__copyright {
  align-items: center;
  background-color: #282828;
  color: #fff;
  display: flex;
  font-size: 16px;
  height: 30px;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .siteFooter__copyright {
    font-size: 12px;
  }
}

.siteFooter__copyright small {
  font-size: inherit;
}

/* Header Variables */
:root {
  --header-height: min(8.45vw, 142px);
  --header-pad-left: calc(55px / 1680px * 100%);
  --header-pad-right: calc(55px / 1680px * 100%);
  --gap-logo-nav: min(8.3vw, 140px);
  --gap-nav-cta: 1.0vw;
  --cta-width: min(14.1vw, 238px);
  --cta-height: min(3.57vw, 60px);
  --nav-item-pad: 1.3em;
  --nav-letter-spacing: 0.225rem;
  --nav-border: 2px;
  --sp-logo: 72px;
  --sp-menu-line: 71px;
  --sp-menu-text: 24px;
  --sp-pad: 20px;
}

@media (max-width: 1320px) {
  :root {
    --gap-logo-nav: clamp(24px, 6vw, 140px);
    --gap-nav-cta: min(1vw, 20px);
    --nav-item-pad: min(1.6vw, 26px);
    --nav-letter-spacing: 0.14rem;
    --nav-border: 2px;
    --cta-width: clamp(140px, 14.1vw, 238px);
  }
}
@media (max-width: 1100px) {
  :root {
    --gap-logo-nav: clamp(16px, 4vw, 140px);
    --gap-nav-cta: clamp(24px, 3vw, 80px);
    --cta-width: clamp(120px, 18vw, 200px);
    --nav-item-pad: 12px;
    --nav-letter-spacing: 0.08rem;
    --nav-border: 2px;
  }
}
@media (max-width: 1000px) {
  :root {
    --cta-width: 120px;
    --nav-item-pad: 0.5em;
    --nav-letter-spacing: 0.06rem;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: clamp(76px, calc(96 / 750 * 100vw), 96px);
    --sp-pad: clamp(20px, calc(40 / 750 * 100vw), 40px);
    --sp-logo: clamp(79px, calc(99 / 750 * 100vw), 99px);
    --sp-menu-text: clamp(14px, calc(24 / 750 * 100vw), 24px);
  }
}
/*header*/
.siteHeader {
  background-image: url("../img/header_bg_base.webp");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% var(--header-height);
  height: var(--header-height);
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .siteHeader {
    background-position: center top;
    background-size: cover;
    height: var(--header-height);
  }
}

.siteHeader::after {
  background-image: url("../img/header_wave.png");
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: auto 100%;
  content: "";
  height: calc(var(--header-height) - var(--wave-height));
  left: 0;
  position: absolute;
  top: var(--wave-height);
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .siteHeader::after {
    background-position: left bottom;
    background-size: auto 100%;
    height: calc(var(--header-height) - var(--wave-height));
    top: var(--wave-height);
  }
}

.siteHeader__inner {
  -moz-column-gap: var(--gap-logo-nav);
  align-items: flex-start;
       column-gap: var(--gap-logo-nav);
  display: flex;
  height: 100%;
  margin-inline: auto;
  max-width: 2200px;
  padding-left: var(--header-pad-left);
  padding-right: var(--header-pad-right);
  padding-top: min(1.42vw, 24px);
  position: relative;
  z-index: 3;
}
@media (max-width: 960px) {
  .siteHeader__inner {
    -moz-column-gap: 0;
    align-items: flex-start;
         column-gap: 0;
    justify-content: space-between;
    margin-inline: 0;
    max-width: 100%;
    padding-top: 14px;
  }
}
@media screen and (max-width: 768px) {
  .siteHeader__inner {
    align-items: flex-start;
    padding-left: var(--sp-pad);
    padding-right: var(--sp-pad);
    padding-top: clamp(18px, 3.2vw, 24px);
  }
}

.siteHeader__right {
  -moz-column-gap: var(--gap-nav-cta);
  align-items: center;
       column-gap: var(--gap-nav-cta);
  display: flex;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}
@media (max-width: 960px) {
  .siteHeader__right {
    -moz-column-gap: 0;
    align-items: flex-start;
         column-gap: 0;
  }
}

.siteHeader__logo {
  height: min(8.3vw, 140px);
  margin: 0;
  width: min(8.3vw, 140px);
}
@media screen and (max-width: 768px) {
  .siteHeader__logo {
    height: var(--sp-logo);
    width: var(--sp-logo);
  }
}

.siteHeader__logoLink {
  display: inline-flex;
  height: 100%;
  width: 100%;
}

.siteHeader__logoImg {
  -o-object-fit: contain;
  display: block;
  height: 100%;
     object-fit: contain;
  width: 100%;
}

.siteHeader__nav {
  display: block;
  margin-top: min(1.48vw, 25px);
  min-width: 0;
  width: 100%;
}
@media (max-width: 960px) {
  .siteHeader__nav {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .siteHeader__nav {
    display: none;
  }
}

.siteHeader__navList {
  align-items: flex-start;
  display: flex;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.siteHeader__navItem {
  border-right: var(--nav-border) solid #ffffff;
  display: block;
  padding: 0;
}

.siteHeader__navItem:nth-child(1) {
  border-left: none;
}

.siteHeader__navItem:nth-child(7) {
  border-right: none;
}

.siteHeader__navLink {
  align-items: center;
  color: #FFF7F7;
  display: flex;
  font-size: clamp(14px, 1.07vw, 18px);
  height: 100%;
  justify-content: center;
  letter-spacing: var(--nav-letter-spacing);
  padding: 0 var(--nav-item-pad);
  text-decoration: none;
  transition: color 0.5s ease;
  white-space: nowrap;
  width: 100%;
}
.siteHeader__navLink:hover {
  color: #1D2088;
}

.siteHeader__navItem:nth-child(1) .siteHeader__navLink {
  padding-left: 0;
}

.siteHeader__navItem:nth-child(7) .siteHeader__navLink {
  padding-right: 0;
}

.siteHeader__cta {
  margin-top: min(0.89vw, 15px);
}
@media (max-width: 960px) {
  .siteHeader__cta {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .siteHeader__cta {
    display: none;
  }
}

.siteHeader__link {
  align-items: center;
  background-color: #ffffff;
  border-radius: 999px;
  color: #14C1E5;
  display: inline-flex;
  font-size: clamp(14px, 1.07vw, 18px);
  font-weight: 700;
  height: var(--cta-height);
  justify-content: center;
  letter-spacing: 0.225rem;
  text-decoration: none;
  transition: color 0.5s ease, background-color 0.5s ease;
  width: var(--cta-width);
}
@media (max-width: 1320px) {
  .siteHeader__link {
    letter-spacing: 0.16rem;
  }
}
.siteHeader__link:hover {
  background-color: #1D2088;
  color: #fff;
}

.siteHeader__menuBtn {
  display: none;
}
@media (max-width: 960px) {
  .siteHeader__menuBtn {
    align-items: flex-end;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .siteHeader__menuBtn {
    gap: 6px;
  }
}

.siteHeader__menuIcon {
  display: none;
}
@media (max-width: 960px) {
  .siteHeader__menuIcon {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    gap: 9px;
    width: 100%;
  }
}

.siteHeader__menuLine {
  display: none;
}
@media (max-width: 960px) {
  .siteHeader__menuLine {
    background-color: #ffffff;
    display: block;
    height: 3px;
    width: 100%;
  }
}

.siteHeader__menuText {
  display: none;
}
@media (max-width: 960px) {
  .siteHeader__menuText {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: var(--sp-menu-text);
    font-weight: 600;
  }
}

.drawerOverlay {
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  visibility: hidden;
  z-index: 2000;
}

.drawerOverlay,.drawer {
  inset: 0;
  position: fixed;
}

.drawer {
  background: url(../img/drawer_bg.webp) no-repeat center top/cover;
  height: 100dvh;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  width: 100%;
  z-index: 2100;
}

.drawer__head {
  padding-inline: var(--sp-pad);
  padding-top: clamp(22px, 3.6vw, 27px);
}

.drawer__headInner {
  align-items: start;
  display: flex;
  justify-content: space-between;
}

.drawer__close {
  align-items: center;
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 48px;
  min-width: 69px;
}

.drawer__closeText {
  color: #14C1E5;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(18px, 3.2vw, 24px);
  font-weight: 600;
}

.drawer__closeIcon {
  display: inline-block;
  height: clamp(14px, 2.5333333333vw, 19px);
  position: relative;
  width: clamp(52px, 9.4666666667vw, 71px);
}

.drawer__closeLine {
  background: #14C1E5;
  height: 3px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform-origin: center;
  width: 100%;
}

.drawer__closeLine:nth-child(1) {
  transform: translate(-50%, -50%) rotate(15deg);
}

.drawer__closeLine:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-15deg);
}

.drawer__body {
  padding-top: min(10vw, 75px);
  width: 100%;
}

.drawer__item {
  border-bottom: 2px solid #fff;
  width: 100%;
}
.drawer__item:nth-child(1) .drawer__link {
  padding-top: 0;
}

.drawer__link {
  color: #fff;
  display: block;
  font-size: clamp(18px, 3.7333333333vw, 28px);
  font-weight: 700;
  letter-spacing: 0.2em;
  padding-block: 1.07em;
  padding-left: 1.42em;
  position: relative;
  width: 100%;
}
.drawer__link::after {
  background-image: url(../img/common_icon_button-whiteArrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 10px;
  position: absolute;
  right: 5.6%;
  top: 50%;
  transform: translateY(-50%);
  width: 29px;
}

.drawer__cta {
  display: flex;
  margin-top: max(48px, 8vw);
}

.drawer__ctaButton {
  font-size: clamp(18px, 3.73vw, 28px);
  height: min(13.3vw, 100px);
  margin-inline: auto;
  width: min(69.3vw, 520px);
}

body.is-drawer-open .drawerOverlay {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

body.is-drawer-open .drawer {
  transform: translateX(0);
}

@media (min-width: 961px) {
  .drawerOverlay,.drawer {
    display: none;
  }
}
.siteHeader__menuBtn,
.drawer__close {
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-tap-highlight-color: transparent;
       appearance: none;
  background: transparent;
  border: 0;
  box-shadow: none;
  outline: none;
}

.siteHeader__menuBtn:active,
.drawer__close:active {
  box-shadow: none;
  outline: none;
}

/*下層アクセスページ*/
/*map*/
.map {
  padding-bottom: min(4.76vw, 80px);
  padding-top: min(6.84vw, 115px);
  width: 100%;
}
@media (max-width: 960px) {
  .map {
    padding-bottom: clamp(40px, 10.6vw, 80px);
    padding-top: min(5.73vw, 43px);
  }
}

.map__inner {
  margin-inline: auto;
  padding-inline: 10.8333333333%;
  width: min(100%, 1680px);
}
@media (max-width: 960px) {
  .map__inner {
    padding-inline: min(4.4vw, 33px);
    width: 100%;
  }
}

.map__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
@media (max-width: 960px) {
  .map__content {
    gap: 15px;
  }
}

.map__map {
  overflow: hidden;
  width: 100%;
}

.map__map iframe {
  aspect-ratio: 1100/625;
  display: block;
  height: min(37.2vw, 625px);
  max-width: 100%;
  width: 100%;
}
@media (max-width: 960px) {
  .map__map iframe {
    aspect-ratio: 1100/625;
    height: min(48.5vw, 364px);
  }
}

.map__info {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 33px;
  width: 100%;
}
@media (max-width: 960px) {
  .map__info {
    gap: 26px;
  }
}

.map__tel,
.map__address {
  font-size: clamp(16px, 0.95vw, 18px);
  letter-spacing: 0.1em;
  line-height: 2.5;
  position: relative;
}
@media (max-width: 960px) {
  .map__tel,
  .map__address {
    font-size: clamp(14px, 3.2vw, 24px);
    line-height: normal;
    padding-left: 1.87em;
  }
}
.map__tel::before,
.map__address::before {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 1.5em;
  left: 0;
  position: absolute;
  top: 15%;
  width: 1.5em;
}
@media (max-width: 960px) {
  .map__tel::before,
  .map__address::before {
    top: 10%;
  }
}
.map__tel::after,
.map__address::after {
  background-image: url("../img/common_item_wave-line.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  bottom: -0.5em;
  content: "";
  height: 0.875em;
  left: 0;
  position: absolute;
  width: 18.75em;
}
@media screen and (max-width: 768px) {
  .map__tel::after,
  .map__address::after {
    bottom: -0.9em;
    width: 18em;
  }
}

.map__address {
  padding-left: 2.125em;
}
.map__address::before {
  background-image: url(../img/common_icon_pin.svg);
}
.map__address::after {
  left: 0;
}

.map__tel {
  display: inline-flex;
  padding-left: 1.875em;
}
.map__tel::before {
  background-image: url(../img/common_icon_tel.svg);
}
@media screen and (max-width: 768px) {
  .map__tel::before {
    height: 1.2em;
    top: 50%;
    transform: translateY(-50%);
    width: 1.2em;
  }
}

.map__tel:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
@media (max-width: 960px) {
  .map__tel:focus-visible {
    outline-offset: 3px;
  }
}

/*アクセス経路*/
.accessRoutes {
  padding-bottom: min(5.95vw, 100px);
  width: 100%;
}
@media (max-width: 960px) {
  .accessRoutes {
    padding-bottom: clamp(60px, 13.33vw, 100px);
  }
}

.accessRoutes__inner {
  margin-inline: auto;
  padding-inline: 10.8333333333%;
  width: min(100%, 1680px);
}
@media (max-width: 960px) {
  .accessRoutes__inner {
    padding-inline: min(4.4vw, 33px);
    width: 100%;
  }
}

.accessRoutes__list {
  display: flex;
  flex-direction: column;
  gap: 94px;
  width: 100%;
}
@media (max-width: 960px) {
  .accessRoutes__list {
    gap: clamp(30px, 8.66vw, 65px);
  }
}

.routeCard {
  background: #ffffff;
  border: 3px solid #E6E6E6;
  border-radius: 10px;
  padding: min(1.66vw, 28px) min(1.36vw, 23px) min(5vw, 84px);
  width: 100%;
}
@media (max-width: 960px) {
  .routeCard {
    padding-block: min(1.2vw, 9px);
    padding-inline: min(1.46vw, 11px);
  }
}

.routeCard__title {
  color: #14C1E5;
  font-size: min(1.78vw, 30px);
  letter-spacing: 0.2em;
  line-height: 2.1;
  margin-bottom: 1.7em;
}
@media (max-width: 960px) {
  .routeCard__title {
    font-size: clamp(15px, 2.66vw, 24px);
    margin-bottom: 0.8em;
  }
}

.routeCard__media {
  margin-inline: auto;
  padding-inline: min(4vw, 68px);
  width: 100%;
}
@media (max-width: 960px) {
  .routeCard__media {
    padding-inline: 0;
    width: min(100%, 656px);
  }
}
.routeCard__img {
  display: block;
  height: auto;
  margin-inline: auto;
  max-width: 1452px;
  width: 100%;
}
@media (max-width: 960px) {
  .routeCard__img {
    -o-object-fit: cover;
    height: 100%;
       object-fit: cover;
  }
}
@media (min-width: 2400px) {
  .routeCard__img {
    max-width: 1683px;
  }
}

.routeCard__car-route--hagi,
.routeCard__car-route--masuda {
  margin-bottom: min(4.1vw, 69px);
}

.route {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-inline: min(4vw, 68px);
  position: relative;
}
@media (max-width: 960px) {
  .route {
    gap: 18px;
    padding-inline: 0;
  }
}
.route::before {
  background: #C6C3C3;
  content: "";
  height: 7px;
  left: min(4vw, 68px);
  position: absolute;
  right: min(4vw, 68px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}
@media (max-width: 960px) {
  .route::before {
    height: 3px;
    left: 12px;
    right: 12px;
  }
}

.route__item {
  align-items: center;
  display: flex;
  position: relative;
  z-index: 1;
}

.route__item--start,
.route__item--goal {
  flex-grow: 0;
  flex-shrink: 0;
  height: min(9.28vw, 156px);
  width: min(9.28vw, 156px);
}
@media (min-width: 433px) and (max-width: 960px) {
  .route__item--start,
  .route__item--goal {
    height: min(17vw, 128px);
    width: min(17vw, 128px);
  }
}
@media (min-width: 350px) and (max-width: 432px) {
  .route__item--start,
  .route__item--goal {
    height: min(14.6vw, 110px);
    width: min(14.6vw, 110px);
  }
}

.route__item--segment {
  align-items: center;
  color: #767676;
  flex-direction: column;
  flex-grow: 1;
  font-size: clamp(16px, 0.95vw, 18px);
  gap: 0;
  letter-spacing: 0.2em;
  line-height: normal;
  min-width: 170px;
  text-align: center;
}
@media (max-width: 960px) {
  .route__item--segment {
    font-size: clamp(10px, 2.15vw, 16px);
    min-width: 120px;
  }
}
@media (min-width: 320px) and (max-width: 440px) {
  .route__item--segment {
    letter-spacing: 0.01em;
  }
}

.route__segmentLabel {
  display: inline-block;
  padding-bottom: 5em;
  position: relative;
  white-space: nowrap;
}
@media (max-width: 960px) {
  .route__segmentLabel {
    padding-bottom: 3.5em;
  }
}
.route__segmentLabel::after {
  background-image: url(../img/access_icon_car.svg);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 1.7em;
  content: "";
  display: block;
  height: 2.8em;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 2.8em;
}
@media (max-width: 960px) {
  .route__segmentLabel::after {
    bottom: 1.2em;
    height: 2.4em;
    width: 2.4em;
  }
}

.route__segmentTime {
  letter-spacing: 0.2em;
}

.route__node {
  border-radius: 999px;
  color: #fff;
  display: grid;
  font-size: min(1.19vw, 20px);
  height: 100%;
  letter-spacing: 0.05em;
  line-height: 1.5;
  place-items: center;
  text-align: center;
  width: 100%;
}
@media (max-width: 960px) {
  .route__node {
    font-size: clamp(10px, 2.66vw, 20px);
    letter-spacing: 0.2em;
  }
}
@media (min-width: 2050px) {
  .route__node {
    letter-spacing: 0;
  }
}

.route__item--start .route__node {
  background: #FF5D90;
}

.route__item--goal .route__node {
  background: #14C1E5;
  color: #ffffff;
}
@media (max-width: 960px) {
  .route__item--goal .route__node {
    background: #12b8d6;
  }
}

.accessRoutes__note {
  font-size: clamp(16px, 0.95vw, 18px);
  letter-spacing: 0.2em;
  line-height: 1.8;
  margin-top: 1em;
}
@media (max-width: 960px) {
  .accessRoutes__note {
    font-size: clamp(12px, 3.2vw, 24px);
    line-height: 1.2;
    margin-top: 0.8em;
  }
}

.route--shinkansen {
  padding-inline: min(3.2vw, 54px);
}
@media (max-width: 960px) {
  .route--shinkansen {
    gap: 0;
    justify-content: center;
    padding-block: 5px;
    padding-inline: 0;
  }
}
.route--shinkansen::after {
  background-image: repeating-linear-gradient(to right, #C6C3C3 0 16px, #fff 16px 26px);
  content: "";
  height: 7px;
  position: absolute;
  right: 13%;
  top: 50%;
  transform: translateY(-50%);
  width: 18%;
  z-index: 0;
}
@media (max-width: 960px) {
  .route--shinkansen::after {
    background-image: repeating-linear-gradient(to right, #C6C3C3 0 10px, #fff 10px 18px);
    height: 3px;
    right: 20px;
    width: 32%;
  }
}
@media (min-width: 2400px) {
  .route--shinkansen .route__segmentLabel {
    padding-bottom: 5.5em;
  }
}

.route__item--mid {
  flex-grow: 0;
  flex-shrink: 0;
  height: min(7.14vw, 120px);
  width: min(7.14vw, 120px);
}
@media (max-width: 960px) {
  .route__item--mid {
    height: 3em;
    width: 3em;
  }
}

.route__node--mid {
  background: #ffffff;
  border: 4px solid #9e9e9e;
  color: #9f9f9f;
  height: 100%;
  width: 100%;
}
@media (max-width: 750px) {
  .route__node--mid {
    border-width: 2px;
    letter-spacing: 0.01em;
  }
}

.route__segmentLabel--bus::after {
  background-image: url(../img/access_icon_bus.svg);
}
@media (min-width: 2400px) {
  .route__segmentLabel--bus::after {
    top: 3em;
  }
}
@media (max-width: 960px) {
  .route__segmentLabel--bus::after {
    bottom: 3.6em;
    height: 2.8em;
    width: 2.8em;
  }
}

.route__segmentLabel--train::after {
  background-image: url(../img/access_icon_train.svg);
  bottom: 2.5em;
}
@media (min-width: 2400px) {
  .route__segmentLabel--train::after {
    top: 2.2em;
  }
}
@media (max-width: 960px) {
  .route__segmentLabel--train::after {
    bottom: 4.1em;
    height: 2.8em;
    width: 2.8em;
  }
}

.route__segmentLabel--walk::after {
  background-image: url(../img/access_icon_walk.svg);
  bottom: 2.2em;
}
@media (min-width: 2400px) {
  .route__segmentLabel--walk::after {
    top: 1.8em;
  }
}
@media (max-width: 960px) {
  .route__segmentLabel--walk::after {
    bottom: 4em;
    height: 2.8em;
    width: 2.8em;
  }
}

.route--shinkansen .route__item--segment {
  font-size: 16px;
  min-width: 100px;
}
@media (max-width: 960px) {
  .route--shinkansen .route__item--segment {
    flex: 1 1 0;
    font-size: clamp(10px, 2.2vw, 12px);
    min-width: 0;
  }
}

.route--shinkansen .route__segmentLabel {
  letter-spacing: 0.12em;
}
@media (max-width: 960px) {
  .route--shinkansen .route__segmentLabel {
    font-size: clamp(9px, 2.15vw, 12px);
    letter-spacing: 0.04em;
    padding-bottom: 7em;
  }
  .route--shinkansen .route__segmentTime {
    font-size: clamp(10px, 2.15vw, 14px);
    white-space: nowrap;
  }
}

@media (max-width: 960px) {
}

.route--shinkansen .route__item--mid {
  position: relative;
}

@media (min-width: 2400px) {
  .shinkansen-br {
    display: block;
  }
}
@media (min-width: 961px) and (max-width: 2399px) {
  .shinkansen-br {
    display: none;
  }
}

@media (max-width: 960px) {
  .route__segmentLabel.route__segmentLabel--walk {
    padding-bottom: 8.5em;
  }
}

/*下層charmページ*/
/*fv*/
.charm-fv {
  /*旗の大きさ*/
}
.charm-fv .lower-fv__titleImg {
  display: block;
  height: min(9.1vw, 153px);
  width: min(24.1vw, 406px);
}
@media screen and (max-width: 768px) {
  .charm-fv .lower-fv__titleImg {
    height: min(20.4vw, 153px);
    width: min(54.1vw, 406px);
  }
}

/*seafood*/
.seafood {
  padding-bottom: min(21.1vw, 440px);
  padding-top: min(12.9vw, 218px);
  position: relative;
}
@media (max-width: 960px) {
  .seafood {
    padding-bottom: max(590px, 148vw);
    padding-top: min(26vw, 195px);
  }
}

.seafood::after {
  background-image: url("../img/common_bg_blue-wave-pc.webp");
  background-position: center top;
  background-repeat: repeat-x;
  background-size: cover;
  bottom: -1px;
  content: "";
  height: min(1.36vw, 40px);
  left: 0;
  position: absolute;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .seafood::after {
    background-image: url("../img/common_bg_blue-wave-sp.webp");
    bottom: 0;
    height: min(2.66vw, 20px);
  }
}

.seafood__head::before {
  background-image: url(../img/common_icon_flag-01.svg);
}

.seafood__title {
  height: min(4.88vw, 82px);
  width: min(24.2vw, 408px);
}
@media (max-width: 960px) {
  .seafood__title {
    height: min(10.93vw, 82px);
    width: min(53.46vw, 401px);
  }
}

.seafood__pointBox {
  background: url(../img/common_bg_rightBlue.webp) no-repeat center top/cover;
  border-radius: 20px;
  margin-bottom: min(3.57vw, 60px);
  padding-block: 1.875em;
  padding-inline: 5.0909090909%;
}
@media (max-width: 960px) {
  .seafood__pointBox {
    background: url(../img/common_bg_rightBlue-sp.webp) no-repeat center/cover;
    height: -moz-fit-content;
    height: fit-content;
    margin-bottom: min(10.6vw, 80px);
    padding: 1.42em 0 1.8em;
    padding-inline: 5.9701492537%;
  }
}

.seafood__points {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}
@media (max-width: 960px) {
  .seafood__points {
    grid-template-columns: 1fr;
    height: 100%;
  }
}

.seafood__point {
  border-right: 1px solid #0487C9;
  padding-inline: 3.8em;
  text-align: center;
  width: 100%;
}
@media (max-width: 960px) {
  .seafood__point {
    border-bottom: 1px solid #0487C9;
    border-right: none;
  }
}

.seafood__point:nth-child(1) {
  padding: 0 2em 0 0;
}
@media (max-width: 960px) {
  .seafood__point:nth-child(1) {
    padding: 0 0 1.07em;
  }
  .seafood__point:nth-child(2) {
    padding: 1.07em 0;
  }
}

@media (max-width: 960px) {
}

.seafood__point:nth-child(3) {
  border-right: none;
  padding: 0 0 0 2em;
}
@media (max-width: 960px) {
  .seafood__point:nth-child(3) {
    border-bottom: none;
    padding: 1.07em 0 0;
  }
}

.seafood__pointTitle {
  color: #0487C9;
  font-size: clamp(16px, 1.07vw, 18px);
  line-height: 2.2;
}
@media (max-width: 960px) {
  .seafood__pointTitle {
    font-size: clamp(16px, 3.73vw, 28px);
    line-height: 1.4;
    margin-bottom: 0.71em;
  }
}

.seafood__pointText {
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 2.5;
  white-space: nowrap;
}
@media (max-width: 960px) {
  .seafood__pointText {
    font-size: clamp(14px, 3.46vw, 26px);
    line-height: 0.96;
  }
}

.seafood__cards {
  height: auto;
  margin-bottom: min(7.2vw, 120px);
  width: 100%;
}
@media (max-width: 960px) {
  .seafood__cards {
    margin-bottom: clamp(50px, 7.81vw, 75px);
  }
}

.seafoodCard.section-card:nth-child(1) .seafoodCard__figure {
  aspect-ratio: 371/278;
}

.seafoodCard.section-card:nth-child(2) .seafoodCard__figure {
  aspect-ratio: 384/256;
}

.seafoodCard.section-card:nth-child(3) .seafoodCard__figure {
  aspect-ratio: 434/289;
}

.seafoodShop {
  margin-inline: auto;
  padding-bottom: min(3.39vw, 57px);
  position: relative;
  width: 100%;
}

.seafoodShop__title {
  color: #fff;
  font-size: min(1.42vw, 24px);
  letter-spacing: 0.15em;
  line-height: 2.7;
  position: relative;
  text-align: center;
  z-index: 2;
}
@media (max-width: 960px) {
  .seafoodShop__title {
    font-size: clamp(16px, 4.26vw, 32px);
    letter-spacing: 0.11em;
    line-height: 2;
    margin-bottom: min(5.2vw, 50px);
  }
}

.seafoodShop__title::before {
  background-image: url(../img/common_item_ribon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: min(5.77vw, 97px);
  left: 50%;
  position: absolute;
  top: -6.5%;
  transform: translateX(-50%);
  width: min(31.4vw, 529px);
  z-index: -1;
}
@media (max-width: 960px) {
  .seafoodShop__title::before {
    height: min(15vw, 113px);
    top: -22%;
    width: min(82.1vw, 616px);
  }
}

.seafoodShop__title::after {
  background-image: url(../img/common_item_waveYacht.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: min(4vw, 67px);
  position: absolute;
  right: 0;
  top: -0.95vw;
  width: min(8.7vw, 146px);
}
@media (max-width: 960px) {
  .seafoodShop__title::after {
    display: none;
  }
}

.seafoodShop__box {
  align-content: start;
  border: 5px solid #004098;
  border-radius: 20px;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  left: 50%;
  padding-bottom: min(3.39vw, 57px);
  padding-inline: 1.88em;
  padding-top: min(4.82vw, 81px);
  position: absolute;
  text-align: center;
  top: 40%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 0;
}
@media (max-width: 960px) {
  .seafoodShop__box {
    align-items: center;
    grid-template-columns: 1fr;
    padding-bottom: min(10.6vw, 80px);
    padding-inline: 5.9701492537%;
    padding-top: clamp(40px, 10.5vw, 90px);
  }
}

.seafoodShop__col {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.seafoodShop__col--left {
  border-right: 4px dotted #004098;
  padding-right: 0.8em;
}
@media (max-width: 960px) {
  .seafoodShop__col--left {
    border-right: none;
    padding-right: 0;
    width: 100%;
  }
}
.seafoodShop__col--center {
  border-right: 4px dotted #004098;
  padding: 0 0.9em 0 1.4em;
  position: relative;
}
@media (max-width: 960px) {
  .seafoodShop__col--center {
    border-right: none;
    padding: 4em 0;
  }
}
.seafoodShop__col--center::before, .seafoodShop__col--center::after {
  content: "";
  display: none;
}
@media (max-width: 960px) {
  .seafoodShop__col--center::before, .seafoodShop__col--center::after {
    background-image: url(../img/common_item_dot-line.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    height: 4px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 41.3vw;
  }
}
.seafoodShop__col--center::before {
  top: 1.6em;
}
.seafoodShop__col--center::after {
  bottom: 1.6em;
}

.seafoodShop__col--right {
  padding-left: 1em;
  position: relative;
}
@media (max-width: 960px) {
  .seafoodShop__col--right {
    padding-left: 0;
  }
}

.seafoodShop__col--right .seafoodShop__name {
  line-height: 1.5;
  margin-bottom: 1.6em;
  padding-top: 0;
}
@media (max-width: 960px) {
  .seafoodShop__col--right .seafoodShop__name {
    margin-bottom: 1.3em;
  }
}

.seafoodShop__name {
  color: #0487C9;
  display: inline-block;
  font-size: clamp(16px, 1.19vw, 20px);
  letter-spacing: 0.24em;
  line-height: 1.5;
  margin-bottom: 2.2em;
  padding-top: 1em;
  position: relative;
  white-space: nowrap;
}
@media (max-width: 960px) {
  .seafoodShop__name {
    font-size: clamp(16px, 4.26vw, 32px);
    letter-spacing: 0.22em;
    line-height: 1.5;
    margin-bottom: 1.3em;
    padding-top: 0;
  }
}

.seafoodShop__name::after {
  background-image: url(../img/common_item_wave-line.svg);
  background-repeat: repeat-x;
  background-size: cover;
  bottom: -4px;
  content: "";
  display: block;
  height: clamp(3px, 0.29vw, 5px);
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
}
@media (max-width: 960px) {
  .seafoodShop__name::after {
    background-repeat: repeat-x;
    bottom: -10px;
    height: clamp(6px, 1.06vw, 8px);
  }
}

.seafoodShop__text {
  display: inline-block;
  letter-spacing: 0.125em;
  line-height: 2.1;
  text-align: left;
}
@media (max-width: 960px) {
  .seafoodShop__text {
    font-size: clamp(14px, 3.73vw, 28px);
    letter-spacing: 0.05em;
    line-height: 1.9;
    text-align: center;
  }
}

/*charm-view*/
.view {
  overflow: hidden;
  padding-bottom: min(7.14vw, 120px);
  padding-top: calc(min(11.7vw, 198px) - var(--wave-height));
}
@media (max-width: 960px) {
  .view {
    padding-bottom: min(16vw, 120px);
    padding-top: min(28.1vw, 211px);
  }
}
.view .float-bubbles__layer--right {
  right: 0;
}
@media screen and (max-width: 1600px) {
  .view .float-bubbles__layer--right {
    right: var(--bubbles-right-x-1500, -5%);
  }
}
@media (max-width: 960px) {
  .view .float-bubbles__layer--right {
    top: -10vw;
  }
}

.view.wave-bg::before {
  display: none;
}

.view__inner {
  position: relative;
  z-index: 2;
}
.view__inner::after {
  background-image: url(../img/common_item_w-seagull.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: min(2.5vw, 42px);
  left: 110px;
  position: absolute;
  top: min(44.6vw, 750px);
  width: min(6.6vw, 111px);
}
@media screen and (max-width: 1500px) {
  .view__inner::after {
    left: -10%;
    /* ←ここで見切れ開始 */
  }
}
@media screen and (max-width: 1200px) {
  .view__inner::after {
    left: -18%;
  }
}

.view__head {
  position: relative;
  text-align: center;
}
@media (max-width: 960px) {
  .view__head {
    margin-bottom: min(8vw, 60px);
  }
}
.view__head::before {
  background-image: url(../img/common_icon_flag-02.svg);
}
.view__head::after {
  background-image: url(../img/common_item_w-seagull.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: min(3.86vw, 65px);
  position: absolute;
  right: 0;
  top: 34px;
  width: min(10.2vw, 172px);
}
@media (max-width: 960px) {
  .view__head::after {
    height: min(8.66vw, 65px);
    top: 30px;
    width: min(22.9vw, 172px);
  }
}

.view__title {
  height: auto;
  width: min(23.8vw, 329px);
}
@media (max-width: 960px) {
  .view__title {
    width: min(43.8vw, 329px);
  }
}

.view__feature {
  margin-bottom: min(3.57vw, 60px);
  margin-inline: auto;
  width: min(100%, 1100px);
}
@media (max-width: 960px) {
  .view__feature {
    margin-bottom: min(7.06vw, 53px);
  }
}

.view-feature__figure {
  height: auto;
  margin-bottom: min(1.78vw, 30px);
  width: 100%;
}
@media (max-width: 960px) {
  .view-feature__figure {
    height: 40vw;
    margin-bottom: clamp(40px, 2.26vw, 46px);
  }
}

.view-feature__img {
  border-radius: 20px;
  display: block;
  height: auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .view-feature__img {
    height: 100%;
  }
}

.view-feature__body {
  color: #fff;
}

.view-feature__meta {
  align-items: center;
  display: flex;
  gap: min(1.19vw, 20px);
}
@media (max-width: 960px) {
  .view-feature__meta {
    gap: 0.2em;
    margin-bottom: 0.57em;
  }
}

.view-feature__name {
  font-size: min(1.4vw, 24px);
  letter-spacing: 0.1em;
  line-height: 2.7;
  white-space: nowrap;
}
@media (max-width: 960px) {
  .view-feature__name {
    font-size: clamp(16px, 4.26vw, 32px);
    letter-spacing: 0.2em;
    line-height: 2;
  }
}

.view-feature__badge {
  align-items: center;
  background: #0487C9;
  border-radius: 999px;
  display: inline-flex;
  font-size: min(0.95vw, 16px);
  height: min(2.61vw, 44px);
  justify-content: center;
  letter-spacing: 0.1em;
  line-height: 4;
  padding-block: 1em;
  padding-inline: 2.3em;
  white-space: nowrap;
}
@media (max-width: 960px) {
  .view-feature__badge {
    font-size: clamp(14px, 3.46vw, 26px);
    height: min(6.8vw, 51px);
    line-height: 2.5;
    padding-inline: 1.5em;
  }
}

.view-feature__text {
  letter-spacing: 0.1em;
  line-height: 2.1;
  margin-bottom: min(2.98vw, 50px);
}
@media (max-width: 960px) {
  .view-feature__text {
    letter-spacing: normal;
    line-height: 1.9;
    margin-bottom: min(5.33vw, 40px);
  }
}

.view-spec {
  background: url(../img/common_bg_rightBlue.webp) no-repeat center top/cover;
  border-radius: 20px;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 1.875em;
  padding-inline: 4.44em;
}
@media (max-width: 960px) {
  .view-spec {
    background: url(../img/common_bg_rightBlue-sp.webp) no-repeat center top/cover;
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 1.42em;
    padding-inline: 0;
    padding-top: 1em;
    row-gap: 1em;
  }
}

.view-spec__item {
  border-right: 1px solid #0487C9;
  position: relative;
  text-align: center;
}

.view-spec__title {
  color: #0487C9;
  font-size: clamp(16px, 1.07vw, 18px);
  line-height: 2.2;
}
@media (max-width: 960px) {
  .view-spec__title {
    font-size: clamp(16px, 3.73vw, 28px);
  }
}

.view-spec__value {
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 2.5;
}
@media (max-width: 960px) {
  .view-spec__value {
    font-size: clamp(14px, 3.46vw, 26px);
    line-height: normal;
  }
  .view-spec__item:nth-child(2),
  .view-spec__item:nth-child(4) {
    border-right: none;
  }
}

@media (max-width: 960px) {
}

.view-spec__item:last-child {
  border-right: none;
}

.view__cards {
  position: relative;
  z-index: 2;
}

.view__cards,.view-card {
  height: 100%;
}

.view-card__figure {
  width: 100%;
}
@media (max-width: 960px) {
  .view-card__figure {
    height: 36vw;
  }
}

.view-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
  padding: 0.8em 1.87em 2.5em;
}
@media (max-width: 960px) {
  .view-card__body {
    padding: 1.2em 1.5em 1.7em;
  }
}

.view-card__title {
  flex-shrink: 0;
}
@media screen and (max-width: 960px) {
  .view-card__title {
    margin-bottom: 0.5em;
  }
}

.view-card__text {
  border-bottom: 4px dotted #14C1E5;
  flex-grow: 1;
  padding-bottom: 1.875em;
}
@media screen and (max-width: 960px) {
  .view-card__text {
    padding-bottom: 1.53em;
  }
}

.view-card__tags {
  display: grid;
  flex-shrink: 0;
  gap: 1.3em;
  list-style: none;
  padding-top: 2em;
}
@media (max-width: 960px) {
  .view-card__tags {
    display: flex;
    gap: 1.3em;
    padding-top: 1.4em;
  }
}

.view-card__tag {
  letter-spacing: 0.2em;
  padding-left: 2.3em;
  position: relative;
}
@media (max-width: 960px) {
  .view-card__tag {
    font-size: clamp(14px, 2.7vw, 26px);
    padding-left: 1.73em;
  }
}

.view-card__tag::before {
  background-image: url("../img/common_icon_check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 1.68em;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.68em;
}

/*charm-activity*/
.activity {
  padding-bottom: min(8.21vw, 138px);
  padding-top: min(12.9vw, 218px);
  position: relative;
}
@media (max-width: 960px) {
  .activity {
    padding-bottom: min(17vw, 128px);
    padding-top: min(31.3vw, 235px);
  }
}

.activity__inner {
  position: relative;
}

.activity__head::before {
  background-image: url(../img/common_icon_flag-03.svg);
  content: "";
}

.activity__title {
  height: auto;
  width: min(40.4vw, 680px);
}
@media (max-width: 960px) {
  .activity__title {
    height: min(10.9vw, 82px);
    width: min(88.1vw, 661px);
  }
}

.activity__media {
  background-image: url("../img/common_img_sample.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  height: min(22.6vw, 380px);
  margin-bottom: min(2.97vw, 50px);
  width: 100%;
}
@media (max-width: 960px) {
  .activity__media {
    height: min(50.6vw, 380px);
    margin-bottom: min(8vw, 60px);
  }
}

.activity__lead {
  color: #0487C9;
  font-size: min(1.42vw, 24px);
  letter-spacing: 0.1em;
  margin-bottom: 1.08em;
}
@media (max-width: 960px) {
  .activity__lead {
    font-size: clamp(16px, 4.26vw, 32px);
    margin-bottom: 0.93em;
  }
}

.activity__text {
  font-size: clamp(14px, 0.95vw, 16px);
  letter-spacing: 0.1em;
  margin-bottom: min(3.57vw, 60px);
}
@media (max-width: 960px) {
  .activity__text {
    font-size: clamp(14px, 3.73vw, 28px);
    letter-spacing: 0.05em;
    margin-bottom: clamp(45px, 8vw, 60px);
  }
}

.activity__cta {
  display: flex;
  justify-content: center;
}
.activity__link {
  height: min(4.16vw, 70px);
  width: min(21.42vw, 360px);
}
@media (max-width: 960px) {
  .activity__link {
    height: min(13.3vw, 100px);
    width: min(78.6vw, 520px);
  }
}

/*charm-spot*/
.spot {
  padding-bottom: min(7.14vw, 120px);
  padding-top: min(11.9vw, 200px);
  position: relative;
}
@media (max-width: 960px) {
  .spot {
    padding-bottom: min(13.3vw, 100px);
    padding-top: min(26vw, 195px);
  }
}

.spot__head::before {
  background-image: url(../img/common_icon_flag-04.svg);
}

.spot__title {
  height: min(4.8vw, 82px);
  width: min(35.6vw, 599px);
}
@media (max-width: 960px) {
  .spot__title {
    height: min(10.9vw, 82px);
    width: min(79.8vw, 599px);
  }
}

.spot__lead {
  margin-bottom: min(4.76vw, 80px);
}
@media (max-width: 960px) {
  .spot__lead {
    margin-bottom: min(10.6vw, 80px);
  }
  .spot__mainFigure {
    height: min(40vw, 300px);
  }
  .spot__mainImg.section-lead__img {
    aspect-ratio: 669/420;
  }
}

@media (max-width: 960px) {
}

@media (max-width: 960px) {
}

.spot__mainText.section-lead__text {
  color: #fff;
  text-align: left;
}

.spotCard__title.section-card__title {
  color: #0487C9;
  letter-spacing: 0.15em;
}

@media (max-width: 960px) {
  .spot {
    --bubbles-right: url("../img/charm-spot_bg_babble-right-sp.svg");
  }
}

.spot .float-bubbles__layer--left {
  left: 0;
}
@media (max-width: 960px) {
  .spot .float-bubbles__layer--left {
    left: -4.5vw;
    top: -8.5vw;
  }
}

.spot .float-bubbles__layer--right {
  right: -90px;
}
@media (max-width: 960px) {
  .spot .float-bubbles__layer--right {
    right: 0;
    top: -21vw;
  }
}

/*下層companyページ*/
/*philosophy*/
.philosophy {
  padding-bottom: min(7.7vw, 130px);
  padding-top: min(7.14vw, 120px);
  position: relative;
}
@media screen and (max-width: 960px) {
  .philosophy {
    padding-bottom: clamp(60px, 13.3vw, 100px);
    padding-top: clamp(40px, 8vw, 60px);
  }
}

.philosophy__title {
  height: auto;
  margin-bottom: min(3.69vw, 62px);
  width: min(17.1vw, 288px);
}
@media screen and (max-width: 960px) {
  .philosophy__title {
    margin-bottom: clamp(30px, 8vw, 60px);
    width: min(40.8vw, 306px);
  }
}

.philosophy__list {
  align-items: start;
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  position: relative;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .philosophy__list {
    gap: 0.8em;
    grid-template-columns: repeat(2, 1fr);
    margin-inline: auto;
    width: 100%;
  }
  .philosophy__item:nth-child(1) {
    grid-column: 1/-1;
    justify-content: center;
  }
}

@media screen and (max-width: 960px) {
}

.philosophyCard {
  aspect-ratio: 1/1;
  background-image: url(../img/common_item_circle-wave.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  position: relative;
  width: 100%;
}
@media (min-width: 961px) and (max-width: 1589px) {
  .philosophyCard {
    background-size: 100%;
  }
}
@media (max-width: 960px) {
  .philosophyCard {
    background-position: center 52%;
    background-size: 108%;
    width: min(44.6vw, 335px);
  }
}

@media screen and (max-width: 960px) {
  .philosophyCard:nth-child(1) {
    background-size: 100%;
  }
  .philosophyCard:nth-child(1) .philosophyCard::before {
    height: 100%;
    width: 100%;
  }
}

.philosophyCard::before {
  background-image: url(../img/common_item_circle-glow.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 125%;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 125%;
  z-index: -1;
}
@media (max-width: 960px) {
  .philosophyCard::before {
    height: 128%;
    width: 128%;
  }
}

.philosophyCard__body {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1.4em;
  left: 50%;
  max-width: 15em;
  position: absolute;
  text-align: center;
  top: 15%;
  transform: translateX(-50%);
  width: 100%;
}
@media screen and (max-width: 960px) {
  .philosophyCard__body {
    gap: 0.2em;
    max-width: 9em;
    top: 10%;
  }
}

.philosophyCard__number {
  color: #0487C9;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(24px, 1.42vw, 32px);
  line-height: 1.6;
}
@media screen and (max-width: 960px) {
  .philosophyCard__number {
    font-size: clamp(14px, 3.46vw, 26px);
  }
}

.philosophyCard__text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .philosophyCard__text {
    font-size: clamp(12px, 3.2vw, 24px);
    line-height: 1.5;
  }
}

.float-bubbles--philosophy {
  --bubbles-left: url("../img/company-philosophy_bg_bubble-left-pc.svg");
  --bubbles-right: url("../img/company-philosophy_bg_bubble-right-pc.svg");
}
@media (max-width: 960px) {
  .float-bubbles--philosophy {
    --bubbles-left: url("../img/company-philosophy_bg_bubble-left-sp.svg");
    --bubbles-right: url("../img/company-philosophy_bg_bubble-right-sp.svg");
    --bubbles-left-h-sp: 1246px;
    --bubbles-right-h-sp: 1246px;
  }
  .float-bubbles--philosophy .float-bubbles__layer--left {
    left: 5px;
  }
}
@media (max-width: 960px) {
}

/*company-messageセクション*/
.company-message {
  background-color: #F3FAFB;
  padding-bottom: min(7.7vw, 130px);
  padding-top: min(7.14vw, 120px);
}
@media screen and (max-width: 960px) {
  .company-message {
    padding-bottom: clamp(60px, 13.3vw, 100px);
    padding-top: clamp(40px, 8vw, 60px);
  }
}

.company-message__title {
  height: auto;
  margin-bottom: min(10.89vw, 183px);
  position: relative;
  width: min(21.7vw, 365px);
}
@media (max-width: 960px) {
  .company-message__title {
    margin-bottom: min(24.1vw, 181px);
    width: min(48.6vw, 365px);
  }
}
.company-message__title::after {
  background: url(../img/common_item_anchor.svg) no-repeat center center/contain;
  bottom: max(-4.04vw, -68px);
  content: "";
  display: block;
  height: min(2.44vw, 41px);
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: min(2.85vw, 48px);
}
@media (max-width: 960px) {
  .company-message__title::after {
    bottom: max(-8vw, -68px);
    height: min(5.46vw, 41px);
    width: min(6.4vw, 48px);
  }
}

.company-message__inner {
  padding-left: max(40px, 12.6vw);
}
@media (max-width: 960px) {
  .company-message__inner {
    padding-left: max(20px, 5.33vw);
  }
}

.company-message__body {
  background-color: #fff;
  min-height: 488px;
  padding-bottom: min(5.95vw, 100px);
  padding-left: max(40px, 8.15vw);
  padding-right: clamp(40px, 17.4vw, 293px);
  position: relative;
}
@media (max-width: 960px) {
  .company-message__body {
    min-height: 450px;
    padding-left: max(15px, 4vw);
    padding-right: max(20px, 5.33vw);
    padding-top: 37.3vw;
  }
}

.company-message__photo {
  background: url(../img/company-message_img_president-pc.webp) no-repeat center center/contain;
  border-radius: 20px;
  flex-grow: 0;
  flex-shrink: 0;
  height: min(28.5vw, 480px);
  left: max(40px, 8.15vw);
  position: absolute;
  top: -60px;
  width: min(26.7vw, 450px);
}
@media (max-width: 960px) {
  .company-message__photo {
    background: url(../img/company-message_img_president-sp.webp) no-repeat center center/contain;
    height: min(38.6vw, 290px);
    left: 30px;
    top: -8vw;
    width: min(60vw, 450px);
  }
}

.company-message__content {
  margin-left: min(30.3vw, 582px);
  padding-top: 3.75em;
  width: clamp(530px, 31.54vw, 900px);
}
@media (max-width: 960px) {
  .company-message__content {
    margin-left: clamp(15px, 4vw, 30px);
    padding-top: 0;
    width: 100%;
  }
}

.company-message__text {
  letter-spacing: 0.1em;
  line-height: 2;
}
@media (max-width: 960px) {
  .company-message__text {
    font-size: clamp(14px, 3.73vw, 28px);
    letter-spacing: 0.05em;
    line-height: 1.9;
  }
}

.company-message__text:not(:first-child) {
  text-indent: 1em;
}

/*overviewセクション*/
.overview {
  background-color: #fff;
  padding-bottom: min(7.7vw, 130px);
  padding-top: min(8.33vw, 140px);
  position: relative;
}
@media screen and (max-width: 960px) {
  .overview {
    padding-bottom: clamp(60px, 16vw, 120px);
    padding-top: clamp(40px, 8vw, 60px);
  }
}

.overview__content {
  align-items: start;
  display: grid;
  gap: min(4.94vw, 83px);
  grid-template-columns: min(18.45vw, 310px) 1fr;
}
@media (max-width: 960px) {
  .overview__content {
    gap: 40px;
    grid-template-columns: 1fr;
  }
}

.overview__head {
  display: flex;
  flex-direction: column;
  gap: min(3.57vw, 60px);
  justify-content: flex-start;
}
@media (max-width: 960px) {
  .overview__head {
    gap: clamp(30px, 8vw, 60px);
    justify-content: center;
  }
}

.overview__title {
  margin-inline: auto;
  width: min(17.14vw, 288px);
}
@media (max-width: 960px) {
  .overview__title {
    width: min(39.8vw, 299px);
  }
}

.overview__photo {
  aspect-ratio: 1/1;
  background-image: url("../img/top-leisure_img_01.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  width: min(18.45vw, 310px);
}
@media (max-width: 960px) {
  .overview__photo {
    margin-left: 30px;
    width: min(27.46vw, 206px);
  }
}

.overview__list {
  margin: 0;
}
@media (max-width: 960px) {
  .overview__list {
    margin: 0;
  }
}

.overview__row {
  -moz-column-gap: 9%;
  align-items: start;
       column-gap: 9%;
  display: grid;
  grid-template-columns: 14% 1fr;
  justify-content: center;
  padding-block: 1.875em;
  position: relative;
}
@media (max-width: 960px) {
  .overview__row {
    -moz-column-gap: 0;
         column-gap: 0;
    grid-template-columns: 1fr;
    padding-block: 0.7em;
    row-gap: 6px;
  }
}
.overview__row::after {
  background-image: radial-gradient(circle, #0487C9 2px, transparent 2px);
  background-repeat: repeat-x;
  background-size: 14px 4px;
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  width: 100%;
}
@media (max-width: 960px) {
  .overview__row::after {
    background-size: 8px 4px;
    bottom: -2px;
    height: 4px;
  }
}

.overview__row:first-child {
  padding-top: 0;
}

.overview__term {
  color: #14C1E5;
  font-size: min(1.07vw, 18px);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media (max-width: 960px) {
  .overview__term {
    font-size: clamp(14px, 3.73vw, 28px);
    letter-spacing: 0.09em;
    line-height: 1.5;
  }
}

.overview__desc {
  letter-spacing: 0.1em;
}
@media (max-width: 960px) {
  .overview__desc {
    font-size: clamp(12px, 3.46vw, 26px);
    line-height: 1.9;
  }
}

.overview__details {
  list-style: decimal;
  padding-left: 1.2em;
}
@media (max-width: 960px) {
  .overview__details {
    padding-left: 1.7em;
  }
}

.overview__detail {
  margin-bottom: 0.3em;
}

/*top-access--company*/
.top-access--company {
  background-color: #F4FDFF;
}


/*contact-thanks*/
.thanks {
  padding-bottom: min(11.9vw, 200px);
  padding-top: min(7.14vw, 120px);
}
@media screen and (max-width: 768px) {
  .thanks {
    padding-bottom: min(30vw, 225px);
    padding-top: min(12.53vw, 94px);
  }
}

.thanks__inner {
  margin-inline: auto;
  padding-inline: 7.619047619%;
  width: min(100%, 1680px);
}
@media screen and (max-width: 768px) {
  .thanks__inner {
    padding-inline: clamp(20px, 7.33vw, 55px);
    width: min(100%, 750px);
  }
}

.thanks__title {
  color: #000;
  font-family: Inter;
  font-size: min(2.97vw, 50px);
  font-weight: 700;
  margin-bottom: min(4.88vw, 82px);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .thanks__title {
    font-size: clamp(18px, 4vw, 30px);
    margin-bottom: min(15vw, 113px);
  }
}

/*お問い合わせページ*/
.contact {
  font-family: Inter;
  padding-bottom: min(21.7vw, 366px);
  padding-top: min(6.42vw, 108px);
}
@media screen and (max-width: 768px) {
  .contact {
    padding-bottom: min(19.7vw, 148px);
    padding-top: min(5.73vw, 43px);
  }
}

.contact__inner {
  margin-inline: auto;
  padding-inline: 7.619047619%;
  width: min(100%, 1680px);
}
@media screen and (max-width: 768px) {
  .contact__inner {
    padding-inline: clamp(20px, 7.33vw, 55px);
    width: min(100%, 750px);
  }
}

/*コンタクトフォーム*/
.contactForm {
  margin-inline: auto;
  width: 100%;
}

.contactForm__row {
  margin-top: 3.87em;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contactForm__row {
    margin-top: 1.46em;
  }
}

.contactForm__label {
  font-size: min(1.48vw, 25px);
  font-weight: 700;
  margin-bottom: 0.36em;
}
@media screen and (max-width: 768px) {
  .contactForm__label {
    font-size: clamp(14px, 2.26vw, 17px);
  }
}

.contactForm__required {
  color: #f00000;
  margin-left: 2px;
}

.contactForm__label.--inline .contactForm__required {
  margin-left: 0;
}

.contactForm__field {
  width: 100%;
}

.contactForm__input,
.contactForm__textarea {
  background: #ffffff;
  border: 1px solid #8A8A8A;
  color: #000;
  font-family: Inter;
  font-size: min(1.19vw, 20px);
  font-weight: 700;
  outline: none;
  padding: 1em;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contactForm__input,
  .contactForm__textarea {
    font-size: clamp(14px, 2.26vw, 17px);
  }
}

.contactForm__textarea {
  height: min(36.2vw, 608px);
  resize: vertical;
}
@media screen and (max-width: 768px) {
  .contactForm__textarea {
    height: min(53.6vw, 402px);
  }
}

.contactForm__input::-moz-placeholder, .contactForm__textarea::-moz-placeholder {
  color: #B8B8B8;
}

.contactForm__input::placeholder,
.contactForm__textarea::placeholder {
  color: #B8B8B8;
}

.contactForm__actions {
  display: flex;
  justify-content: center;
  margin-top: min(10.8vw, 182px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contactForm__actions {
    margin-top: min(10.9vw, 82px);
  }
}

.contactForm__submit {
  -webkit-appearance: none;
     -moz-appearance: none;
  align-items: center;
          appearance: none;
  background: #ffffff;
  border: 4px solid #14C1E5;
  border-radius: 10px;
  color: #14C1E5;
  cursor: pointer;
  display: flex;
  font-size: min(1.78vw, 30px);
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  padding-block: 0.8em;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  width: min(32.9vw, 554px);
}
@media screen and (max-width: 768px) {
  .contactForm__submit {
    border: 3px solid #14C1E5;
    font-size: clamp(14px, 3.33vw, 25px);
    width: clamp(150px, 35vw, 263px);
  }
}

.contactForm__submit:hover {
  background: #14C1E5;
  color: #ffffff;
}

.wpcf7-form {
  margin: 0;
}

.wpcf7-form-control {
  font-family: Inter;
}

.wpcf7-not-valid {
  border-color: #f00000;
  border-width: 3px;
}

.wpcf7-not-valid-tip {
  color: #f00000;
  font-size: min(1.07vw, 20px);
  line-height: 1.6;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .wpcf7-not-valid-tip {
    font-size: max(1.73vw, 13px);
  }
}

.wpcf7-response-output {
  border-radius: 2px;
  font-size: min(1.07vw, 20px);
  line-height: 1.7;
  margin: 18px 0 0;
  padding: 12px 14px;
}
@media screen and (max-width: 768px) {
  .wpcf7-response-output {
    font-size: max(1.73vw, 13px);
    margin: 18px 0 0;
  }
}

.page-contact .wpcf7 form.sent .wpcf7-response-output {
  display: none !important;
}

.wpcf7-spinner {
  display: none;
}

/*rentalセクション*/
.rental {
  padding-bottom: min(7.14vw, 120px);
  padding-top: min(12.9vw, 218px);
}
@media (max-width: 960px) {
  .rental {
    padding-bottom: min(17.3vw, 130px);
    padding-top: min(26vw, 195px);
  }
}

.rental__head::before {
  background-image: url(../img/common_icon_flag-01.svg);
}

.rental__title {
  height: min(4.88vw, 82px);
  width: min(24.2vw, 408px);
}
@media (max-width: 960px) {
  .rental__title {
    height: min(10.93vw, 82px);
    width: min(53.46vw, 401px);
  }
}

/*写真と錨のテキストパート*/
.rentalMenu {
  margin-bottom: min(3.57vw, 60px);
  padding-left: clamp(40px, 17.2vw, 350px);
}
@media (max-width: 960px) {
  .rentalMenu {
    margin-bottom: min(5.33vw, 40px);
    padding-left: clamp(20px, 5.33vw, 40px);
  }
}

.rentalMenu__body {
  align-items: center;
  background-color: #fff;
  display: grid;
  gap: min(3.1vw, 52px);
  grid-template-columns: 32% 1fr;
}
@media (max-width: 960px) {
  .rentalMenu__body {
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
  }
  .rentalMenu__text-area {
    margin-right: auto;
    width: min(89.3vw, 670px);
  }
}

@media (max-width: 960px) {
}

.rentalMenu__title {
  align-items: center;
  color: #0487C9;
  font-size: min(1.42vw, 24px);
  letter-spacing: 0.2em;
  line-height: 2;
  padding-bottom: 1.5em;
  padding-left: 2.8em;
  padding-top: 1.1em;
  position: relative;
}
@media (max-width: 960px) {
  .rentalMenu__title {
    font-size: clamp(18px, 4.26vw, 32px);
    padding-block: 0.7em;
    padding-left: 2.15em;
  }
}
.rentalMenu__title::before {
  background: url(../img/common_item_anchor.svg) no-repeat center center/contain;
  content: "";
  display: block;
  height: 1.7em;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
}
@media (max-width: 960px) {
  .rentalMenu__title::before {
    height: 1.28em;
    padding-bottom: 0.6em;
    padding-top: 0.85em;
    width: 1.5em;
  }
}
.rentalMenu__title::after {
  background-image: url(../img/common_item_dot-line.svg);
  background-repeat: repeat-x;
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
}
@media (max-width: 960px) {
  .rentalMenu__title::after {
    width: 61.6901408451%;
  }
}
.rentalMenu__title:nth-child(1) {
  padding-top: 0;
}
.rentalMenu__title:nth-child(1)::before {
  top: 30%;
}
@media (max-width: 960px) {
  .rentalMenu__title:nth-child(1)::before {
    top: 35%;
  }
  .rentalMenu__title:nth-child(3) {
    padding-bottom: 0;
  }
}
@media (max-width: 960px) {
}
.rentalMenu__title:nth-child(3):after {
  display: none;
}

.rentalMenu__text {
  letter-spacing: 0.1em;
  line-height: 2.1;
  margin-top: 2.8em;
}
@media (max-width: 960px) {
  .rentalMenu__text {
    letter-spacing: 0.05em;
    line-height: 1.9;
    margin-top: 6.5vw;
  }
}

.rentalMenu__media {
  background: url("../img/leisure-rental_img_boat.webp") no-repeat center center/cover;
  border-radius: 20px 0 0 20px;
  min-height: min(24.4vw, 600px);
  overflow: hidden;
}
@media (max-width: 960px) {
  .rentalMenu__media {
    height: min(50.6vw, 380px);
    margin-bottom: 1.35em;
    width: 100%;
  }
}

.rentalBoat {
  background: url("../img/common_bg_rightBlue-sp.webp") no-repeat center center/cover;
  border-radius: 20px;
  margin-bottom: min(3.57vw, 60px);
  padding-bottom: min(1.36vw, 23px);
  padding-inline: min(5.65vw, 95px);
  padding-top: min(1.07vw, 18px);
  position: relative;
}
@media (max-width: 960px) {
  .rentalBoat {
    padding: min(5.33vw, 40px);
  }
}

/* 2枚並び（SPは縦） */
.rentalBoat__list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 960px) {
  .rentalBoat__list {
    gap: min(4vw, 30px);
    grid-template-columns: 1fr;
  }
}

.rentalBoat__label {
  color: #0487C9;
  font-size: clamp(16px, 1.07vw, 20px);
  line-height: 2.2;
  margin-bottom: 1em;
  text-align: center;
}
@media (max-width: 960px) {
  .rentalBoat__label {
    font-size: min(3.73vw, 28px);
    line-height: 1.4;
    margin-bottom: 0.67em;
  }
}

.rentalBoatCard {
  background-color: #fff;
  border-radius: 20px;
  padding: 1em 0.9em 1.375em 1.375em;
}
@media (max-width: 960px) {
  .rentalBoatCard {
    border-radius: 20px;
    padding: 1.07em;
  }
}

.rentalBoatCard__title {
  font-size: clamp(16px, 1.07vw, 18px);
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin-bottom: 1.26em;
  text-align: center;
}
@media (max-width: 960px) {
  .rentalBoatCard__title {
    font-size: clamp(14px, 3.46vw, 26px);
    line-height: 1.5;
    margin-bottom: 0.8em;
  }
}

.rentalBoatCard__title span {
  display: block;
}

.rentalBoatCard__row {
  align-items: start;
  display: grid;
  font-size: clamp(16px, 0.95vw, 20px);
  gap: 0;
  grid-template-columns: 3.5em 1fr;
  line-height: 1.5;
}
@media (max-width: 960px) {
  .rentalBoatCard__row {
    font-size: clamp(12px, 3.46vw, 26px);
    grid-template-columns: 3.4em 1fr;
    line-height: 1.5;
  }
}

.rentalBoatCard__row + .rentalBoatCard__row {
  margin-top: 6px;
}
@media (max-width: 960px) {
  .rentalBoatCard__row + .rentalBoatCard__row {
    margin-top: 6px;
  }
}

.rentalBoatCard__term {
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 960px) {
  .rentalBoatCard__term {
    letter-spacing: -0.01em;
  }
}

.rentalBoatCard__desc {
  margin: 0;
}
.rentalBoatCard--01 .rentalBoatCard__spec {
  margin-bottom: max(24px, 1.42vw);
}
@media (min-width: 2200px) and (max-width: 2900px) {
  .rentalBoatCard--01 .rentalBoatCard__spec {
    margin-bottom: 0;
  }
}

/*料金表パート*/
.rentalPrice__noteTop {
  font-size: clamp(12px, 0.83vw, 16px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.5;
  text-align: right;
}
@media (max-width: 960px) {
  .rentalPrice__noteTop {
    font-size: clamp(10px, 1.6vw, 14px);
    font-weight: 400;
  }
}

.rentalPrice__tableWrap {
  border-radius: 20px;
  overflow: hidden;
}

.rentalPrice__table {
  border: 2px solid #14C1E5;
  border-collapse: separate;
  border-radius: 22px;
  border-spacing: 0;
  overflow: hidden;
  table-layout: fixed;
  width: 100%;
}
.rentalPrice__th {
  background-color: #14C1E5;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  color: #fff;
  font-size: clamp(14px, 0.95vw, 18px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
  padding: 0.8em 0;
  text-align: center;
}
@media (max-width: 960px) {
  .rentalPrice__th {
    align-items: center;
    font-size: 14px;
    letter-spacing: 0.04em;
    padding: 0.5em 0;
  }
  .rentalPrice__th span {
    display: block;
    font-size: 12px;
  }
}
@media (max-width: 960px) {
}

.rentalPrice__th:last-child {
  border-right: 0;
}
.rentalPrice__th--category {
  border-radius: 20px 0 0 0;
}

.rentalPrice__th--category,.rentalPrice__th--join {
  border-bottom: 2px solid #14C1E5;
  padding-block: 0;
  vertical-align: middle;
}

.rentalPrice__th--rental {
  border-radius: 0 20px 0 0;
  border-right: 0;
}

.rentalPrice__th--boat,.rentalPrice__rowHead {
  border-bottom: 2px solid #14C1E5;
}

.rentalPrice__rowHead {
  border-right: 2px solid #14C1E5;
  font-size: clamp(14px, 0.95vw, 18px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.55;
  padding-block: 0.5em;
  text-align: center;
  vertical-align: middle;
}
@media (max-width: 960px) {
  .rentalPrice__rowHead {
    font-size: 14px;
    line-height: 1.45;
    padding: 14px 2px;
  }
}

.rentalPrice__small {
  font-size: 0.88em;
  font-weight: 700;
}
@media (max-width: 960px) {
  .rentalPrice__small {
    font-size: clamp(10px, 3.2vw, 24px);
  }
}

.rentalPrice__td {
  border-bottom: 2px solid #14C1E5;
  border-right: 2px solid #14C1E5;
  font-size: clamp(14px, 0.95vw, 18px);
  letter-spacing: 0.04em;
  line-height: 1.4;
  padding: 18px 10px;
  text-align: center;
  vertical-align: middle;
}
@media (max-width: 960px) {
  .rentalPrice__td {
    font-size: 14px;
    padding: 14px 0;
  }
}

.rentalPrice__td:last-child {
  border-right: 0;
}
.rentalPrice__tbody tr:last-child .rentalPrice__rowHead,
.rentalPrice__tbody tr:last-child .rentalPrice__td {
  border-bottom: 0;
}
.rentalPrice__notes {
  display: flex;
  flex-wrap: wrap;
  font-size: clamp(12px, 0.83vw, 16px);
  font-weight: 500;
  gap: 1.2em;
  justify-content: flex-end;
  line-height: 1.6;
  margin-bottom: 3em;
  margin-top: 0.62em;
}
@media (max-width: 960px) {
  .rentalPrice__notes {
    font-size: clamp(10px, 1.6vw, 14px);
    font-weight: 400;
    gap: 0 0.35em;
    margin-bottom: min(6.66vw, 50px);
    margin-top: 0.28em;
    padding-left: 50px;
  }
}

.rentalPrice__note {
  white-space: nowrap;
}
@media (max-width: 960px) {
  .rentalPrice__note {
    white-space: normal;
  }
}

/*rentalInfoの表パート*/
.rentalInfo {
  margin-bottom: min(3.75vw, 80px);
}
@media (max-width: 960px) {
  .rentalInfo {
    margin-bottom: min(8.93vw, 67px);
  }
}

.rentalInfo__list {
  -moz-column-gap: min(1.3vw, 39px);
       column-gap: min(1.3vw, 39px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 0.5em;
  row-gap: 0;
}
@media (max-width: 960px) {
  .rentalInfo__list {
    -moz-column-gap: 0;
         column-gap: 0;
    grid-template-columns: 1fr;
  }
}

.rentalInfo__row {
  align-items: center;
  display: grid;
  grid-template-columns: 28% 1fr;
  padding-bottom: 1.5em;
  padding-top: 1.5em;
  position: relative;
}
@media (max-width: 960px) {
  .rentalInfo__row {
    grid-template-columns: minmax(7.5em, 9.5em) 1fr;
    padding-block: 1.07em;
  }
}
.rentalInfo__row:nth-child(1), .rentalInfo__row:nth-child(2) {
  padding-top: 0;
}
@media (max-width: 960px) {
  .rentalInfo__row:nth-child(2) {
    padding-block: 1.07em;
  }
}
.rentalInfo__row::after {
  background: url("../img/common_item_dot-line.svg") repeat-x center center/contain;
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
}

.rentalInfo__term {
  color: #0487C9;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 960px) {
  .rentalInfo__term {
    letter-spacing: 0.2em;
    line-height: 1.4;
  }
}

/* desc（右） */
.rentalInfo__text {
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media (max-width: 960px) {
  .rentalInfo__text {
    font-size: clamp(14px, 3.46vw, 26px);
  }
}

.rentalInfo__note {
  font-size: clamp(12px, 0.83vw, 14px);
  letter-spacing: 0.1em;
  line-height: 1.7;
}
@media (max-width: 960px) {
  .rentalInfo__note {
    font-size: clamp(10px, 3.2vw, 24px);
    line-height: 1.4;
  }
}

/*rentalCtaパート*/
.rentalCta {
  align-items: center;
  border: 5px solid #14C1E5;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  margin-bottom: min(3.92vw, 66px);
  padding-block: 1.875em;
  width: min(100%, 2200px);
}
@media (max-width: 960px) {
  .rentalCta {
    border: 3px solid #14C1E5;
    margin-bottom: min(12vw, 90px);
    max-width: 100%;
    width: 100%;
  }
}

.rentalCta__text {
  color: #0487C9;
  font-size: clamp(20px, 1.42vw, 32px);
  letter-spacing: 0.2em;
  line-height: 2;
  text-align: center;
}
@media (max-width: 960px) {
  .rentalCta__text {
    font-size: clamp(16px, 3.73vw, 28px);
    line-height: 1.7;
  }
}

/* アクセスパート */
.accessCards {
  margin-bottom: min(4.76vw, 80px);
}
@media (max-width: 960px) {
  .accessCards {
    margin-bottom: min(13.3vw, 100px);
  }
}

.accessCards__grid {
  align-items: start;
  display: grid;
  gap: 1.19vw;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 960px) {
  .accessCards__grid {
    gap: clamp(25px, 5.33vw, 40px);
    grid-template-columns: 1fr;
  }
}

/* card 全体 */
.accessCard__title {
  color: #fff;
  font-size: min(1.07vw, 18px);
  height: auto;
  letter-spacing: 0.1em;
  line-height: 3.6;
  margin-bottom: 1.19vw;
  margin-inline: auto;
  position: relative;
  text-align: center;
  width: 18.72em;
}
@media (max-width: 960px) {
  .accessCard__title {
    font-size: clamp(14px, 3.73vw, 28px);
    height: 2.64em;
    line-height: 2.3;
    margin-bottom: 3.5vw;
    width: 17em;
  }
}
.accessCard__title::before {
  aspect-ratio: 350/90;
  background-image: url(../img/common_item_ribon.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: -2.5%;
  width: 100%;
  z-index: -1;
}
@media (max-width: 960px) {
  .accessCard__title::before {
    top: -20%;
  }
}

.accessCard__box {
  background-color: #F4FDFF;
  border-radius: 20px;
  overflow: hidden;
}

.accessCard__map {
  aspect-ratio: 540/267;
  overflow: hidden;
}
@media (max-width: 960px) {
  .accessCard__map {
    aspect-ratio: 670/267;
  }
}

.accessCard__map iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.accessCard__info {
  padding: 1.875em;
}
@media (max-width: 960px) {
  .accessCard__info {
    padding: 1.07em;
  }
}

.accessCard__item {
  -moz-column-gap: 0.7em;
  align-items: start;
       column-gap: 0.7em;
  display: grid;
  grid-template-columns: 6em 1fr;
  padding-block: 0.4em;
  padding-left: 2.9em;
  position: relative;
}
@media (max-width: 960px) {
  .accessCard__item {
    -moz-column-gap: 0.35em;
         column-gap: 0.35em;
    grid-template-columns: 1fr;
    padding-block: 0.71em;
    padding-left: 1.4em;
  }
}

.accessCard__term {
  color: #14C1E5;
  font-size: clamp(16px, 1.07vw, 20px);
  line-height: 2.2;
  position: relative;
}
@media (max-width: 960px) {
  .accessCard__term {
    font-size: clamp(16px, 3.46vw, 26px);
  }
}
.accessCard__term::before {
  background-image: url("../img/common_icon_car.svg");
  height: 1em;
  width: 2.1em;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  left: -2.5em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 960px) {
  .accessCard__term::before {
    height: 0.7em;
    width: 1.9em;
    left: -1.8em;
  }
}

.accessCard__desc {
  color: #000;
  font-weight: 500;
  line-height: 1.8;
}
@media (max-width: 960px) {
  .accessCard__desc {
    font-size: clamp(14px, 3.46vw, 26px);
    line-height: 1.5;
  }
}

/*近海で釣れる魚パート*/
.fishList {
  margin-inline: auto;
  max-width: 1430px;
  padding-inline: 10.9523809524%;
  text-align: center;
  width: 100%;
}

.fishList__title {
  color: #0487C9;
  display: inline-block;
  font-size: clamp(18px, 1.45vw, 34px);
  letter-spacing: 0.2em;
  line-height: 2;
  margin-bottom: 2.2em;
  padding-bottom: 0.35em;
  position: relative;
  text-align: center;
}
@media (max-width: 960px) {
  .fishList__title {
    font-size: clamp(16px, 4.26vw, 32px);
    line-height: 1.5;
    margin-bottom: 2em;
    padding-bottom: 0.3em;
  }
}
.fishList__title::after {
  background-image: url(../img/common_item_wave-line.svg);
  background-repeat: repeat-x;
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  height: 4px;
  left: 0;
  position: absolute;
  width: 100%;
}
@media (max-width: 960px) {
  .fishList__title::after {
    bottom: -3px;
    height: 6px;
  }
}

.fishList__rows {
  display: flex;
  flex-direction: column;
  row-gap: clamp(18px, 5.11vw, 86px);
}
@media (max-width: 960px) {
  .fishList__rows {
    row-gap: 18px;
  }
}

.fishList__row {
  /* 行全体を中央寄せ */
  align-items: center;
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.fishList__row--3 {
  -moz-column-gap: clamp(10px, 1.2vw, 23.4px);
       column-gap: clamp(10px, 1.2vw, 23.4px);
}
@media (max-width: 960px) {
  .fishList__row--3 {
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
}

.fishList__row--2 {
  -moz-column-gap: clamp(10px, 1vw, 16px);
       column-gap: clamp(10px, 1vw, 16px);
}
@media (max-width: 960px) {
  .fishList__row--2 {
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
}

.fishList__item {
  flex: 0 0 auto;
  height: min(13.7vw, 299px);
  width: min(13.7vw, 299px);
}
@media (max-width: 960px) {
  .fishList__item {
    height: min(28vw, 180px);
    width: min(28vw, 180px);
  }
}

.fishList__img {
  -o-object-fit: contain;
  display: block;
  height: 100%;
     object-fit: contain;
  width: 100%;
}

/*海洋カヌーセクション*/
.canoe {
  padding-bottom: min(7.14vw, 120px);
  padding-top: min(12.9vw, 218px);
}
@media (max-width: 960px) {
  .canoe {
    padding-bottom: min(13.3vw, 100px);
    padding-top: min(26vw, 195px);
  }
}

.canoe__head::before {
  background-image: url(../img/common_icon_flag-02.svg);
}

.canoe__title {
  height: min(4.88vw, 82px);
  margin-bottom: min(3.69vw, 62px);
  width: min(19.6vw, 330px);
}
@media (max-width: 960px) {
  .canoe__title {
    height: min(10.93vw, 82px);
    margin-bottom: min(8vw, 60px);
    width: min(44vw, 330px);
  }
}

.canoeIntroduction {
  align-items: center;
  display: grid;
  gap: min(3.1vw, 52px);
  grid-template-columns: 1fr 32%;
  margin-bottom: min(3.57vw, 60px);
  padding-right: clamp(40px, 17.2vw, 350px);
  position: relative;
  z-index: 2;
}
@media (max-width: 960px) {
  .canoeIntroduction {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
    padding-right: clamp(20px, 5.33vw, 40px);
  }
}

.canoeIntroduction__media {
  background: url("../img/kanu.jpg") no-repeat center center/cover;
  border-radius: 0 20px 20px 0;
  min-height: min(24.4vw, 600px);
  overflow: hidden;
}
@media (max-width: 960px) {
  .canoeIntroduction__media {
    height: min(50.6vw, 380px);
    margin-bottom: 1.35em;
    width: 100%;
  }
}

.canoeIntroduction__text-area {
  color: #fff;
}
@media (max-width: 960px) {
  .canoeIntroduction__text-area {
    margin-left: auto;
    width: min(89.3vw, 670px);
  }
}

.canoeIntroduction__title {
  align-items: center;
  font-size: min(1.42vw, 24px);
  letter-spacing: 0.2em;
  line-height: 2;
  padding-bottom: 1.5em;
  padding-left: 2.8em;
  padding-top: 1.1em;
  position: relative;
}
@media (max-width: 960px) {
  .canoeIntroduction__title {
    font-size: clamp(16px, 4.26vw, 32px);
    padding-block: 0.7em;
    padding-left: 2.15em;
  }
}
.canoeIntroduction__title::before {
  background: url(../img/common_item_anchor.svg) no-repeat center center/contain;
  content: "";
  display: block;
  height: 1.7em;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
}
@media (max-width: 960px) {
  .canoeIntroduction__title::before {
    height: 1.28em;
    padding-bottom: 0.6em;
    padding-top: 0.85em;
    width: 1.5em;
  }
}
.canoeIntroduction__title::after {
  background-image: url(../img/common_item_dot-line.svg);
  background-repeat: repeat-x;
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
}
@media (max-width: 960px) {
  .canoeIntroduction__title::after {
    width: 61.6901408451%;
  }
}
.canoeIntroduction__title:nth-child(1) {
  padding-top: 0;
}
.canoeIntroduction__title:nth-child(1)::before {
  top: 30%;
}
@media (max-width: 960px) {
  .canoeIntroduction__title:nth-child(1)::before {
    top: 35%;
  }
  .canoeIntroduction__title:nth-child(3) {
    padding-bottom: 0;
  }
}
@media (max-width: 960px) {
}
.canoeIntroduction__title:nth-child(3):after {
  display: none;
}

.canoeIntroduction__text {
  letter-spacing: 0.1em;
  line-height: 2.1;
  margin-top: 2.8em;
}
@media (max-width: 960px) {
  .canoeIntroduction__text {
    font-size: clamp(14px, 3.7vw, 28px);
    letter-spacing: 0.05em;
    line-height: 1.9;
    margin-top: 6.5vw;
  }
}

.float-bubbles--canoe {
  --bubbles-left-h-sp: 1274px;
  --bubbles-right-h-sp: 1274px;
}

/*fishingセクション*/
.fishing {
  padding-bottom: min(7.14vw, 120px);
  padding-top: min(12.9vw, 218px);
}
@media (max-width: 960px) {
  .fishing {
    padding-bottom: min(13.3vw, 100px);
    padding-top: min(26vw, 195px);
  }
}

.fishing__head::before {
  background-image: url(../img/common_icon_flag-03.svg);
}

.fishing__title {
  height: min(4.88vw, 82px);
  margin-bottom: min(3.69vw, 62px);
  width: min(29.6vw, 498px);
}
@media (max-width: 960px) {
  .fishing__title {
    height: min(10.93vw, 82px);
    margin-bottom: min(8vw, 60px);
    width: min(66.1vw, 496px);
  }
}

.serviceSection--fishing .serviceSection__media {
  background: url(../img/marina-infomation_img_bridge.webp) no-repeat center center/cover;
}
@media (max-width: 960px) {
  .serviceSection--fishing .serviceSection__media {
    margin-bottom: clamp(30px, 8vw, 60px);
  }
}

.fishing__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: 15.4545454545%;
}
@media (max-width: 960px) {
  .fishing__body {
    padding-inline: 7.4626865672%;
  }
  .fishing__lead {
    letter-spacing: 0.08em;
    font-size: clamp(18px, 4.26vw, 32px);
  }
}

.fishing__body-text {
  margin-inline: auto;
  max-width: 40.8em;
  text-align: left;
}
@media (max-width: 960px) {
  .fishing__body-text {
    max-width: 20em;
  }
}

.parkInfo {
  align-items: flex-start;
  background: url(../img/common_bg_rightBlue.webp);
  border-radius: 20px;
  display: grid;
  gap: 4.6em;
  grid-template-columns: 48% 1fr;
  justify-content: flex-start;
  margin-top: min(2.97vw, 50px);
  padding-block: 2.5em;
  padding-inline: 5em;
  position: relative;
  width: 100%;
}
@media (max-width: 960px) {
  .parkInfo {
    gap: 1.5em;
    grid-template-columns: 1fr;
    margin-top: clamp(30px, 8vw, 60px);
    padding: 1.78em;
  }
}

.parkInfo__noteTop {
  font-size: clamp(12px, 0.83vw, 16px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  position: absolute;
  right: 5.5em;
  text-align: right;
  top: 1.5em;
}
@media (max-width: 960px) {
  .parkInfo__noteTop {
    font-size: clamp(12px, 2.4vw, 18px);
    right: 6.6vw;
    top: min(22vw, 101px);
  }
}

.parkInfo__head {
  color: #0487C9;
  font-size: clamp(18px, 1.42vw, 24px);
  letter-spacing: 0.2em;
  line-height: 2;
  padding-bottom: 2em;
  padding-left: 2.7em;
  position: relative;
  width: 100%;
}
@media (max-width: 960px) {
  .parkInfo__head {
    font-size: clamp(16px, 4.26vw, 32px);
    padding-bottom: 1.21em;
    padding-left: 1.87em;
  }
}
.parkInfo__head::before {
  background: url(../img/common_item_anchor.svg) no-repeat center center/contain;
  content: "";
  display: block;
  height: 1.7em;
  left: -2px;
  position: absolute;
  top: 0;
  width: 2em;
}
@media (max-width: 960px) {
  .parkInfo__head::before {
    height: min(5.46vw, 41px);
    top: 12%;
    width: min(6.4vw, 48px);
  }
}
.parkInfo__head::after {
  background-image: radial-gradient(circle, #1D2088 2px, transparent 2px);
  background-position: left center;
  background-repeat: repeat-x;
  background-size: 10px 4px;
  bottom: 9px;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
}
@media (max-width: 960px) {
  .parkInfo__head::after {
    background-size: 8.2px 4px;
    height: 4px;
  }
}

.parkInfo__time {
  text-align: left;
}

.parkInfo__price {
  width: 100%;
}

.parkInfo__table {
  background-color: #fff;
  border-collapse: separate;
  border-radius: 10px;
  border-spacing: 0;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 960px) {
  .parkInfo__table {
    border-radius: 10px;
  }
}

.parkInfo__th {
  background-color: #14C1E5;
  border-bottom: 2px solid #fff;
  color: #fff;
  font-size: clamp(14px, 1vw, 16px);
  letter-spacing: 0.08em;
  padding: 0.87em 0.75em;
  text-align: center;
  vertical-align: middle;
  width: 38%;
}
@media (max-width: 960px) {
  .parkInfo__th {
    font-size: clamp(14px, 3.46vw, 26px);
    padding: 0.65em 10px;
  }
}

.parkInfo__tr:nth-child(2) .parkInfo__th {
  border-bottom: none;
}

.parkInfo__td {
  background-color: #fff;
  border-bottom: 1px solid #14C1E5;
  border-radius: 0 10px 0 0;
  border-right: 2px solid #14C1E5;
  border-top: 2px solid #14C1E5;
  font-size: clamp(16px, 1.2vw, 18px);
  letter-spacing: 0.06em;
  padding: 0.87em 0.75em;
  text-align: center;
  vertical-align: middle;
}
@media (max-width: 960px) {
  .parkInfo__td {
    font-size: clamp(14px, 3.46vw, 26px);
    padding: 0.65em 10px;
  }
}

.parkInfo__tr:nth-child(2) .parkInfo__td {
  border-bottom: 2px solid #14C1E5;
  border-radius: 0 0 10px 0;
  border-right: 2px solid #14C1E5;
  border-top: 1px solid #14C1E5;
}

.top-access--leisure {
  background-color: #F4FDFF;
}
.top-access--leisure .top-access__button.linkButton {
  background-color: #fff;
}

/*マリーナ事業ページ*/
/*marina-information*/
.marina-information {
  background: #ffffff;
  overflow: hidden;
  padding-bottom: min(8.33vw, 140px);
  padding-top: min(7.14vw, 120px);
  position: relative;
}
@media (max-width: 960px) {
  .marina-information {
    padding-bottom: min(17.3vw, 130px);
    padding-top: min(8vw, 60px);
  }
}

.marina-information__inner {
  margin-inline: auto;
  position: relative;
  width: min(100%, 1990px);
}
@media (max-width: 960px) {
  .marina-information__inner {
    padding-inline: max(20px, 5.3vw);
  }
}

.marina-information__deco {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  position: absolute;
}
@media (max-width: 960px) {
  .marina-information__deco {
    display: none;
  }
}

.marina-information__deco--left {
  background-image: url("../img/marina-infomation_img_konosima.webp");
  height: min(16.1vw, 271px);
  left: 3.7%;
  top: min(9.2vw, 155px);
  width: min(23.2vw, 390px);
}
@media (min-width: 961px) and (max-width: 1190px) {
  .marina-information__deco--left {
    width: 180px;
  }
}
@media (max-width: 960px) {
  .marina-information__deco--left {
    display: none;
  }
}

.marina-information__deco--right {
  background-image: url("../img/marina-infomation_img_bridge.webp");
  border-radius: 10px 0 0 10px;
  height: min(17.2vw, 290px);
  right: 0;
  top: min(2.85vw, 48px);
  width: min(28.2vw, 474px);
}
@media (min-width: 961px) and (max-width: 1190px) {
  .marina-information__deco--right {
    width: 210px;
  }
}
@media (max-width: 960px) {
  .marina-information__deco--right {
    display: none;
  }
}

.marina-information__title {
  height: auto;
  margin-bottom: min(3.69vw, 62px);
  width: min(29.2vw, 491px);
}
@media (max-width: 960px) {
  .marina-information__title {
    margin-bottom: min(8vw, 60px);
    width: min(62.9vw, 472px);
  }
}

.marina-information__body {
  margin-inline: auto;
  text-align: center;
  width: min(100%, 1100px);
}
@media (max-width: 960px) {
  .marina-information__body {
    max-width: 100%;
  }
}

.marina-information__textBox {
  margin-bottom: min(3.57vw, 60px);
  text-align: center;
}
@media (max-width: 960px) {
  .marina-information__textBox {
    margin-bottom: min(5.33vw, 40px);
  }
}

.marina-information__text {
  letter-spacing: 0.1em;
  line-height: 2.1;
}
@media (max-width: 960px) {
  .marina-information__text {
    font-size: clamp(14px, 3.46vw, 26px);
    letter-spacing: 0.05em;
    line-height: 1.9;
  }
}

.marina-information__text + .marina-information__text {
  margin-top: 2.5em;
}
@media (max-width: 960px) {
  .marina-information__text + .marina-information__text {
    margin-top: 2.7em;
  }
}

.marina-information__contact {
  background: url("../img/common_bg_rightBlue.webp") no-repeat center center/cover;
  border-radius: 20px;
  margin-inline: auto;
  padding-block: 3em;
  padding-inline: 8.2em;
  width: clamp(881px, 65.47vw, 1100px);
}
@media (max-width: 960px) {
  .marina-information__contact {
    background: url("../img/common_bg_rightBlue-sp.webp") no-repeat center center/cover;
    padding-block: 1.5em;
    padding-inline: 4.5em;
    width: min(100%, 670px);
  }
}

.marina-information__contactList {
  align-items: center;
  display: flex;
  gap: 3.1em;
  justify-content: space-between;
}
@media (max-width: 960px) {
  .marina-information__contactList {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5em;
    justify-content: center;
  }
}

.marina-information__contactText {
  letter-spacing: 0.1em;
  line-height: 2.5;
  padding-left: 1.87em;
  position: relative;
  white-space: nowrap;
}
@media (max-width: 960px) {
  .marina-information__contactText {
    font-size: clamp(14px, 3.46vw, 26px);
    font-weight: 500;
    letter-spacing: normal;
    line-height: 2.5;
  }
}
.marina-information__contactText::before {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 1.3em;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.3em;
}
.marina-information__contactText::after {
  background-image: url(../img/common_item_wave-line.svg);
  background-repeat: repeat-x;
  background-size: cover;
  bottom: -2px;
  content: "";
  display: block;
  height: 7px;
  left: 0;
  position: absolute;
  width: 100%;
}
@media (max-width: 960px) {
  .marina-information__contactText::after {
    background-size: contain;
    bottom: -5px;
    height: 9px;
  }
}

.marina-information__contactItem:nth-child(1) .marina-information__contactText::before {
  background-image: url(../img/common_icon_pin.svg);
  height: 1.8em;
  width: 1.8em;
}
@media (max-width: 960px) {
  .marina-information__contactItem:nth-child(1) .marina-information__contactText::before {
    height: 1.5em;
    left: -2px;
    width: 1.5em;
  }
}

.marina-information__contactItem:nth-child(2) .marina-information__contactText {
  padding-bottom: 0.45em;
}
.marina-information__contactItem:nth-child(2) .marina-information__contactText::before {
  background-image: url(../img/common_icon_tel.svg);
  top: 43%;
}
@media (max-width: 960px) {
  .marina-information__contactItem:nth-child(2) .marina-information__contactText::before {
    top: 35%;
  }
}
.marina-information__contactItem:nth-child(2) .marina-information__contactText::after {
  left: -2px;
}
@media (max-width: 960px) {
  .marina-information__contactItem:nth-child(2) .marina-information__contactText::after {
    width: 179%;
  }
}

.marina-information__contactItem:nth-child(3) .marina-information__contactText::before {
  background-image: url(../img/common_icon_clock.svg);
}
@media (max-width: 960px) {
  .marina-information__contactItem:nth-child(3) .marina-information__contactText::after {
    left: -3px;
    width: 108%;
  }
}

/*marina-cardセクション*/
.marina-card {
  padding-bottom: min(7.14vw, 120px);
  padding-top: min(5.95vw, 100px);
  position: relative;
}
@media (max-width: 960px) {
  .marina-card {
    padding-block: min(13.3vw, 100px);
  }
}

.marina-card__inner {
  position: relative;
  z-index: 2;
}

.marina-card__heading {
  display: none;
}

.marina-card__list {
  display: flex;
  flex-direction: column;
  gap: min(1.78vw, 30px);
}
@media (max-width: 960px) {
  .marina-card__list {
    gap: 20px;
  }
}

.marina-card__item,.marinaCard {
  width: 100%;
}

.marinaCard {
  align-items: stretch;
  background: #fff;
  border-radius: 20px;
  display: flex;
  gap: 0;
  height: auto;
  justify-content: center;
}
@media (max-width: 960px) {
  .marinaCard {
    align-items: start;
    display: flex;
    flex-direction: column;
  }
}

.marinaCard__media {
  background-image: url("../img/common_img_sample.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px 0 0 20px;
  width: 50%;
}
.marinaCard1 .marinaCard__media{
  background-image: url("../img/marina2.jpg");
}
.marinaCard2 .marinaCard__media{
  background-image: url("../img/marina-infomation_img_bridge.webp");
}
@media (max-width: 960px) {
  .marinaCard__media {
    aspect-ratio: 16/9;
    border-radius: 20px 20px 0 0;
    width: 100%;
  }
}

.marinaCard__body {
  flex-grow: 0;
  flex-shrink: 0;
  padding: 2em;
  width: 50%;
}
@media (max-width: 960px) {
  .marinaCard__body {
    padding-block: 1.42em;
    padding-inline: 1.78em;
    width: 100%;
  }
}

.marinaCard__title {
  color: #0487C9;
  font-size: clamp(16px, 1.07vw, 18px);
  line-height: 2.2;
  margin-bottom: 0.55em;
}
@media (max-width: 960px) {
  .marinaCard__title {
    font-size: clamp(16px, 4.26vw, 32px);
    letter-spacing: 0.22em;
    line-height: 2;
    margin-bottom: 0.625em;
  }
}

.marinaCard__lead,
.marinaCard__note {
  font-weight: 500;
  line-height: 1.8;
}
@media (max-width: 960px) {
  .marinaCard__lead,
  .marinaCard__note {
    letter-spacing: 0.05em;
    line-height: 1.9;
  }
}

.marinaCard__note {
  margin-bottom: 2em;
}
@media (max-width: 960px) {
  .marinaCard__note {
    margin-bottom: 0.71em;
  }
}

.marinaFee {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  width: 100%;
}

.marinaFee__row {
  align-items: center;
  display: grid;
  gap: 0;
  grid-template-columns: 10.1em 1fr;
  justify-content: center;
  margin: 0;
}
@media (max-width: 960px) {
  .marinaFee__row {
    grid-template-columns: 5.4em 1fr;
  }
}
.marinaFee__row:nth-child(1) .marinaFee__label {
  border-bottom: 2px solid #fff;
  border-radius: 10px 0 0 0;
}
.marinaFee__row:nth-child(1) .marinaFee__value {
  border-bottom: 2px solid #14C1E5;
  border-radius: 0 10px 0 0;
  border-right: 2px solid #14C1E5;
  border-top: 2px solid #14C1E5;
}
.marinaFee__row:nth-child(2) .marinaFee__label {
  border-radius: 0 0 0 10px;
}
.marinaFee__row:nth-child(2) .marinaFee__value {
  border-bottom: 2px solid #14C1E5;
  border-radius: 0 0 10px 0;
  border-right: 2px solid #14C1E5;
}

.marinaFee__label {
  background-color: #14C1E5;
  color: #fff;
  font-size: clamp(14px, 1.07vw, 18px);
  height: 100%;
  letter-spacing: 0.2em;
  margin: 0;
  padding-block: 1em;
  text-align: center;
}
@media (max-width: 960px) {
  .marinaFee__label {
    font-size: clamp(14px, 3.46vw, 26px);
    letter-spacing: 0.2em;
    line-height: 1.5;
    padding-block: 0.9em;
  }
}

.marinaFee__value {
  font-size: clamp(14px, 0.95vw, 16px);
  letter-spacing: 0.1em;
  margin: 0;
  padding-block: 1.3em;
  padding-left: 2.4em;
  text-align: start;
}
@media (max-width: 960px) {
  .marinaFee__value {
    font-size: clamp(14px, 3.46vw, 26px);
    letter-spacing: 0.05em;
    line-height: 1.3;
    padding-left: 0.76em;
  }
}
.marinaFee__value span {
  font-size: clamp(12px, 0.83vw, 14px);
}
@media (max-width: 960px) {
  .marinaFee__value span {
    font-size: clamp(12px, 3.2vw, 24px);
    white-space: nowrap;
  }
}

.marinaCard--reverse {
  flex-direction: row-reverse;
}
@media (max-width: 960px) {
  .marinaCard--reverse {
    flex-direction: column;
  }
}
.marinaCard--reverse .marinaCard__media {
  border-radius: 0 20px 20px 0;
}
@media (max-width: 960px) {
  .marinaCard--reverse .marinaCard__media {
    border-radius: 20px 20px 0 0;
  }
}

/*プライバシーポリシーページ*/
.privacy {
  color: #000;
  font-family: Inter;
  font-size: clamp(20px, 1.54vw, 26px);
  font-weight: 400;
  line-break: strict;
  line-height: 1.3em;
  overflow-wrap: break-word;
  padding: min(5.65vw, 95px) 0 min(14.4vw, 243px);
  word-break: keep-all;
}
@media screen and (max-width: 768px) {
  .privacy {
    font-size: clamp(14px, 2vw, 18px);
    line-break: auto;
    overflow-wrap: normal;
    padding: min(7.86vw, 59px) 0 min(27.46vw, 206px);
    word-break: normal;
  }
}

.privacy__inner {
  margin-inline: auto;
  padding-left: 9.4642857143%;
  padding-right: 7.619047619%;
  width: min(100%, 1680px);
}
@media screen and (max-width: 768px) {
  .privacy__inner {
    padding-inline: 5.3333333333%;
    width: min(100%, 750px);
  }
}

.privacy__title {
  height: auto;
  margin-bottom: min(2.73vw, 46px);
  width: min(28.7vw, 483px);
}
@media screen and (max-width: 768px) {
  .privacy__title {
    margin-bottom: min(6.8vw, 51px);
    width: min(54.4vw, 408px);
  }
}

.privacy__lead {
  margin-bottom: min(6.9vw, 116px);
}
@media screen and (max-width: 768px) {
  .privacy__lead {
    margin-bottom: min(5.33vw, 40px);
  }
}

.privacy__content {
  display: flex;
  flex-direction: column;
  gap: 3.8em;
}
@media screen and (max-width: 768px) {
  .privacy__content {
    gap: 2.7em;
  }
}

.privacy__heading {
  font-size: clamp(28px, 2.08vw, 38px);
  font-weight: 700;
  margin-bottom: 0.25em;
}
@media screen and (max-width: 768px) {
  .privacy__heading {
    font-size: clamp(16px, 2.66vw, 20px);
    margin-bottom: 0.35em;
  }
}

.privacy__text {
  margin-bottom: 0.5em;
}

.privacy__list,.privacy__body-list {
  margin-bottom: 1em;
}

.privacy__body-list {
  padding-left: 0.7em;
}

.privacy__num {
  letter-spacing: 0.08em;
  padding-right: 0.2em;
}

.privacy__num.--1 {
  letter-spacing: 0.18em;
}

.privacy__listItem-body {
  padding-bottom: 0.5em;
}

.indent {
  padding-left: 1.8em;
  text-indent: -1.8em;
}
@media screen and (max-width: 768px) {
  .indent {
    padding-left: 2em;
    text-indent: -2em;
  }
  .privacy__listItem.indent.--11 {
    padding-left: 2.85em;
    text-indent: -2.85em;
  }
}

@media screen and (max-width: 768px) {
}

/*1.取得情報用*/
.privacy__subheading-text {
  margin-bottom: 0.1em;
}
@media screen and (max-width: 768px) {
  .privacy__subheading-text {
    line-break: auto;
    overflow-wrap: normal;
    word-break: normal;
  }
}

/*4.会員情報の共同利用*/
.privacy__listItem-body.--padding-left {
  padding-left: 0.5em;
}

.usePurpose__list {
  padding-left: 0.75em;
}

@media screen and (max-width: 768px) {
  .usePurpose__item.indent.--e {
    padding-left: 1.5em;
    text-indent: -1.5em;
  }
}

/*5.個人情報の管理*/
.privacy__num.--no-indent {
  padding-left: 0;
}

/*shipページ*/
/*maintenance*/
@media (max-width: 960px) {
  .serviceSection--maintenance {
    padding-bottom: clamp(40px, 16vw, 60px);
  }
}
.serviceSection--maintenance .serviceSection__media {
  background: url(../img/ship-maintenance_img_engine.webp) no-repeat center center/cover;
}

/*reason*/
.reason {
  padding-bottom: min(7.14vw, 120px);
  padding-top: min(10.3vw, 172px);
  position: relative;
}
@media screen and (max-width: 960px) {
  .reason {
    padding-bottom: clamp(70px, 13.3vw, 100px);
    padding-top: clamp(80px, 20vw, 150px);
  }
}

.reason__inner {
  padding-inline: clamp(40px, 23.8vw, 400px);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .reason__inner {
    padding-inline: min(11.3vw, 85px);
    z-index: 2;
  }
}

.reason__head {
  margin-bottom: min(3.75vw, 63px);
  margin-inline: auto;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 960px) {
  .reason__head {
    margin-bottom: min(8.13vw, 61px);
  }
}
.reason__head::before {
  background: url(../img/common_item_w-seagull.svg) no-repeat center center/contain;
  content: "";
  display: block;
  height: min(2.5vw, 42px);
  left: 50%;
  position: absolute;
  top: clamp(-95px, -2.5vw, -75px);
  transform: translateX(-50%);
  width: min(6.6vw, 111px);
}
@media (max-width: 960px) {
  .reason__head::before {
    height: min(5.6vw, 42px);
    top: max(-10vw, -75px);
    width: min(14.7vw, 111px);
  }
}

.reason__title {
  height: auto;
  margin-inline: auto;
  width: min(26.96vw, 453px);
}
@media screen and (max-width: 960px) {
  .reason__title {
    width: min(37.2vw, 279px);
  }
}

.reason__list {
  align-items: start;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .reason__list {
    grid-template-columns: repeat(2, 1fr);
    margin-inline: auto;
    width: 100%;
  }
}

.reason__item {
  margin: 0;
  width: 100%;
}

@media screen and (max-width: 960px) {
  .reason__item:nth-child(1) {
    display: grid;
    grid-column: 1/-1;
    justify-items: center;
  }
}

.reasonCard {
  margin-inline: auto;
  width: min(18.3vw, 308px);
}
@media screen and (max-width: 960px) {
  .reasonCard {
    height: min(41vw, 308px);
    width: min(41vw, 308px);
  }
}

.reasonCard__img {
  -o-object-fit: contain;
  display: block;
  height: min(20.2vw, 340px);
  left: -11%;
     object-fit: contain;
  position: relative;
  width: min(20.2vw, 340px);
}
@media screen and (max-width: 960px) {
  .reasonCard__img {
    height: min(48vw, 360px);
    width: min(48vw, 360px);
  }
}

@media (max-width: 960px) {
  .float-bubbles--reason {
    --bubbles-left: url("../img/ship-reason_bg_babble-left-sp.svg");
    --bubbles-right: url("../img/ship-reason_bg_babble-right-sp.svg");
    --bubbles-left-h-sp: 956px;
    --bubbles-right-h-sp: 956px;
  }
}
@media (min-width: 1500px) {
  .float-bubbles--reason .float-bubbles__layer--right {
    right: max(-4.5vw, -40px);
  }
}
@media (max-width: 960px) {
  .float-bubbles--reason .float-bubbles__layer--right {
    right: -4px;
  }
  .float-bubbles--reason .float-bubbles__layer--left {
    left: 0;
  }
}
@media (max-width: 960px) {
}

/*ship-card(menu&type共通)*/
.ship-card {
  background-color: #F3FAFB;
  padding-bottom: min(7.73vw, 130px);
  padding-top: min(7.38vw, 124px);
  position: relative;
}
@media (max-width: 960px) {
  .ship-card {
    padding-bottom: clamp(60px, 13.3vw, 100px);
    padding-top: clamp(60px, 13.3vw, 100px);
  }
}

.ship-card__title {
  height: auto;
  margin-bottom: min(3.8vw, 64px);
  padding-left: 5.12em;
  padding-right: 5.25em;
  position: relative;
  width: min(35.7vw, 600px);
}
@media (max-width: 960px) {
  .ship-card__title {
    margin-bottom: clamp(40px, 8vw, 60px);
    padding-left: 2.64em;
    padding-right: 2.67em;
    width: min(88.53vw, 664px);
  }
}
.ship-card__title::before {
  background: url(../img/common_icon_ship.svg) no-repeat center center/contain;
  bottom: 0;
  content: "";
  display: block;
  height: 2.5em;
  left: 0;
  position: absolute;
  width: 3.75em;
}
@media (max-width: 960px) {
  .ship-card__title::before {
    height: 1.42em;
    width: 2.14em;
  }
}
.ship-card__title::after {
  background: url(../img/common_icon_smallWave.svg) no-repeat center center/contain;
  bottom: 0;
  content: "";
  display: block;
  height: 0.68em;
  position: absolute;
  right: 0;
  width: 4.18em;
}
@media (max-width: 960px) {
  .ship-card__title::after {
    height: 0.39em;
    width: 2.39em;
  }
}

.ship-card__list {
  display: grid;
  gap: min(1.19vw, 20px);
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 960px) {
  .ship-card__list {
    -moz-column-gap: 10px;
         column-gap: 10px;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }
}

.shipCard {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 0 16px 0 rgba(20, 193, 229, 0.13);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.shipCard__thumb {
  aspect-ratio: 260/130;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px 20px 0 0;
  width: 100%;
}
@media (max-width: 960px) {
  .shipCard__thumb {
    aspect-ratio: 330/165;
  }
}

.shipCard__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.1em 1.875em;
}
@media (max-width: 960px) {
  .shipCard__body {
    padding: 0.71em;
  }
}

.shipCard__title {
  color: #0487C9;
  font-size: clamp(14px, 1.07vw, 18px);
  letter-spacing: 0.2em;
  line-height: 1.3;
  margin-bottom: 0.55em;
}
@media (max-width: 960px) {
  .shipCard__title {
    font-size: clamp(14px, 3.73vw, 28px);
    margin-bottom: 0.83em;
  }
}

.shipCard__note {
  display: block;
  font-size: clamp(13px, 0.95vw, 16px);
  line-height: 1.3;
  margin-left: -0.5em;
}
@media (max-width: 960px) {
  .shipCard__note {
    line-height: 1.5;
  }
}

.shipCard__price {
  letter-spacing: 0.1em;
  line-height: 2.1;
  margin-top: auto;
}
@media (max-width: 960px) {
  .shipCard__price {
    font-size: clamp(14px, 3.46vw, 26px);
  }
}

/*menuセクション*/
.shipCard--engine .shipCard__thumb {
  background-image: url("../img/ship-menu_img_engine.webp");
}

.shipCard--inspection .shipCard__thumb {
  background-image: url("../img/ship-menu_img_inspection.webp");
}

.shipCard--electronics .shipCard__thumb {
  background-image: url("../img/ship-menu_img_navigation.webp");
}

.shipCard--bottom-paint .shipCard__thumb {
  background-image: url("../img/ship-menu_img_coating.webp");
}

.shipCard--oil .shipCard__thumb {
  background-image: url("../img/top-business_img_ship.webp");
}

.shipCard--propeller .shipCard__thumb {
  background-image: url("../img/ship-menu_img_propeller.webp");
}

.shipCard--diagnosis .shipCard__thumb {
  background-image: url("../img/ship-menu_img_inspection.webp");
}

.shipCard--cleaning .shipCard__thumb {
  background-image: url("../img/ship-menu_img_cleaning.webp");
}

/*saleセクション*/
@media (max-width: 960px) {
  .serviceSection--sale {
    padding-top: clamp(50px, 8vw, 60px);
  }
}
.serviceSection--sale .serviceSection__media {
  background: url(../img/ship-sale_img_port-pc.webp) no-repeat center center/cover;
}
@media (max-width: 960px) {
  .serviceSection--sale .serviceSection__media {
    background: url(../img/ship-sale_img_port-sp.webp) no-repeat center center/cover;
    margin-bottom: clamp(30px, 8vw, 60px);
  }
}

/*strengthsセクション*/
.strengths {
  padding-bottom: min(7.73vw, 130px);
  padding-top: min(10.3vw, 172px);
  position: relative;
}
@media screen and (max-width: 960px) {
  .strengths {
    padding-bottom: clamp(60px, 13.3vw, 100px);
    padding-top: clamp(80px, 20vw, 150px);
  }
}

.strengths__inner {
  position: relative;
  z-index: 2;
}

.strengths__title {
  height: auto;
  margin-bottom: min(3.75vw, 63px);
  position: relative;
  width: min(17.8vw, 300px);
}
@media (max-width: 960px) {
  .strengths__title {
    margin-bottom: clamp(40px, 8vw, 60px);
    width: min(50.6vw, 380px);
  }
}
.strengths__title::before {
  background: url(../img/common_item_w-seagull.svg) no-repeat center center/contain;
  content: "";
  display: block;
  height: min(2.5vw, 42px);
  left: 50%;
  position: absolute;
  top: clamp(-95px, -2.5vw, -75px);
  transform: translateX(-50%);
  width: min(6.6vw, 111px);
}
@media (max-width: 960px) {
  .strengths__title::before {
    height: min(5.6vw, 42px);
    top: max(-10vw, -75px);
    width: min(14.7vw, 111px);
  }
}

.strengths__panel {
  background-color: #ffffff;
  border-radius: 20px;
  margin-inline: auto;
  padding-block: 1.9em;
  width: min(100%, 1100px);
}
@media (max-width: 960px) {
  .strengths__panel {
    padding-bottom: 0;
    padding-inline: 1.42em;
    padding-top: 0.6em;
  }
}

.strengths__list {
  display: grid;
  grid-template-columns: 1fr 34% 1fr;
}
@media (max-width: 960px) {
  .strengths__list {
    grid-template-columns: 1fr;
  }
}

.strengths__item {
  padding-top: 7.43em;
  position: relative;
  text-align: center;
}
@media (max-width: 960px) {
  .strengths__item {
    border-right: none;
    padding-bottom: 1.2em;
    padding-top: 5.2em;
  }
}
.strengths__item::before {
  content: "";
  height: 5.5em;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 3.75em;
}
@media (max-width: 960px) {
  .strengths__item::before {
    height: 3.14em;
    top: 1.4em;
    width: 2.14em;
  }
}
.strengths__item::after {
  background-image: radial-gradient(circle, #1D2088 2px, transparent 2px);
  background-position: center top;
  background-repeat: repeat-y;
  background-size: 4px 14px;
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 4px;
}
@media (max-width: 960px) {
  .strengths__item::after {
    background-position: left center;
    background-repeat: repeat-x;
    background-size: 10px 4px;
    height: 4px;
    left: 0;
    top: 100%;
    width: 100%;
  }
}
.strengths__item:nth-child(1)::before {
  background: url(../img/common_icon_flag-01.svg) no-repeat center center/contain;
}
.strengths__item:nth-child(2)::before {
  background: url(../img/common_icon_flag-02-lightBlue.svg) no-repeat center center/contain;
}
.strengths__item:nth-child(3)::before {
  background: url(../img/common_icon_flag-03.svg) no-repeat center center/contain;
}
.strengths__item:nth-child(3)::after {
  display: none;
}

.strengths__text {
  color: #0487C9;
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1.6;
}
@media (max-width: 960px) {
  .strengths__text {
    font-size: min(4.26vw, 32px);
    letter-spacing: 0.2em;
    line-height: normal;
  }
  .float-bubbles--strengths {
    --bubbles-left: url("../img/ship-reason_bg_babble-left-sp.svg");
    --bubbles-right: url("../img/ship-reason_bg_babble-right-sp.svg");
    --bubbles-left-h-sp: 956px;
    --bubbles-right-h-sp: 956px;
  }
}

@media (max-width: 960px) {
}
@media (min-width: 1500px) {
  .float-bubbles--strengths .float-bubbles__layer--right {
    right: max(-4.5vw, -40px);
  }
}
@media (max-width: 960px) {
  .float-bubbles--strengths .float-bubbles__layer--right {
    right: -4px;
  }
  .float-bubbles--strengths .float-bubbles__layer--left {
    left: 0;
  }
}
@media (max-width: 960px) {
}

/*typeセクション*/
.ship-card--type .shipCard__body {
  text-align: center;
}

.shipCard--fishing .shipCard__thumb {
  background-image: url("../img/top-business_img_ship.webp");
}

.shipCard--cruiser .shipCard__thumb {
  background-image: url("../img/ship-type_img_cruiser.webp");
}

.shipCard--pleasure .shipCard__thumb {
  background-image: url("../img/ship-type_img_pleasure.webp");
}

.shipCard--jet .shipCard__thumb {
  background-image: url("../img/ship-type_img_jet.webp");
}

@media (max-width: 960px) {
  .shipCard__title {
    letter-spacing: 0.05em;
  }
}

/*flowセクション*/
.flow {
  background: url("../img/common_bg_rightBlue.webp") no-repeat center center/cover;
  padding-bottom: min(7.73vw, 140px);
  padding-top: min(7.38vw, 124px);
  position: relative;
}
@media (max-width: 960px) {
  .flow {
    background-image: url("../img/common_bg_rightBlue-sp.webp");
    padding-block: clamp(60px, 13.3vw, 100px);
  }
}

.flow__inner {
  padding-left: clamp(40px, 17.2vw, 290px);
  padding-right: 0;
}
@media (max-width: 960px) {
  .flow__inner {
    padding-left: clamp(20px, 5.33vw, 40px);
  }
}

.flow__title {
  height: auto;
  margin-bottom: min(3.69vw, 62px);
  width: min(22.2vw, 374px);
}
@media (max-width: 960px) {
  .flow__title {
    margin-bottom: clamp(40px, 8vw, 60px);
    width: min(50.6vw, 380px);
  }
}

.flow__panel {
  background-color: #ffffff;
  border-radius: 20px 0 0 20px;
  margin-inline: auto;
  padding-bottom: min(4.52vw, 76px);
  padding-left: 6.545vw;
  padding-right: max(40px, 17.2vw);
  padding-top: min(4.76vw, 80px);
  width: 82.7vw;
}
@media (max-width: 960px) {
  .flow__panel {
    padding-bottom: min(6vw, 45px);
    padding-left: min(10.66vw, 80px);
    padding-right: min(19.6vw, 147px);
    padding-top: min(10.66vw, 80px);
    width: 94.6vw;
  }
}

.flow__scale {
  transform-origin: right top;
}
@media (max-width: 1180px) {
  .flow__scale {
    transform: scale(0.0847457627vw);
  }
}
@media (max-width: 960px) {
  .flow__scale {
    transform: none;
  }
}

.flow__list {
  align-items: stretch;
  display: grid;
  gap: 1.875em;
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 960px) {
  .flow__list {
    display: block;
  }
}

.flow__item {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1.25em;
  justify-content: flex-start;
  position: relative;
}
@media (max-width: 960px) {
  .flow__item {
    align-items: center;
    flex-direction: row;
    margin-bottom: 1.24em;
    text-align: left;
    width: 100%;
  }
  .flow__item:first-child .flow__icon::after {
    display: none;
  }
}
@media (max-width: 960px) {
}
.flow__item:last-child .flow__step::after,.flow__item:last-child .flow__icon::after {
  display: none;
}
@media (max-width: 960px) {
  .flow__item:last-child .flow__icon::after {
    display: block;
  }
}

.flow__step {
  align-items: center;
  background-color: #14C1E5;
  border-radius: 999px;
  color: #ffffff;
  display: flex;
  flex-shrink: 0;
  font-family: "Montserrat", sans-serif;
  font-size: min(1.42vw, 24px);
  height: 2.1em;
  justify-content: center;
  position: relative;
  width: 2.1em;
  z-index: 2;
}
@media (max-width: 960px) {
  .flow__step {
    font-size: clamp(12px, 3.2vw, 24px);
    font-weight: 600;
  }
}
.flow__step::after {
  background-color: #14C1E5;
  content: "";
  height: 3px;
  left: 100%;
  position: absolute;
  top: 50%;
  width: clamp(110px, 7.5vw, 200px);
  z-index: 0;
}
@media (min-width: 1920px) {
  .flow__step::after {
    width: 8.5vw;
  }
}
@media (max-width: 960px) {
  .flow__step::after {
    align-items: center;
    flex-direction: row;
    height: 200%;
    left: 48%;
    text-align: left;
    top: 100%;
    width: 2px;
  }
}

.flow__icon {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  flex-grow: 0;
  flex-shrink: 0;
  height: min(8.33vw, 140px);
  position: relative;
  width: min(8.33vw, 140px);
}
@media (max-width: 960px) {
  .flow__icon {
    height: min(14.6vw, 110px);
    width: min(14.6vw, 110px);
  }
}
.flow__icon::after {
  background: url(../img/ship-flow_icon_arrow.svg) no-repeat center center/contain;
  content: "";
  display: block;
  height: 0.875em;
  position: absolute;
  right: -1.7vw;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
}
@media (min-width: 2300px) {
  .flow__icon::after {
    right: min(-2.1vw, -80px);
  }
}
@media (max-width: 960px) {
  .flow__icon::after {
    height: 0.5em;
    right: 42.5%;
    top: calc(100% - 4.7em);
    transform: rotate(90deg);
    width: 0.57em;
  }
}

.flow__icon--01 {
  background-image: url("../img/ship-flow_icon_inquiry.svg");
}

.flow__icon--02 {
  background-image: url("../img/ship-flow_icon_confirmation.svg");
}

.flow__icon--03 {
  background-image: url("../img/ship-flow_icon_test.svg");
}

.flow__icon--04 {
  background-image: url("../img/ship-flow_icon_quotation.svg");
}

.flow__icon--05 {
  background-image: url("../img/ship-flow_icon_delivery.svg");
}

.flow__icon--06 {
  background-image: url("../img/ship-flow_icon_after.svg");
}

.flow__text {
  line-height: 1.1;
  white-space: nowrap;
}
@media (max-width: 960px) {
  .flow__text {
    line-height: 1.5;
  }
}
.flow__text span {
  font-size: clamp(12px, 0.83vw, 14px);
  margin-left: -0.5em;
}
@media (max-width: 960px) {
  .flow__text span {
    font-size: clamp(12px, 3.73vw, 28px);
  }
  .flow__item.js-fade {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 900ms ease, transform 900ms ease;
  }
  .flow__item.js-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
}
/*下層/固定ページ*/
/*singleページ*/
.singlePost {
  padding-bottom: min(6.7vw, 112px);
  padding-top: min(2.5vw, 42px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .singlePost {
    padding-bottom: clamp(40px, 10.6vw, 80px);
    padding-top: min(5.73vw, 43px);
  }
}

.singlePost__inner {
  padding-inline: clamp(40px, 14.16vw, 238px);
}
@media (min-width: 451px) and (max-width: 1283px) {
  .singlePost__inner {
    padding-inline: 40px;
  }
}
@media (min-width: 320px) and (max-width: 450px) {
  .singlePost__inner {
    padding-inline: 20px;
  }
}

.singlePost__head {
  margin-bottom: min(2.38vw, 40px);
  padding-left: 0.8em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .singlePost__head {
    margin-bottom: min(3.7vw, 28px);
  }
}
.singlePost__head::after {
  background-color: #282828;
  bottom: -0.02em;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}

.singlePost__date {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(14px, 1.07vw, 20px);
  font-weight: 400;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .singlePost__date {
    font-size: clamp(14px, 2.4vw, 18px);
  }
}

.singlePost__title {
  font-size: clamp(16px, 1.48vw, 25px);
  line-height: 1.6;
  padding-bottom: 0.4em;
}
@media screen and (max-width: 768px) {
  .singlePost__title {
    font-size: clamp(16px, 3.33vw, 25px);
  }
}

.singlePost__thumb {
  aspect-ratio: 1204/602;
  margin-bottom: min(2.97vw, 50px);
  overflow: hidden;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .singlePost__thumb {
    aspect-ratio: 625/345;
    margin-bottom: min(8.93vw, 67px);
  }
}

.singlePost__thumbImg {
  -o-object-fit: cover;
  display: block;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.singlePost__content {
  font-weight: 400;
  line-height: 2;
  width: 100%;
}

.singlePost__content p {
  margin: 0 0 1.6em;
}

.singlePost__content h2,
.singlePost__content h3,
.singlePost__content h4 {
  line-height: 1.4;
  margin-bottom: 0.25em;
}

/*topページ*/
/*fv*/
.fv {
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

.fv__media {
  inset: 0;
  position: absolute;
  z-index: 0;
}

.fv__video {
  -o-object-fit: cover;
  display: block;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.fv__inner {
  height: 100%;
  margin-inline: auto;
  max-width: 1680px;
  padding-left: var(--header-pad-left);
  padding-right: var(--header-pad-right);
  position: relative;
  z-index: 2;
}

.fv__content {
  bottom: 138px;
  display: flex;
  justify-content: center;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .fv__content {
    bottom: 100px;
  }
}

.fv__link {
  height: clamp(51px, 4.16vw, 70px);
  width: clamp(241px, 19.6vw, 330px);
}
@media screen and (max-width: 768px) {
  .fv__link {
    height: min(13.3vw, 100px);
    width: min(61.3vw, 460px);
  }
}

/* 動きを減らす設定の人向け（動画停止 → posterが見える）*/
@media (prefers-reduced-motion: reduce) {
  .fv__video {
    display: none;
  }
  .fv__media {
    background-image: url("../img/fv_img_poster.webp");
    background-position: center;
    background-size: cover;
  }
}
/*top-leisure*/
.top-leisure {
  background: url("../img/top-leisure_bg.webp") no-repeat center top/cover;
  overflow: visible;
  padding-bottom: calc(min(8.33vw, 140px) + min(5.95vw, 100px));
  padding-top: min(13.5vw, 227px);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top-leisure {
    padding-bottom: calc(min(16.8vw, 126px) + 100px);
    padding-top: min(31.7vw, 238px);
  }
}
.top-leisure::after {
  background-image: url("../img/top-charm_bg_wave-pc.webp");
  background-position: center bottom;
  background-repeat: repeat-x;
  background-size: 100% 100%;
  bottom: -2px;
  content: "";
  height: min(5.95vw, 110px);
  left: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .top-leisure::after {
    background-image: url("../img/top-charm_bg_wave-sp.webp");
    background-size: cover;
    bottom: -1px;
    height: 13.3vw;
  }
}

.top-leisure__inner {
  margin-inline: auto;
  max-width: 1100px;
  padding-inline: min(13.7vw, 230px);
  text-align: center;
  z-index: 4;
}
@media screen and (max-width: 768px) {
  .top-leisure__inner {
    max-width: 670px;
    padding-inline: max(2.66vw, 20px);
  }
}

.top-leisure__title {
  margin-bottom: min(2.97vw, 50px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-leisure__title {
    margin-bottom: min(6.66vw, 50px);
  }
}
.top-leisure__title::after {
  background-image: url(../img/common_item_yacht.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: min(3.98vw, 67px);
  left: 50%;
  position: absolute;
  top: max(-5.59vw, -94px);
  transform: translateX(-50%);
  width: min(3.33vw, 56px);
}
@media screen and (max-width: 768px) {
  .top-leisure__title::after {
    height: 8.93vw;
    top: max(-14.13vw, -106px);
    width: 7.46vw;
  }
}

.top-leisure__title img {
  display: inline-block;
  height: auto;
  width: min(25.3vw, 426px);
}
@media screen and (max-width: 768px) {
  .top-leisure__title img {
    width: min(56.8vw, 426px);
  }
}

.top-leisure__text {
  letter-spacing: 0.1em;
  line-height: 2.5;
  margin-bottom: min(4.5vw, 76px);
}
@media screen and (max-width: 768px) {
  .top-leisure__text {
    letter-spacing: normal;
    line-height: 2.1;
    margin-bottom: min(5.1vw, 39px);
  }
}

.top-leisure__link {
  height: clamp(55px, 4.16vw, 70px);
  width: clamp(281px, 21.42vw, 360px);
}
@media screen and (max-width: 768px) {
  .top-leisure__link {
    height: min(13.3vw, 100px);
    width: min(69.3vw, 520px);
  }
}

/* =========================================
  marine section bubbles (rise + float)
========================================= */
.marine {
  overflow: visible;
  padding-bottom: 160px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .marine {
    padding-bottom: 27.5vw;
  }
}

.marine__inner {
  position: relative;
}

.marine__xclip {
  bottom: -0.17vw;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: -0.17vw;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .marine__xclip {
    bottom: -1px;
    top: 5px;
  }
}

.marine__bubbles {
  height: 100%;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: min(100%, 1680px);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .marine__bubbles {
    left: 0;
    transform: none;
    width: 100%;
  }
}

.marine__bubble {
  -o-object-fit: cover;
  aspect-ratio: 1/1;
  border-radius: 50%;
     object-fit: cover;
  opacity: 0;
  position: absolute;
  transform: translate3d(0, 60px, 0) scale(0.98);
  will-change: transform, opacity;
  transform: translate3d(0, 40px, 0) scale(0.98);
}

.marine.is-rise .marine__bubble {
  animation: bubble-rise 1300ms cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0ms) both;
}

.marine.is-float .marine__bubble {
  animation: bubble-float 3200ms ease-in-out 0ms infinite both;
  opacity: 1;
}

@keyframes bubble-rise {
  0% {
    opacity: 0;
    transform: translate3d(0, 40px, 0) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes bubble-float {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, calc(-1 * var(--float, 10px)), 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marine__bubble,
  .marine.is-rise .marine__bubble,
  .marine.is-float .marine__bubble {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}
/* -------------------------
  bubble positions
------------------------- */
.marine__bubble--01 {
  --delay: 0ms;
  --float: 10px;
  left: min(6.1904761905vw, 104px);
  top: min(4.5238095238vw, 76px);
  width: min(22.2023809524vw, 373px);
}
@media screen and (max-width: 768px) {
  .marine__bubble--01 {
    left: max(-16px, -2.1333333333vw);
    top: min(2.9333333333vw, 22px);
    width: min(28.5333333333vw, 214px);
  }
}

.marine__bubble--02 {
  --delay: 120ms;
  --float: 8px;
  left: max(-21px, -1.25vw);
  top: min(27.5vw, 462px);
  width: min(12.6785714286vw, 213px);
}
@media screen and (max-width: 768px) {
  .marine__bubble--02 {
    left: max(-63px, -8.4vw);
    top: min(98.4vw, 738px);
    width: min(28.5333333333vw, 214px);
  }
}

.marine__bubble--03 {
  --delay: 220ms;
  --float: 9px;
  left: min(16.369047619vw, 275px);
  top: min(29.1071428571vw, 489px);
  width: min(18.0357142857vw, 303px);
}
@media screen and (max-width: 768px) {
  .marine__bubble--03 {
    left: min(18.2666666667vw, 137px);
    top: min(122.2666666667vw, 917px);
    width: min(22.1333333333vw, 166px);
  }
}

.marine__bubble--04 {
  --delay: 320ms;
  --float: 7px;
  left: min(82.1428571429vw, 1380px);
  top: min(1.4285714286vw, 24px);
  width: min(12.6785714286vw, 213px);
}
@media screen and (max-width: 768px) {
  .marine__bubble--04 {
    left: min(66.8vw, 501px);
    top: min(4vw, 30px);
    width: min(17.2vw, 129px);
  }
}

.marine__bubble--05 {
  --delay: 420ms;
  --float: 8px;
  left: min(69.4642857143vw, 1167px);
  top: min(11.7857142857vw, 198px);
  width: min(12.6785714286vw, 213px);
}
@media screen and (max-width: 768px) {
  .marine__bubble--05 {
    left: min(80.1333333333vw, 601px);
    top: min(30.6666666667vw, 230px);
    width: min(21.6vw, 162px);
  }
}

.marine__bubble--06 {
  --delay: 520ms;
  --float: 11px;
  left: min(67.1428571429vw, 1128px);
  top: min(30.4761904762vw, 512px);
  width: min(22.2023809524vw, 373px);
}
@media screen and (max-width: 768px) {
  .marine__bubble--06 {
    left: min(74vw, 555px);
    top: min(112.2666666667vw, 842px);
    width: min(30vw, 225px);
  }
}

/*top-charm*/
.top-charm {
  padding-bottom: min(9.52vw, 160px);
  padding-top: min(2.32vw, 39px);
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-charm {
    padding-bottom: min(13.3vw, 100px);
    padding-inline: 5.3333333333%;
    padding-top: min(12vw, 95px);
  }
}

.top-charm.wave-bg::before {
  display: none;
}

.top-charm__inner {
  margin-inline: auto;
  padding-inline: clamp(40px, 17.2vw, 290px);
  position: relative;
  width: min(100%, 1680px);
  z-index: 3;
}
@media (max-width: 1179px) and (min-width: 769px) {
  .top-charm__inner {
    padding-inline: 80px;
  }
}
@media screen and (max-width: 768px) {
  .top-charm__inner {
    padding: 0;
  }
}
.top-charm__inner::after {
  background-image: url(../img/common_item_dolphin.webp);
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: min(2.97vw, 50px);
  left: 50%;
  position: absolute;
  top: min(8.21vw, 138px);
  transform: translateX(-50%);
  width: min(6.3vw, 106px);
}
@media screen and (max-width: 768px) {
  .top-charm__inner::after {
    height: min(6.6vw, 50px);
    top: min(10vw, 75px);
    width: min(14.1vw, 106px);
  }
}

.top-charm__title {
  height: auto;
  margin-bottom: min(8.33vw, 140px);
  margin-inline: auto;
  width: min(21.3vw, 358px);
}
@media screen and (max-width: 768px) {
  .top-charm__title {
    margin-bottom: min(19.1vw, 140px);
    width: min(47.7vw, 358px);
  }
}

.top-charm__title img {
  display: block;
  height: auto;
  width: 100%;
}

.top-charm__list {
  display: grid;
  gap: min(3.6vw, 60px);
  margin-bottom: min(4.76vw, 80px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-charm__list {
    gap: 8vw;
    margin-bottom: min(8vw, 60px);
  }
}
.top-charm__list::after {
  background-image: url(../img/common_item_dolphin.webp);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -65px;
  content: "";
  display: block;
  height: min(6.25vw, 105px);
  left: -13.6363636364%;
  position: absolute;
  transform: rotate(11.492deg);
  width: min(13.27vw, 223px);
}
@media screen and (max-width: 768px) {
  .top-charm__list::after {
    bottom: -50px;
    height: min(8.93vw, 67px);
    left: 78%;
    width: min(19.06vw, 143px);
  }
}

.top-charm__item {
  align-items: stretch;
  display: grid;
  gap: clamp(20px, 3vw, 45px);
  grid-template-columns: clamp(300px, 32vw, 474px) minmax(0, 1fr);
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-charm__item {
    gap: 5.33vw;
    grid-template-columns: 1fr;
  }
}

.top-charm__photo {
  aspect-ratio: 474/290;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-charm__photo {
    aspect-ratio: 670/300;
  }
}

.top-charm__content {
  position: relative;
}
.top-charm__content::before {
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: min(5.23vw, 88px);
  left: 0;
  position: absolute;
  top: min(0.1vw, 10px);
  width: min(12vw, 140px);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .top-charm__content::before {
    height: min(15.7vw, 118px);
    transform: translateY(-3.3vw);
    width: min(28.7vw, 216px);
  }
}

.top-charm__item--02 {
  grid-template-columns: minmax(0, 1fr) clamp(300px, 32vw, 474px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-charm__item--02 {
    grid-template-columns: 1fr;
  }
}

.top-charm__item--02 .top-charm__photo {
  order: 2;
}
@media screen and (max-width: 768px) {
  .top-charm__item--02 .top-charm__photo {
    order: initial;
  }
}

.top-charm__item--02 .top-charm__content {
  order: 1;
}
@media screen and (max-width: 768px) {
  .top-charm__item--02 .top-charm__content {
    order: initial;
  }
}

.top-charm__item--01 .top-charm__photo {
  background-image: url("../img/top-charm_img_horn.webp");
}

.top-charm__item--02 .top-charm__photo {
  background-image: url("../img/top-charm_img_squid.webp");
}

.top-charm__item--01 .top-charm__content::before {
  background-image: url("../img/common_icon_flagWave-01.webp");
}

.top-charm__item--02 .top-charm__content::before {
  background-image: url("../img/common_icon_flagWave-02.webp");
}

.top-charm__itemTitle {
  color: #fff;
  font-size: clamp(18px, 1.42vw, 24px);
  letter-spacing: 0.3em;
  line-height: 2.7;
  padding-left: min(4.76vw, 80px);
  text-align: left;
}
@media screen and (max-width: 768px) {
  .top-charm__itemTitle {
    font-size: clamp(20px, 4.26vw, 32px);
    letter-spacing: 0.22em;
    line-height: 2;
    padding-left: min(12.26vw, 92px);
    padding-left: 2.8em;
  }
}

.top-charm__text {
  font-feature-settings: palt;
  color: #fff;
  letter-spacing: 0.125em;
  line-height: 2.5;
  margin-top: 2.18em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .top-charm__text {
    letter-spacing: normal;
    line-height: 1.9;
  }
}

.top-charm__link {
  height: clamp(55px, 4.16vw, 70px);
  position: relative;
  width: clamp(281px, 21.42vw, 360px);
}
@media screen and (max-width: 768px) {
  .top-charm__link {
    height: min(13.3vw, 100px);
    width: min(69.3vw, 520px);
  }
  .top-charm__link::after {
    right: 5.4347826087%;
  }
}
@media screen and (max-width: 768px) {
}

/*top-technology*/
.top-technology {
  background-color: #ffffff;
  overflow: visible;
  padding: min(7.5vw, 131px) 0 min(8.3vw, 140px);
  position: relative;
}
@media screen and (max-width: 960px) {
  .top-technology {
    padding: clamp(49px, 13vw, 119px) 0 min(13.5vw, 130px);
  }
}

.top-technology__inner {
  margin-inline: auto;
  position: relative;
  text-align: center;
  width: min(100%, 1680px);
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .top-technology__inner {
    padding-inline: 4.1666666667%;
  }
}

.top-technology__content {
  margin-inline: auto;
  text-align: center;
  width: clamp(420px, 33.6vw, 566px);
}
@media screen and (max-width: 960px) {
  .top-technology__content {
    max-width: 670px;
    width: 100%;
  }
}

.top-technology__head {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: min(3.69vw, 62px);
  justify-content: center;
}
@media screen and (max-width: 960px) {
  .top-technology__head {
    gap: min(8.44vw, 81px);
  }
}

.top-technology__title {
  height: min(4.88vw, 82px);
  width: min(32.1vw, 540px);
}
@media screen and (max-width: 768px) {
  .top-technology__title {
    height: min(10.93vw, 82px);
    width: min(72vw, 540px);
  }
}
.top-technology__title img {
  -o-object-fit: contain;
  height: 100%;
     object-fit: contain;
  width: 100%;
}

.top-technology__catch {
  color: #0487C9;
  display: inline-block;
  font-size: clamp(16px, 1.19vw, 20px);
  letter-spacing: 0.2em;
  line-height: 2.5;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .top-technology__catch {
    font-size: clamp(16px, 4.26vw, 32px);
    letter-spacing: 0.22em;
    line-height: 2.1;
  }
}

.top-technology__catch span {
  display: block;
  margin-inline: auto;
  padding-bottom: 0.3em;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 960px) {
  .top-technology__catch span {
    padding-bottom: 0.1em;
  }
}

.top-technology__catch span::after {
  background-image: url("../img/common_item_wave-line.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  bottom: 0;
  content: "";
  height: 14px;
  left: min(-0.47vw, -8px);
  position: absolute;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .top-technology__catch span::after {
    background-repeat: repeat-x;
    background-size: auto 100%;
    height: 1.46vw;
    left: 50%;
    transform: translateX(-50%);
  }
}

.top-technology__catch.--l1 {
  line-height: 2.2;
}

.top-technology__catch.--l1::after {
  max-width: 360px;
}
@media screen and (max-width: 960px) {
  .top-technology__catch.--l1::after {
    max-width: 493px;
  }
}

.top-technology__catch.--l2::after {
  max-width: 420px;
}
@media screen and (max-width: 960px) {
  .top-technology__catch.--l2::after {
    max-width: 493px;
  }
}

.top-technology__body {
  margin-top: min(2.8vw, 47px);
}
@media screen and (max-width: 960px) {
  .top-technology__body {
    margin-top: 40px;
  }
}

.top-technology__text {
  letter-spacing: 0.1em;
  line-height: 2.5;
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .top-technology__text {
    font-size: clamp(14px, 3.73vw, 32px);
    letter-spacing: 0;
    line-height: 2.1;
  }
}

.top-technology__text + .top-technology__text {
  margin-top: 2.5em;
}
@media screen and (max-width: 960px) {
  .top-technology__text + .top-technology__text {
    margin-bottom: 30px;
    margin-top: 2.4em;
  }
}

@media (max-width: 1404px) and (min-width: 961px) {
  .top-technology__text br {
    display: none;
  }
}
.top-technology__points {
  display: flex;
  gap: 0;
  justify-content: center;
  margin: min(1.48vw, 25px) auto 0;
  padding: 0;
}
@media screen and (max-width: 960px) {
  .top-technology__points {
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
  }
}

.top-technology__pointItem {
  flex: 0 0 auto;
  position: relative;
  width: min(11.9vw, 200px);
}
@media screen and (max-width: 960px) {
  .top-technology__pointItem {
    height: auto;
    width: min(29.17vw, 280px);
  }
}

.top-technology__pointImg {
  -o-object-fit: contain;
  display: block;
  height: min(14.2vw, 240px);
  left: 50%;
     object-fit: contain;
  position: relative;
  transform: translateX(-50%);
  width: min(14.2vw, 240px);
}
@media screen and (max-width: 960px) {
  .top-technology__pointImg {
    height: clamp(170px, 36.46vw, 350px);
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    width: clamp(170px, 36.46vw, 350px);
  }
}

.top-technology__deco {
  background-image: url("../img/top-technology_img_right-top.webp"), url("../img/top-technology_img_right-bottom.webp"), url("../img/top-technology_img_left.webp");
  background-position: right min(11.1vw, 187px), 98.1% min(36.4vw, 613px), 6% min(20.3vw, 342px);
  background-repeat: no-repeat;
  background-size: min(28.2vw, 474px) min(17.26vw, 290px), min(20.4vw, 343px) min(12.5vw, 210px), min(23.2vw, 390px) min(16.1vw, 271px);
  inset: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 100vw;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .top-technology__deco {
    background-position: right -12.03vw bottom clamp(320px, 66.72vw, 640px), right 1.88vw bottom 34.06vw, left -19px bottom 60.08vw;
    background-size: clamp(165px, 35.31vw, 339px) clamp(113px, 21.56vw, 207px), clamp(113px, 23.23vw, 223px) clamp(69px, 14.17vw, 136px), clamp(134px, 27.4vw, 263px) clamp(92px, 19.06vw, 183px);
  }
}

/*top-business*/
.top-business {
  padding: min(5.9vw, 100px) 0 min(7.1vw, 120px);
  position: relative;
}
@media screen and (max-width: 960px) {
  .top-business {
    padding: min(10.6vw, 90px) 0 min(13.3vw, 100px);
  }
}
@media screen and (max-width: 768px) {
  .top-business {
    --bubbles-clip-top: 66.6vw;
  }
  .top-business .float-bubbles__layer--right {
    top: -20px;
  }
}

.top-business__head {
  position: relative;
  text-align: center;
}
.top-business__head::after {
  background-image: url(../img/common_item_anchor.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: min(2.44vw, 41px);
  left: 50%;
  position: absolute;
  top: calc(100% + 14px);
  transform: translateX(-50%);
  width: min(2.85vw, 48px);
}
@media screen and (max-width: 960px) {
  .top-business__head::after {
    height: min(8.1vw, 41px);
    width: min(9.46vw, 51px);
  }
}

.top-business__title {
  display: inline-block;
  height: auto;
  width: min(18.57vw, 312px);
}
@media screen and (max-width: 960px) {
  .top-business__title {
    height: min(10.93vw, 82px);
    width: min(41.4vw, 311px);
  }
}

.top-business__title img {
  height: 100%;
  width: 100%;
}

.top-business__list {
  margin-top: min(8vw, 135px);
}
@media screen and (max-width: 960px) {
  .top-business__list {
    margin-top: min(18.2vw, 137px);
  }
}

.top-business__item {
  min-width: 0;
}

.businessCard {
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.businessCard__media {
  aspect-ratio: 359/230;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .businessCard__media {
    aspect-ratio: 670/270;
  }
}

.businessCard__media--ship,.businessCard__media--leisure {
  background-image: url(../img/top-business_img_ship.webp);
}

.businessCard__media--marina {
  background-image: url(../img/top-business_img_marina.webp);
}

.businessCard__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: min(2.2vw, 20px) min(1.9vw, 32px) min(2.5vw, 42px);
}
@media screen and (max-width: 960px) {
  .businessCard__body {
    padding: min(2.5vw, 24px) min(5.33vw, 40px) min(6.4vw, 48px);
  }
}

.businessCard__title {
  color: #0487C9;
  font-size: clamp(16px, 1.43vw, 24px);
  letter-spacing: 0.18em;
  line-height: 2.7;
}
@media screen and (max-width: 960px) {
  .businessCard__title {
    font-size: min(4.26vw, 32px);
  }
}

.businessCard__text {
  font-size: clamp(13px, 0.95vw, 16px);
  letter-spacing: 0.02em;
  line-height: 2;
  margin-top: min(1.07vw, 18px);
}
@media screen and (max-width: 960px) {
  .businessCard__text {
    font-size: clamp(14px, 3.73vw, 26px);
    letter-spacing: 0.07em;
    line-height: 1.6;
    margin-top: 0;
  }
}

.businessCard__actions {
  margin-top: auto;
  padding-top: min(2.02vw, 34px);
}
@media screen and (max-width: 960px) {
  .businessCard__actions {
    padding-top: clamp(30px, 6.4vw, 48px);
  }
}

.businessCard__link {
  display: flex;
  height: min(3.81vw, 64px);
  margin-inline: auto;
  position: relative;
  width: 100%;
}
@media (min-width: 769px) and (max-width: 960px) {
  .businessCard__link {
    height: 55px;
    width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .businessCard__link {
    height: min(13.33vw, 100px);
    width: min(69.3vw, 520px);
  }
  .top-business .float-bubbles {
    top: min(-300px, -60vw);
  }
}

@media screen and (max-width: 768px) {
}

/*top-news*/
.top-news {
  background: url(../img/common_bg_dot.webp) no-repeat center center/cover;
  padding: min(7.14vw, 120px) 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-news {
    padding: min(13.3vw, 100px) 0;
  }
}

.top-news__box {
  align-items: flex-start;
  background: #fff;
  border-radius: 30px;
  display: grid;
  gap: min(3.5vw, 60px);
  grid-template-columns: min(14.2vw, 240px) 1fr;
  justify-content: center;
  margin-inline: auto;
  padding: 66px 60px 63px 95px;
  padding: min(3.9vw, 66px) min(3.5vw, 60px) min(3.7vw, 63px) min(5.6vw, 95px);
  width: min(100%, 1100px);
}
@media screen and (max-width: 768px) {
  .top-news__box {
    display: block;
    padding: min(10.6vw, 80px) min(5.3vw, 40px);
  }
  .top-news__head {
    display: flex;
    justify-content: center;
    margin-bottom: clamp(73px, 14vw, 105px);
  }
}

@media screen and (max-width: 768px) {
}

.top-news__title {
  height: auto;
  line-height: 1;
  margin: min(1.6vw, 22px) 0 min(2.3vw, 40px) min(1.6vw, 28px);
  position: relative;
  width: min(10.6vw, 177px);
}
@media screen and (max-width: 768px) {
  .top-news__title {
    margin: 0;
    width: clamp(105px, 23.5vw, 177px);
  }
}
.top-news__title::after {
  background-image: url(../img/common_item_dolphin-blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: clamp(35px, 2.97vw, 50px);
  left: 50%;
  position: absolute;
  top: clamp(120px, 10vw, 168px);
  transform: translateX(-50%);
  width: clamp(75px, 6.3vw, 106px);
}
@media screen and (max-width: 768px) {
  .top-news__title::after {
    height: max(31px, 6.6vw);
    top: calc(100% + 4.8vw);
    width: max(70px, 14.1vw);
  }
}

.top-news__title img {
  height: auto;
  width: 100%;
}

.top-news__link {
  font-size: clamp(12px, 1.07vw, 18px);
  height: clamp(38px, 2.9vw, 50px);
  letter-spacing: 0.2em;
  white-space: nowrap;
  width: clamp(90px, 14.2vw, 240px);
}
@media screen and (max-width: 768px) {
  .top-news__link {
    display: none;
  }
}
.top-news__link::after {
  right: 3.4782608696%;
}

.top-news__list {
  margin: 0;
  padding: 0;
}

.top-news__item {
  border-bottom: 1px solid #000;
  padding-block: 1.55em;
}
@media screen and (max-width: 768px) {
  .top-news__item {
    padding-block: 1.07em;
  }
}

.top-news__item:first-child {
  padding-top: 0;
}

.top-news__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.top-news__date {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(16px, 1.07vw, 18px);
  font-weight: 400;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .top-news__date {
    font-size: clamp(14px, 3.2vw, 24px);
  }
}

.top-news__itemTitle {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .top-news__itemTitle {
    font-size: clamp(14px, 3.46vw, 26px);
    letter-spacing: 0.09em;
    line-height: 1.5;
  }
}

/* 投稿が無いとき */
.top-news__item--empty {
  border-top: 1px solid rgba(0, 0, 0, 0.25);
}

.top-news__emptyText {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  margin: 0;
  padding: 20px 0;
}

/* SP：一番下のボタン */
.top-news__foot {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-news__foot {
    display: flex;
    justify-content: center;
    margin-top: clamp(40px, 8vw, 60px);
  }
}

.top-news__link--sp {
  height: min(13.3vw, 100px);
  width: min(69.3vw, 520px);
}