@charset "utf-8";

@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500;700;900&display=swap");

/* 基本スタイル */
:root {
  --primary-color: #f23192;
  --text-color: #4d4d4d;
  --background-color: #ffdcd6;
  --section-padding: 80px 0;
}

html {
  font-size: 62.5%;
}

@media screen and (max-width: 1366px) {
  html {
    font-size: 0.732vw;
  }
}

@media screen and (max-width: 1024px) {
  html {
    font-size: 0.976vw;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 2.544vw;
  }
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.6rem;
  color: var(--text-color);
  line-height: 1.6;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  background-color: var(--background-color);
}

#top {
  display: inline;
  height: 0;
  width: 0;
  visibility: hidden;
}

.container {
  position: relative;
  max-width: 94.8rem;
  margin: 0 auto;
  padding: 0 2.4rem;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.section {
  padding: var(--section-padding);
}

.section-title {
  position: relative;
  margin-bottom: 5.6rem;
  font-size: 4.5rem;
  letter-spacing: 0.11em;
  color: var(--primary-color);
  text-align: center;
}

.section-title span {
  position: relative;
  display: inline-block;
  padding-inline: 1.2rem;
  padding-bottom: 0.2rem;
}

.section-title span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.7rem;
  border-radius: 100rem;
  background-color: var(--primary-color);
}

/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-color);
  z-index: 1000;
  padding: 2.1rem 0;
}

.header-container {
  margin: 0 auto;
  padding-left: 10rem;
  padding-right: 10rem;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  line-height: 1;
}

.logo img {
  max-width: 25rem;
  height: auto;
}

.nav-list {
  display: flex;
}

.nav-item {
  margin-left: 30px;
}

.nav-item a {
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  color: #ffffff;
}

.nav-item a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

@media screen and (min-width: 1025px) {
  .nav-item a:hover::after {
    width: 100%;
  }
}

/* ハンバーガーメニュー */
.hamburger-menu {
  display: none;
  width: 3rem;
  height: 2.4rem;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-menu span {
  display: block;
  position: absolute;
  width: 100%;
  height: 0.3rem;
  background-color: #ffffff;
  border-radius: 10rem;
  transition: all 0.3s ease-in-out;
}

.hamburger-menu span:nth-child(1) {
  top: 0;
}

.hamburger-menu span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-menu span:nth-child(3) {
  bottom: 0;
}

/* ハンバーガーメニュー アクティブ状態 */
.hamburger-menu.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* ヒーローセクション（slickスライダー） */
.hero {
  position: relative;
  overflow: hidden;
  margin-top: 8rem;
}

.main-slider {
  width: 100%;
  height: 100%;
}

.slide-item {
  position: relative;
  height: 58.2rem;
}

.slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONCEPTセクション */
.concept {
  padding: 10rem 0;
}

.concept .section-title {
  padding-bottom: 6.4rem;
  margin-bottom: 0;
}

.concept .section-title img {
  width: 40rem;
}

.concept-content {
  margin: 0 auto;
  text-align: center;
}

.concept-text {
  margin: 0 auto;
  line-height: 2;
  font-size: 1.2rem;
}

.concept-text p {
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--primary-color);
  margin-bottom: 2em;
}

.concept-text p:last-child {
  margin-bottom: 0;
}

/* LINE UPセクション */
.lineup {
  padding: 8rem 0 4rem;
  overflow-x: hidden;
}

.lineup-content {
  position: relative;
  padding-top: 10.7rem;
  padding-bottom: 8rem;
  background-image: url(../images/webp/bg_lineup.webp);
  background-size: 100%;
  background-position: top;
  background-repeat: no-repeat;
}

.lineup-content-laed {
  position: relative;
  font-size: 3rem;
  letter-spacing: 0.11em;
  line-height: 1.23;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 10rem;
}

.lineup-content-type {
  position: absolute;
  top: 2rem;
  left: 6.4rem;
  width: 18rem;
  height: 18rem;
}

.lineup-section {
  margin-bottom: 6rem;
  padding-inline: 5.6rem;
}

.lineup-section-title {
  font-size: 2.4rem;
  letter-spacing: 0.07em;
  line-height: 1.23;
  border-radius: 0.8rem;
  color: #ffffff;
  background-color: var(--primary-color);
  text-align: center;
  padding-block: 0.53rem;
  margin-bottom: 3.2rem;
}

.lineup-section-subtitle {
  font-size: 2.8rem;
  letter-spacing: 0.11em;
  color: var(--primary-color);
  text-align: center;
}

.lineup-section-subtitle span {
  position: relative;
  display: inline-block;
  line-height: 1;
  padding-inline: 1.6rem;
}

.lineup-section-subtitle span::before,
.lineup-section-subtitle span::after {
  content: "";
  position: absolute;
  top: 0.2rem;
  left: 0;
  width: 0.3rem;
  height: 3.2rem;
  border-radius: 100rem;
  background-color: var(--primary-color);
  transform: rotate(-25deg);
}

.lineup-section-subtitle span::after {
  left: auto;
  right: 0;
  transform: rotate(25deg);
}

.lineup-section-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 3rem;
}

.lineup-item {
  flex: 1;
}

.lineup-section-content.-col3 .lineup-item {
  flex-basis: calc(33.333% - 4rem);
}

.lineup-section-content.-col2 .lineup-item {
  flex-basis: calc(50% - 2rem);
}

.lineup-item .lineup-item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24rem;
}

