@charset "utf-8";
/* =====================
   ▼ Reset & Base (EN)
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
}

:root {
  --header-height-sp: calc(3rem + 0.5rem * 2);
  --header-height-pc: calc(3.5rem + 1rem * 2);
}

body {
  background-color: rgba(244,213,124,1.00);
  color: rgba(66,33,11,1.00);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 0;
}

.main-content-wrapper {
  position: relative;
  z-index: 1;
  }
.main-content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(
    135deg,
    #4b3a00 0%,
    #8b6f1f 12%,
    #d4af37 25%,
    #fff8c1 37%,
    #f7d94e 50%,
    #d4af37 63%,
    #8b6f1f 80%,
    #4b3a00 100%
  );
  background-size: 400% 400%;
  background-position: 50% 50%;
  background-blend-mode: overlay;
  box-shadow: inset 0 0 50px rgba(255,255,255,0.15);
  animation: metalShine 6s ease-in-out infinite;
}

@keyframes metalShine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

img {
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
}

/* =====================
   ▼ Header
===================== */
.header {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 3%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 50;
  background-color: transparent;
}

.header__menu-btn {
  background: linear-gradient(
    150deg,
    rgba(247, 172, 12, 1) 0%,
    rgba(255, 254, 34, 1) 40%,
    rgba(238, 197, 39, 1) 74%,
    rgba(247, 170, 35, 1) 100%
  );
  border-radius: 0.2rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  z-index: 100;
  transition: background-color 0.3s;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2), inset 0 0.2rem 0.5rem rgba(255, 255, 255, 0.4);
}

.header__menu-btn .bar {
  display: block;
  width: 1.5rem;
  height: 0.2rem;
  margin: 0.2rem 0;
  background-color: #8b0000;
  transition: 0.4s;
  border-radius: 0.125rem;
}

.header__menu-btn.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(0.312rem, 0.312rem);
}
.header__menu-btn.open .bar:nth-child(2) {
  opacity: 0;
}
.header__menu-btn.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(0.312rem, -0.312rem);
}

.header__brand-logo {
  display: flex;
  align-items: center;
  height: 100%;
}
.header__brand-logo .logo {
  height: auto;
  max-height: 2.5rem;
  width: auto;
  filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.7));
}

.header__nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: left 0.3s ease-in-out;
  z-index: 40;
  gap: 2rem;
  font-size: 1.5rem;
}
.header__nav.nav-open {
  left: 0;
  background-color: rgba(0, 0, 0, 0.95);
}
.header__nav-link {
  padding: 0.5rem 1rem;
  color: white;
}
.header__nav-link:hover {
  color: #9ca3af;
}

