@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Noto Sans", sans-serif;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4035087719vw;
  }
}
@media (min-width: 1140px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* CTAボタン（共通） */
.action {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  max-width: 461px;
  width: 100%;
  height: 80px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.action__sub {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
}

.action__main {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
}

/* 通常ボタン（矢印付き） */
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 352px;
  width: 100%;
  height: 48px;
  padding: 0 32px 0 36px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  gap: 0px;
}

.btn__text {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
}

.btn__arrow {
  display: block;
  width: 13px;
  height: 13px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.action:hover {
  background-color: #004EA2;
  opacity: 1;
}

.btn:hover {
  background-color: #004EA2;
  gap: 10px;
  opacity: 1;
}

.action.shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .5) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg);
  -webkit-animation: shine 3s infinite;
          animation: shine 3s infinite;
}

@-webkit-keyframes shine {
  0% {
    left: -75%;
  }
  60% {
    left: 130%;
  }
  100% {
    left: 130%;
  }
}

@keyframes shine {
  0% {
    left: -75%;
  }
  60% {
    left: 130%;
  }
  100% {
    left: 130%;
  }
}
.inner {
  width: 100%;
  padding-right: 4%;
  padding-left: 4%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1140px;
    padding-right: 4%;
    padding-left: 4%;
  }
}

/* 色が敷かれてから画像が表示されるアニメーション */
.photoArea {
  position: relative;
  overflow: hidden;
}

.photoArea::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: #C7CCFF;
  overflow: hidden;
}

.photoArea.move::before {
  -webkit-animation: barAnime forwards 1s 1 ease 0.1s normal;
          animation: barAnime forwards 1s 1 ease 0.1s normal;
}

