@charset "UTF-8";

/* ===================================================
   ベース設定（リセットと共通設定）
   =================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth; 
  scroll-padding-top: 160px; 
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #2b2b2b;
  line-height: 1.6;
  background-color: #ffffff; 
}
img {
  max-width: 100%;
  height: auto;
}

/* セクション背景色 */
.bg-pink {
  background: linear-gradient(135deg, #ffffff 0%, #fff5f8 40%, #fef0f4 80%, #ffffff 100%);
}
.bg-blue {
  background: linear-gradient(135deg, #ffffff 0%, #f4f8ff 40%, #e9f2ff 80%, #ffffff 100%);
}

/* 共通の見出しスタイル */
.section-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.title-en {
  display: block;
  font-family: 'Caveat', cursive;
  font-size: 24px;
  font-weight: 700;
  color: #ff6b8b;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.title-jp {
  display: inline-block;
  font-family: 'Zen Maru Gothic', sans-serif; 
  font-weight: 900; 
  font-size: 24px;
  color: #2c3e50; 
  position: relative;
  padding-bottom: 8px;
}
.title-jp::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: linear-gradient(to right, #ffccd5, #e0f0ff);
  border-radius: 2px;
}
.title-jp-sup {
  display: block;
  font-size: 14px;
  color: #555; 
  font-weight: 700;
  margin-bottom: 4px;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.title-sub{
    font-size: 12px;
    margin-top: 16px;
    margin-bottom: -40px;
}
.title-sub .sp-only{}


/* ===================================================
   ナビゲーションメニューのスタイル
   =================================================== */
.nav-toggle-checkbox {
  display: none; 
}

.nav-toggle-button {
  position: fixed;
  top: 138px; 
  right: 8px;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #ff6b8b 0%, #ff416c 100%);
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(255, 107, 139, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 9999; 
  transition: transform 0.3s ease;
}
.nav-toggle-button:active {
  transform: scale(0.9);
}
.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-menu-wrapper {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9998;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s ease;
}

.nav-menu-list {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 80%;
  max-width: 320px;
  margin: 0 auto;
}

.nav-menu-list li {
  border-bottom: 1px dashed rgba(255, 107, 139, 0.3);
}

.nav-menu-list li:last-child {
  border-bottom: none;
}

.nav-menu-list a {
  text-decoration: none;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: #2c3e50;
  display: block;
  padding: 16px 12px;
  transition: all 0.3s;
}
.nav-menu-list a:active,
.nav-menu-list a.active {
  color: #ff6b8b;
  transform: scale(0.98);
}

.nav-toggle-checkbox:checked ~ .nav-menu-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-toggle-checkbox:checked ~ .nav-toggle-button .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle-checkbox:checked ~ .nav-toggle-button .hamburger-line:nth-child(2) {
  opacity: 0;
}
.nav-toggle-checkbox:checked ~ .nav-toggle-button .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ===================================================
   スマホ版（SP）: 各セクションの基本スタイル
   =================================================== */

/* --- 1. MVエリア --- */
.hero-section {
  position: relative;
  padding: 40px 24px 20px;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url('../images/decoration.png');
  background-repeat: no-repeat;
  opacity: 0.2;
  background-position: right 8px top 90px;
  background-size: 95%;
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  opacity: 0.8;
}
.blob-pink { width: 300px; height: 300px; background: #ffdde1; top: -50px; left: -50px; }
.blob-blue { width: 250px; height: 250px; background: #e0f7fa; bottom: 10%; right: -50px; }

.hero-bento-layout {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.bento-box {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  width: 100%; 
}
.title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.title-box-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.bento-logo {
  width: 100%;
  max-width: 220px;
}
.bento-title-area {
  position: relative;
  width: 100%;
  padding: 8px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero-title-en-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-4deg);
  font-family: 'Caveat', cursive;
  font-size: clamp(32px, 11.5vw, 54px); 
  color: rgba(255, 107, 139, 0.35); 
  white-space: nowrap;
  z-index: 0;
  width: 100%;
  text-align: center;
}
.hero-title-jp {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 8px; */
  z-index: 1;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  color: #2c3e50;
  text-align: center;
  width: 100%;
}
.title-top {
  font-size: 18px;
  letter-spacing: 0.08em;
  white-space: nowrap; 
  text-shadow: 
    1px 1px 0 #fff, -1px -1px 0 #fff, 
    1px -1px 0 #fff, -1px 1px 0 #fff,
    0px 1px 0 #fff, 0px -1px 0 #fff, 
    1px 0px 0 #fff, -1px 0px 0 #fff,
    0 4px 8px rgba(0,0,0,0.1);
}
.title-top .cross {
  color: #ff6b8b;
  margin: 0 4px;
}

.title-bottom {
  display: inline-block;
  font-size: 28px;
  letter-spacing: 0.1em;
  position: relative;
  white-space: nowrap; 
  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,
    0px 1.5px 0 #fff, 0px -1.5px 0 #fff, 
    1.5px 0px 0 #fff, -1.5px 0px 0 #fff,
    0 6px 12px rgba(0,0,0,0.1);
}
.title-bottom::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: -2%;
  width: 104%;
  height: 10px;
  background-color: rgba(66, 165, 245, 0.3);
  z-index: -1;
  border-radius: 4px;
}

.collage-image-area {
  position: relative;
  width: 100%;
  padding: 10px 0;
  display: block; 
}
.collage-item {
  background: #ffffff;
  padding: 10px 10px 30px 10px;
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  width: 85%;
  max-width: 400px;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.collage-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
.item-1 {
  position: relative; 
  transform: rotate(-2deg);
  z-index: 1;
}
.item-2 {
  position: absolute;
  top: 10px;
  left: 0; 
  right: 0; 
  transform: rotate(-2deg);
  z-index: 2;
  animation: photoFade 6s infinite ease-in-out;
}

@keyframes photoFade {
  0%, 15%   { opacity: 0; }
  40%, 60%  { opacity: 1; }
  85%, 100% { opacity: 0; }
}

.message-box {/* padding: 16px 0; */text-align: center;}
.message-lead {
  font-size: 16px;
  color: #2c3e50;
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 700;
}
.marker-pink {
  background: linear-gradient(transparent 60%, rgba(255, 107, 139, 0.4) 60%);
  color: #e60012;
}
.message-body {font-size: 14px;color: #444;line-height: 1.8;text-align: left;}
.message-body span{}

/* --- 2. アワード受賞 --- */
.award-section {padding: 40px 24px;text-align: center;}
.award-name {
  display: inline-block;
  color: #ff416c;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  padding: 8px 24px;
  background-color: #fff0f5;
  box-shadow: 0 4px 12px rgba(255, 65, 108, 0.1);
}
.award-text {
  font-size: 14px;
  color: #555;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: left;
}

/* --- 3. ツアー商品 --- */
.tour-section {padding: 40px 24px;}
.btn-wrapper { text-align: center; margin-top: 32px; }

.btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 320px;
  padding: 18px 44px 18px 24px;
  background: linear-gradient(90deg, #ff416c 0%, #ff4b2b 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(255, 65, 108, 0.4);
  transition: all 0.3s ease;
  position: relative;
}
.sub-links-wrapper { display: flex; flex-direction: column; gap: 16px; align-items: center; margin-top: 32px; }

.btn-sub {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 95%;
  max-width: 400px;
  padding: 16px 44px 16px 20px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  line-height: 1.4;
}

.btn-primary::after,
.btn-sub::after {
  content: "\e5cc";
  font-family: 'Material Symbols Outlined';
  font-weight: 400;
  font-size: 20px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}

.btn-sub-pink { background-color: #ffffff; color: #ff416c; border: 2px solid #ffebeb; box-shadow: 0 6px 16px rgba(255, 65, 108, 0.05); }
.btn-sub-blue { background-color: #f0f7ff; color: #42a5f5; border: 2px solid transparent; box-shadow: 0 6px 16px rgba(66, 165, 245, 0.05); }

/* --- 4. 旅の見どころ --- */
.highlights-section {padding: 40px 24px;}
.highlights-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.highlight-card {
  background-color: #ffffff; border-radius: 24px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(160, 180, 220, 0.15); 
}
.card-image-wrapper {width: 100%;aspect-ratio: 4 / 3;overflow: hidden;height: auto;}
.card-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.card-content {padding: 24px 16px;}
.card-title { font-size: 18px; margin-bottom: 10px; font-weight: 700; color: #2c3e50; font-family: 'Zen Maru Gothic', sans-serif;}
.card-text { font-size: 14px; color: #555; line-height: 1.6; }

.card-note {
  margin-top: 16px;
  padding: 14px 16px;
  background-color: #fff9fa;
  border-radius: 12px;
  border: 2px dashed #ffccd5;
}
.note-label {display: flex;align-items: center;font-size: 14px;font-weight: 700;color: #ff6b8b;margin-bottom: 6px;}
.note-label::before {
  content: "！"; display: inline-block; background-color: #ff6b8b; color: #fff;
  width: 16px; height: 16px; border-radius: 50%; text-align: center; line-height: 16px; font-size: 11px; margin-right: 6px;
}
.note-text {font-size: 14px;color: #555;line-height: 1.6;}

/* --- 5. 参加者の声 --- */
.voices-section {padding: 40px 0;}
.voice-scroll-wrapper {
  display: flex; gap: 20px; padding: 0 20px 24px; overflow-x: auto;
  scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none;
}
.voice-scroll-wrapper::-webkit-scrollbar { display: none; }
.voice-card {
  flex: 0 0 310px;
  scroll-snap-align: center;
  background-color: #ffffff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(255, 107, 139, 0.08);
  display: flex;
  flex-direction: column;
}
.voice-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  background-color: #f2f7ff;
}
.voice-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.voice-card-title {font-family: 'Zen Maru Gothic', sans-serif;font-weight: 900;font-size: 16px;color: #2c3e50;line-height: 1.4;margin-bottom: 6px;}
.voice-meta {font-size: 12px;color: #ff6b8b;font-weight: 700;margin-bottom: 12px;letter-spacing: 0.02em;}
.voice-text {font-size: 12px;color: #444;line-height: 1.6;}
.voice-message-box { margin-top: 16px; padding: 14px; background-color: #f2f7ff; border-radius: 16px; border: 1px solid rgba(66, 165, 245, 0.1); }
.voice-message-title {font-size: 12px;font-weight: 700;color: #42a5f5;margin-bottom: 6px;display: block;}
.voice-btn-wrapper {text-align: center;margin-top: 24px;padding: 0 16px;}

/* --- 6. 過去ツアー実績 --- */
.history-section {padding: 40px 24px;}
.history-grid { display: grid; grid-template-columns: 1fr; gap: 32px; max-width: 1040px; margin: 0 auto; }
.history-card { background: #ffffff; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.06); overflow: hidden; display: flex; flex-direction: column; }
.history-image-wrap { position: relative; width: 100%; aspect-ratio: 4 / 3; }
.history-image-wrap img {width: 100%;height: 100%;object-fit: cover;transition: transform 0.5s ease;position: relative;z-index: 0;}
.history-category {position: absolute;top: 12px;left: 12px;padding: 6px 14px;font-size: 12px;font-weight: 700;border-radius: 50px;z-index: 2;box-shadow: 0 4px 10px rgba(0,0,0,0.1);}
.cat-group1 { background: #ffe0e6; color: #ff416c; } 
.cat-group2 { background: #e0f0ff; color: #1e88e5; } 
.cat-group3 { background: #fff3e0; color: #f57c00; } 
.cat-group4 { background: #f3e5f5; color: #8e24aa; } 
.history-recommend {position: absolute;bottom: -4px;right: 12px;padding: 8px 16px;font-size: 12px;font-weight: 700;border-radius: 8px 8px 0 0;z-index: 3;transform: rotate(-3deg);transform-origin: bottom right;box-shadow: -2px -4px 10px rgba(0,0,0,0.1);letter-spacing: 0.05em;}
.recommend-pink { background: #ff416c; color: #ffffff; }
.recommend-blue { background: #1e88e5; color: #ffffff; }
.recommend-orange { background: #f57c00; color: #ffffff; }
.recommend-purple { background: #8e24aa; color: #ffffff; }
.history-content {padding: 24px 16px;display: flex;flex-direction: column;flex-grow: 1;position: relative;z-index: 2;background-color: #ffffff;}
.history-title {font-family: 'Zen Maru Gothic', sans-serif;font-size: 16px;color: #2c3e50;line-height: 1.5;margin-bottom: 16px;font-weight: 900;}
.history-points { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.history-points li {font-size: 14px;color: #555;line-height: 1.5;position: relative;padding-left: 20px;}
.history-points li::before { content: "★"; position: absolute; left: 0; top: 0; color: #ffca28; font-size: 14px; }

/* --- 7. ジャパンハートについて --- */
.about-section {padding: 40px 24px;}
.about-content {background: rgba(255, 255, 255, 0.8);backdrop-filter: blur(12px);-webkit-backdrop-filter: blur(12px);border: 1px solid rgba(255, 255, 255, 0.5);border-radius: 24px;padding: 24px 16px;box-shadow: 0 10px 30px rgba(0,0,0,0.03);max-width: 960px;margin: 0 auto;}
.about-flex-container { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.about-logo-area { width: 100%; max-width: 200px; text-align: center; }
.about-logo { width: 100%; height: auto; border-radius: 12px; }
.about-text-area { width: 100%; display: flex; flex-direction: column; gap: 20px; }
.about-text { font-size: 14px; color: #444; line-height: 1.7; }
.about-links-block { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.link-pill { display: inline-flex; justify-content: center; align-items: center; width: 100%; max-width: 280px; padding: 14px 24px; background-color: #f0f4ff; color: #3f51b5; font-size: 14px; font-weight: 700; text-decoration: none; border-radius: 50px; transition: all 0.3s; box-shadow: 0 4px 12px rgba(63, 81, 181, 0.05); }
.about-sns-links { display: flex; gap: 12px; justify-content: center; }
.sns-icon-btn { display: inline-flex; justify-content: center; align-items: center; width: 40px; height: 40px; border-radius: 50%; text-decoration: none; font-size: 16px; transition: all 0.3s ease; background-color: #ffffff; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.sns-icon-btn.facebook { color: #1877f2; border: 1px solid #e1e9ff; }
.sns-icon-btn.instagram { color: #ea4c89; border: 1px solid #ffe5ee; }
.sns-icon-btn.twitter { color: #1a1a1a; border: 1px solid #eeeeee; }
.sns-icon-btn.youtube { color: #ff0000; border: 1px solid #ffe5e5; }

/* --- 8. よくある質問 --- */
.faq-section {padding: 40px 24px;}
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.5); box-shadow: 0 8px 24px rgba(160, 180, 220, 0.08); overflow: hidden; transition: all 0.3s ease; }
.faq-question {display: flex;align-items: center;padding: 16px;cursor: pointer;list-style: none;}
.faq-question::-webkit-details-marker { display: none; }
.q-label { font-family: 'Zen Maru Gothic', sans-serif; font-weight: 900; font-size: 20px; color: #ff6b8b; margin-right: 12px; line-height: 1; }
.q-text {flex: 1;font-family: 'Zen Maru Gothic', sans-serif;font-weight: 900;font-size: 16px;color: #2c3e50;line-height: 1.4;padding-right: 10px;}
.expand-icon { color: #ffccd5; transition: transform 0.3s ease; }
.faq-item[open] .expand-icon { transform: rotate(180deg); color: #ff6b8b; }
.faq-answer { padding: 0 20px 24px 20px; background-color: transparent; }
.a-flex { display: flex; align-items: flex-start; gap: 12px; padding-top: 10px; border-top: 1px dashed rgba(255, 107, 139, 0.15); }
.a-label { font-family: 'Zen Maru Gothic', sans-serif; font-weight: 900; font-size: 20px; color: #42a5f5; line-height: 1; }
.a-text { font-size: 14px; color: #555; line-height: 1.7; }
.faq-btn-wrapper {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.faq-note {
  font-size: 14px;
  color: #555;
  font-family: 'Zen Maru Gothic', sans-serif;
}

/* ===================================================
   タブレット版（Tab）: 画面幅 768px 〜 1023px
   =================================================== */
@media (min-width: 768px) {
  .title-jp { font-size: 32px; }
  .title-jp::after {height: 6px;}
  .title-jp-sup {font-size: 18px;margin-bottom: 8px;}

  /* --- PC・タブレット用の一体型メニュー --- */
  .nav-toggle-button { display: none; }
  
  .custom-navigation {
    position: fixed;
    top: 100px; 
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 107, 139, 0.1);
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  }
  
  .nav-menu-wrapper {
    position: static;
    width: 100%; height: auto;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 12px 24px;
  }
  
  .nav-menu-list {
    flex-direction: row; 
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
  }
  .nav-menu-list li {
    border-bottom: none;
  }
  .nav-menu-list a {
    font-size: 13px;
    padding: 6px 12px;
    color: #4a5568;
    border-radius: 50px;
    transition: all 0.3s;
  }
  .nav-menu-list a:hover,
.nav-menu-list a.active {
  color: #ff6b8b;
  background-color: #fff0f3;
}

  /* --- MV --- */
  .hero-section {padding: 64px 16px;} 
  .hero-section::before {
  background-position: right 16px top 157px;
  }
  .aurora-blob { filter: blur(80px); }
  .blob-pink { width: 500px; height: 500px; }
  .blob-blue { width: 400px; height: 400px; }

  .hero-bento-layout { grid-template-columns: 1fr 1fr; gap: 32px; }
  .title-box { grid-column: span 2; margin-bottom: 20px; } 
  .message-box { grid-column: span 2; } 
  
  .collage-image-area {
    grid-column: span 2; 
    flex-direction: row; 
    display: flex;
    justify-content: center; 
    padding: 30px 0;
  }
  .collage-item { 
    width: 45%; 
    max-width: 450px; 
    position: static;
    margin: 0;
    animation: none;
    opacity: 1;
  }
  .item-1 {transform: rotate(-5deg);margin-right: -40px;margin-top: 0;z-index: 2;}
  .item-2 { transform: rotate(4deg); margin-top: 40px; z-index: 1; top: auto; left: auto; right: auto; }
  .bento-logo {max-width: 400px;}
  
  .bento-title-area {justify-content: center;width: 100%;}
  .hero-title-en-bg { font-size: 140px; left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(-4deg); }
  .hero-title-jp {text-align: center;align-items: center;width: 100%;}
  
  .title-top {font-size: 40px;}
  .title-bottom {font-size: 68px;}
  .title-bottom::after { height: 16px; bottom: 4px; }
  
  .message-box {}
  .message-lead { font-size: 20px; }
  .message-body { font-size: 16px;text-align: center; }
  
  .message-body span{display: block;}

  /* --- 他のセクション --- */
  .title-sub{font-size: 16px;}
  .award-section {
    padding: 64px 16px;
}
  .award-name {font-size: 24px;padding: 8px 24px;margin-bottom: 16px;font-family: 'Zen Maru Gothic', sans-serif;}
  .award-text {font-size: 14px;line-height: 1.8;}

  .tour-section {
    padding: 64px 16px;
}
  .btn-primary {
    width: auto;
    min-width: 320px;
    padding: 18px 52px 18px 28px;
    font-size: 16px;
  }
  .highlights-section { padding: 60px 30px; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .card-title { font-size: 20px; }
  .card-text {font-size: 14px;}

  .voices-section { padding: 60px 0; }
  .voice-scroll-wrapper { justify-content: center; flex-wrap: wrap; max-width: 1040px; margin: 0 auto; gap: 24px; }
  .voice-card {flex: 0 0 calc(50% - 16px);padding: 24px;}
  .voice-card-title { font-size: 16px; margin-bottom: 8px; }
  .voice-meta { font-size: 12px; margin-bottom: 14px; }
  .voice-text { font-size: 14px; }
  .voice-message-box {margin-top: 16px;padding: 16px;}
  .voice-message-title { font-size: 12px; margin-bottom: 8px; }
  .voice-btn-wrapper { margin-top: 40px; }

  .history-section { padding: 60px 30px; }
  .history-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  .about-section {padding: 64px 16px;}
  .about-content {padding: 40px;border-radius: 32px;}
  .about-flex-container { flex-direction: row; align-items: flex-start; gap: 40px; }
  .about-logo-area { flex: 0 0 220px; }
  .about-text-area { flex: 1; }
  .about-text {font-size: 14px;text-align: left;}
  .about-links-block { flex-direction: row; justify-content: flex-start; gap: 24px; margin-top: 8px; }
  .link-pill { width: auto; padding: 14px 32px; }

  .faq-section {padding: 64px 16px;}
  .faq-question {padding: 24px;}
  .q-label, .a-label { font-size: 24px; }
  .q-text {font-size: 18px;}
  .faq-answer {padding: 0 24px 24px 24px;}
  .a-text {font-size: 14px;}

  .sub-links-wrapper { 
    flex-direction: row; 
    justify-content: center; 
    gap: 24px; 
    margin-top: 40px; 
  }
  .btn-sub {
    width: auto;
    max-width: none;
    white-space: nowrap;
    font-size: 16px;
    padding: 18px 52px 18px 28px;
  }
  
  .breadcrumb {
    margin-top: 60px !important; 
    margin-bottom: 20px;
    position: relative;
    z-index: 10; 
  }
.card-content {padding: 16px 24px;}
}


/* ===================================================
   PC版（PC）: 画面幅 1024px 〜
   =================================================== */
@media (min-width: 1024px) {
  .nav-menu-list { gap: 32px; }
  .nav-menu-list a {font-size: 14px;font-weight: 700;padding: 8px 16px;}
  
  .hero-section::before {
  background-position: right 50px top 90px;}

.message-body span{display: block;}

  .collage-item:hover { transform: scale(1.05) rotate(0deg); z-index: 5; }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255, 65, 108, 0.6); opacity: 0.95; }
  .highlights-section {padding: 64px 16px;}
  .highlights-grid { max-width: 1040px; margin: 0 auto; gap: 40px; }
  .highlight-card { transition: transform 0.31s ease, box-shadow 0.31s ease; }
  .highlight-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(140, 160, 200, 0.25); }
  .card-image-wrapper{height: 300px;}
  .card-image-wrapper img { transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); }

  .voices-section {padding: 64px 16px;}
  .voice-scroll-wrapper { justify-content: center; flex-wrap: wrap; max-width: 1040px; margin: 0 auto; gap: 24px; }
  .voice-card { flex: 0 0 calc(33.333% - 16px); transition: transform 0.3s ease, box-shadow 0.3s ease; }
  .voice-card:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(255, 107, 139, 0.15); }

  .history-section {padding: 64px 16px;}
  .history-grid {grid-template-columns: repeat(3, 1fr);gap: 32px;} 
  .history-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
  .history-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }

  .link-pill:hover { background-color: #3f51b5; color: #ffffff; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(63, 81, 181, 0.25); }
  .sns-icon-btn:hover { transform: translateY(-3px) scale(1.05); }
  .sns-icon-btn.facebook:hover { background-color: #1877f2; color: #fff; border-color: #1877f2; }
  .sns-icon-btn.instagram:hover { background-color: #ea4c89; color: #fff; border-color: #ea4c89; }
  .sns-icon-btn.twitter:hover { background-color: #1a1a1a; color: #fff; border-color: #1a1a1a; }
  .sns-icon-btn.youtube:hover { background-color: #ff0000; color: #fff; border-color: #ff0000; }
  
  .btn-sub:hover { transform: translateY(-2px); }
  .btn-sub-pink:hover { border-color: #ff416c; box-shadow: 0 8px 24px rgba(255, 65, 108, 0.15); }
  .btn-sub-blue:hover { background-color: #e0f0ff; box-shadow: 0 8px 24px rgba(66, 165, 245, 0.15); }
  
  .faq-item:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.9); box-shadow: 0 12px 32px rgba(255, 107, 139, 0.1); }
}