@charset "UTF-8";
/* CSS Document */

/* =========================
  Reset / Base
========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: #1b1b1b;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img,
picture,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

img {
  border: 0;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address {
  font-style: normal;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}
/* =========================
  Flamingo LP Base
========================= */

.flamingo-lp {
  width: 100%;
  background: #fff;
  color: #333;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
}

.flamingo-lp * {
  box-sizing: border-box;
}

.flamingo-lp img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* 共通コンテナ */
.fl-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

/* =========================
  Header
========================= */

.fl-header {
  width: 100%;
  background: #fff;
}

.fl-header__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 20px 16px;
}

.fl-header__logo {
  margin: 0;
  line-height: 1;
}

.fl-header__logo a {
  display: inline-block;
  text-decoration: none;
}

.fl-header__logo img {
  display: block;
  width: 108px;
  max-width: 108px;
}



/* Tablet */
@media screen and (max-width: 1024px) {
  .fl-container {
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .fl-header__inner {
    padding-top: 18px;
    padding-bottom: 16px;
  }
}

/* SP */
@media screen and (max-width: 767px) {
  .fl-container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .fl-header__inner {
    padding-top: 16px;
    padding-bottom: 14px;
  }

  .fl-header__logo img {
    width: 96px;
    max-width: 96px;
  }
}



/* =========================
  First View
========================= */

.fl-fv {
  width: 100%;
}

.fl-fv__wrap {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.fl-fv__visual {
  position: relative;
  width: 100%;
  height: 450px;
  background-image: url("../images/fv_images.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}

/* 左側ロゴ */
.fl-fv__brand {
  position: absolute;
  left: 27%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: 240px;
  max-width: 240px;
}

.fl-fv__brand img {
  display: block;
  width: 100%;
  height: auto;
}

/* PC：右側縦書きコピー */
.fl-fv__copy {
  position: absolute;
  right: 8.5%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: row-reverse;
  gap: 34px;
  color: #fff;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

.fl-fv__lead,
.fl-fv__text {
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.16em;
}

.fl-fv__lead {
  font-size: 25px;
}

.fl-fv__text {
  font-size: 15px;
}

/* Tablet */
@media screen and (max-width: 1024px) {
  .fl-fv__visual {
    height: 43vw;
    min-height: 360px;
    max-height: 450px;
  }

  .fl-fv__brand {
    left: 27%;
    width: 22vw;
    max-width: 220px;
  }

  .fl-fv__copy {
    right: 7%;
    gap: 28px;
  }

  .fl-fv__lead {
    font-size: 23px;
  }

  .fl-fv__text {
    font-size: 14px;
  }
}

/* SP */
@media screen and (max-width: 767px) {
  .fl-fv__visual {
    height: 68vw;
    min-height: 280px;
    background-position: center center;
  }

  .fl-fv__brand {
    left: 50%;
    top: 52%;
    width: 210px;
    max-width: 72%;
  }

  .fl-fv__copy {
    position: static;
    transform: none;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 28px;
    color: #1b1b1b;
    text-shadow: none;
    padding: 36px 18px 0;
  }

  .fl-fv__lead,
  .fl-fv__text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
    font-weight: 400;
    letter-spacing: 0.14em;
  }

  .fl-fv__lead {
    font-size: 22px;
    line-height: 1.9;
  }

  .fl-fv__text {
    font-size: 14px;
    line-height: 1.9;
  }
}


/* =========================
  Intro
========================= */

.fl-intro {
  padding-top: 64px;
}

.fl-intro__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 72px;
}

.fl-intro__image {
  flex: 0 0 500px;
  max-width: 500px;
}

.fl-intro__image img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.fl-intro__content {
  flex: 1;
  max-width: 420px;
}

.fl-intro__heading {
  margin-bottom: 42px;
}

.fl-intro__text + .fl-intro__text {
  margin-top: 28px;
}

/* Tablet */
@media screen and (max-width: 1024px) {
  .fl-intro {
    padding-top: 56px;
  }

  .fl-intro__inner {
    gap: 48px;
  }

  .fl-intro__image {
    flex: 0 1 500px;
  }

  .fl-intro__content {
    max-width: 410px;
  }
}

/* SP */
@media screen and (max-width: 767px) {
  .fl-intro {
    padding-top: 52px;
  }

  .fl-intro__inner {
    display: block;
  }

  .fl-intro__image {
    max-width: 500px;
    margin: 0 auto;
  }

  .fl-intro__content {
    max-width: 100%;
    margin-top: 36px;
  }

  .fl-intro__heading {
    margin-bottom: 30px;
    line-height: 1.9;
  }

  .fl-intro__text + .fl-intro__text {
    margin-top: 22px;
  }
}

/* =========================
  Colors Gallery
========================= */

.fl-colors {
  padding-top: 64px;
  text-align: center;
}

.fl-colors__heading {
  margin-bottom: 48px;
}

/* 横スクロールエリア */
.fl-color-slider {
  width: 100%;
  overflow: hidden;
}

.fl-color-slider__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

/* スクロールバー非表示 */
.fl-color-slider__track::-webkit-scrollbar {
  display: none;
}

.fl-color-slider__track {
  scrollbar-width: none;
}

.fl-color-slider__item {
  flex: 0 0 380px;
  max-width: 380px;
  scroll-snap-align: start;
}

.fl-color-slider__item img {
  width: 100%;
  max-width: 380px;
  height: auto;
}

.fl-colors__text {
  margin-top: 44px;
}

.fl-colors__text .fl-text + .fl-text {
  margin-top: 28px;
}

/* Tablet */
@media screen and (max-width: 1024px) {
  .fl-colors {
    padding-top: 56px;
  }

  .fl-colors__heading {
    margin-bottom: 40px;
  }

  .fl-color-slider {
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
  }

  .fl-color-slider__track {
    padding-right: 24px;
  }
}

/* SP */
@media screen and (max-width: 767px) {
  .fl-colors {
    padding-top: 52px;
  }

  .fl-colors__heading {
    margin-bottom: 32px;
  }

  .fl-color-slider {
    margin-left: -18px;
    margin-right: -18px;
    padding-left: 18px;
  }

  .fl-color-slider__track {
    gap: 14px;
    padding-right: 18px;
  }

  .fl-color-slider__item {
    flex: 0 0 82vw;
    max-width: 380px;
  }

  .fl-colors__text {
    margin-top: 36px;
    text-align: center;
  }

  .fl-colors__text .fl-text + .fl-text {
    margin-top: 24px;
  }

  .fl-pc {
    display: none;
  }
}

/* =========================
  Craft
========================= */

.fl-craft {
  padding-top: 84px;
}

.fl-craft__inner {
  position: relative;
  width: 100%;
  max-width: 860px;
  min-height: 560px;
  margin: 0 auto;
}

/* 右側の写真 */
.fl-craft__image {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
}

.fl-craft__image img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

/* 左側のテキストパネル */
.fl-craft__panel {
  position: absolute;
  left: 0;
  top: 96px;
  width: 420px;
  min-height: 440px;
  padding: 58px 56px 52px;
  background-image: url("../images/contents03_bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #1b1b1b;
  z-index: 2;
}

.fl-craft__title {
  margin: 0 0 38px;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.12em;
}

.fl-craft__text {
  margin: 0;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.08em;
}

.fl-craft__text + .fl-craft__text {
  margin-top: 28px;
}

/* Tablet */
@media screen and (max-width: 1024px) {
  .fl-craft {
    padding-top: 72px;
  }

  .fl-craft__inner {
    max-width: 820px;
    min-height: 54vw;
  }

  .fl-craft__image {
    max-width: 500px;
    width: 58%;
  }

  .fl-craft__panel {
    top: 8vw;
    width: 44%;
    min-height: auto;
    padding: 5.2vw 4.5vw 4.8vw;
  }

  .fl-craft__title {
    font-size: 23px;
    margin-bottom: 32px;
  }

  .fl-craft__text {
    font-size: 14px;
  }

  .fl-craft__text + .fl-craft__text {
    margin-top: 24px;
  }
}

/* SP */
@media screen and (max-width: 767px) {
  .fl-craft {
    padding-top: 60px;
  }

  .fl-craft__inner {
    max-width: 500px;
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .fl-craft__image {
    order: 1;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .fl-craft__image img {
    max-width: 500px;
  }

  .fl-craft__panel {
    order: 2;
    position: relative;
    left: auto;
    top: auto;
    width: calc(100% - 28px);
    margin: -36px auto 0;
    padding: 42px 30px 40px;
  }

  .fl-craft__title {
    font-size: 22px;
    line-height: 1.9;
    margin-bottom: 30px;
  }

  .fl-craft__text {
    font-size: 14px;
    line-height: 2;
  }

  .fl-craft__text + .fl-craft__text {
    margin-top: 24px;
  }
}


/* =========================
  Texture
========================= */

.fl-texture {
  padding-top: 78px;
}

.fl-texture__inner {
  display: grid;
  grid-template-columns: 576px 424px;
  align-items: start;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.fl-texture__image {
  width: 576px;
  max-width: 576px;
}

.fl-texture__image img {
  width: 576px;
  max-width: 576px;
  height: 514px;
  object-fit: cover;
}

.fl-texture__content {
  width: 424px;
  height: 514px;
  min-height: 0;
  padding: 72px 42px 38px 58px;
  color: #fff;
  background-color: #203241;
  background-image: url("../images/contents04_bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.fl-texture__heading {
  margin: 0 0 42px;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.1em;
}

.fl-texture__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0.04em;
}

.fl-texture__text + .fl-texture__text {
  margin-top: 26px;
}

/* Tablet */
@media screen and (max-width: 1024px) {
  .fl-texture {
    padding-top: 72px;
  }

  .fl-texture__inner {
    grid-template-columns: 57.6% 42.4%;
  }

  .fl-texture__image {
    width: 100%;
    max-width: 576px;
  }

  .fl-texture__image img {
    width: 100%;
    max-width: 576px;
    height: auto;
    object-fit: cover;
  }

  .fl-texture__content {
    width: 100%;
    height: auto;
    min-height: auto;
    padding: 6.8vw 4.2vw 5.5vw;
  }

  .fl-texture__heading {
    font-size: 23px;
    line-height: 1.75;
    margin-bottom: 34px;
  }

  .fl-texture__text {
    font-size: 14px;
    line-height: 1.85;
  }

  .fl-texture__text + .fl-texture__text {
    margin-top: 24px;
  }
}

/* SP */
@media screen and (max-width: 767px) {
  .fl-texture {
    padding-top: 60px;
  }

  .fl-texture__inner {
    display: block;
    max-width: 576px;
  }

  .fl-texture__image {
    width: 100%;
    max-width: 576px;
    margin: 0 auto;
  }

  .fl-texture__image img {
    width: 100%;
    max-width: 576px;
    height: auto;
    object-fit: cover;
  }

  .fl-texture__content {
    width: 100%;
    height: auto;
    min-height: auto;
    padding: 46px 32px 44px;
  }

  .fl-texture__heading {
    font-size: 22px;
    line-height: 1.9;
    margin-bottom: 34px;
  }

  .fl-texture__text {
    font-size: 14px;
    line-height: 2;
  }

  .fl-texture__text + .fl-texture__text {
    margin-top: 24px;
  }
}
/* =========================
  Scene Gallery
========================= */

.fl-scene {
  padding-top: 82px;
  text-align: center;
}

.fl-scene__heading {
  margin-bottom: 48px;
  line-height: 1.9;
}

/* スワイプエリア */
.fl-scene-slider {
  width: 100%;
  overflow: hidden;
}

.fl-scene-slider__track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.fl-scene-slider__track::-webkit-scrollbar {
  display: none;
}

.fl-scene-slider__track:active {
  cursor: grabbing;
}

.fl-scene-slider__item {
  flex: 0 0 416px;
  max-width: 416px;
  scroll-snap-align: start;
}

.fl-scene-slider__item img {
  width: 100%;
  max-width: 416px;
  height: auto;
}

/* Tablet */
@media screen and (max-width: 1024px) {
  .fl-scene {
    padding-top: 72px;
  }

  .fl-scene__heading {
    margin-bottom: 40px;
  }

  .fl-scene-slider {
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
  }

  .fl-scene-slider__track {
    padding-right: 24px;
  }
}

/* SP */
@media screen and (max-width: 767px) {
  .fl-scene {
    padding-top: 60px;
  }

  .fl-scene__heading {
    margin-bottom: 32px;
  }

  .fl-scene-slider {
    margin-left: -18px;
    margin-right: -18px;
    padding-left: 18px;
  }

  .fl-scene-slider__track {
    padding-right: 18px;
  }

  .fl-scene-slider__item {
    flex: 0 0 82vw;
    max-width: 416px;
  }
}

/* =========================
  Select
========================= */

.fl-select {
  padding-top: 76px;
}

.fl-select__grid {
  display: grid;
  grid-template-columns: 500px 500px;
  grid-template-rows: auto auto;
  row-gap: 32px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.fl-select__image img {
  width: 100%;
  height: auto;
}

.fl-select__image--colors {
  width: 500px;
  max-width: 500px;
}

.fl-select__image--bases {
  width: 499px;
  max-width: 499px;
  justify-self: end;
}

/* テキストカード */
.fl-select__card {
  width: 292px;
  height: 292px;
  aspect-ratio: 1 / 1;
  color: #1b1b1b;
  background: #fff;
  text-align: left;
  overflow: hidden;
}

.fl-select__card--seat {
  justify-self: center;
  margin-top: 16px;
  padding: 44px 26px 28px;
}

.fl-select__card--base {
  justify-self: center;
  margin-top: 38px;
  padding: 36px 26px 24px;
}

.fl-select__label {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.fl-select__title {
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.fl-select__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: 0.05em;
}

.fl-select__label--base-color {
  margin-top: 20px;
}

.fl-select__card--base .fl-select__title {
  margin-bottom: 8px;
}

.fl-select__card--base .fl-select__text {
  line-height: 1.55;
}

.fl-select__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.fl-select__swatch {
  display: block;
  width: 27px;
  height: 27px;
}

/* 座面カラー */
.fl-select__swatch--benihi {
  background: #ad4c43;
}

.fl-select__swatch--kikujin {
  background: #737e60;
}

.fl-select__swatch--inaho {
  background: #efbd61;
}

.fl-select__swatch--tetsukon {
  background: #1f2d3a;
}

.fl-select__swatch--usubenifuji {
  background: #b9a5bd;
}

.fl-select__swatch--bengara {
  background: #ad5632;
}

.fl-select__swatch--rikyushiracha {
  background: #b8ad82;
}

/* 脚部カラー */
.fl-select__swatch--suzu {
  background: #a2a6a4;
}

.fl-select__swatch--sumi {
  background: #333333;
}

.fl-select__swatch--nyuhaku {
  background: #ddd4c1;
}

/* Tablet */
@media screen and (max-width: 1024px) {
  .fl-select {
    padding-top: 68px;
  }

  .fl-select__grid {
    grid-template-columns: 1fr 1fr;
  }

  .fl-select__image--colors,
  .fl-select__image--bases {
    width: 100%;
    max-width: 500px;
  }

  .fl-select__card {
    width: 292px;
    height: 292px;
  }
}

/* SP */
@media screen and (max-width: 767px) {
  .fl-select {
    padding-top: 60px;
  }

  .fl-select__grid {
    display: flex;
    flex-direction: column;
    row-gap: 0;
  }

  .fl-select__image--colors,
  .fl-select__image--bases {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .fl-select__card {
    width: min(100%, 320px);
    height: auto;
    aspect-ratio: 1 / 1;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .fl-select__card--seat {
    margin-top: 28px;
    margin-bottom: 44px;
    padding: 42px 25px 30px;
  }

  .fl-select__card--base {
    margin-top: 28px;
    margin-bottom: 44px;
    padding: 38px 25px 28px;
  }

  .fl-select__label,
  .fl-select__title,
  .fl-select__text {
    font-size: 14px;
  }

  .fl-select__title {
    margin-bottom: 16px;
  }

  .fl-select__card--base .fl-select__title {
    margin-bottom: 8px;
  }

  .fl-select__label--base-color {
    margin-top: 18px;
  }

  .fl-select__swatches {
    gap: 7px;
    margin-top: 13px;
  }

  .fl-select__swatch {
    width: 25px;
    height: 25px;
  }
}

@media screen and (max-width: 767px) {
  .fl-select__image--colors {
    order: 1;
  }

  .fl-select__card--seat {
    order: 2;
  }

  .fl-select__image--bases {
    order: 3;
  }

  .fl-select__card--base {
    order: 4;
  }

  .fl-select__image--bases {
    margin-top: 0;
    margin-bottom: 28px;
  }

  .fl-select__card--base {
    margin-top: 0;
    margin-bottom: 0;
  }
}

/* =========================
  Draw Border Animation
========================= */

.js-draw-border {
  position: relative;
  border: none;
  background-image:
    linear-gradient(#555, #555),
    linear-gradient(#555, #555),
    linear-gradient(#555, #555),
    linear-gradient(#555, #555);
  background-repeat: no-repeat;
  background-position:
    left top,
    right top,
    right bottom,
    left bottom;
  background-size:
    0 1px,
    1px 0,
    0 1px,
    1px 0;
}

.js-border-section.is-border-active .js-draw-border {
  animation: drawSquareBorder 1.4s ease forwards;
}

.js-border-section.is-border-active .js-draw-border:nth-of-type(2) {
  animation-delay: 0.2s;
}

@keyframes drawSquareBorder {
  0% {
    background-size:
      0 1px,
      1px 0,
      0 1px,
      1px 0;
  }

  25% {
    background-size:
      100% 1px,
      1px 0,
      0 1px,
      1px 0;
  }

  50% {
    background-size:
      100% 1px,
      1px 100%,
      0 1px,
      1px 0;
  }

  75% {
    background-size:
      100% 1px,
      1px 100%,
      100% 1px,
      1px 0;
  }

  100% {
    background-size:
      100% 1px,
      1px 100%,
      100% 1px,
      1px 100%;
  }
}

.fl-select__card--base.js-draw-border {
  animation-delay: 0.2s;
}

/* =========================
  Catalog CTA
========================= */

.fl-catalog {
  padding-top: 72px;
}

.fl-catalog__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}

.fl-catalog__text p {
  margin: 0;
  font-size: 25px;
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: #1b1b1b;
}

.fl-catalog__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fl-catalog__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  min-height: 60px;
  padding: 16px 16px;
  border-radius: 999px;
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0em;
  text-align: center;
  transition: opacity 0.25s ease;
}

.fl-catalog__button:hover {
  opacity: 0.82;
}

.fl-catalog__button--shop {
  background: #eab75f;
}

.fl-catalog__button--download {
  background: #b9a5bd;
}

/* Tablet */
@media screen and (max-width: 1024px) {
  .fl-catalog {
    padding-top: 64px;
  }

  .fl-catalog__inner {
    max-width: 760px;
  }

  .fl-catalog__text p {
    font-size: 23px;
  }
}

/* SP */
@media screen and (max-width: 767px) {
  .fl-catalog {
    padding-top: 56px;
  }

  .fl-catalog__inner {
    display: block;
    max-width: 420px;
    text-align: center;
  }

  .fl-catalog__text p {
    font-size: 21px;
    line-height: 1.9;
  }

  .fl-catalog__buttons {
    align-items: center;
    gap: 14px;
    margin-top: 32px;
  }

  .fl-catalog__button {
    width: min(100%, 280px);
    min-height: 56px;
    font-size: 14px;
  }
}

/* =========================
  Closing CTA
========================= */

.fl-closing {
  padding-top: 72px;
  padding-bottom: 70px;
}

.fl-closing__visual {
  position: relative;
  width: 100%;
  max-width: 999px;
  aspect-ratio: 999 / 386;
  margin: 0 auto;
  background-image: url("../images/contents07_images.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  overflow: hidden;
}

.fl-closing__copy {
  position: absolute;
  left: 82px;
  top: 58px;
  color: #fff;
  text-align: left;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.35);
}

.fl-closing__heading {
  margin: 0 0 44px;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.fl-closing__text {
  margin: 0;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.08em;
}

.fl-closing__text + .fl-closing__text {
  margin-top: 24px;
}

.fl-closing__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 70px;
}

.fl-closing__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  min-height: 60px;
  padding: 16px 24px;
  border-radius: 999px;
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
  transition: opacity 0.25s ease;
}

.fl-closing__button:hover {
  opacity: 0.82;
}

.fl-closing__button--customer {
  background: #ad4c43;
}

.fl-closing__button--business {
  background: #737e60;
}

/* Tablet */
@media screen and (max-width: 1024px) {
  .fl-closing {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .fl-closing__copy {
    left: 7.5%;
    top: 16%;
  }

  .fl-closing__heading {
    font-size: 23px;
    margin-bottom: 34px;
  }

  .fl-closing__text {
    font-size: 14px;
    line-height: 1.9;
  }

  .fl-closing__buttons {
    margin-top: 56px;
  }
}

/* SP */
@media screen and (max-width: 767px) {
  .fl-closing {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .fl-closing__visual {
    aspect-ratio: auto;
    height: 360px;
    background-size: auto 100%;
    background-position: left center;
  }

  .fl-closing__copy {
    left: 32px;
    top: 48px;
    right: 28px;
  }

  .fl-closing__heading {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 34px;
  }

  .fl-closing__text {
    font-size: 14px;
    line-height: 1.9;
  }

  .fl-closing__text + .fl-closing__text {
    margin-top: 20px;
  }

  .fl-closing__buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 42px;
  }

  .fl-closing__button {
    width: min(100%, 280px);
    min-height: 56px;
    font-size: 14px;
  }
}

/* =========================
  Footer
========================= */

.fl-footer {
  width: 100%;
}

.fl-footer__main {
  width: 100%;
  background: #1f2d3a;
  padding: 46px 20px 34px;
}

.fl-footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 110px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.fl-footer__logo {
  width: 188px;
  max-width: 188px;
}

.fl-footer__logo img {
  width: 100%;
  max-width: 188px;
  height: auto;
}

.fl-footer__info {
  color: #fff;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.fl-footer__address,
.fl-footer__tel,
.fl-footer__time {
  margin: 0;
}

.fl-footer__tel {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.fl-footer__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  min-height: 34px;
  margin-top: 14px;
  border-radius: 999px;
  background: #eab75f;
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-align: center;
  transition: opacity 0.25s ease;
}

.fl-footer__button:hover {
  opacity: 0.82;
}

.fl-footer__copyright {
  width: 100%;
  background: #737e60;
  color: #fff;
  padding: 9px 20px;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-align: center;
}

/* Tablet */
@media screen and (max-width: 1024px) {
  .fl-footer__inner {
    gap: 80px;
  }
}

/* SP */
@media screen and (max-width: 767px) {
  .fl-footer__main {
    padding: 44px 20px 34px;
  }

  .fl-footer__inner {
    display: block;
    text-align: center;
  }

  .fl-footer__logo {
    width: 180px;
    max-width: 180px;
    margin: 0 auto 30px;
  }

  .fl-footer__logo img {
    max-width: 180px;
  }

  .fl-footer__info {
    font-size: 12px;
    line-height: 1.8;
  }

  .fl-footer__tel {
    margin-top: 18px;
    font-size: 17px;
  }

  .fl-footer__button {
    width: 190px;
    min-height: 38px;
    margin: 18px auto 0;
  }

  .fl-footer__copyright {
    padding: 10px 16px;
    font-size: 10px;
  }
}

/* =========================
  Brush Text Animation
========================= */

.js-brush-text .brush-char {
  display: inline-block;
  opacity: 0;
  filter: blur(3px);
  transform: translateY(0.35em);
}

.js-brush-text.is-active .brush-char,
.js-brush-sequence.is-active .brush-char {
  animation: brushText 0.7s ease forwards;
  animation-delay: calc(var(--brush-start-delay, 0s) + (var(--char-index) * 0.075s));
}

.js-brush-text .brush-char {
  animation-fill-mode: forwards;
  will-change: opacity, transform;
}

@keyframes brushText {
  0% {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(0.35em);
  }

  55% {
    opacity: 0.8;
    filter: blur(1px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-brush-text .brush-char {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .js-brush-text.is-active .brush-char,
  .js-brush-sequence.is-active .brush-char {
    animation: none;
  }
}

/* =========================
  Brush Text SP Fix
  SPではblurを使わず滲み残りを防ぐ
========================= */

@media screen and (max-width: 767px) {
  .js-brush-text .brush-char {
    filter: none !important;
    transform: translate3d(0, 0.28em, 0);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  .js-brush-text.is-active .brush-char,
  .js-brush-sequence.is-active .brush-char {
    animation-name: brushTextSp;
    animation-duration: 0.65s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
  }

  @keyframes brushTextSp {
    0% {
      opacity: 0;
      transform: translate3d(0, 0.28em, 0);
    }

    100% {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
}

/* =========================
  Drag Scroll
========================= */

.js-drag-scroll {
  cursor: grab;
  user-select: none;
}

.js-drag-scroll.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.js-drag-scroll img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* =========================
  Swipe Hint
========================= */

.fl-color-slider,
.fl-scene-slider {
  position: relative;
}

/* 右端の「まだ続きがある」グラデーション */
.fl-color-slider::after,
.fl-scene-slider::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  pointer-events: none;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0)
  );
  z-index: 2;
}

.fl-color-slider::after {
  height: calc(100% - 30px);
}

.fl-scene-slider::after {
  height: calc(100% - 18px);
}

/* 下部のガイド */
.fl-swipe-hint {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 12px;
  padding-right: 6px;
  color: #777;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.12em;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
}

.fl-swipe-hint span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.fl-swipe-hint span::before,
.fl-swipe-hint span::after {
  font-size: 13px;
  line-height: 1;
  opacity: 0.75;
}

.fl-swipe-hint span::before {
  content: "←";
}

.fl-swipe-hint span::after {
  content: "→";
  animation: swipeHintArrow 1.6s ease-in-out infinite;
}

@keyframes swipeHintArrow {
  0% {
    transform: translateX(0);
    opacity: 0.45;
  }

  50% {
    transform: translateX(5px);
    opacity: 1;
  }

  100% {
    transform: translateX(0);
    opacity: 0.45;
  }
}

/* SPでは少し中央寄せ */
@media screen and (max-width: 767px) {
  .fl-color-slider::after,
  .fl-scene-slider::after {
    width: 54px;
  }

  .fl-swipe-hint {
    justify-content: center;
    margin-top: 14px;
    padding-right: 0;
    font-size: 10px;
  }
}

/* =========================
  Floating CTA
========================= */

.fl-floating-cta {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fl-floating-cta__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  min-height: 50px;
  padding: 12px 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.fl-floating-cta__button:hover {
  opacity: 0.86;
  transform: translateY(-2px);
}

.fl-floating-cta__button--customer {
  background: #ad4c43;
}

.fl-floating-cta__button--business {
  background: #737e60;
}

@media screen and (max-width: 767px) {
  .fl-floating-cta {
    right: 0;
    left: 0;
    top: auto;
    bottom: 14px;
    transform: none;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    padding: 0 14px;
  }

  .fl-floating-cta__button {
    width: calc((100% - 10px) / 2);
    min-height: 48px;
    padding: 10px 12px;
    font-size: 12px;
    letter-spacing: 0.04em;
  }
}

@media screen and (max-width: 767px) {
  .fl-floating-cta {
    opacity: 1;
    visibility: visible;
    transition:
      opacity 0.45s ease,
      visibility 0.45s ease,
      transform 0.45s ease;
  }

  .fl-floating-cta.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
  }
}


/* =========================
  SP Font Size Adjustment
========================= */

@media screen and (max-width: 767px) {
  /* 通常本文 */
  .fl-text,
  .fl-fv__text,
  .fl-intro__text,
  .fl-craft__text,
  .fl-texture__text,
  .fl-closing__text {
    font-size: 15px !important;
    line-height: 2 !important;
    letter-spacing: 0.04em !important;
  }

  /* 正方形カード内テキスト */
  .fl-select__label,
  .fl-select__title,
  .fl-select__text {
    font-size: 15px !important;
    letter-spacing: 0.04em !important;
  }

  .fl-select__label,
  .fl-select__title {
    line-height: 1.55 !important;
  }

  .fl-select__text {
    line-height: 1.65 !important;
  }
}


/* =========================
  Texture Section Font Fit
  Noto Serif JP 対応
========================= */

.fl-texture__content {
  padding: 60px 42px 32px 56px;
}

.fl-texture__heading {
  font-size: 24px;
  line-height: 1.7;
  letter-spacing: 0.08em;
  margin-bottom: 34px;
}

.fl-texture__text {
  font-size: 14.5px;
  line-height: 1.75;
  letter-spacing: 0.03em;
}

.fl-texture__text + .fl-texture__text {
  margin-top: 22px;
}


/* =========================
  Responsive BR
========================= */

/* PC・タブレットで表示、SPで非表示 */
.fl-pc {
  display: inline;
}

/* SPだけ表示 */
.fl-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .fl-pc {
    display: none;
  }

  .fl-sp {
    display: inline;
  }
}