.photoArea img {
  opacity: 0;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.photoArea.move img {
  -webkit-animation: photoAnime forwards 1.2s 1 ease 0.5s normal;
          animation: photoAnime forwards 1.2s 1 ease 0.5s normal;
}

@-webkit-keyframes barAnime {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  68% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}

@keyframes barAnime {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  68% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@-webkit-keyframes photoAnime {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  35% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes photoAnime {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  35% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.test {
  font-size: 20px;
  font-size: 1.25rem;
  background-color: #333;
  color: #fff;
}

/* aboutセクション */
.about {
  position: relative;
  overflow-x: clip;
  padding: 64px 4% 16px;
}

.about__bg-circle {
  position: absolute;
  right: -713px;
  bottom: -343px;
  max-width: 1279px;
  max-height: 1279px;
  background-color: #f2f4ff;
  border-radius: 50%;
  z-index: -1;
  width: 100vw;
  height: 100vw;
}

.about__inner {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  z-index: 1;
}

/* メインコンテンツ（position配置） */
.about__content {
  position: relative;
  min-height: 1400px;
}

/* 見出し */
.about__heading {
  max-width: 540px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(42px, 3.75vw, 48px);
  line-height: 1.5;
  letter-spacing: 0;
  color: #333;
  z-index: 2;
  position: relative;
  margin-bottom: 32px;
  white-space: nowrap;
}

/* 共通画像スタイル */
.about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 画像01: 製造写真（右上） */
.about__image--01 {
  position: absolute;
  top: 180px;
  right: 0;
  width: 50%;
  aspect-ratio: 570/380;
  z-index: 1;
}

/* 説明エリア（テキスト＋ロゴ横並び） */
.about__description {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  z-index: 2;
  max-width: 1140px;
}

.about__text {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #333;
  width: 48%;
  margin-top: -10px;
}

.about__logo {
  max-width: 316px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  margin: 0 auto;
  margin-top: 12%;
}

.about__logo img {
  width: 100%;
  height: auto;
}

.about__image-wrap {
  position: relative;
}

/* 画像: 商品単体（左寄り） */
.about__image--product {
  position: absolute;
  left: -80px;
  top: 35%;
  width: 73%;
  z-index: 1;
}

/* 画像02: カトラリー使用写真（中央） */
.about__image--02 {
  position: absolute;
  left: 37%;
  top: 200px;
  width: 50%;
  aspect-ratio: 570/380;
  z-index: 1;
  top: 52%;
}

/* スペックリスト（左下） */
.about__spec-list {
  position: absolute;
  left: 0;
  top: 1135px;
  z-index: 2;
}

.about__spec-item {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #333;
}

/* 画像03: ペン置き写真（右下） */
.about__image--03 {
  position: absolute;
  right: -34%;
  top: 81%;
  width: 100%;
  aspect-ratio: 570/380;
  z-index: 1;
}

/* 背景の装飾画像 */
.about__product-bg {
  position: absolute;
  right: -5%;
  top: 55%;
  width: 800px;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.about__product-bg img {
  width: 100%;
  height: auto;
}

/* 吹き出し */
.about__bubble {
  position: absolute;
  right: 6%;
  bottom: 64px;
  padding: 0px 10px;
  background-color: #fff;
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 2;
  letter-spacing: 0;
  color: #333;
  -webkit-transform: translateY(20px) rotate(-16deg);
          transform: translateY(20px) rotate(-16deg);
  opacity: 0;
  z-index: 3;
}

/* 食洗機OKバッジ */
.about__badge {
  position: absolute;
  left: -11%;
  top: 62%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 127px;
  max-height: 127px;
  width: 17vw;
  height: 17vw;
  background-color: #e60012;
  border-radius: 50%;
  z-index: 2;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.about__badge.fadeIn {
  -webkit-animation: fadeInUp 0.5s ease 1.5s forwards;
          animation: fadeInUp 0.5s ease 1.5s forwards;
}

.about__badge-text {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
}

.photoArea.move .about__bubble {
  -webkit-animation: fadeInUpBubble 0.8s ease 1.5s forwards;
          animation: fadeInUpBubble 0.8s ease 1.5s forwards;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeInUpBubble {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px) rotate(-16deg);
            transform: translateY(20px) rotate(-16deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) rotate(-16deg);
            transform: translateY(0) rotate(-16deg);
  }
}
@keyframes fadeInUpBubble {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px) rotate(-16deg);
            transform: translateY(20px) rotate(-16deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) rotate(-16deg);
            transform: translateY(0) rotate(-16deg);
  }
}
/* SP対応 */
@media screen and (max-width: 768px) {
  .about {
    padding: 40px 4% 80px;
  }
  .about__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: auto;
  }
  .about__heading {
    position: static;
    max-width: 100%;
    font-size: 20px;
    white-space: normal;
    margin-bottom: 24px;
  }
  .about__image--01 {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-bottom: 24px;
    overflow: hidden;
  }
  .about__image--01 img {
    height: auto;
  }
  .about__description {
    position: static;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 100%;
    gap: 48px;
    margin-bottom: 24px;
  }
  .about__text {
    width: 100%;
    font-size: 16px;
    margin-top: 0;
  }
  .about__logo {
    max-width: 200px;
    margin-top: 0;
  }
  .about__image--product {
    position: static;
    width: 70%;
    margin: 0 auto;
  }
  .about__spec-list {
    position: static;
    margin-top: 48px;
    margin-bottom: 24px;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .about__spec-item {
    font-size: 14px;
  }
  .about__image--02 {
    position: relative;
    width: 100%;
    left: auto;
    top: auto;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .about__bg-circle {
    right: -400px;
    bottom: -200px;
    width: 500px;
    height: 500px;
  }
  .about__product-bg {
    display: none;
  }
  .about__badge-text {
    font-size: 16px;
  }
  .about__image-wrap {
    position: relative;
    width: 70%;
    margin: 0 auto;
    margin-left: 7%;
    max-width: 400px;
  }
  .about__bubble {
    position: absolute;
    right: 6%;
    bottom: 27px;
    padding: 0px 10px;
    background-color: #fff;
    font-family: "Noto Sans", sans-serif;
    font-weight: 600;
    font-size: 11px;
  }
}
/* companyセクション */
.company {
  background-color: #fafafa;
  padding: 128px 4% 256px;
}

.company__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px;
}

/* 見出し */
.company__heading {
  text-align: center;
}

.company__heading-en {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 100px;
  line-height: 1;
  letter-spacing: 0;
  color: #9fa3ae;
}

.company__heading-ja {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.2em;
  color: #333;
  margin-top: -14px;
  margin-bottom: -21px;
}

/* 説明文 */
.company__text {
  max-width: 946px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #333;
}

/* ギャラリー */
.company__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .company__gallery {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.company__gallery-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  aspect-ratio: 364/273;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .company__gallery-image {
    width: 100%;
    max-width: 460px;
  }
}
.company__gallery-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 会社情報テーブル */
.company__table {
  max-width: 946px;
  width: 100%;
  margin: 0;
}

.company__table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 32px 3%;
  border-bottom: 1px solid #c8c8c8;
}

.company__table-label {
  width: 120px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #333;
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .company {
    padding: 64px 4% 128px;
  }
  .company__heading-en {
    font-size: 64px;
  }
  .company__heading-ja {
    font-size: 24px;
  }
  .company__table-row {
    gap: 0px;
  }
  .company__table-label {
    text-align: left;
  }
}
.company__table-value {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #333;
  margin: 0;
}

/* CTAセクション */
.cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 64px 0;
}

@media screen and (max-width: 768px) {
  .cta {
    padding: 32px 4%;
  }
}
/* detailセクション */
.detail {
  background-color: #fafafa;
  padding: 128px 4%;
}

.detail__inner {
  max-width: 946px;
  margin: 0 auto;
}

/* 商品情報（画像＋テキスト） */
.detail__product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

@media screen and (max-width: 768px) {
  .detail__product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    max-width: 450px;
    margin: 0 auto;
  }
}
.detail__product-image {
  max-width: 461px;
  overflow: hidden;
}

