@charset "UTF-8";

@import "https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap";

/* .swimstyle {
  position: relative;
  background: #d7e6f2;
  overflow-x: hidden;
} */

.swimstyle {
  position: relative;
  /* 元の背景色は消し、透明にします */
  background: transparent !important;
  /* 横へのはみ出しをカット */
  overflow-x: hidden;
}

/* 背景色専用のレイヤーを疑似要素で作る */
.swimstyle::before {
  content: "";
  position: absolute;
  top: 0;
  /* 親の真ん中から画面の左端まで引き延ばす */
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;

  /* ここに背景色を指定 */
  background-color: #d7e6f2;

  /* コンテンツより後ろ、かつ他の背景画像より後ろにするなら数値を調整 */
  z-index: -2;
  pointer-events: none;
}

/* 1. このLPが存在する場合のみ、親の「枠」を100%に広げる */
/* :has セレクタが使える環境（モダンブラウザ）であれば以下が最短です */

html:has(.swimstyle) body .fs-l-main,
html:has(.swimstyle) body .fs-l-pageMain {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}

/* 2. LP本体（swimstyle）の設定 */
/* 他のページには .swimstyle は存在しないため、ここからは自動的に限定されます */
.swimstyle {
  position: relative !important;
  width: 100% !important;
  background-color: #d7e6f2 !important;
}

