@charset "UTF-8";

/* =========================================
   基本設定 & 変数 (Theme: Blue Sky / Sakura)
   Based on style copy.css
   ========================================= */
:root {
  --color-primary: #ff85a2; /* 優しい桜ピンク */
  --color-accent: #ffffff; /* アクセント（白） */
  --color-sky: #a0d8ef; /* 爽やかな青空の色 */
  --color-text-base: #444444; /* 基本のテキスト色（濃いグレー） */
  --color-card-bg: rgba(255, 255, 255, 0.9); /* 明るい半透明のカード背景 */
  --color-toc-bg: rgba(240, 248, 255, 0.95); /* 目次の背景（ごく薄い青） */
  --color-toc-border: #87ceeb; /* 目次のボーダー（スカイブルー） */
  --color-warn: #e74c3c;
}

html {
  font-size: 110%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: var(--color-sky);
  color: var(--color-text-base);
  line-height: 1.8;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* =========================================
   桜アニメーション
   ========================================= */
#sakura-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
}

.petal {
  position: absolute;
  background-color: var(--color-primary);
  opacity: 0;
  pointer-events: none;
  width: 15px;
  height: 20px;
  border-radius: 15% 80% 0 80%;
  box-shadow: inset 2px 2px 5px rgba(255, 255, 255, 0.8);
}

.petal.style-1 { animation: fall-continuous-1 linear infinite; }
.petal.style-2 { animation: fall-continuous-2 linear infinite; background-color: #ffd1dc; }
.petal.style-3 { animation: fall-continuous-3 linear infinite; }

@keyframes fall-continuous-1 {
  0% { opacity: 0; transform: translate3d(0, -10vh, 0) rotate(0deg); }
  10% { opacity: 0.9; }
  100% { opacity: 0; transform: translate3d(10vw, 110vh, 0) rotate(360deg); }
}
@keyframes fall-continuous-2 {
  0% { opacity: 0; transform: translate3d(0, -10vh, 0) rotateX(0deg) rotateZ(0deg); }
  10% { opacity: 0.8; }
  100% { opacity: 0; transform: translate3d(-5vw, 110vh, 0) rotateX(720deg) rotateZ(360deg); }
}
@keyframes fall-continuous-3 {
  0% { opacity: 0; transform: translate3d(0, -10vh, 0) rotate(0deg); }
  10% { opacity: 0.8; }
  100% { opacity: 0; transform: translate3d(25vw, 110vh, 0) rotate(90deg); }
}

/* =========================================
   ヘッダー・ヒーローセクション
   ========================================= */
.header-hero {
  text-align: center;
  padding: 3vh 20px 2vh;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    var(--color-sky) 80%
  );
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-hero h1 {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(3rem, 10vw, 8rem);
  color: var(--color-primary);
  text-shadow: 0 2px 5px rgba(255, 133, 162, 0.3);
  margin: 0 0 1rem;
  letter-spacing: 3px;
  line-height: 1.1;
  width: 100%;
}

.header-hero h2 {
  font-size: clamp(1rem, 4vw, 1.5rem);
  color: #555; /* 暗めのグレー */
  font-weight: 300;
  margin: 0;
}

.header-hero img {
  max-height: 60vh;
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  margin-top: 1rem;
  box-shadow: 0 10px 30px rgba(255, 133, 162, 0.3);
  filter: brightness(1.05);
}

/* =========================================
   ナビゲーション (TOC)
   ========================================= */
#toc-nav {
  background-color: var(--color-toc-bg);
  border-bottom: 2px solid var(--color-toc-border);
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

#toc-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

#toc-nav a {
  color: var(--color-text-base);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9em;
  padding: 5px 8px;
  border-radius: 5px;
  transition: all 0.2s;
  white-space: nowrap;
}

#toc-nav a:hover {
  background-color: var(--color-primary);
  color: white;
}

/* =========================================
   メインレイアウト & 共通スタイル
   ========================================= */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.title-section {
  font-family: "Shippori Mincho", serif;
  font-size: 2em;
  color: var(--color-text-base);
  border-bottom: 3px solid var(--color-primary);
  padding-bottom: 10px;
  margin: 40px 0 30px;
  text-align: center;
  text-shadow: none;
  scroll-margin-top: 80px;
}

.card-content {
  background-color: var(--color-card-bg);
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.8);
  overflow-wrap: break-word;
}

#card-content-second {
  margin-top: 3rem;
}

/* 見出し調整 (Day Theme) */
.card-content h3 {
  font-size: 1.4em;
  color: var(--color-text-base);
  border-left: 5px solid var(--color-primary);
  padding-left: 15px;
  margin: 0 0 15px;
}