.detail__product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.detail__product-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.detail__product-name {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #333;
  margin-bottom: 32px;
}

.detail__logo {
  max-width: 300px;
  margin-left: 20%;
}

.detail__logo img {
  width: 100%;
  height: auto;
}

/* スペック表 */
.detail__spec {
  margin-bottom: 32px;
}

.detail__spec-title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 6px;
  color: #333;
  text-align: center;
  padding: 16px 0;
  border-bottom: 1px solid #c8c8c8;
}

.detail__spec-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  padding: 32px 0;
  border-bottom: 1px solid #c8c8c8;
  padding-left: 27px;
}

.detail__spec-label {
  width: 120px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #333;
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.detail__spec-value {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #333;
}

/* 注意書き */
.detail__note {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #333;
  margin-top: 32px;
}

@media screen and (max-width: 768px) {
  .detail {
    padding: 64px 4%;
  }
  .detail__logo {
    margin: 0 auto;
  }
  .detail__spec-row {
    gap: 0px;
    padding-left: 4%;
  }
  .detail__spec-label {
    width: 100px;
    text-align: left;
  }
}
/* フッター */
.footer {
  background-color: #000;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  padding: 64px 0;
}

.footer__logo {
  max-width: 294px;
}

.footer__logo img {
  width: 100%;
  height: auto;
}

.footer__address {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 64px;
}

.footer__nav-link {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  text-decoration: none;
}

.footer__copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 24px;
  background-color: #383838;
}

.footer__copyright small {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    text-align: center;
  }
}
/* ファーストビュー */
.fv {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 0 4%;
  /* 背景画像をフェードイン */
}
.fv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../images/fv.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 0;
  -webkit-animation: fv-bg-fadein 2.5s ease forwards;
          animation: fv-bg-fadein 2.5s ease forwards;
}

.fv__inner {
  position: relative;
  max-width: 1140px;
  height: 100%;
  margin: 0 auto;
  z-index: 1;
}

.fv__message {
  position: absolute;
  top: 12%;
  left: 0;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(54px, 6.4vw, 64px);
  line-height: 1.5;
  letter-spacing: 0;
  color: #333;
}