/* 3. 中身のコンテンツだけを中央に寄せる */
.swimstyle > * {
  max-width: 1216px !important;
  width: 95% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

/* 4. パンくずリストなど、LPの外側にある共通パーツを守る */
/* もしパンくずリストが .fs-l-pageMain の直下にある場合、
   上記1の設定で広がってしまいます。それを防ぐために以下を追加します */
.fs-c-breadcrumb {
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* 3. 背景の中の「中身（コンテンツ）」だけを中央 1216px に戻す */
/* article 直下の子要素すべてに適用 */
html body article.swimstyle > * {
  max-width: 1216px !important;
  width: 95% !important; /* スマホ時のマージン */
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
  position: relative !important;
  z-index: 1 !important;
}

/* html body .swimstyle__hero::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important; 
  height: 100% !important;
  background: url("/img/feature/swimstyle_2026/kv_sky.webp") center top / cover
    no-repeat !important;
  opacity: 0.78 !important;
  z-index: 0 !important;
} */

/* 4. Heroセクション（空の背景画像）の調整 */

/* html body .swimstyle__hero {
  width: 100% !important;
  max-width: none !important; 
} */

/* html body .swimstyle__hero::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: url("/img/feature/swimstyle_2026/kv_sky.webp") center top / cover
    no-repeat !important;
  opacity: 0.78 !important;
  z-index: 0 !important;
} */

/* 1. 背景画像を持っているセクション自体の制限を解除 */
.swimstyle__hero {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* 2. 背景画像（::before）を100vwで強制的に広げる */
.swimstyle__hero::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;

  /* 親の1216pxを無視して画面中央から左右50vwずつ広げる */
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 100vw !important;

  height: 100% !important;
  background: url("/img/feature/swimstyle_2026/kv_sky.webp") center top / cover no-repeat !important;
  opacity: 0.78 !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

/* 3. 背景の中にある「文字やボタン」を中央(1216px)に戻す */
.swimstyle__hero > *:not(::before) {
  position: relative !important;
  z-index: 1 !important;
  max-width: 1216px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 95% !important; /* スマホ時の余白 */
}

.swimstyle__ripples {
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.3s ease;
}
/* .swimstyle__ripples.is-active {
  opacity: 1;
} */

/* 波紋レイヤーを画面全体に固定 */
.swimstyle__ripples.is-active {
  position: fixed !important; /* absoluteからfixedに変えるとスクロール時のガタつきが減ります */
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important; /* 画面に見えている範囲だけをキャンバスにする */
  z-index: 2 !important;
  pointer-events: none !important;
  opacity: 1 !important;
  display: block !important;
}

/* 親要素の制限解除（以前の通り） */
.fs-l-pageMain:has(.swimstyle) {
  max-width: none !important;
  width: 100% !important;
  overflow: visible !important;
}

.swimstyle .swimstyle__hero,
.swimstyle #sec-wrapper {
  position: relative;
  z-index: 1;
}
.swimstyle img {
  display: block;
  width: 100%;
  height: auto;
}
.swimstyle a {
  text-decoration: none;
}
/* .swimstyle__hero {
  isolation: isolate;
}
.swimstyle__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/img/feature/swimstyle_2026/kv_sky.webp");
  opacity: 0.78;
  pointer-events: none;
  z-index: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.swimstyle__hero > * {
  position: relative;
  z-index: 1;
} */

/* 1. 親要素：スタックコンテキストを解除し、はみ出しを許可 */
.swimstyle__hero {
  isolation: auto !important;
  overflow: visible !important;
  position: relative; /* 子要素の基準点 */
}

/* 2. 背景レイヤー：画面幅いっぱいに広げる */
.swimstyle__hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;

  background: url("/img/feature/swimstyle_2026/kv_sky.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;

  opacity: 0.78;
  pointer-events: none; /* 下にあるボタン等を押せるようにする */
  z-index: 0; /* 背景として最背面へ */
}

/* 3. コンテンツレイヤー：背景より手前に出す */
.swimstyle__hero > * {
  position: relative;
  z-index: 1; /* 背景(0)より大きい数値に設定 */
}

.swimstyle__kv {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.swimstyle__kv__frame {
  padding-top: 130px;
}
@media screen and (max-width: 768px) {
  .swimstyle__kv__frame {
    width: calc(372 / 390 * 100vw);
    padding-top: calc(40 / 390 * 100vw);
  }
}
.swimstyle__kv .swimstyle__kv__title {
  width: 530px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .swimstyle__kv .swimstyle__kv__title {
    width: calc(218 / 390 * 100vw);
  }
}
.swimstyle__kv__oval {
  width: 800px;
  margin: 16px auto 0;
}
@media screen and (max-width: 768px) {
  .swimstyle__kv__oval {
    width: calc(276 / 390 * 100vw);
    margin: calc(8 / 390 * 100vw) auto 0;
  }
}
.swimstyle__intro {
  padding: 90px 40px 110px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .swimstyle__intro {
    padding: calc(32 / 390 * 100vw) calc(24 / 390 * 100vw) calc(36 / 390 * 100vw);
  }
}
.swimstyle__intro__catch {
  display: inline-block;
  width: auto;
  max-width: 360px;
  height: auto;
  margin: 0 auto 60px;
}
@media screen and (max-width: 768px) {
  .swimstyle__intro__catch {
    max-width: calc(146 / 390 * 100vw);
    margin-bottom: calc(30 / 390 * 100vw);
  }
}
.swimstyle__intro__ttl {
  display: inline-block;
  width: auto;
  max-width: 367px;
  height: auto;
  margin: 0 auto 58px;
}
@media screen and (max-width: 768px) {
  .swimstyle__intro__ttl {
    max-width: calc(150 / 390 * 100vw);
    margin-bottom: calc(32 / 390 * 100vw);
  }
}
.swimstyle__intro__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #cbb192;
  line-height: 2;
  letter-spacing: 1.2px;
}
@media screen and (max-width: 768px) {
  .swimstyle__intro__text {
    font-size: calc(10 / 390 * 100vw);
  }
}
.swimstyle__anchor {
  width: 765px;
  margin: 50px auto 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .swimstyle__anchor {
    width: calc(315 / 390 * 100vw);
    padding: 0 0 calc(32 / 390 * 100vw);
    margin-top: calc(50 / 390 * 100vw);
  }
}
.swimstyle__anchor__item {
  cursor: pointer;
  transition: opacity 0.2s;
}
.swimstyle__anchor__item:hover {
  opacity: 0.75;
}
.swimstyle__anchor__item:focus-visible {
  opacity: 0.75;
  outline: 1px solid #8c9baf;
  outline-offset: 8px;
}
.swimstyle__anchor__item:nth-child(2) {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .swimstyle__anchor__item:nth-child(2) {
    margin-top: calc(20 / 390 * 100vw);
  }
}
.swimstyle__anchor__item:nth-child(3) {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .swimstyle__anchor__item:nth-child(3) {
    margin-top: calc(40 / 390 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  .swimstyle__anchor__item {
    padding: 0 calc(8 / 390 * 100vw);
  }
}
.swimstyle__anchor__num img {
  height: 38px;
}
@media screen and (max-width: 768px) {
  .swimstyle__anchor__num img {
    height: calc(16 / 390 * 100vw);
    width: auto;
    margin: 0 auto;
  }
}
.swimstyle__anchor__bar {
  display: block;
  width: 44px;
  height: 2px;
  background: #8c9baf;
  margin: 38px auto;
}
@media screen and (max-width: 768px) {
  .swimstyle__anchor__bar {
    width: calc(18 / 390 * 100vw);
    height: 1px;
    margin: calc(12 / 390 * 100vw) auto;
  }
}
.swimstyle__anchor__label {
  font-family: "freight-display-pro", Georgia, serif;
  font-size: 25px;
  color: #8c9baf;
  text-align: center;
  font-weight: 400;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .swimstyle__anchor__label {
    font-size: calc(12 / 390 * 100vw);
    letter-spacing: 0.12em;
  }
}
/* .swimstyle__anchor__img {
  width: 180px;
  height: 280px;
  overflow: hidden;
  margin: 40px auto 0;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 1.4s ease,
    transform 1.4s ease;
}
.swimstyle__anchor__img.is-visible {
  opacity: 1;
  transform: translateY(0);
} */

.swimstyle__anchor__img {
  display: block !important; /* または inline-block */
  width: 180px;
  height: 280px;
  overflow: hidden;
  margin: 40px auto 0;

  /* 初期状態 */
  opacity: 0 !important;
  transform: translateY(24px) !important;

  /* アニメーション設定 */
  transition: opacity 1.4s ease, transform 1.4s ease !important;
  will-change: opacity, transform; /* ブラウザに準備させる */
}

/* 表示状態（JSから付与されるクラス） */
.swimstyle__anchor__img.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.swimstyle__anchor__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
@media screen and (max-width: 768px) {
  .swimstyle__anchor__img {
    width: calc(74 / 390 * 100vw);
    height: calc(114 / 390 * 100vw);
    margin-top: calc(12 / 390 * 100vw);
    margin-bottom: calc(10 / 390 * 100vw);
  }
}
.swimstyle__sec01__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 139px 0 57px;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec01__inner {
    max-width: none;
    padding: calc(57 / 390 * 100vw) calc(24 / 390 * 100vw) calc(23 / 390 * 100vw);
  }
}
.swimstyle__sec01__hero {
  position: relative;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec01__hero {
    margin-bottom: calc(19 / 390 * 100vw);
  }
}
.swimstyle__sec01__hero__num {
  width: 16.3%;
}
.swimstyle__sec01__hero .swimstyle__sec01__hero__styleup {
  margin-top: 78px;
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}
.swimstyle__sec01__hero .swimstyle__sec01__hero__styleup.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.swimstyle__sec01__hero .swimstyle__sec01__hero__styleup img {
  height: 99px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec01__hero .swimstyle__sec01__hero__styleup {
    margin-top: calc(31 / 390 * 100vw);
  }
  .swimstyle__sec01__hero .swimstyle__sec01__hero__styleup img {
    height: calc(41 / 390 * 100vw);
  }
}
.swimstyle__sec01__hero .swimstyle__sec01__hero__swim {
  margin-top: 8px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 1.4s ease, transform 1.4s ease;
  transition-delay: 0.18s;
}
.swimstyle__sec01__hero .swimstyle__sec01__hero__swim.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.swimstyle__sec01__hero .swimstyle__sec01__hero__swim img {
  height: 99px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec01__hero .swimstyle__sec01__hero__swim {
    margin-top: calc(3 / 390 * 100vw);
  }
  .swimstyle__sec01__hero .swimstyle__sec01__hero__swim img {
    height: calc(41 / 390 * 100vw);
  }
}
.swimstyle__sec01__hero__photo {
  position: relative;
  z-index: 0;
  width: 740px;
  margin: -45px auto 0;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec01__hero__photo {
    width: 93%;
    margin: calc(-28 / 390 * 100vw) auto 0;
  }
}
.swimstyle__sec01__hero__badge img {
  position: absolute;
  width: 48%;
  right: 9%;
  bottom: -2%;
}
.swimstyle__sec01__collage {
  position: relative;
  aspect-ratio: 795/899;
  overflow: hidden;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec01__collage {
    aspect-ratio: 325 / 368;
    margin-bottom: calc(12 / 390 * 100vw);
  }
}
.swimstyle__sec01__collage__copy {
  white-space: nowrap;
  position: absolute;
  left: 48%;
  top: 0;
  width: 50.6%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #9baec7;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec01__collage__copy {
    font-size: calc(10 / 390 * 100vw);
  }
}
.swimstyle__sec01__collage__p01 {
  position: absolute;
  left: 0;
  top: 12.2%;
  width: 49.7%;
}
.swimstyle__sec01__collage__p02 {
  position: absolute;
  left: 57.4%;
  top: 38.8%;
  width: 38.5%;
}
.swimstyle__sec01__collage__p03 {
  position: absolute;
  left: 31.4%;
  top: 78.4%;
  width: 38.5%;
}
.swimstyle__sec01__offer {
  display: grid;
  grid-template-columns: 36.3% 63.7%;
  grid-template-rows: 30.6% auto;
  aspect-ratio: 768/733;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec01__offer {
    aspect-ratio: 314 / 300;
  }
}
.swimstyle__sec01__offer__body {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.swimstyle__sec01__offer__photo {
  grid-column: 2;
  grid-row: 1 / span 2;
}
.swimstyle__sec01__offer__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.swimstyle__sec01__offer__tag {
  display: inline-block;
  border: 1px solid #9cafc8;
  color: #9cafc8;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 6px 14px;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec01__offer__tag {
    font-size: calc(10 / 390 * 100vw);
    padding: calc(3 / 390 * 100vw) calc(6 / 390 * 100vw);
  }
}
.swimstyle__sec01__offer__name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #9cafc8;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec01__offer__name {
    font-size: calc(10 / 390 * 100vw);
  }
}
.swimstyle__sec01__offer__price {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: #9cafc8;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec01__offer__price {
    font-size: calc(12 / 390 * 100vw);
    margin-top: calc(10 / 390 * 100vw);
  }
}
.swimstyle__sec01__offer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 50px;
  background: #a3bbda;
  transition: opacity 0.2s;
  margin-top: 36px;
}
.swimstyle__sec01__offer__btn:hover {
  opacity: 0.75;
}
.swimstyle__sec01__offer__btn:focus-visible {
  opacity: 0.75;
  outline: 1px solid #9cafc8;
  outline-offset: 4px;
}
.swimstyle__sec01__offer__btn img {
  width: 103px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec01__offer__btn {
    width: calc(100 / 390 * 100vw);
    height: calc(25 / 390 * 100vw);
    margin-top: calc(15 / 390 * 100vw);
  }
  .swimstyle__sec01__offer__btn img {
    width: calc(42 / 390 * 100vw);
  }
}
.swimstyle__sec02__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 113px 0 88px;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec02__inner {
    max-width: none;
    padding: calc(46 / 390 * 100vw) calc(24 / 390 * 100vw) calc(36 / 390 * 100vw);
  }
}
.swimstyle__sec02__hero {
  position: relative;
  width: 81.5%;
  aspect-ratio: 652/1039;
  margin: 0 auto 109px;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec02__hero {
    width: 100%;
    margin-bottom: calc(44 / 390 * 100vw);
  }
}
.swimstyle__sec02__hero__badge {
  position: absolute;
  left: 2.9%;
  top: 0;
  width: 69.9%;
}
.swimstyle__sec02__hero__photo {
  position: absolute;
  left: 2.1%;
  top: 5.4%;
  width: 71.2%;
}
.swimstyle__sec02__hero__border {
  position: absolute;
  left: 0.3%;
  top: 4.2%;
  width: 74.8%;
}
.swimstyle__sec02__hero__num {
  position: absolute;
  left: 76.7%;
  top: 1.7%;
  width: 23.3%;
}
.swimstyle__sec02__hero__text {
  position: absolute;
  left: 81.3%;
  top: 12.9%;
  width: 15.5%;
  overflow: hidden;
}
.swimstyle__sec02__hero__text::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #d7e6f2;
  transform: translateY(0);
  transition: transform 2s cubic-bezier(0.4, 0, 0.6, 1);
}
.swimstyle__sec02__hero__text.is-visible::after {
  transform: translateY(105%);
}
.swimstyle__sec02__collage {
  position: relative;
  width: 84.5%;
  aspect-ratio: 676/673;
  overflow: hidden;
  margin: 0 auto 99px;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec02__collage {
    width: 100%;
    margin-bottom: calc(41 / 390 * 100vw);
  }
}
.swimstyle__sec02__collage__p02 {
  position: absolute;
  left: 0;
  top: 0;
  width: 45.6%;
}
.swimstyle__sec02__collage__copy {
  position: absolute;
  left: 51.6%;
  top: 0;
  width: 48.4%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #9cafc8;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec02__collage__copy {
    font-size: calc(10 / 390 * 100vw);
    width: 49%;
  }
}
.swimstyle__sec02__collage__p03 {
  position: absolute;
  left: 54%;
  top: 43.8%;
  width: 45.3%;
}
.swimstyle__sec02__offer {
  display: grid;
  grid-template-columns: 57.3% 42.7%;
  grid-template-rows: 30.8% auto;
  aspect-ratio: 779/536;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec02__offer {
    aspect-ratio: 319 / 219;
  }
}
.swimstyle__sec02__offer__photo {
  grid-column: 1;
  grid-row: 1 / span 2;
}
.swimstyle__sec02__offer__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.swimstyle__sec02__offer__body {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 15%;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec02__offer__body {
    padding-left: 11%;
  }
}
.swimstyle__sec02__offer__tag {
  display: inline-block;
  border: 1px solid #9cafc8;
  color: #9cafc8;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 6px 14px;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec02__offer__tag {
    font-size: calc(10 / 390 * 100vw);
    padding: calc(3 / 390 * 100vw) calc(6 / 390 * 100vw);
  }
}
.swimstyle__sec02__offer__name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #9cafc8;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec02__offer__name {
    font-size: calc(10 / 390 * 100vw);
    white-space: nowrap;
  }
}
.swimstyle__sec02__offer__price {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: #9cafc8;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec02__offer__price {
    font-size: calc(12 / 390 * 100vw);
    margin-top: calc(10 / 390 * 100vw);
  }
}
.swimstyle__sec02__offer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 50px;
  background: #a3bbda;
  transition: opacity 0.2s;
  margin-top: 36px;
}
.swimstyle__sec02__offer__btn:hover {
  opacity: 0.75;
}
.swimstyle__sec02__offer__btn img {
  width: 103px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec02__offer__btn {
    width: calc(100 / 390 * 100vw);
    height: calc(25 / 390 * 100vw);
    margin-top: calc(15 / 390 * 100vw);
  }
  .swimstyle__sec02__offer__btn img {
    width: calc(42 / 390 * 100vw);
  }
}
.swimstyle__sec03__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 181px 0 0;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec03__inner {
    max-width: none;
    padding: calc(74 / 390 * 100vw) calc(24 / 390 * 100vw) 0;
  }
}
.swimstyle__sec03__hero {
  position: relative;
  aspect-ratio: 762/711;
  max-width: 95.25%;
  margin: 0 auto 70px;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec03__hero {
    margin-bottom: calc(28 / 390 * 100vw);
  }
}
.swimstyle__sec03__hero__num {
  position: absolute;
  left: 0;
  top: 0;
  width: 20.7%;
}
.swimstyle__sec03__hero__sun_guard {
  position: absolute;
  left: 31%;
  top: 0;
  width: 66.4%;
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}
.swimstyle__sec03__hero__sun_guard.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.swimstyle__sec03__hero__photo {
  position: absolute;
  left: 0.4%;
  top: 34.9%;
  width: 97.5%;
  z-index: 1;
}
.swimstyle__sec03__hero__wear {
  position: absolute;
  left: 42.2%;
  top: 34.3%;
  width: 57.6%;
  z-index: 2;
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 1.4s ease, transform 1.4s ease;
  transition-delay: 0.18s;
}
.swimstyle__sec03__hero__wear.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.swimstyle__sec03__hero__badge {
  position: absolute;
  left: 39.6%;
  top: 91.7%;
  width: 51.8%;
  z-index: 3;
}
.swimstyle__sec03__collage {
  position: relative;
  aspect-ratio: 797/902;
  overflow: hidden;
  margin: 0 auto 17px;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec03__collage {
    margin-bottom: calc(7 / 390 * 100vw);
  }
}
.swimstyle__sec03__collage__copy {
  white-space: nowrap;
  position: absolute;
  left: 54.5%;
  top: 0;
  width: 44.2%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #9cafc8;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec03__collage__copy {
    font-size: calc(10 / 390 * 100vw);
  }
}
.swimstyle__sec03__collage__p01 {
  position: absolute;
  left: 0;
  top: 6.9%;
  width: 49.6%;
}
.swimstyle__sec03__collage__p03 {
  position: absolute;
  left: 59.6%;
  top: 29.4%;
  width: 38.4%;
}
.swimstyle__sec03__collage__p02 {
  position: absolute;
  left: 45.3%;
  top: 62.2%;
  width: 38.4%;
}
.swimstyle__sec03 .swimstyle__sec03__offer2__name,
.swimstyle__sec03 .swimstyle__sec03__offer1__name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #9cafc8;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec03 .swimstyle__sec03__offer2__name,
  .swimstyle__sec03 .swimstyle__sec03__offer1__name {
    font-size: calc(10 / 390 * 100vw);
  }
}
.swimstyle__sec03 .swimstyle__sec03__offer2__price,
.swimstyle__sec03 .swimstyle__sec03__offer1__price {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: #9cafc8;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec03 .swimstyle__sec03__offer2__price,
  .swimstyle__sec03 .swimstyle__sec03__offer1__price {
    margin-top: calc(10 / 390 * 100vw);
    font-size: calc(12 / 390 * 100vw);
  }
}
.swimstyle__sec03 .swimstyle__sec03__offer2__colors,
.swimstyle__sec03 .swimstyle__sec03__offer1__colors {
  display: flex;
  gap: 6px;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec03 .swimstyle__sec03__offer2__colors,
  .swimstyle__sec03 .swimstyle__sec03__offer1__colors {
    margin-top: calc(15 / 390 * 100vw);
    gap: calc(2 / 390 * 100vw);
  }
}
.swimstyle__sec03 .swimstyle__sec03__offer2__colors span,
.swimstyle__sec03 .swimstyle__sec03__offer1__colors span {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 768px) {
  .swimstyle__sec03 .swimstyle__sec03__offer2__colors span,
  .swimstyle__sec03 .swimstyle__sec03__offer1__colors span {
    width: calc(10 / 390 * 100vw);
    height: calc(10 / 390 * 100vw);
  }
}
.swimstyle__sec03 .swimstyle__sec03__offer2__btn,
.swimstyle__sec03 .swimstyle__sec03__offer1__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 50px;
  background: #a3bbda;
  transition: opacity 0.2s;
}
.swimstyle__sec03 .swimstyle__sec03__offer2__btn:hover,
.swimstyle__sec03 .swimstyle__sec03__offer1__btn:hover {
  opacity: 0.75;
}
.swimstyle__sec03 .swimstyle__sec03__offer2__btn:focus-visible,
.swimstyle__sec03 .swimstyle__sec03__offer1__btn:focus-visible {
  opacity: 0.75;
  outline: 1px solid #9cafc8;
  outline-offset: 4px;
}
.swimstyle__sec03 .swimstyle__sec03__offer2__btn img,
.swimstyle__sec03 .swimstyle__sec03__offer1__btn img {
  width: 103px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec03 .swimstyle__sec03__offer2__btn,
  .swimstyle__sec03 .swimstyle__sec03__offer1__btn {
    width: calc(100 / 390 * 100vw);
    height: calc(25 / 390 * 100vw);
    margin-top: calc(15 / 390 * 100vw);
  }
  .swimstyle__sec03 .swimstyle__sec03__offer2__btn img,
  .swimstyle__sec03 .swimstyle__sec03__offer1__btn img {
    width: 10.7692307692vw;
  }
}
.swimstyle__sec03__offer1 {
  display: grid;
  grid-template-columns: 36.3% 63.7%;
  grid-template-rows: 28.9% auto;
  aspect-ratio: 768/733;
  max-width: 96%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec03__offer1 {
    aspect-ratio: 314 / 300;
    max-width: 100%;
  }
}
.swimstyle__sec03__offer1__body {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.swimstyle__sec03__offer1__photo {
  grid-column: 2;
  grid-row: 1 / span 2;
}
.swimstyle__sec03__offer1__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.swimstyle__sec03__offer1__price {
  margin-top: 16px;
}
.swimstyle__sec03__offer1__colors {
  margin-top: 40px;
}
.swimstyle__sec03__offer1__btn {
  margin-top: 33px;
}
.swimstyle__sec03__offer2 {
  display: grid;
  grid-template-columns: 63.2% 36.8%;
  grid-template-rows: 27% auto;
  aspect-ratio: 774/733;
  max-width: 96.75%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec03__offer2 {
    aspect-ratio: 317 / 300;
    max-width: 100%;
  }
}
.swimstyle__sec03__offer2__photo {
  grid-column: 1;
  grid-row: 1 / span 2;
}
.swimstyle__sec03__offer2__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.swimstyle__sec03__offer2__body {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 19%;
}
@media screen and (max-width: 768px) {
  .swimstyle__sec03__offer2__body {
    padding-left: 12%;
  }
}
@media screen and (max-width: 768px) {
  .swimstyle__sec03__offer2__name {
    white-space: nowrap;
  }
}
.swimstyle__sec03__offer2__price {
  margin-top: 16px;
}
.swimstyle__sec03__offer2__colors {
  margin-top: 40px;
}
.swimstyle__sec03__offer2__btn {
  margin-top: 33px;
}
.swimstyle .sec4 {
  position: relative;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .swimstyle .sec4 {
    padding-bottom: calc(50 / 390 * 100vw);
  }
}
.swimstyle .sec4_btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 230px;
  height: 50px;
  background: #a3bbda;
  font-size: 18px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  transition: opacity 0.2s;
  letter-spacing: 0.05em;
}
.swimstyle .sec4_btn:hover {
  opacity: 0.75;
}
.swimstyle .sec4_btn:focus-visible {
  opacity: 0.75;
  outline: 1px solid #9cafc8;
  outline-offset: 4px;
}
.swimstyle .sec4_btn img {
  width: 31px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .swimstyle .sec4_btn {
    width: calc(100 / 390 * 100vw);
    height: calc(25 / 390 * 100vw);
    margin-top: calc(15 / 390 * 100vw);
    font-size: 10px;
    bottom: 22%;
  }
  .swimstyle .sec4_btn img {
    width: calc(12 / 390 * 100vw);
  }
}

/* .fs-l-main {
  margin: 24px auto;
  padding: 8px;
  max-width: 1216px;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 769px) {
  .fs-l-main {
    margin-top: 48px;
    max-width: 1216px;
  }
} */