/* タブレット */
@media (min-width: 768px) and (max-width: 1024px) {
  .header {
    top: 3%;
  }

  .header__brand-logo .logo {
    height: clamp(1.562rem, 2.5vw, 3.125rem);
    max-height: 3.75rem;
  }

  .header__menu-btn {
    width: 3rem;
    height: 3rem;
  }
  .menu-btn {
    display: none;
  }
.header__menu-btn .bar {
  width: 1.2rem;
  height: 0.2rem;
  margin: 0.2rem 0;
}
  .header-nav {
    display: block;
    position: static;
    background-color: transparent;
    width: auto;
    height: auto;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .header-nav-list {
    flex-direction: row;
    gap: 2rem;
  }

  .header__menu-btn .bar {
    width: 2.5rem;
  }

  .header__nav {
    font-size: 2rem;
  }

  .hero {
    margin-top: calc(-1 * var(--header-height-pc));
    padding-top: var(--header-height-pc);
  }
}
/* PCスタイル */
@media (min-width: 1025px) {

.header__menu-btn {
    width: 4rem;
    height: 4rem;
  }
.header__menu-btn .bar {
  width: 2.5rem;
  height: 0.2rem;
  margin: 0.2rem 0;
  border-radius: 0.2rem;
}
}

/* =====================
   ▼ CTA Button
===================== */
.cta-button {
  font-size: 1rem;
  font-weight: bold;
  padding: 0.75rem 2rem;
  border-radius: 0;
  transition: background-color 0.3s;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.cta-button--black {
  background: linear-gradient(to right, #ffd700, #ff8c00);
  color: #42210b;
  border: 1px solid #df9500;
}
.cta-button--black:hover {
  background: #000;
  color: rgba(255,215,0,1.00);
}


/* Logo size application */
/* Mobile (0px - 767px) */
.header__brand-logo .logo {
  height: 1.562rem;
  max-height: 2.5rem;
  width: auto;
}

/* Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .header__brand-logo .logo {
    height: 2.5rem;
    max-height: 3.75rem;
  }
}

/* PC (1025px and up) */
@media (min-width: 1025px) {
  .header__brand-logo .logo {
    height: clamp(1.562rem, 2.5vw, 3.125rem);
    max-height: 3.75rem;
  }
}


/* =====================
   ▼ Hero
===================== */
.hero {
	position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
	margin-top: 0;
    padding-top: 0;
	background-color: transparent;
}
.hero__bg-image {
  position: absolute;
	top: 0;
  inset: 0;
  background-image: url('../images/sp_hero.webp');
  background-size: cover;
  background-position: center 0%;
  background-repeat: no-repeat;
  filter: brightness(0.9);
}
.hero__content {
  position: absolute;
  z-index: 10;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
/* Adjust font style for "Ready to Sell to the World?" */
.catch-copy-chars {
  text-align: left; 
  color: #000;
  font-family: "HG明朝E", "Cormorant Garamond", serif;
  font-weight: normal;
  line-height: 1.2;
  text-shadow: -1.5px -1.5px 0 #fff, 1.5px -1.5px 0 #fff,
    -1.5px 1.5px 0 #fff, 1.5px 1.5px 0 #fff, -1.5px 0 0 #fff, 1.5px 0 0 #fff,
    0 -1.5px 0 #fff, 0 1.5px 0 #fff,
    /* 外側の光彩 */ 0 0 10px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

.hero__subtitle {
    text-align: left;
    white-space: normal;
	font-family: 'Noto Serif JP', "HG明朝E", "Cormorant Garamond", serif;
	font-weight: 700;
	color: #000;
	text-shadow: -1.5px -1.5px 0 #fff, 1.5px -1.5px 0 #fff,
    -1.5px 1.5px 0 #fff, 1.5px 1.5px 0 #fff, -1.5px 0 0 #fff, 1.5px 0 0 #fff,
    0 -1.5px 0 #fff, 0 1.5px 0 #fff, 0 0 8px rgba(255, 255, 255, 0.8),
    0 0 16px rgba(255, 255, 255, 0.6);
	background-color: rgba(255, 255, 255, 0.4);
	padding: 1rem;
	border-radius: 0;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Initial state for characters to be animated */
.catch-copy-chars .char {
  display: inline-block; /* transformを適用するため */
  opacity: 0; /* 初期状態は透明 */
  animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
/* 文字アニメーションのキーフレーム */
@keyframes fadeInUp {
  from {
    transform: translateY(1em);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* heroモバイル */
@media (max-width: 767px) {
  .hero {
    padding-top: 18rem;
    padding-bottom: 10rem;
    margin-bottom: 2rem;
  }
  .hero__content {
    top: 0;
    bottom: 0;
    left: clamp(1rem, -0.679rem + 7.674vw, 3rem);
    width: calc(100% - 3rem); 
    max-width: clamp(23rem, 21.715rem + 6.852vw, 25rem); 
  }
  .catch-copy-chars {
    position: absolute;
    top: 35%;
    font-size: clamp(1.4rem, 0.827rem + 2.864vw, 2.2rem); 
    overflow: hidden;
    text-overflow: ellipsis;
	letter-spacing: 0.1rem;
  }
  .hero__subtitle {
    position: absolute;
    bottom: 5%;
    font-size: clamp(0.8rem, 0.35rem + 2.398vw, 1.5rem); 
    line-height:1.8; 
    padding: 0.5rem;
  }
}

/* heroタブレット */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero {
    height: clamp(31rem, -2rem + 68.75vw, 42rem);
  }
  .hero__bg-image {
    background-image: url('../images/pc_hero.webp');
    background-position: center 0%;
  }
  .hero__content {
    top: 65%;
    left: 5%;
    right: auto;
    transform: translateY(-50%);
    width: auto;
    max-width: 60rem;
    padding-right: 2rem;
  }
  .catch-copy-chars {
    font-size: clamp(2.1rem, -0.3rem + 5vw, 2.9rem);
    margin-bottom: clamp(6.3rem, -1.8rem + 16.875vw, 9rem);
    letter-spacing: 0.1rem;
    white-space: normal;
  }
  .hero__subtitle {
   font-size: clamp(1.5rem, 0rem + 3.125vw, 2rem);
   max-width: 40rem;
   white-space: normal;
  }
}

/* hero_PC */
@media (min-width: 1025px) {
  .hero {
    height: clamp(45rem, 27.821rem + 26.82vw, 60rem);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero__bg-image {
    background-image: url('../images/pc_hero.webp');
    background-position: center 0%;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    inset: 0;
    filter: brightness(0.9);
  }

  .hero__content {
    position: absolute;
    top: 68%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 60rem;
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    color: white;
    box-sizing: border-box;
  }

/* Adjust font style for "Ready to Sell to the World?" */
.catch-copy-chars {
    font-size: clamp(2.5rem, 0.782rem + 2.682vw, 4rem);
    font-stretch: normal;
    font-weight: normal;
    margin-bottom: 8rem;
    letter-spacing: 0.3rem; 
  }

  .hero__subtitle {
    font-size: clamp(1.5rem, 0.584rem + 1.43vw, 2.3rem);
    max-width: 60rem;
    white-space: normal;
	letter-spacing: 0.3rem;
	line-height: clamp(2.8rem, 1.311rem + 2.324vw, 4.1rem);
  }
}

/* ========================================
   ▼ MESSAGE(仮) ・ ABOUT US(仮)のセクション
=========================================== */
/*  共通 */
.message-about-section {
    padding: 0.2rem;
    text-align: center;
	  align-items: center;
		margin: 0 auto;
}

.message-about-header {
  display: flex;
  flex-direction: column;
}

/* 本文のコンテナ */
.message-about-content {
    margin: 0 auto; 
}


.section-title {
    font-size: 2.5rem;
    font-family: 'Didot LT Pro', serif;
    color: rgba(255,215,0,1.00);
    margin: 0;
}

.section-subtitle {
	font-family: 'Noto Serif JP', serif;
    font-size: 1.6rem;
	letter-spacing: 0.1em;
    font-weight: bold;
}
/* 本文 */
.section-intro {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 30px;
    padding: 0 0.5rem;
	text-align: left;
}
/* 罫線スタイル */
.header-divider {
	border: 0;
    height: 1px;
    background: linear-gradient(to right, #ffd700, transparent);
    margin: 20px auto;
    width: 100%;
}
  /* --- Styles moved from message-about-section --- */
  .message-about-content .message-about-text .section-intro:first-child {
      margin-top: 2rem; /* Correction for <p class="section-intro" style="margin-top: 2rem;"> */
  }

  .additional-text--pc .section-intro:last-child {
      margin-top: 2rem; /* Correction for <p class="section-intro" style="margin-top: 2rem;"> */
  }


/* PC・タブレット レイアウト */
@media (min-width: 768px) {
  .message-about-section {
    padding: 2% 3%;
    text-align: center;
	  align-items: center;
		margin: 0 auto;
		max-width: 85%;
  }

  .message-about-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    gap: 2rem; 
  }

  .message-about-header .title-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .title-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .message-about-header .cta-button {
    flex-shrink: 0;
  }

  .header-divider {
    margin: 10px 0 0 0;
    width: 100%;
    max-width: none;
  }

  .section-title {
    font-size: 3.5rem;
  }

  .section-intro {
    padding: 0;
  }
}

 @media (max-width: 768px) {
    .download-group {
        width: 300px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .download-group .download-text {
        text-align: center;
    }
    .download-group .download-badges {
        display: flex;
        justify-content: center;
    }
    #message .message-about-content {
      padding-left: 1rem;
      padding-right: 1rem;
    }
  }
/* PCのセクションサブタイトル文字 */
@media (min-width: 1025px) {
  .section-subtitle {
    font-size: 2rem;
  }
}

/* 「ShopKlosetとは」セクションの本文フォントPC/タブレットで調整 */
@media (min-width: 768px) {
  #aboutus .section-intro {
    font-size: 1.5rem;
  }
}

/* 「ShopKlosetとは」セクションの本文レスポンシブ表示切り替え */
.about-text--pc {
  display: none; /* モバイル非表示 */
}
.about-text--mobile {
  display: block; /* モバイル表示 */
}
@media (min-width: 768px) {
  .about-text--pc {
    display: block; /* PC/タブレット表示 */
  }
  .about-text--mobile {
    display: none; /* PC/タブレット非表示 */
  }
}
/* ========================================
▼ ShopKlosetとはセクションのスタイル
=========================================== */
.about-section {
background: linear-gradient(to right, #fce0a7, #fcf0d3);
border-radius: 1rem;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
padding: 1.5rem;
}

.about-container {
width: 100%;
max-width: 80rem;
margin-left: auto;
margin-right: auto;
}

.about-content {
display: flex;
flex-direction: column;
gap: 2rem;
}

.about-text-group {
flex: 1;
}

.about-section-title {
text-align: center;
font-size: 1.5rem;
font-weight: bold;
color: #1a202c;
letter-spacing: 0.025em;
}

.about-divider {
height: 0.125rem;
width: 6rem;
background-color: #f7b949;
margin-left: auto;
margin-right: auto;
margin-top: 1rem;
margin-bottom: 1rem;
}

.about-intro-text {
color: #1a202c;
line-height: 1.6;
font-size: 0.875rem;
}

.download-group {
background: linear-gradient(to right, #fde466, #fce0a7);
padding: 1rem;
border-radius: 0;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
text-align: center;
}

.download-text {
color: #1a202c;
font-weight: 400;
margin-bottom: 0.75rem;
text-align: center;
    font-size: 1.4rem;
}

.download-badges {
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
}

.download-badge {
width: 9rem;
display: flex;
align-items: center;
}

.download-badge-icon {
width: 100%;
height: auto;
height: 100%;
object-fit: contain;
}

/* レスポンシブデザイン */
@media (min-width: 768px) {
.about-content {
flex-direction: row;
align-items: flex-start;
justify-content: space-between;
}

.about-text-group {
text-align: left;
}

.about-section-title {
text-align: left;
}

.about-divider {
margin-left: 0;
margin-right: 0;
}

.download-group {
text-align: left;
}

.download-badges {
justify-content: flex-start;
}
}

/* モバイルでの表示順序を修正 */
@media (max-width: 767px) {
.about-content {
flex-direction: column;
}
.about-text-group {
order: 1;
}
.download-group {
order: 2;
margin-top: 1.5rem;
}
}

/* 動画の上のダウンロードセクション */
.download-section {
  padding: 2rem 1rem;
}
.download-section .download-group {
  max-width: 30rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .download-section {
    padding: 3rem 1rem;
  }
}

/* ダウンロードボタンのレスポンシブ表示切り替え */
.download-group--pc {
  display: none; /* モバイルでは非表示 */
}
.download-group--mobile {
  display: block; /* モバイルでは表示 */
}

@media (min-width: 768px) {
  .download-group--pc {
    display: block; /* PC/タブレットでは表示 */
  }
  .download-group--mobile {
    display: none; /* PC/タブレットでは非表示 */
  }
}

/* リユースショップ様セクションのダウンロードボタン表示切り替え */
.download-group--reuse-pc {
  display: none; /* モバイルでは非表示 */
}
.download-group--reuse-mobile {
  display: block; /* モバイルでは表示 */
  max-width: 30rem;
  margin: 2rem auto 0;
}

@media (min-width: 768px) {
  .download-group--reuse-pc {
    display: block; /* PC/タブレットでは表示 */
  }
  .download-group--reuse-mobile {
    display: none; /* PC/タブレットでは非表示 */
  }
}

 @media (max-width: 768px) {
    .download-group {
        width: 300px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .download-group .download-text {
        text-align: center;
    }
    .download-group .download-badges {
        display: flex;
        justify-content: center;
    }
    #message .message-about-content {
      padding-left: 1rem;
      padding-right: 1rem;
    }
  }

/* ========================================
   ▼ KV（サムネ or YouTube動画）
=========================================== */
.kv-video-wrapper {
  position: relative;
  width: 100%;
}

.kv-video-thumb,
.kv-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 再生ボタンのオーバーレイ */
.kv-video-play {
  position: absolute;
  inset: 0; /* wrapper全体をクリック可能に */
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.25);
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease;
}

.kv-video-play:hover {
  background: rgba(0,0,0,0.35);
}

.play-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  position: relative;
}

.play-icon::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 18px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent rgba(0,0,0,0.9);
}

/* PC表示（769px以上） */
@media (min-width: 769px) {
  .kv-video-wrapper {
    aspect-ratio: 16 / 9;
  }
}

/* スマホ表示（768px以下） */
@media (max-width: 768px) {
  .kv-video-wrapper {
    height: 56.25vw; /* 16:9 */
  }

  .kv-video-thumb,
  .kv-video {
    position: absolute;
    top: 0;
    left: 0;
  }
}



/* =============================
   ▼ 参加規約セクション
============================= */
.campaign-section {
  max-width: 100%;
  margin: 2rem auto;
  padding: 0;
  background-color: #000;
  border: none;
  box-sizing: border-box;
}

.campaign-terms {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto 0.5rem;
  padding: 15px 0.3rem;
  color: white;
  border: 1px solid #d4af37;
  font-family: "Hiragino Mincho ProN", serif;
  font-size: 1.4rem;
  line-height: 1.6;
  box-sizing: border-box;
}

.campaign-terms__lead {
   text-align: center;
   margin: 0 auto 0.5rem;
}
.campaign-terms strong {
  color: #d4af37;
  margin-bottom: 0.5rem;
}

.campaign-terms__rule {
  border: 1px solid #d4af37;
  max-width: 95%;
  margin: 0.5rem auto; /* ← これで中央揃え */
}


@media (max-width: 1024px) {
  .campaign-terms {
    width: 95%;
  }
}

.campaign-terms h3 {
  color: #d4af37;
  font-size: 2rem; /* ← 2rem → 約2倍 */
  margin-bottom: 1rem; /* ← 少し圧縮 */
  text-align: center;
  letter-spacing: 0.1em;
}

.campaign-terms ul {
  padding-left: 1.3rem; /* ← 2.5rem → 1.5rem に圧縮 */
}

.campaign-terms li {
  margin-bottom: 1rem; /* ← 2rem → 1rem に圧縮 */
}

.campaign-terms__closing {
  text-align: right;
  margin-top: 1.2rem; /* ← 2rem → 1.2rem に圧縮 */
  font-size: 2rem; /* ← 1.8rem → 約2倍 */
  letter-spacing: 0.1em;
  color: #FFD700;
}

@media (max-width: 768px) {
  .campaign-terms {
    width: 95%;
    padding: 4px; /* ← 8px → 4px にさらに圧縮 */
    font-size: 1.2rem;
    line-height: 1.6;
  }
    .campaign-terms__lead {
   text-align: left;
   margin: 0 auto 0.5rem;
}
  .campaign-terms ul {
    padding-left: 0.3rem;
    padding-right: 0.1rem;
  }

  .campaign-terms li {
    margin-bottom: 0.8rem;
       }
  .campaign-terms h3 {
    font-size: 1.6rem;
  }

  .campaign-terms__closing {
    font-size: 1.2rem; /* ← 締めの文も調整 */
  }
}



/* リユースショップ様セクションの追加テキスト表示切り替え */
.additional-text--pc {
  display: none; /* モバイルでは非表示 */
}
.additional-text--mobile {
  display: block; /* モバイルでは表示 */
  padding: 0 1rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .additional-text--pc {
    display: block; /* PC/タブレットでは表示 */
  }
  .additional-text--mobile {
    display: none; /* PC/タブレットでは非表示 */
  }
}

/* 署名風の締めくくり */
.closing-remark {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;

  /* ▼▼▼ 星が飛ぶアニメーション用の設定 ▼▼▼ */
  position: relative;
  overflow: hidden;
}

/* 「キラン」という光 */
.closing-remark::before,
.closing-remark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -20px;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, white 10%, rgba(255,255,255,0.6) 50%, transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
  animation: kirran-sparkle 4s ease-in-out infinite;
}

.closing-remark::after {
  animation-delay: -2s;
}

.closing-remark__line {
  flex-grow: 1;
  border: none;
  height: 1px;
  background-color: #42210b;
}

.closing-remark__text {
  flex-shrink: 0;
  font-family: 'Noto Serif JP', serif;
  font-style: italic;
  font-weight: bold;
    font-size: 1.2rem; 

  /* ▼▼▼ キラキラアニメーション ▼▼▼ */
  color: transparent; /* テキスト自体は透明に */
  background: linear-gradient(
    90deg,
    #42210b, #c3922e, #fff, #c3922e, #42210b
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shine-effect 4s linear infinite;
}

@keyframes shine-effect {
  to {
    background-position: -200% center;
  }
}

@keyframes kirran-sparkle {
  0% {
    left: -20px;
    transform: translateY(-50%) scale(0.5);
    opacity: 0.5;
  }
  20% {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
  }
  100% {
    left: 110%;
    transform: translateY(-50%) scale(0.5);
    opacity: 0.5;
  }
}

/* =============================
    ▼ MessageMessage(仮)共通構造
   ============================= */
.service__grid.message-sub {
  padding: 0.5rem;
  position: relative;
  overflow: visible;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 2rem;
}

.service__item {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 100%;
  flex-shrink: 0;
  padding: 1rem;
  box-sizing: border-box;
  overflow: visible;
}

.service__image--circle {
  border-radius: 50%;
  overflow: visible;
  width: 12rem;
  height: 12rem;
  margin-bottom: 1rem;
  margin-left: 1rem;
  margin-right: 1rem;
  object-fit: cover;
  background-size: contain;
  background-position: center center;
  z-index: 1;
  box-shadow: 0 0 50px 10px rgba(112, 128, 144, 0.9);
  position: relative;
}

.service__image--message-sub-1 {
  background-image: url('../images/message_sub_1.webp');
  background-size: cover;
}

.service__image--message-sub-2 {
  background-image: url('../images/message_sub_2.webp');
  background-size: cover;
}

.service__text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.service-section-container {
  position: relative;
  padding-left: calc(50px + 1.5rem); 
  padding-right: calc(50px + 1.5rem);
  background: linear-gradient(
    45deg,
    #b1b5b3 0%,
    #e4e5e4 25%,
    #b9c3c9 50%,
    #e9eaea 75%,
    #bdc3c9 100%
  );	
}

.service__item-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service__item-list > li {
  margin-bottom: 1rem;
}

.service__item-heading {
  display: block;
  font-weight: bold;
  font-size: 1.4rem;
}

.brand-list,
.service__item-list li p,
.service__item-list ul li {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* ▼ PC用スタイル（1025px以上） */
@media (min-width: 1025px) {
  .service-section-container {
    padding-left: 8rem; 
    padding-right: 8rem;
  } 

  .service__grid.message-sub.message-sub--two-rows {
    display: flex;
    flex-direction: column;
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem 0;
    gap: 4rem;
  }

  .service__item.service__item--top,
  .service__item.service__item--bottom {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
    display: flex;
  }

  .service__image--circle {
    width: 15rem;
    height: 15rem;
    margin: 0 4rem;
    flex-shrink: 0;
    box-shadow: 0 0 50px 20px rgba(112, 128, 144, 0.9); 
  }

  .service__item--top .service__text-block--two-cols {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 4rem;
    flex-grow: 1;
  }

  .service__item--top .service__text-block--two-cols .text-col {
    width: calc(50% - 2rem);
    flex-shrink: 0;
  }
}

/* ▼ タブレット・モバイル表示（1024px以下） */
@media (min-width: 768px) and (max-width: 1024px) {
  .service-section-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;

  }

  .service__grid.message-sub {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
  }

  .service__item {
    padding: 0;
    max-width: 75%;
    width: 100%;
  }

  .service__text-block {
    text-align: left;
  }

  .service__image--circle {
    margin: 2rem auto 0 auto; 
    width: clamp(12rem, 3.093rem + 18.6vw, 15rem);
    height: clamp(12rem, 3.093rem + 18.6vw, 15rem);	  
  }

  .service__item--top .service__text-block--two-cols {
    display: flex;
    flex-direction: column; 
    gap: 1.5rem;
  }
}

/* ▼ モバイル（767px以下） */
@media (max-width: 767px) {
  .service-section-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .service__grid.message-sub {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    overflow-x: visible;
    padding: 2rem 0;
  }

  .service__item {
    width: 100%;
    padding: 0;
    flex-shrink: 1;
  }

  .service__image--circle {
    margin: 0 auto 1.5rem auto; 
    width: 12rem;
    height: 12rem;
    box-shadow: 0 0 40px 10px rgba(112, 128, 144, 0.8);
  }

  .service__item--top .service__text-block--two-cols {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .service__item--top .service__text-block--two-cols .text-col {
    width: 100%;
  }

  .brand-list,
  .service__item-list li p,
  .service__item-list ul li {
    font-size: 1.2rem;
  }
}

/* =============================
   Footer
============================= */

:root {
  --footer-bg-start: #a27c2c;
  --footer-bg-mid1: #e0b75e;
  --footer-bg-mid2: #f9e0a0;
  --footer-accent: rgba(94, 0, 148, 1);
  --footer-text: rgba(66, 33, 11, 0.8);
}

.footer {
  padding: 2.5rem 1.25rem;
  background: linear-gradient(
    90deg,
    var(--footer-bg-start) 0%,
    var(--footer-bg-mid1) 30%,
    var(--footer-bg-mid2) 50%,
    var(--footer-bg-mid1) 70%,
    var(--footer-bg-start) 100%
  );
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

/* Brand */
.footer__logo img {
  display: block;
  margin: 0 auto;
  height: 5rem;
  width: auto;
}

.footer__brand-text p {
  margin: 0;
  line-height: 1.6;
}

/* Navigation */
.footer__nav-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--footer-accent);
}

.footer__nav-list a {
  text-decoration: none;
  color: inherit;
}

/* Contact */
.footer__contact-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.footer__contact-title {
  font-weight: bold;
  font-size: 0.9rem;
  color: var(--footer-accent);
}

.footer__company span {
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em;
}

/* Social */
.footer__social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.footer__social-icon img {
  height: 2rem;
  width: auto;
}

/* License */
.footer__license {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(66, 33, 11, 0.2);
  font-size: 0.65rem;
  text-align: center;
  color: var(--footer-text);
}

@media (max-width: 767px) {
  .footer__company span {
    font-size: 1.1rem !important;
  }
}
/* Desktop (1025px以上) */
@media (min-width: 1025px) {
  .footer__main {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    justify-content: center;
    gap: 3rem;
  }

  .footer__logo img,
  .footer__social-icon img {
    flex-shrink: 0;
    object-fit: contain;
    width: auto;
  }

  .footer__brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .footer__logo img {
    height: 3rem;
    margin: 0;
  }

  .footer__brand-text {
    font-size: 0.75rem;
  }

  .footer__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .footer__contact,
  .footer__address,
  .footer__social {
    font-size: 0.75rem;
  }
}

.footer__nav-list li a, 
.footer__company span, 
.footer__contact-title {
  color: #380047 !important;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.footer__nav-list li a:hover,
.footer__contact-title:hover {
  opacity: 0.7;
  color: #380047 !important;
}