.card-content h4 {
  color: #666;
  margin-top: 25px;
  border-bottom: 1px dotted rgba(255, 133, 162, 0.5);
  padding-bottom: 5px;
}

.card-content h5 {
  color: var(--color-text-base);
  font-size: 1.1em;
  margin: 0 0 10px;
}

/* リンク・テキスト装飾 */
a {
  color: #0077cc;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.link-appeal {
  display: inline-block;
  font-weight: 700;
  color: #fff !important; /* ボタン文字色は白 */
  background-color: var(--color-primary); /* 背景を桜色に */
  padding: 8px 15px;
  border-radius: 5px;
  border: 1px solid var(--color-primary);
  box-shadow: 0 2px 5px rgba(255, 105, 180, 0.3);
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.link-appeal:hover {
  background-color: #ff6b8e;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(255, 105, 180, 0.5);
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  padding-left: 1.2em;
  position: relative;
  margin-bottom: 8px;
}

ul li::before {
  content: "◇";
  color: var(--color-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

strong {
  color: var(--color-primary);
}

.text-warn {
  color: var(--color-warn);
  font-weight: bold;
}

.underline-warn {
  text-decoration: underline;
  text-decoration-color: var(--color-warn);
}

.box-appeal {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  border: 2px dashed var(--color-primary);
  border-radius: 10px;
  color: var(--color-text-base);
  background-color: rgba(255, 133, 162, 0.1);
  font-size: 1rem;
}

/* =========================================
   レイアウト: 概要 & アクセス
   ========================================= */
.layout-split {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.layout-split > div {
  flex: 1;
}

.overview-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 133, 162, 0.3);
  border-radius: 10px;
  padding: 2rem;
  box-sizing: border-box;
}

.overview-text ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.overview-text li {
  font-size: 1.15rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  padding-bottom: 0.5rem;
}

#section-overview .layout-split > div:first-child {
  min-width: 300px;
}
#section-overview .map-container-reset {
  flex: 0 0 400px;
}
#section-overview iframe {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.access-map-container {
  flex: 0 0 300px;
}
.access-map-container iframe {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-box {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 15px;
  border-radius: 8px;
  border-left: 3px solid var(--color-primary);
}

/* =========================================
   持ち物リスト (Participation Grid)
   ========================================= */
.participation-grid {
  display: flex;
  gap: 20px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.item-box {
  flex: 1;
  min-width: 280px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* 必須 (赤系) */
.item-box-required {
  border-top: 4px solid #ff6b81;
  background: linear-gradient(180deg, rgba(255, 107, 129, 0.1) 0%, rgba(255, 255, 255, 0.7) 100%);
}
.item-box-required h5 {
  color: #ff4757;
  border-bottom: 1px dashed rgba(255, 71, 87, 0.3);
  padding-bottom: 5px;
}

/* 推奨 (緑系) */
.item-box-recommended {
  border-top: 4px solid #2ed573;
  background: linear-gradient(180deg, rgba(46, 213, 115, 0.1) 0%, rgba(255, 255, 255, 0.7) 100%);
}
.item-box-recommended h5 {
  color: #27ae60;
  border-bottom: 1px dashed rgba(46, 213, 115, 0.3);
  padding-bottom: 5px;
}

/* 黄色系 */
.item-box-yellow {
  border-top: 4px solid #ffd32a;
  background: linear-gradient(180deg, rgba(255, 211, 42, 0.1) 0%, rgba(255, 255, 255, 0.7) 100%);
}
.item-box-yellow h5 {
  color: #f39c12;
  border-bottom: 1px dashed rgba(255, 211, 42, 0.3);
  padding-bottom: 5px;
}

/* 青色系 */
.item-box-blue {
  border-top: 4px solid #0fb9b1;
  background: linear-gradient(180deg, rgba(15, 185, 177, 0.1) 0%, rgba(255, 255, 255, 0.7) 100%);
}
.item-box-blue h5 {
  color: #008c8c;
  border-bottom: 1px dashed rgba(15, 185, 177, 0.3);
  padding-bottom: 5px;
}

/* 紫色系 */
.item-box-purple {
  border-top: 4px solid #a55eea;
  background: linear-gradient(180deg, rgba(165, 94, 234, 0.1) 0%, rgba(255, 255, 255, 0.7) 100%);
}
.item-box-purple h5 {
  color: #8e44ad;
  border-bottom: 1px dashed rgba(165, 94, 234, 0.3);
  padding-bottom: 5px;
}

/* =========================================
   企画カード (Plan Split)
   ========================================= */
.plan-split-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px 0 30px;
}

.plan-card-wrapper {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 300px;
  position: relative;
  padding: 0;
  height: 0;
  padding-bottom: calc(33.333% - 20px);
}

.plan-card-square {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 25px;
  background-color: var(--color-card-bg);
  border-radius: 15px;
  overflow-y: auto;
  box-sizing: border-box;
}

/* 企画カードの色定義 (Day Theme用に調整) */
.plan-style-1 { --plan-color: #ff6b81; }
.plan-style-2 { --plan-color: #48dbfb; }
.plan-style-3 { --plan-color: #2ecc71; }
.plan-style-4 { --plan-color: #feca57; }
.plan-style-5 { --plan-color: #a29bfe; }

.plan-colored {
  border: 2px solid var(--plan-color) !important;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1), inset 0 0 20px rgba(255,255,255,0.5) !important;
  transition: transform 0.3s;
  background-color: #fff !important;
}

.plan-colored:hover {
  transform: translateY(-5px);
}

.plan-colored h3 {
  border-left-color: var(--plan-color) !important;
  color: var(--plan-color) !important;
  text-shadow: none;
}

/* =========================================
   Details / Summary / Sub-entries
   ========================================= */
details {
  border: 1px solid rgba(255, 133, 162, 0.3);
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 20px;
  background-color: rgba(255, 255, 255, 0.6);
  transition: background-color 0.3s;
}

details[open] {
  background-color: var(--color-card-bg);
}

summary {
  font-size: 1.2em;
  font-weight: bold;
  color: var(--color-text-base);
  cursor: pointer;
  list-style: none;
  padding-left: 25px;
  position: relative;
}

summary::before {
  content: "▶";
  color: var(--color-primary);
  font-size: 0.8em;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}

details[open] summary::before {
  content: "▼";
  transform: translateY(-50%) rotate(0deg);
}

.sub-entry-block {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--color-primary);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sub-entry-title {
  background: linear-gradient(90deg, rgba(255, 133, 162, 0.2), transparent);
  padding: 8px 15px;
  border-radius: 4px;
  margin: 0 0 1.5rem !important;
  border-bottom: none !important;
  font-size: 1.3em;
  font-weight: bold;
  color: var(--color-text-base);
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
}

.sub-entry-block ul {
  background: rgba(0, 0, 0, 0.02);
  padding: 15px 15px 15px 25px;
  border-radius: 5px;
}

.sub-entry-block p {
  margin-bottom: 1rem;
}

/* =========================================
   挨拶エリア (Day Theme Adaptation)
   ========================================= */
.greeting-box {
  margin: 40px auto 60px;
  max-width: 800px;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  padding: 40px 20px;
  /* 夜空の暗いグラデーションから、明るいグラデーションへ変更 */
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 240, 245, 0.6) 70%
  );
  border-top: 1px solid rgba(255, 105, 180, 0.3);
  border-bottom: 1px solid rgba(255, 105, 180, 0.3);
  position: relative;
  border-radius: 20px; /* 少し丸みを追加 */
}

.greeting-box::before,
.greeting-box::after {
  content: "❀";
  display: block;
  color: var(--color-primary);
  font-size: 1.5rem;
  opacity: 0.8;
  margin-bottom: 1rem;
  text-shadow: none;
}

.greeting-box::after {
  margin-bottom: 0;
  margin-top: 1rem;
}

.greeting-main {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 2;
  color: var(--color-text-base); /* 濃い色に */
  margin-bottom: 2rem;
  text-shadow: none;
}

.greeting-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555; /* 濃いグレー */
  margin-bottom: 3rem;
}

.greeting-footer {
  display: inline-block;
  text-align: right;
  width: 100%;
  max-width: 500px;
  border-top: 1px dotted rgba(255, 105, 180, 0.5);
  padding-top: 15px;
}

.greeting-comment {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.greeting-sign {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--color-text-base);
}

/* =========================================
   配送・返品ガイド (Day Theme Adaptation)
   ========================================= */
.shipping-guide-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin: 20px 0 30px;
}

.btn-guide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  padding: 15px 20px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-guide:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.btn-yamato {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  border-left: 5px solid #fc0;
}

.btn-sagawa {
  background: linear-gradient(135deg, #0055aa 0%, #003366 100%);
  border-left: 5px solid #fff;
}

.return-info-box {
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  border: 3px solid #ff69b4;
  border-radius: 12px;
  padding: 20px;
  margin-top: 25px;
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.1);
}

.return-info-title {
  color: #c71585;
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 2px dashed #ff69b4;
  padding-bottom: 5px;
  margin-bottom: 15px;
  display: block;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  /* 明るい背景に変更 */
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 20px;
  transition: background-color 0.3s;
}

.contact-item:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.contact-item h5 {
  color: var(--color-primary);
  font-size: 1.1em;
  margin-top: 0;
  border-bottom: 1px dashed rgba(255, 182, 193, 0.5);
  padding-bottom: 8px;
  margin-bottom: 15px;
}

/* =========================================
   フッター・SNS (Day Theme)
   ========================================= */
footer {
  text-align: center;
  padding: 30px;
  color: #666;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 50px;
  background-color: rgba(255, 255, 255, 0.5);
}

.footer-sns {
  margin-bottom: 2rem;
  padding: 0 10px;
}

.footer-sns h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  text-shadow: none;
}

.sns-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-sns {
  display: inline-block;
  min-width: 160px;
  padding: 12px 25px;
  border: 1px solid var(--color-primary);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-text-base);
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.btn-sns:hover {
  background-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 5px 15px rgba(255, 133, 162, 0.4);
  transform: translateY(-3px);
  text-decoration: none;
  border-color: transparent;
}

.copyright {
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* SNS Grid (Icons) */
.sns-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.sns-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 20px;
  width: 160px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  color: var(--color-text-base);
}

.sns-item:hover {
  transform: translateY(-5px);
  text-decoration: none;
}

.sns-img-box {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.03);
  border-radius: 50%;
  padding: 10px;
}