/* H1：1行ごとの白マスク＋テキスト出現アニメーション */
.fv__message-line {
  display: block;
  position: relative;
  overflow: hidden;
  /* 白いマスク */
}
.fv__message-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  -webkit-transform: translateX(-101%);
          transform: translateX(-101%);
  z-index: 1;
  -webkit-animation: fv-line-mask 1s cubic-bezier(0.76, 0, 0.24, 1) both;
          animation: fv-line-mask 1s cubic-bezier(0.76, 0, 0.24, 1) both;
}
.fv__message-line:nth-child(1)::before {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.fv__message-line:nth-child(1) .fv__message-text {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.fv__message-line:nth-child(2)::before {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.fv__message-line:nth-child(2) .fv__message-text {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.fv__message-line:nth-child(3)::before {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
.fv__message-line:nth-child(3) .fv__message-text {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

.fv__message-text {
  display: inline-block;
  opacity: 0;
  -webkit-animation: fv-line-text 1s ease both;
          animation: fv-line-text 1s ease both;
}

.fv__logo {
  position: absolute;
  bottom: 180px;
  left: 0;
  max-width: 450px;
  width: 100%;
  top: 52%;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: fv-fadein-up 0.8s ease 2s both;
          animation: fv-fadein-up 0.8s ease 2s both;
}

.fv__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.fv__subtitle {
  position: absolute;
  bottom: 120px;
  left: 0;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #333;
  top: 83%;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: fv-fadein-up 0.8s ease 2.3s both;
          animation: fv-fadein-up 0.8s ease 2.3s both;
}

.fv__scroll {
  position: absolute;
  bottom: 70px;
  left: 50%;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  color: #333;
  text-align: center;
  opacity: 0;
  -webkit-animation: fv-scroll-fadein 0.8s ease 2.6s both;
          animation: fv-scroll-fadein 0.8s ease 2.6s both;
}

.fv__scroll::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  width: 20px;
  height: 20px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  -webkit-animation: scroll-down 1.5s infinite;
          animation: scroll-down 1.5s infinite;
}

/* ===== アニメーション定義 ===== */
/* 背景フェードイン */
@-webkit-keyframes fv-bg-fadein {
  to {
    opacity: 1;
  }
}
@keyframes fv-bg-fadein {
  to {
    opacity: 1;
  }
}
/* H1白マスク：左から登場 → 右へ退場 */
@-webkit-keyframes fv-line-mask {
  0% {
    -webkit-transform: translateX(-101%);
            transform: translateX(-101%);
  }
  40% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  60% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(101%);
            transform: translateX(101%);
  }
}
@keyframes fv-line-mask {
  0% {
    -webkit-transform: translateX(-101%);
            transform: translateX(-101%);
  }
  40% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  60% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(101%);
            transform: translateX(101%);
  }
}
/* H1テキスト：マスクが被っているタイミングで出現 */
@-webkit-keyframes fv-line-text {
  0%, 39% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fv-line-text {
  0%, 39% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
/* ロゴ・サブテキストのフェードアップ */
@-webkit-keyframes fv-fadein-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fv-fadein-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* スクロールインジケーターのフェードアップ（translateX(-50%)を維持） */
@-webkit-keyframes fv-scroll-fadein {
  from {
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(20px);
            transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
}
@keyframes fv-scroll-fadein {
  from {
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(20px);
            transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
}
/* スクロール矢印の上下ループ */
@-webkit-keyframes scroll-down {
  0% {
    opacity: 0;
    bottom: -16px;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    bottom: -32px;
  }
}
@keyframes scroll-down {
  0% {
    opacity: 0;
    bottom: -16px;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    bottom: -32px;
  }
}
@media screen and (max-width: 768px) {
  .fv__message {
    font-size: 32px;
    top: 6%;
  }
  .fv__logo {
    max-width: 250px;
    top: 33%;
  }
  .fv__subtitle {
    font-size: 14px;
    top: 68%;
  }
  .fv__scroll {
    bottom: 120px;
  }
}
/* purchaseセクション */
.purchase {
  padding: 128px 4%;
}

.purchase__title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: 0;
  color: #333;
  text-align: center;
  margin-bottom: 64px;
}

.purchase__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 90px 24px;
  max-width: 946px;
  margin: 0 auto 64px;
  margin-bottom: 128px;
}

/* 購入カード */
.purchase-card {
  max-width: 461px;
  width: 100%;
}

.purchase-card__image {
  width: 100%;
  aspect-ratio: 461/307;
  overflow: hidden;
}

.purchase-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.purchase-card__note {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
  color: #333;
  text-align: right;
  margin-top: 8px;
}

.purchase-card__info {
  margin-top: 16px;
}

.purchase-card__name {
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0;
  color: #333;
  margin-bottom: 8px;
  padding-right: 10px;
}

.purchase-card__price {
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
  color: #333;
  text-align: right;
  margin-bottom: 16px;
}

.purchase-card__price-margin {
  margin-top: 45px;
}

.purchase-card__price span {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0;
  color: #333;
  text-align: right;
  margin-bottom: 16px;
}

/* お問い合わせエリア */
.purchase__inquiry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}

.purchase__inquiry-text {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
  color: #333;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .purchase {
    padding: 64px 4%;
  }
  .purchase__title {
    font-size: 27px;
    margin-bottom: 32px;
  }
  .purchase__cards {
    margin-bottom: 64px;
  }
  .purchase__inquiry-text {
    font-size: 16px;
  }
}
/* sceneセクション */
.scene {
  padding: 64px 0 128px;
}

.scene__title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: 0;
  color: #333;
  text-align: center;
  margin-bottom: 32px;
  padding: 0 4%;
}

.scene__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 4%;
}

@media screen and (max-width: 768px) {
  .scene__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 32px;
  }
}
/* sceneカード */
.scene-card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 364px;
  min-width: 0;
}

@media screen and (max-width: 768px) {
  .scene-card {
    max-width: 460px;
    width: 100%;
  }
}
.scene-card__image {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.scene-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.scene-card__body {
  padding: 16px;
  margin-top: -45px;
}

.scene-card__category {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: clamp(40px, 3.5vw, 48px);
  line-height: 1;
  letter-spacing: 0;
  color: #777;
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 10;
}

.scene-card__subtitle {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.5vw, 28px);
  line-height: 1;
  letter-spacing: 0;
  color: #333;
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #c8c8c8;
  margin-bottom: 16px;
}

.scene-card__text {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  color: #333;
}

@media screen and (max-width: 768px) {
  .scene {
    padding: 64px 0;
  }
  .scene__title {
    font-size: 24px;
  }
  .scene-card__category {
    font-size: 48px;
  }
}
/* 動画セクション */
.video {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.video__container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}

.video__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video__player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.video__poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  z-index: 2;
}
.video__poster.is-hidden {
  display: none;
}
/*# sourceMappingURL=styles.css.map */