.lineup-item p {
  font-size: 1.9rem;
  letter-spacing: 0.05em;
}

.lineup-item-label {
  max-width: 10rem;
  font-size: 1.8rem;
  letter-spacing: 0.07em;
  line-height: 1;
  border-radius: 0.7rem;
  color: #ffffff;
  background-color: var(--primary-color);
  text-align: center;
  padding: 0.4rem 0 0.6rem;
  margin-bottom: 0.5rem;
}

.lineup-item ul {
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.lineup-item ul li {
  list-style-type: disc;
}

.lineup-item-note {
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 1.6rem;
}

.lineup-section.-scene .lineup-section-content.-col3 {
  margin-top: 1rem;
  text-align: center;
}

.lineup-section.-scene .lineup-section-content.-col3 .lineup-item-img-cover,
.lineup-section.-point .lineup-section-content.-col3 .lineup-item-img-cover {
  position: relative;
  display: inline-block;
}

.lineup-section.-scene .lineup-section-content.-col3 .lineup-item-img-cover img,
.lineup-section.-point
  .lineup-section-content.-col3
  .lineup-item-img-cover
  img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lineup-section.-scene
  .lineup-section-content.-col3
  .lineup-item:nth-child(1)
  .lineup-item-img-cover {
  aspect-ratio: 336/491;
  width: 16.4rem;
}

.lineup-section.-scene
  .lineup-section-content.-col3
  .lineup-item:nth-child(2)
  .lineup-item-img-cover {
  aspect-ratio: 258/192;
  width: 27.8rem;
}

.lineup-section.-scene
  .lineup-section-content.-col3
  .lineup-item:nth-child(2)
  .lineup-item-img-cover
  img {
  object-position: 50% 40%;
}

.lineup-section.-scene
  .lineup-section-content.-col3
  .lineup-item:nth-child(3)
  .lineup-item-img-cover {
  aspect-ratio: 188/214;
  width: 21.8rem;
}

.lineup-section.-product {
  margin-bottom: 3.2rem;
}

.lineup-section.-product .lineup-section-content.-col2 {
  margin-top: 6.4rem;
}

.lineup-section.-product .lineup-section-content.-col2 .lineup-item p,
.lineup-section.-product .lineup-section-content.-col2 .lineup-item ul {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.lineup-section.-product
  .lineup-section-content.-col2
  .lineup-item:nth-child(1)
  img {
  display: block;
  width: 25rem;
  margin: 0 auto;
}

.lineup-section.-point {
  margin-bottom: 0;
}

.lineup-section.-point .lineup-section-subtitle {
  margin-bottom: 3.2rem;
}

.lineup-section.-point .lineup-item .lineup-item-img {
  height: 18.9rem;
  margin-bottom: 0;
}

.lineup-section.-point
  .lineup-section-content.-col3
  .lineup-item:nth-child(1)
  .lineup-item-img-cover {
  aspect-ratio: 201/164;
  width: 23.1rem;
}

.lineup-section.-point
  .lineup-section-content.-col3
  .lineup-item:nth-child(1)
  .lineup-item-img-cover
  img {
}

.lineup-section.-point
  .lineup-section-content.-col3
  .lineup-item:nth-child(2)
  .lineup-item-img-cover {
  aspect-ratio: 217/189;
  width: 22.7rem;
}

.lineup-section.-point
  .lineup-section-content.-col3
  .lineup-item:nth-child(2)
  .lineup-item-img-cover
  img {
}

.lineup-section.-point
  .lineup-section-content.-col3
  .lineup-item:nth-child(3)
  .lineup-item-img-cover {
  aspect-ratio: 192/177;
  width: 24.3rem;
}

.lineup-section.-point
  .lineup-section-content.-col3
  .lineup-item:nth-child(3)
  .lineup-item-img-cover
  img {
}

.lineup-section.-point .lineup-item p {
  text-align: center;
  line-height: 1.4;
  letter-spacing: -0.05em;
}

/* VOICEセクション */
.voice {
  padding: 4.8rem 0 4rem;
}

.voice .section-title {
  margin-bottom: 4rem;
}

.voice-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.voice-item {
  flex: 1;
}

.voice-item img {
  width: 100%;
  height: auto;
}

/* Q&Aセクション */
.faq {
  /* padding: 4.8rem 0 4rem; */
  padding: 4.8rem 0 16rem;
}

.faq-content {
  padding: 5.6rem 11rem 4rem 10rem;
  border-radius: 2rem;
  background-color: var(--primary-color);
}

.faq-item {
  font-size: 2rem;
  letter-spacing: 0.03em;
}

.faq-item + .faq-item {
  margin-top: 4rem;
}

.faq-question {
  position: relative;
  margin-bottom: 1rem;
}

.faq-question::before {
  content: attr(data-number);
  position: absolute;
  top: -0.8rem;
  left: -6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5.1rem;
  padding-bottom: 0.4rem;
  font-size: 2.4rem;
  color: var(--primary-color);
  background-image: url(../images/webp/ico_qa.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.faq-question h3 {
  color: #ffffff;
}

.faq-answer {
  position: relative;
  padding: 0.8rem 1.6rem;
  border-radius: 0.8rem;
  background-color: #ffffff;
}

.faq-answer p {
  position: relative;
  padding-left: 2.4rem;
  color: var(--primary-color);
}

.faq-answer p::before {
  content: "A.";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.4rem;
  height: 2.4rem;
}

/* SHOPセクション */
.shop {
  padding: 4.8rem 0 16rem;
}

.shop .section-title {
  margin-bottom: 4rem;
}

.shop-content {
  background-color: #ffffff;
  border: solid 3px var(--primary-color);
  border-radius: 2rem;
  padding: 2.4rem 0;
  text-align: center;
}

.shop-content h3 {
  display: inline-block;
  font-size: 2rem;
  color: var(--primary-color);
  border: solid 2px var(--primary-color);
  border-radius: 0.8rem;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.shop-item-list {
  display: flex;
  justify-content: center;
  gap: 5.6rem;
}

.shop-item {
}

.shop-item a {
  display: block;
  font-weight: bold;
  font-size: 2.2rem;
  color: white;
  background-color: var(--primary-color);
  border: solid 2px var(--primary-color);
  width: auto;
  min-width: 15.2rem;
  padding: 0.4rem 0.5rem 0.8rem;
  border-radius: 2rem;
  transition: all 0.3s ease;
}

.shop-item a:hover {
  color: var(--primary-color);
  background-color: #ffcde3;
}

/* フッター */
.footer {
  background-color: var(--primary-color);
  color: white;
  padding: 4.8rem 0 2.4rem;
}

.footer-content {
}

.footer-contact {
  text-align: center;
}

.footer-contact-title {
  display: inline-block;
  font-size: 2rem;
  border: solid 2px #ffffff;
  border-radius: 0.8rem;
  padding: 0 1.65rem;
  margin-bottom: 2rem;
}

.footer-contact-text {
  font-size: 1.6rem;
  letter-spacing: 0.11em;
  line-height: 1.56;
}

.footer-logo {
  margin-top: 4rem;
  text-align: center;
}

.footer-logo a:hover {
  opacity: 0.8;
}

.footer-logo img {
  max-width: 24rem;
}

.footer-bottom {
  margin-top: 2.6rem;
  text-align: center;
}

/* ユーティリティクラス */
.letter-spacing-m005 {
  letter-spacing: -0.05em !important;
}

.letter-spacing-m001 {
  letter-spacing: -0.01em !important;
}

.letter-spacing-003 {
  letter-spacing: 0.03em !important;
}

.letter-spacing-005 {
  letter-spacing: 0.05em !important;
}

.letter-spacing-007 {
  letter-spacing: 0.07em !important;
}

.letter-spacing-013 {
  letter-spacing: 0.13em !important;
}

.u-hide_pc {
  display: none;
}

.u-hide_sp {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .letter-spacing-000-sp {
    letter-spacing: 0em !important;
  }

  .letter-spacing-005-sp {
    letter-spacing: 0.05em !important;
  }

  .letter-spacing-019-sp {
    letter-spacing: 0.19em !important;
  }

  .u-hide_pc {
    display: inline-block;
  }

  .u-hide_sp {
    display: none;
  }
}

/* レスポンシブ対応 */
@media screen and (min-width: 1367px) {
  .slide-item {
    height: auto;
  }
}

@media screen and (max-width: 1024px) {
  .header-container {
    padding-left: 1.6rem;
    padding-right: 3.2rem;
  }

  .concept {
    padding-bottom: 8rem;
  }
}

@media screen and (max-width: 767px) {
  /* 基本設定 */
  .section {
    padding: 6rem 0;
  }

  .container {
    width: 100%;
    padding: 0 2.4rem;
  }

  .section-title {
    font-size: 2.4rem;
    letter-spacing: 0.07em;
    margin-bottom: 2.4rem;
  }

  .section-title span {
    padding-inline: 1rem;
  }

  .section-title span::before {
    height: 0.3rem;
  }

  /* ヘッダー */
  .header {
    padding: 1.6rem 0;
  }

  .header-container {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }

  .logo {
    display: flex;
    align-items: center;
  }

  .logo img {
    max-width: 10rem;
  }

  /* ナビゲーション */
  .nav {
    position: fixed;
    top: 5.6rem;
    right: -100%;
    width: 100%;
    height: calc(100vh - 5.6rem);
    background-color: rgba(242, 49, 146, 0.95);
    z-index: 1000;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
  }

  .nav.active {
    right: 0;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 4rem 3.2rem;
  }

  .nav-item {
    margin: 1.6rem 0;
  }

  .nav-item a {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.15em;
  }

  /* ハンバーガーメニュー表示 */
  .hamburger-menu {
    display: block;
  }

  /* モバイルメニュー表示時の背景固定 */
  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
  }

  /* ヒーローセクション */
  .hero {
    margin-top: 5.6rem;
  }

  .slide-item {
    height: 51.5rem;
  }

  /* CONCEPTセクション */
  .concept {
    padding: 4rem 0;
  }

  .concept .section-title {
    padding-bottom: 3rem;
  }

  .concept .section-title img {
    width: 25.2rem;
  }

  .concept-text p {
    font-size: 1.6rem;
    margin-bottom: 1.5em;
  }

  /* LINE UPセクション */
  .lineup {
    padding: 6rem 0 2.4rem;
    overflow-x: visible;
  }

  .lineup-content {
    max-width: 29.9rem;
    margin: 0 auto;
    padding-top: 10.8rem;
    padding-bottom: 8.2rem;
    background-image: url(../images/webp/bg_lineup_sp.webp?20250528);
  }

  .lineup-content-laed {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 1.8rem;
  }

  .lineup-content-type {
    top: -0.8rem;
    left: 0;
    width: 11.4rem;
    height: 11.4rem;
  }

  .lineup-section {
    margin-bottom: 4.8rem;
    padding-inline: 2.2rem;
  }

  .lineup-section-title {
    font-size: 1.8rem;
    padding-block: 0.2rem 0.4rem;
    margin-bottom: 1.6rem;
    border-radius: 0.35rem;
  }

  .lineup-section-subtitle {
    font-size: 1.8rem;
    margin-bottom: 3.2rem;
  }

  .lineup-section-subtitle span {
    padding-inline: 1rem;
  }

  .lineup-section-subtitle span::before,
  .lineup-section-subtitle span::after {
    width: 0.2rem;
    height: 1.8rem;
  }

  .lineup-section-content {
    gap: 2rem;
  }

  .lineup-section-content.-col3 .lineup-item,
  .lineup-section-content.-col2 .lineup-item {
    flex-basis: 100%;
  }

  .lineup-item .lineup-item-img {
    height: auto;
    margin-bottom: 1rem;
  }

  .lineup-item-label {
    display: block;
    font-size: 1.6rem;
    margin-inline: auto;
    margin-bottom: 1.6rem;
  }

  .lineup-item p {
    font-size: 1.6rem;
  }

  .lineup-item-note {
    font-size: 1.5rem;
    margin-top: -0.8rem;
    text-align: left;
  }

  /* 個別調整 */
  .lineup-section.-scene .lineup-section-content.-col3 {
    gap: 4rem;
  }

  .lineup-section.-scene
    .lineup-section-content.-col3
    .lineup-item:nth-child(1)
    .lineup-item-img-cover {
    width: 12.3rem;
  }

  .lineup-section.-scene
    .lineup-section-content.-col3
    .lineup-item:nth-child(2)
    .lineup-item-img-cover {
    width: 20.3rem;
  }

  .lineup-section.-scene
    .lineup-section-content.-col3
    .lineup-item:nth-child(3)
    .lineup-item-img-cover {
    width: 15rem;
  }

  .lineup-section.-product {
    margin-bottom: 5.6rem;
  }

  .lineup-section.-product .lineup-section-content.-col2 {
    margin-top: 3.6rem;
    gap: 0;
  }

  .lineup-section.-product
    .lineup-section-content.-col2
    .lineup-item:nth-child(1) {
    margin-bottom: 2.4rem;
  }

  .lineup-section.-product
    .lineup-section-content.-col2
    .lineup-item:nth-child(1)
    img {
    width: 17.2rem;
  }

  .lineup-section.-point .lineup-item .lineup-item-img {
    height: auto;
    margin-bottom: 0;
  }

  .lineup-section.-product .lineup-section-content.-col2 .lineup-item p,
  .lineup-section.-product .lineup-section-content.-col2 .lineup-item ul {
    font-size: 1.5rem;
    margin-bottom: 2.8rem;
  }

  .lineup-section.-point .lineup-section-title {
    margin-bottom: 1.6rem;
  }

  .lineup-section.-point .lineup-section-content.-col3 {
    gap: 2.4rem;
  }

  .lineup-section.-point
    .lineup-section-content.-col3
    .lineup-item:nth-child(1)
    .lineup-item-img-cover {
    width: 17.1rem;
  }

  .lineup-section.-point
    .lineup-section-content.-col3
    .lineup-item:nth-child(2)
    .lineup-item-img-cover {
    width: 19.2rem;
  }

  .lineup-section.-point
    .lineup-section-content.-col3
    .lineup-item:nth-child(3)
    .lineup-item-img-cover {
    width: 17.1rem;
  }

  /* VOICEセクション */
  .voice {
    padding: 2.4rem 0;
  }

  .voice-content {
    gap: 2.4rem;
  }

  .voice-item {
    flex-basis: 100%;
    margin-bottom: 0;
  }

  .voice-item img {
    display: block;
    width: calc(100% - 5rem);
  }

  .voice-item:nth-child(even) img {
    margin-left: auto;
  }

  /* Q&Aセクション */
  .faq {
    /* padding: 2.4rem 0; */
    padding: 2.4rem 0 10rem;
  }

  .faq .section-title {
    margin-bottom: 3rem;
  }

  .faq-content {
    padding: 4rem 2rem 4rem;
  }

  .faq-item {
    font-size: 1.6rem;
  }

  .faq-item + .faq-item {
    margin-top: 3rem;
  }

  .faq-question {
    padding-left: 4.8rem;
    margin-bottom: 2rem;
  }

  .faq-question::before {
    top: 0.3rem;
    bottom: 0;
    left: -0.4rem;
    width: 4.4rem;
    height: 4.5rem;
    margin: auto;
    font-size: 2.1rem;
  }

  .faq-question h3 {
    font-size: 1.7rem;
    letter-spacing: 0.05em;
    line-height: 1.16;
  }

  .faq-answer {
    padding: 0.8rem 1rem;
  }

  .faq-answer p {
    font-size: 1.5rem;
    padding-left: 2rem;
    letter-spacing: 0.07em;
    line-height: 1.3;
  }

  /* SHOPセクション */
  .shop {
    padding: 2.4rem 0 10rem;
  }

  .shop-content {
    padding: 4rem 0;
    border-width: 2px;
    border-radius: 2rem;
  }

  .shop-content h3 {
    font-size: 1.8rem;
    line-height: 1.4;
    padding: 0 1.4rem;
    margin-bottom: 2.4rem;
    border-radius: 0.6rem;
  }

  .shop-item-list {
    flex-direction: column;
    gap: 2.4rem;
  }

  .shop-item a {
    font-size: 2rem;
    width: 13rem;
    padding: 0.3rem 1.5rem 0.5rem;
    margin-inline: auto;
    border-radius: 1.6rem;
  }

  /* フッター */
  .footer {
    padding: 2.7rem 0 2.4rem;
  }

  .footer .container {
    padding: 0 2rem;
  }

  .footer-contact-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .footer-contact-text {
    letter-spacing: 0.06em;
  }

  .footer-logo {
    margin-top: 4rem;
  }

  .footer-logo img {
    max-width: 24rem;
  }

  .footer-bottom {
    margin-top: 2rem;
    font-size: 1.4rem;
    letter-spacing: 0.03em;
  }
}

/* ornament */
.ornament {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
}

/* concept */
.ornament.-concept01 {
  top: 5rem;
  left: 0;
  width: 24.6rem;
  height: 58rem;
  background-image: url(../images/ornament/orn_concept_left.png?20250602);
}

.ornament.-concept02 {
  top: 12rem;
  right: -2rem;
  width: 29.8rem;
  height: 52.3rem;
  background-image: url(../images/ornament/orn_concept_right.png?20250602);
}

.ornament.-concept_move01 {
  top: 10.7rem;
  left: 8.3rem;
  width: 5.5rem;
  height: 5.2rem;
  background-image: url(../images/ornament/orn_concept_left_move01.png?20250602);
}

.ornament.-concept_move02 {
  top: 20rem;
  left: -6.8rem;
  width: 3.6rem;
  height: 3.4rem;
  background-image: url(../images/ornament/orn_concept_left_move02.png?20250602);
}

.ornament.-concept_move03 {
  top: 43rem;
  left: 17rem;
  width: 5rem;
  height: 5rem;
  background-image: url(../images/ornament/orn_concept_left_move03.png?20250602);
}

.ornament.-concept_move04 {
  top: 2rem;
  right: 3rem;
  width: 4.3rem;
  height: 4.3rem;
  background-image: url(../images/ornament/orn_concept_right_move01.png?20250602);
}

.ornament.-concept_move05 {
  top: 16rem;
  right: -6.3rem;
  width: 5.3rem;
  height: 5rem;
  background-image: url(../images/ornament/orn_concept_right_move02.png?20250602);
}

.ornament.-concept_move06 {
  top: 42.1rem;
  right: 10.8rem;
  width: 11.5rem;
  height: 9.1rem;
  background-image: url(../images/ornament/orn_concept_right_move03.png?20250602);
}

/* lineup */
.ornament.-lineup01 {
  top: 23.7rem;
  right: -8.4rem;
  width: 6.6rem;
  height: 6.2rem;
  background-image: url(../images/ornament/orn_lineup_01.png?20250602);
}

.ornament.-lineup02 {
  top: 37.3rem;
  right: -18.4rem;
  width: 9.6rem;
  height: 9.1rem;
  background-image: url(../images/ornament/orn_lineup_02.png?20250602);
}

.ornament.-lineup03 {
  top: 58.6rem;
  left: -23rem;
  width: 7.1rem;
  height: 6.7rem;
  background-image: url(../images/ornament/orn_lineup_03.png?20250602);
}

.ornament.-lineup04 {
  top: 74.6rem;
  left: -14.3rem;
  width: 9.8rem;
  height: 9.2rem;
  background-image: url(../images/ornament/orn_lineup_04.png?20250602);
}

.ornament.-lineup05 {
  top: 100rem;
  right: -15rem;
  width: 12.5rem;
  height: 14.8rem;
  background-image: url(../images/ornament/orn_lineup_05.png?20250602);
}

.ornament.-lineup06 {
  top: 126.3rem;
  left: -24.2rem;
  width: 10.4rem;
  height: 9.8rem;
  background-image: url(../images/ornament/orn_lineup_06.png?20250602);
}

.ornament.-lineup07 {
  top: 152.6rem;
  right: -25.7rem;
  width: 10.6rem;
  height: 10.5rem;
  background-image: url(../images/ornament/orn_lineup_07.png?20250602);
}

.ornament.-lineup08 {
  top: 162.2rem;
  left: -11.2rem;
  width: 6.5rem;
  height: 6.4rem;
  background-image: url(../images/ornament/orn_lineup_08.png?20250602);
}

.ornament.-lineup09 {
  top: 172.9rem;
  right: -13.4rem;
  width: 8.8rem;
  height: 9.1rem;
  background-image: url(../images/ornament/orn_lineup_09.png?20250602);
}

.ornament.-lineup10 {
  top: 176rem;
  left: -26.5rem;
  width: 13.2rem;
  height: 12.5rem;
  background-image: url(../images/ornament/orn_lineup_10.png?20250602);
}

/* voice */
.ornament.-voice01 {
  top: 1.8rem;
  left: -12.8rem;
  width: 9.5rem;
  height: 9.4rem;
  background-image: url(../images/ornament/orn_voice_01.png?20250602);
}

.ornament.-voice02 {
  top: 13.9rem;
  right: -10.8rem;
  width: 10.7rem;
  height: 10.3rem;
  background-image: url(../images/ornament/orn_voice_02.png?20250602);
}

.ornament.-voice03 {
  top: 34rem;
  right: -17.2rem;
  width: 5.8rem;
  height: 5.8rem;
  background-image: url(../images/ornament/orn_voice_03.png?20250602);
}

/* faq */
.ornament.-faq01 {
  top: 28.4rem;
  left: -23.8rem;
  width: 9rem;
  height: 8.5rem;
  background-image: url(../images/ornament/orn_faq_01.png?20250602);
}

.ornament.-faq02 {
  top: 43.5rem;
  left: -16.6rem;
  width: 11.6rem;
  height: 11rem;
  background-image: url(../images/ornament/orn_faq_02.png?20250602);
}

/* shop */
.ornament.-shop01 {
  top: -4.5rem;
  right: -6.1rem;
  width: 5.8rem;
  height: 5.7rem;
  background-image: url(../images/ornament/orn_shop_01.png?20250602);
}

.ornament.-shop02 {
  top: 9.8rem;
  right: -15.2rem;
  width: 9.1rem;
  height: 9rem;
  background-image: url(../images/ornament/orn_shop_02.png?20250602);
}

@media screen and (max-width: 1024px) {
  /* concept */
  .ornament.-concept01 {
    top: 0;
    left: 1rem;
  }

  .ornament.-concept02 {
    top: 8.5rem;
    right: 2.2rem;
  }

  .ornament.-concept_move01 {
    top: 6.9rem;
    left: 14.7rem;
  }

  .ornament.-concept_move02 {
    top: 17.9rem;
    left: -1.2rem;
  }

  .ornament.-concept_move03 {
    top: 37rem;
    left: 19.5rem;
  }

  .ornament.-concept_move04 {
    top: -0.7rem;
    right: 8.3rem;
  }

  .ornament.-concept_move05 {
    top: 13.5rem;
    right: -1.1rem;
  }

  .ornament.-concept_move06 {
    top: 39.2rem;
    right: 16.1rem;
  }

  /* lineup */
  .ornament.-lineup01 {
    top: 0;
    right: 10rem;
  }

  .ornament.-lineup02 {
    top: 10rem;
    right: 0;
  }

  .ornament.-lineup03 {
    top: 2.6rem;
    left: 14.5rem;
  }

  .ornament.-lineup04 {
    top: -4rem;
    left: -1rem;
  }

  .ornament.-lineup05 {
    display: none;
  }

  .ornament.-lineup06 {
    top: 11.2rem;
    left: 0;
    width: 6.1rem;
    height: 5.7rem;
  }

  .ornament.-lineup07 {
    display: none;
  }

  .ornament.-lineup08 {
    display: none;
  }

  .ornament.-lineup09 {
    display: none;
  }

  .ornament.-lineup10 {
    display: none;
  }

  /* voice */
  .ornament.-voice01 {
    top: -4.5rem;
    left: -0.2rem;
    right: auto;
    width: 4.9rem;
    height: 5rem;
    background-image: url(../images/ornament/orn_faq_01.png?20250602);
  }

  .ornament.-voice02 {
    top: 0rem;
    left: 5.6rem;
    width: 8.1rem;
    height: 7.7rem;
    background-image: url(../images/ornament/orn_faq_02.png?20250602);
  }

  .ornament.-voice03 {
    top: -3.7rem;
    left: auto;
    right: 6.7rem;
    width: 10rem;
    height: 9.7rem;
    background-image: url(../images/ornament/orn_voice_02.png?20250602);
  }

  .ornament.-voice04 {
    top: 1rem;
    left: auto;
    right: -1.7rem;
    width: 6.6rem;
    height: 6.5rem;
    background-image: url(../images/ornament/orn_shop_01.png?20250602);
  }

  /* faq */
  .ornament.-faq01 {
    top: -4.7rem;
    left: 21.8rem;
    right: auto;
    width: 4.6rem;
    height: 4.5rem;
    background-image: url(../images/ornament/orn_lineup_07.png?20250602);
  }

  .ornament.-faq02 {
    top: 0rem;
    left: 10rem;
    right: auto;
    width: 7.4rem;
    height: 7.6rem;
    background-image: url(../images/ornament/orn_lineup_09.png?20250602);
  }

  .ornament.-faq03 {
    top: -5rem;
    right: 19.2rem;
    left: auto;
    width: 5.9rem;
    height: 5.9rem;
    background-image: url(../images/ornament/orn_voice_03.png?20250602);
  }

  .ornament.-faq04 {
    top: 0;
    right: 6.7rem;
    left: auto;
    width: 4.8rem;
    height: 4.7rem;
    background-image: url(../images/ornament/orn_voice_04.png?20250602);
  }

  /* shop */
  .ornament.-shop01 {
    top: -3.6rem;
    left: 4.3rem;
    right: auto;
    width: 9.9rem;
    height: 9.3rem;
    background-image: url(../images/ornament/orn_shop_03.png?20250602);
  }

  .ornament.-shop02 {
    top: -6rem;
    right: 16.7rem;
    left: auto;
    width: 8.3rem;
    height: 7.8rem;
    background-image: url(../images/ornament/orn_shop_04.png?20250602);
  }

  .ornament.-shop03 {
    top: 2.2rem;
    right: 10.8rem;
    left: auto;
    width: 4.6rem;
    height: 4.6rem;
    background-image: url(../images/ornament/orn_lineup_08.png?20250602);
  }

  .ornament.-shop04 {
    top: 32rem;
    left: 24.6rem;
    width: 5.1rem;
    height: 5.1rem;
    background-image: url(../images/ornament/orn_shop_05.png?20250602);
  }

  .ornament.-shop05 {
    top: 35.2rem;
    right: 30rem;
    width: 5.6rem;
    height: 5.8rem;
    background-image: url(../images/ornament/orn_shop_06.png?20250602);
  }
}

@media screen and (max-width: 768px) {
  /* ornament */
  .ornament {
  }

  /* concept */
  .ornament.-concept01 {
    top: 4.9rem;
    left: 1rem;
    width: 7.6rem;
    height: 39rem;
    background-image: url(../images/ornament/orn_concept_left_sp.png?20250602);
  }

  .ornament.-concept02 {
    top: 20rem;
    right: 0.7rem;
    width: 8.4rem;
    height: 23.4rem;
    background-image: url(../images/ornament/orn_concept_right_sp.png?20250602);
  }

  .ornament.-concept_move01 {
    top: 8.1rem;
    left: 4.4rem;
    width: 2.5rem;
    height: 2.4rem;
  }

  .ornament.-concept_move02 {
    top: 21rem;
    left: 3.1rem;
    width: 1.7rem;
    height: 1.6rem;
  }

  .ornament.-concept_move03 {
    top: 32.8rem;
    left: 3.7rem;
    width: 2.3rem;
    height: 2.3rem;
  }

  .ornament.-concept_move04 {
    top: 4.4rem;
    right: 2rem;
    width: 2.8rem;
    height: 2.8rem;
  }

  .ornament.-concept_move05 {
    top: 11.1rem;
    right: 3.8rem;
    width: 2.2rem;
    height: 2.1rem;
  }

  .ornament.-concept_move06 {
    top: 33.9rem;
    right: 1.6rem;
    width: 4.8rem;
    height: 3.8rem;
  }

  /* lineup */
  .ornament.-lineup01 {
    top: 0rem;
    left: 2rem;
    width: 2.8rem;
    height: 2.7rem;
    background-image: url(../images/ornament/orn_lineup_03.png?20250602);
  }

  .ornament.-lineup02 {
    top: 0.8rem;
    right: 1rem;
    left: auto;
    width: 2.2rem;
    height: 2.1rem;
    background-image: url(../images/ornament/orn_lineup_01.png?20250602);
  }

  .ornament.-lineup03 {
    top: 4.5rem;
    right: 3.1rem;
    left: auto;
    width: 3.2rem;
    height: 3.1rem;
    background-image: url(../images/ornament/orn_lineup_02.png?20250602);
  }

  .ornament.-lineup04 {
    top: 25.7rem;
    left: 0.6rem;
    right: auto;
    width: 3rem;
    height: 2.9rem;
  }

  .ornament.-lineup05 {
    display: block;
    top: 47.9rem;
    left: 1.5rem;
    right: auto;
    width: 2rem;
    height: 2rem;
    background-image: url(../images/ornament/orn_lineup_08.png?20250602);
  }

  .ornament.-lineup06 {
    top: 55rem;
    right: 0.6rem;
    left: auto;
    width: 3.3rem;
    height: 3.1rem;
  }

  .ornament.-lineup07 {
    display: block;
    top: 72.4rem;
    left: 0.6rem;
    right: auto;
    width: 3.4rem;
    height: 3.2rem;
    background-image: url(../images/ornament/orn_lineup_10.png?20250602);
  }

  .ornament.-lineup08 {
    display: block;
    top: 77.2rem;
    left: 1.8rem;
    right: auto;
    width: 2rem;
    height: 2rem;
    background-image: url(../images/ornament/orn_voice_01.png?20250602);
  }

  .ornament.-lineup09 {
    display: block;
    top: 90rem;
    right: 0.4rem;
    left: auto;
    width: 3.6rem;
    height: 3.5rem;
    background-image: url(../images/ornament/orn_faq_02.png?20250602);
  }

  .ornament.-lineup10 {
    display: block;
    top: 104.5rem;
    left: 1rem;
    right: auto;
    width: 2.4rem;
    height: 2.3rem;
    background-image: url(../images/ornament/orn_faq_01.png?20250602);
  }

  .ornament.-lineup11 {
    top: 123.9rem;
    right: 0.4rem;
    width: 2.3rem;
    height: 2.3rem;
    background-image: url(../images/ornament/orn_lineup_07.png?20250602);
  }

  .ornament.-lineup12 {
    top: 129.8rem;
    right: 0.8rem;
    width: 3.1rem;
    height: 3.2rem;
    background-image: url(../images/ornament/orn_lineup_09.png?20250602);
  }

  .ornament.-lineup13 {
    top: 144.4rem;
    left: 0.9rem;
    width: 2.9rem;
    height: 2.9rem;
    background-image: url(../images/ornament/orn_voice_03.png?20250602);
  }

  .ornament.-lineup14 {
    top: 158.4rem;
    right: 0.8rem;
    width: 3.2rem;
    height: 3.1rem;
    background-image: url(../images/ornament/orn_voice_02.png?20250602);
  }

  .ornament.-lineup15 {
    top: 177.7rem;
    left: 0.7rem;
    width: 3.3rem;
    height: 3.3rem;
    background-image: url(../images/ornament/orn_shop_01.png?20250602);
  }

  .ornament.-lineup16 {
    top: 183.2rem;
    left: 2.3rem;
    width: 1.5rem;
    height: 1.5rem;
    background-image: url(../images/ornament/orn_lineup_07.png?20250602);
  }

  .ornament.-lineup17 {
    top: 212rem;
    right: 0.9rem;
    width: 3rem;
    height: 2.9rem;
    background-image: url(../images/ornament/orn_lineup_04.png?20250602);
  }

  .ornament.-lineup18 {
    top: 231.5rem;
    left: 0.6rem;
    width: 3.4rem;
    height: 3.2rem;
    background-image: url(../images/ornament/orn_lineup_10.png?20250602);
  }

  .ornament.-lineup19 {
    top: 250.1rem;
    right: 1.9rem;
    width: 2rem;
    height: 2rem;
    background-image: url(../images/ornament/orn_lineup_08.png?20250602);
  }

  .ornament.-lineup20 {
    top: 253.7rem;
    right: 0.5rem;
    width: 3.2rem;
    height: 3.2rem;
    background-image: url(../images/ornament/orn_voice_01.png?20250602);
  }

  .ornament.-lineup21 {
    top: 271.1rem;
    left: 0.4rem;
    width: 3.8rem;
    height: 3.6rem;
    background-image: url(../images/ornament/orn_faq_01.png?20250602);
  }

  .ornament.-lineup22 {
    top: 293.9rem;
    right: 1.3rem;
    width: 4.3rem;
    height: 4.1rem;
    background-image: url(../images/ornament/orn_lineup_11.png?20250602);
  }

  /* voice */
  .ornament.-voice01 {
    top: 0.6rem;
    right: 6.6rem;
    left: auto;
    width: 3rem;
    height: 2.9rem;
    background-image: url(../images/ornament/orn_voice_03.png?20250602);
  }

  .ornament.-voice02 {
    top: 33.7rem;
    left: 2.8rem;
    right: auto;
    width: 2.8rem;
    height: 2.8rem;
    background-image: url(../images/ornament/orn_lineup_07.png?20250602);
  }

  .ornament.-voice03 {
    top: 39.4rem;
    left: 0.9rem;
    right: auto;
    width: 3.9rem;
    height: 4rem;
    background-image: url(../images/ornament/orn_lineup_09.png?20250602);
  }

  .ornament.-voice04 {
    top: 60rem;
    right: 2.4rem;
    left: auto;
    width: 4.1rem;
    height: 3.9rem;
    background-image: url(../images/ornament/orn_lineup_10.png?20250602);
  }

  .ornament.-voice05 {
    top: 66.3rem;
    right: 1.4rem;
    left: auto;
    width: 2.2rem;
    height: 2.1rem;
    background-image: url(../images/ornament/orn_lineup_01.png?20250602);
  }

  /* faq */
  .ornament.-faq01 {
    top: -1.6rem;
    left: 3.2rem;
    right: auto;
    width: 4.8rem;
    height: 4.5rem;
    background-image: url(../images/ornament/orn_lineup_02.png?20250602);
  }

  .ornament.-faq02 {
    display: none;
    /* top: 72rem;
    right: 2.1rem;
    left: auto;
    width: 3.2rem;
    height: 3.2rem;
    background-image: url(../images/ornament/orn_voice_03.png?20250602); */
  }

  .ornament.-faq03,
  .ornament.-faq04 {
    display: none;
  }

  /* shop */
  .ornament.-shop01 {
    top: 0.2rem;
    right: 5.9rem;
    left: auto;
    width: 4.7rem;
    height: 4.7rem;
    background-image: url(../images/ornament/orn_voice_01.png?20250602);
  }

  .ornament.-shop02 {
    top: 34.9rem;
    left: 2.9rem;
    right: auto;
    width: 3.9rem;
    height: 3.9rem;
    background-image: url(../images/ornament/orn_lineup_02.png?20250602);
  }

  .ornament.-shop03 {
    top: 38.8rem;
    left: 9.5rem;
    right: auto;
    width: 3.2rem;
    height: 3.2rem;
    background-image: url(../images/ornament/orn_lineup_01.png?20250602);
  }

  .ornament.-shop04,
  .ornament.-shop05 {
    display: none;
  }
}

/* Animation */

.fade-item {
  opacity: 0;
  transform: translateY(50px);
  transition: 1.4s;
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.ornament.fade-item {
  transform: translateY(0px);
  transition: 1.8s;
}

@media screen and (min-width: 1025px) {
  .swaying-item-pc {
    animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
  }
}

@media screen and (max-width: 1024px) {
  .fade-item {
    opacity: 1;
    transform: translateY(0);
  }

  .swaying-item-tb {
    animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
  }
}

@media screen and (max-width: 768px) {
  .stop-swaying-item-sp {
    animation: none;
  }

  .swaying-item-sp {
    animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
  }
}

.delay1 {
  animation-delay: 0.2s;
}

.delay2 {
  animation-delay: 0.4s;
}

.delay3 {
  animation-delay: 0.6s;
}

@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }

  100% {
    transform: translateY(10%);
  }
}

/* header/footer 背景色指定 */
:root {
  --primary-bg-image: url("../images/bg_header_footer.png");
  --primary-color-fallback: #f23192;
}

.header,
.header-container,
.header-inner,
.header-inner .logo,
.header-inner .nav,
.header-inner .nav-list,
.header-inner .nav-item,
.header-inner .nav-item a,
.footer,
.footer *,
.footer .container,
.footer-content,
.footer-contact,
.footer-contact-title,
.footer-contact-text,
.footer-logo,
.footer-logo img,
.footer-bottom,
.footer-bottom p {
  background-color: var(--primary-color-fallback);
  background-image: var(--primary-bg-image);
  background-repeat: repeat;
  background-size: 1px 1px;
  background-position: 0 0;
}