.sns-img-box img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.sns-label {
  font-weight: bold;
  color: var(--color-text-base);
  font-size: 1.1em;
  margin-bottom: 5px;
  transition: color 0.3s;
}

.sns-id {
  font-size: 0.85em;
  color: #888;
  word-break: break-all;
}

/* SNS Hover Colors */
.item-x:hover { border-color: #000; background-color: #000; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.item-discord:hover { border-color: #5865F2; background-color: #5865F2; box-shadow: 0 5px 15px rgba(88,101,242,0.3); }
.item-youtube:hover { border-color: #f00; background-color: #f00; box-shadow: 0 5px 15px rgba(255,0,0,0.3); }
.item-web:hover { border-color: #ffa500; background-color: #ffa500; box-shadow: 0 5px 15px rgba(255,165,0,0.3); }
.item-mail:hover { border-color: #00bfff; background-color: #00bfff; box-shadow: 0 5px 15px rgba(0,191,255,0.3); }

.item-x:hover .sns-label, .item-x:hover .sns-id,
.item-discord:hover .sns-label, .item-discord:hover .sns-id,
.item-youtube:hover .sns-label, .item-youtube:hover .sns-id,
.item-web:hover .sns-label, .item-web:hover .sns-id,
.item-mail:hover .sns-label, .item-mail:hover .sns-id {
  color: #fff;
}

/* =========================================
   レスポンシブ (Mobile)
   ========================================= */
@media screen and (max-width: 768px) {
  html {
    font-size: 90%;
  }
  .container {
    padding: 0 15px;
  }
  .header-hero {
    padding: 2vh 10px;
    min-height: auto;
  }
  .layout-split {
    flex-direction: column;
  }
  #section-overview .layout-split > div:first-child,
  #section-overview .map-container-reset,
  .access-map-container {
    flex: auto;
    width: 100%;
    min-width: auto;
    max-width: 100%;
  }
  .overview-text {
    height: auto;
    padding: 1.5rem;
  }
  #section-overview iframe,
  .access-map-container iframe {
    height: 300px;
  }
  .participation-grid {
    flex-direction: column;
  }
  .item-box {
    width: 100%;
    box-sizing: border-box;
  }
  .plan-split-container {
    display: block;
  }
  .plan-card-wrapper {
    height: auto;
    padding-bottom: 0;
    margin-bottom: 20px;
  }
  .plan-card-square {
    position: static;
    width: auto;
    height: auto;
    overflow-y: visible;
  }
  #toc-nav ul {
    gap: 5px;
  }
  #toc-nav a {
    font-size: 0.8em;
    padding: 4px 6px;
  }
  .card-content {
    padding: 15px;
  }
  #sakura-bg {
    display: none;
  }
  .btn-sns {
    width: 80%;
    max-width: 300px;
  }
  .sns-grid {
    gap: 10px;
    justify-content: center;
  }
  .sns-item {
    width: 100px;
    min-width: unset;
    padding: 10px;
    aspect-ratio: 1 / 1;
    justify-content: center;
  }
  .sns-label,
  .sns-id {
    display: none;
  }
  .sns-img-box {
    width: 80%;
    height: 80%;
    margin-bottom: 0;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
  }
  .sns-img-box img {
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
  }
  .pc-only {
    display: none;
  }
  .greeting-main {
    font-size: 1.1rem;
  }
  .greeting-box {
    padding: 30px 15px;
    margin: 20px auto 40px;
  }
}