/* ======= 変数 ─────────────────────────────────────======= */
:root {
  --gold: #b59f2e;
  --white: #fff;
  --text: #393332;
  --bg-dark: rgba(0, 0, 0, 0.4);
  --radius: 16px;
  --yellow: #ffe200;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  width: 100%;
  overflow-x: hidden;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.sp-inline {
  display: none;
}

.pc-inline {
  display: inline;
}

.mt-20 {
  margin-top: 20px;
}

/* ハンバーガー（デフォルトは非表示） */

.hamburger {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: none;
}

.hamburger__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 3px;
  background-color: var(--gold);
  transition: all 0.4s;
}

.hamburger__line:nth-of-type(1) {
  top: 14px;
}

.hamburger__line:nth-of-type(2) {
  top: 23px;
}

.hamburger__line:nth-of-type(3) {
  top: 32px;
}

/* メニューオープン時 */
.hamburger.active .hamburger__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}

.hamburger.active .hamburger__line:nth-of-type(2) {
  opacity: 0;
}

.hamburger.active .hamburger__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

/* サイドバー：PCでは常に表示、SPでは隠してアニメーション */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 100vh;
  background: #3a1a00;
  transform: translateX(0);
  transition: transform 0.3s ease;
  z-index: 1000;
}

/* コンテンツ領域を右にずらしておく（PC時） */
.content {
  margin-left: 220px;
  transition: margin-left 0.3s ease;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #3a1a00;
  font-weight: bold;
}

.section-header-wrap {
  padding: 100px 40px 30px;
}

.section-header h2 {
  font-size: max(3.6vw, 32px);
  color: #3a1a00;
  margin-bottom: 8px;
  line-height: 1;
}

.section-header2 {
  text-align: center;
  margin-bottom: 48px;
}

.section-header2 .highlight {
  color: #b69325;
  font-size: max(2.6vw, 24px);
}

.section-header2__title {
  font-size: max(2vw, 18px);
  font-weight: bold;
  line-height: 1.3;
}

.section-header2__subtitle {
  margin-top: 12px;
  font-size: 18px;
}

.section-label img {
  width: 20px;
  height: 20px;
}

.wrapper {
  display: flex;
  min-height: 100vh;
}

.btn-contact {
  margin: 0 auto;
  max-width: 680px;
  width: 95%;
  display: block;
  background: #b69325;
  color: var(--white);
  font-size: max(1.6vw, 20px);
  font-weight: bold;
  text-align: center;
  padding: 16px 0;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.3s ease;
  position: relative;
}

.btn-contact:hover {
  opacity: 0.8;
}

.dli-chevron-round-right {
  display: inline-block;
  vertical-align: middle;
  color: var(--white);
  line-height: 1;
  position: relative;
  width: 20px;
  height: 20px;
  transform: translateX(-25%) translateY(-50%) rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
}

.dli-chevron-round-right::before,
.dli-chevron-round-right::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}

.dli-chevron-round-right::before {
  top: 0;
  left: 0;
  right: 0;
  height: 0.1em;
}

.dli-chevron-round-right::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.1em;
}

/* ======= 
 * サイドメニュー
 ======= */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #3a1a00;
}

.sidebar nav {
  width: 220px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sidebar nav ul {
  list-style: none;
}

.sidebar nav li {
  margin-bottom: 20px;
  text-align: center;
}

.sidebar nav a {
  font-size: 16px;
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
}

.content {
  margin-left: 220px;
  width: calc(100% - 220px);
}

/* ======= 
 * メインビジュアル
 ======= */
.mv {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("../images/california-tour202509/mv_bg.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.mv-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}

.mv-overlay-top .mv-subtitle {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.mv-wine,
.mv-bissiness {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.mv-wine {
  color: #fdc8c8;
}

.mv-bissiness {
  color: #ccecfa;
}

.mv-overlay-top h1 {
  font-size: max(2vw, 24px);
  text-align: center;
}

.mv-overlay-middle .mv-highlight {
  font-size: 24px;
  color: #ffe600;
  font-weight: bold;
  margin-bottom: 8px;
}

.mv-overlay-middle h2 {
  margin: 20px auto 4vw;
  padding: 40px 0;
  width: 90%;
  font-size: max(3.6vw, 32px);
  border-top: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  text-align: center;
}

.mv-large {
  color: var(--yellow);
}

.mv-overlay-middle .mv-small {
  font-size: max(2vw, 16px);
}

.mv-overlay-bottom {
  text-align: center;
}

.mv-overlay-bottom .mv-presented {
  font-size: 16px;
  text-transform: lowercase;
  margin-bottom: 20px;
}

.mv-overlay-bottom .mv-logos {
  padding: 0 0 0 65px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.mv-overlay-bottom .mv-logo {
  height: 64px;
}

.mv-overlay-bottom .mv-logo-x {
  font-size: max(2vw, 1.4rem);
}

/* ======= 
 * コンセプト
 ======= */
.concept {
  padding: 64px 32px;
  background: var(--white);
  position: relative;
}

.concept-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.concept-header {
  margin: 0 0 80px;
  text-align: left;
  width: 100%;
}

.concept-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
}

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

.concept-header .concept-lead {
  margin: 40px 0 8px;
  font-size: max(1.6vw, 16px);
  font-weight: bold;
}

.concept-header .concept-title {
  font-size: max(3.6vw, 24px);
  font-weight: bold;
  line-height: 1.3;
}

.concept-large {
  color: #71460c;
}

.concept-small {
  font-size: max(2vw, 16px);
}

.concept-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.concept-logo-wrap {
  width: 20vw;
  height: 20vw;
  position: absolute;
  top: 0;
  right: 5%;
}

.concept-images-wrap {
  display: flex;
  align-items: center;
  gap: 40px;
}

.concept-circle-img {
  width: 25vw;
  height: 25vw;
  border-radius: 50%;
  overflow: hidden;
}

.concept-circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept-cross {
  font-size: 60px;
  color: #3a1a00;
  line-height: 1;
}

/* ======= 
 * お悩み
 ======= */
.pain {
  padding: 200px 32px 15vw;
  background-image: url("../images/california-tour202509/pain-bk.svg");
  background-size: 110%;
  background-position: center bottom -1px;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
}

.pain-header-wrap {
  text-align: center;
}

.pain-header {
  display: inline-block;
  text-align: left;
}

.pain .title {
  text-align: center;
  font-size: max(2vw, 20px);
  margin: 0 0 100px;
  color: var(--text);
  position: relative;
}

.pain .title::before,
.pain .title::after {
  width: 3px;
  height: 40px;
  background-color: var(--text);
  content: "";
  position: absolute;
}

.pain .title::before {
  top: 50%;
  left: -40px;
  transform: rotate(-35deg) translateY(-50%);
}

.pain .title::after {
  top: 50%;
  right: -30px;
  transform: rotate(35deg) translateY(-50%);
}

.pain .title .highlight {
  font-size: max(2.6vw, 24px);
  color: #b69325;
}

.pain-list {
  list-style: none;
  max-width: 800px;
  margin: auto;
}

.pain-item {
  margin-bottom: 40px;
  padding: 24px 24px 24px 64px;
  position: relative;
  border: 2px solid #3a1a00;
  border-radius: var(--radius);
  background: var(--white);
}

.pain-item:last-child {
  margin-bottom: 0;
}

.pain-item .num {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: #3a1a00;
  border-radius: 50%;
  font-size: 24px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.pain-item .icon img {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

.text-wrap {
  width: 85%;
  color: #401d00;
  font-weight: bold;
}

.pain-item .text-title {
  margin-bottom: 8px;
  font-size: 20px;
}

.pain-item .text-desc {
  line-height: 1.5;
  font-size: 16px;
}

.pain-item .text-desc span {
  color: #b8a11d;
  font-size: 20px;
}

.pain-call {
  margin-top: 92px;
  text-align: center;
  font-size: max(2vw, 20px);
  color: #3d1b00;
  font-weight: bold;
}

.pain-call span {
  font-size: max(2.6vw, 24px);
  color: #b69325;
}

/* ======= 
 * ただの観光ではなく 現地と繋がれるビジネスツアーを
 ======= */
.about {
  position: relative;
  background: #3a1a00;
  color: var(--white);
  padding: 80px 0;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px 64px;
}

.about-title {
  font-size: max(2.6vw, 24px);
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.about .highlight {
  color: #ffe600;
}

.about-desc {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.about-label {
  display: inline-block;
  background: #b69325;
  padding: 8px 64px;
  border-radius: 8px;
  font-size: 36px;
  margin: 0 0 0 110px;
  position: relative;
  z-index: 1;
  color: var(--white);
  font-weight: bold;
}

.about-label small {
  display: block;
  font-size: 16px;
  text-align: center;
}

.about-content {
  margin: 0 40px 20px;
  background: var(--white);
  border-radius: 12px;
  padding: 48px 24px 24px;
  color: #3a1a00;
  position: relative;
  top: -32px;
}

.about-content-desc {
  margin: 30px auto;
  max-width: 600px;
  text-align: center;
  font-weight: bold;
}

.about-content-desc span {
  color: #b69325;
}

.about-lead {
  font-size: 16px;
  margin-bottom: 32px;
}

.about-content .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-content .card {
  background: #3a1a00;
  border-radius: 8px;
  padding: 40px 24px;
  position: relative;
  font-weight: bold;
}

.about-content .card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
  color: var(--white);
  text-align: center;
}

.about-content .card-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #ffe;
  margin-bottom: 24px;
}

.about-content .card-icon {
  position: absolute;
  bottom: -15px;
  right: 16px;
}

/* ======= 
 * ツアー構成
 ======= */
.tour-structure {
  padding: 100px 40px 0;
}

.schedule-table {
  margin: 40px 0 0;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.schedule-table thead tr {
  background: #3a1a00;
  color: var(--white);
}

.schedule-table thead th {
  padding: 16px;
  font-weight: bold;
  text-align: left;
  text-align: center;
}

.schedule-table thead th:first-child {
  border-top-left-radius: 12px;
}

.schedule-table thead th:last-child {
  border-top-right-radius: 12px;
}

.schedule-table tbody tr:nth-child(even) {
  background: var(--white);
}

.schedule-table tbody tr:nth-child(odd) {
  background: #f2f2f2;
}

.schedule-table td {
  padding: 16px;
  vertical-align: top;
  font-weight: bold;
}

.schedule-table td span {
  color: #b9a11d;
}

.schedule-table td:first-child {
  color: #3a1a00;
  font-weight: bold;
  text-align: center;
}

/* ======= SPカード ======= */
.schedule-cards {
  margin: 20px 0 0;
  display: none;
  flex-direction: column;
  gap: 24px;
}

.schedule-card {
  background: #f2f2f2;
  padding: 16px;
  border-radius: 8px;
}

.schedule-card dt {
  font-weight: bold;
  color: #3a1a00;
  margin-top: 12px;
}

.schedule-card dt:first-of-type {
  margin-top: 0;
}

.schedule-card dd {
  margin-left: 0;
  margin-bottom: 8px;
  line-height: 1.5;
}

/* ======= プライベートジェット ======= */
.jet-section {
  position: relative;
  padding: 0 40px;
}

.jet-wrap {
  background: url("../images/california-tour202509/jet-bg.jpg") center/cover
    no-repeat;
  color: var(--white);
  padding: 80px 32px;
  border-radius: 12px;
  margin: 64px auto;
  overflow: hidden;
}

.jet-section .jet-content {
  margin: 0;
  text-align: center;
  font-weight: bold;
  clear: both;
}

.jet-section h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.3;
  font-size: max(2vw, 18px);
}

.jet-section h3 .highlight {
  color: #ffe600;
  font-size: max(2.6vw, 24px);
}

.jet-section p {
  font-size: 16px;
  line-height: 1.6;
  display: inline-block;
  text-align: left;
}

.jet-illustration {
  position: absolute;
  bottom: -130px;
  right: 100px;
  width: 180px;
  height: auto;
}

/* ======= 各地域セクション ======= */
.region-header {
  width: 100%;
  background-color: #b69325;
  color: var(--white);
}

.region-header-inner {
  padding: 32px 16px;
  width: 47%;
}

.region-header-inner.right {
  float: right;
}

.region-header-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 28px;
  font-weight: bold;
}

.region-header-title i {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.region-header-en {
  font-size: 16px;
  font-weight: normal;
  opacity: 0.8;
  margin-left: 8px;
}

.region-header-sub {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.6;
  font-weight: bold;
}

.region-section {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 32px;
  padding: 40px;
  clear: both;
  align-items: start;
}

.region-section.napa {
  background-image: url("../images/california-tour202509/city-introduction-bg1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.region-section.sonoma {
  background-image: url("../images/california-tour202509/city-introduction-bg2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  grid-template-columns: 1fr 45%;
}

.region-section.temecula {
  background-image: url("../images/california-tour202509/city-introduction-bg1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.region-section.losangeles {
  background-image: url("../images/california-tour202509/city-introduction-bg2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  grid-template-columns: 1fr 45%;
}

.region-section.alt {
  direction: rtl; /* ======= 右左反転 ======= */
}

.region-section.alt .region-map,
.region-section.alt .region-details {
  direction: ltr; /* ======= 子要素は元に戻す ======= */
}

/* ======= 地図＋基本情報 ======= */
.region-map img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* ======= 詳細カード ======= */
.region-details {
  margin: -110px 0 0;
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
}

.region-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}

.region-title-en {
  font-size: 16px;
  color: #777;
  margin-left: 8px;
}

/* ======= 体験リスト ======= */
.experience-list-full {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px; /* ======= li間の隙間 ======= */
}

.experience-list-full li {
  display: flex;
  overflow: hidden;
  border-radius: 12px;
  font-weight: bold;
}

/* ======= アイコン＋ラベル部分 ======= */
.exp-icon-block {
  flex: 0 0 120px;
  padding: 20px;
  background-color: #b69325;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--white);
}

.exp-icon-block i {
  width: 28px;
  height: 28px;
}

.exp-icon-block span {
  font-size: 14px;
  line-height: 1;
}

/* ======= テキスト部分 ======= */
.exp-content-block {
  flex: 1;
  background-color: #3a1a00;
  display: flex;
  align-items: center;
  padding: 15px;
}

.exp-content-block p {
  color: var(--white);
  font-size: 16px;
  margin: 0;
}

/* ======= 注目ワイナリー／スポット ======= */
.spot-highlight {
  margin: 20px 0 0;
  border: 2px solid #b69325;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-weight: bold;
}

.spot-highlight h5 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #3a1a00;
}

.spot-name {
  color: #3a1a00;
  font-size: 18px;
}

.spot-highlight p {
  line-height: 1.6;
}

.region-details .thumbs {
  display: flex;
  gap: 16px;
}

/* ======= このツアーが、ビジネスの⼀⼿になる理由 ======= */
.why-tour {
  background: #fafafa;
  padding: 80px 16px;
  font-weight: bold;
  background-image: url("../images/california-tour202509/circle.png");
  background-size: 60%;
  background-position: 20vw bottom;
  background-repeat: no-repeat;
  position: relative;
}

.why-tour__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.why-tour__subtitle .highlight,
.why-tour__cards .card__text .highlight {
  color: #b69325;
}

/* ======= カードグリッド ======= */
.why-tour__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
  list-style: none;
  padding: 0;
}

.why-tour__cards .card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.why-tour__cards .card__img {
  width: 100%;
  height: auto;
  display: block;
}

.why-tour__cards .card__text {
  padding: 16px;
  font-size: 16px;
  line-height: 1.6;
}

.why-tour__footer-illu {
  position: absolute;
  bottom: -130px;
  right: 6vw;
  width: 120px;
  height: auto;
  z-index: 1;
}

.why-tour__footer-text {
  text-align: center;
  font-size: 16px;
}

.why-tour__footer-text .highlight {
  color: #b69325;
  font-size: 18px;
}

.difference {
  padding: 120px 16px 20px;
  background: #fafafa;
  position: relative;
  font-weight: bold;
}

.difference::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 32px solid transparent;
  border-right: 32px solid transparent;
  border-top: 32px solid #fafafa;
}

.difference-plane {
  position: absolute;
  top: 0px;
  left: 5%;
  width: 310px;
  height: auto;
}

.difference__plane {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -40%);
  pointer-events: none;
}

.difference__plane img {
  display: block;
  width: 160px;
  opacity: 0.2;
}

.difference__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.difference__heading {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 32px;
  color: var(--text);
}

.difference__heading--highlight {
  color: var(--gold);
  font-weight: bold;
}

.difference__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 32px;
  grid-row-gap: 48px;
  margin-bottom: 32px;
}

.difference__col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.difference__section {
  background: var(--gold);
  position: relative;
  padding: 32px 24px 24px;
  border-radius: 24px;
}

.difference__section dt {
  color: #b9a11d;
}

.difference__section__header {
  position: absolute;
  top: -22px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border-radius: 100px;
  padding: 4px 54px 4px 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.difference__section__number {
  flex: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-size: 0.875rem;
  margin-right: 29px;
}

.difference__section__title {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
  color: var(--text);
}

.difference__section__content--grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  height: 100%;
  gap: 16px;
}

.difference__section__card {
  background: var(--white);
  color: var(--text);
  border-radius: 8px;
  padding: 16px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

.difference__section__content--list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.difference__section__item {
  background: var(--white);
  color: var(--text);
  border-radius: 8px;
  padding: 16px;
}

.difference__section__item strong {
  display: block;
  margin-bottom: 4px;
}

.difference__section__content--single {
  height: 100%;
}

.difference__section__content--single dl {
  background: var(--white);
  color: var(--text);
  border-radius: 8px;
  padding: 16px;
  line-height: 1.5;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.difference__footer {
  margin: 0 0 40px;
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 48px;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 10px;
}

.difference__catch {
  font-size: max(2vw, 18px);
  line-height: 1.4;
  font-weight: bold;
  color: #3d1b00;
  margin-bottom: 24px;
}

.difference__catch .highlight {
  color: #b69325;
  font-size: max(2.6vw, 24px);
}

/* ======= 申し込み・参加情報 ======= */
.costs__inner {
  padding: 40px;
  position: relative;
  margin: 0 auto;
  z-index: 1;
  background: url("../images/california-tour202509/costs-bg.jpg") center/cover
    no-repeat;
  color: var(--white);
  font-weight: bold;
}

.costs__header {
  text-align: center;
  margin-bottom: 48px;
}

.costs__title {
  font-size: max(2vw, 16px);
  font-weight: bold;
  margin: 0;
}

.costs__title .highlight {
  font-size: max(2.6vw, 24px);
  color: var(--yellow);
}

.costs__subtitle {
  display: block;
  font-size: 1rem;
  margin-top: 8px;
  color: var(--white);
}

.costs__price-area {
  text-align: center;
  margin-bottom: 64px;
}

.costs__label {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--white);
}

.costs__price-block {
  text-align: center;
}

.costs__price {
  padding: 10px 40px;
  font-size: max(2vw, 18px);
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 8px;
  border-top: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  display: inline-block;
}

.costs__price-number {
  font-size: max(6vw, 72px);
  font-weight: bold;
  line-height: 1;
  margin-right: 8px;
  color: var(--yellow);
}

.costs__price-tax {
  font-size: 1rem;
  color: var(--white);
}

.costs__notes-block {
  margin: 20px 0 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.costs__notes,
.costs__exclusions {
  text-align: left;
}

.costs__notes li {
  font-size: 0.875rem;
  margin-bottom: 4px;
  color: var(--white);
}

.costs__exclusions li {
  font-size: 0.875rem;
  color: var(--white);
  line-height: 1.4;
}

.costs__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.costs__card {
  background: var(--white);
  border-radius: var(--radius);
  position: relative;
}

.costs__card--gold {
  background: var(--gold);
  color: var(--white);
}

.costs__card-header {
  padding: 12px 16px;
  width: 80%;
  background: var(--gold);
  color: var(--white);
  text-align: center;
  font-weight: bold;
  border-radius: 100px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.costs__card-body {
  padding: 40px 16px 16px;
  color: var(--text);
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.5;
  height: 100%;
}

.costs__card--gold .costs__card-body {
  padding: 0 16px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.costs__card-body dl dt {
  margin: 8px 0 0;
  font-weight: bold;
  color: var(--gold);
}

.costs__card-body .decoration {
  color: var(--gold);
}

.costs__card-body li {
  margin: 0 0 8px;
}

.costs__card-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}

.costs__card-text .highlight {
  font-weight: bold;
  font-size: 24px;
}

/* ======= 申し込み・参加情報 ======= */
.profile-list {
  padding: 60px 40px;
}

.profile-list__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: bold;
}

.profile-card {
  background: #fff;
  border: 2px solid #5a2d00;
  border-radius: 12px;
  text-align: center;
  padding: 24px;
}

.profile-card__avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
}

.profile-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-card__title {
  font-size: 18px;
  color: #3a1a00;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--gold);
}

.profile-card__desc {
  font-size: 14px;
  color: #3a1a00;
  line-height: 1.6;
  text-align: left;
}

/* ======= ここが違う ======= */
.special {
  position: relative;
  background: url("../images/california-tour202509/mv_bg.jpg") center/cover
    no-repeat;
  color: #fff;
  padding: 120px 16px 80px;
  overflow: hidden;
}

.special__overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.special__inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.special__box {
  margin: 20px 0 40px;
}

.special__logos {
  display: flex;
  align-items: center;
  justify-content: center;
}

.special__logo {
  max-width: 200px;
  margin: 0 16px;
}

.special__logo img {
  display: block;
  max-width: 100%;
  height: auto;
}

.special__times {
  font-size: 24px;
  color: #fff;
}

.special__desc {
  margin: 0 auto 48px;
  line-height: 1.6;
  font-size: max(1.2vw, 18px);
  font-weight: bold;
}

.special__desc .highlight {
  color: var(--yellow);
  font-size: max(1.6vw, 24px);
}

/* ======= 募集概要とスケジュール ======= */
.info-cards {
  padding: 80px 16px;
  background: #fafafa;
  font-weight: bold;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.info-card__header {
  background: #3a1a00;
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  font-weight: bold;
  padding: 16px;
}

.info-card__body {
  padding: 16px;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-card__body a:hover {
  text-decoration: none;
}

/* ======= 申し込み ======= */
.timeline {
  padding: 80px 16px;
}

.timeline-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1000px;
}

.timeline-item {
  display: flex;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid #ccc;
  gap: 60px;
}

.timeline-item:first-child {
  border-top: 1px solid #ccc;
}

.timeline-header {
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--gold);
}

.timeline-icon {
  flex: none;
  width: 60px;
  height: 60px;
  margin-right: 24px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.125rem;
}

.timeline-content {
  flex: 1;
}

.timeline-content h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
  color: var(--gold);
  line-height: 1.3;
}

.timeline-period {
  margin: 0 0 8px;
  color: var(--gold);
  font-weight: bold;
}

/* ======= お問い合わせ ======= */
.contact-section {
  padding: 80px 16px;
  background: #fafafa;
}

.section-header-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  gap: 20px;
}

.contact-select__button {
  width: 15%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  padding: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  background-color: #cfcfcf;
  color: #979797;
}

.contact-select__button:hover {
  background: var(--gold);
  color: #fff;
}

.contact-select__button.current {
  pointer-events: none;
  background: var(--gold);
  color: #fff;
}

.contact-section__title {
  text-align: center;
  color: #3a1a00;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: bold;
}

.contact-section__form {
  display: none;
}

.contact-section__form.target {
  display: block;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-row p {
  display: grid;
  grid-template-columns: 145px 1fr;
  column-gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.form-row__label {
  color: #3a1a00;
  font-size: 16px;
}

.form-row__input {
  width: 100%;
  padding: 5px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}

.form-row__textarea {
  width: 100%;
  padding: 5px;
  font-size: 16px;
  height: 200px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}

/*── 送信ボタン ───────────────────────────────*/
.form-footer {
  text-align: center;
  margin-top: 32px;
}

.form-footer p {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.form-footer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #b59f2e;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 16px 80px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
}

.form-footer__btn:hover {
  opacity: 0.8;
}

/* ======= SP用調整 ======= */
@media (max-width: 768px) {
  .sp-inline {
    display: inline;
  }

  .pc-inline {
    display: none;
  }

  /* ハンバーガーを表示 */
  .hamburger {
    display: block;
  }

  /* サイドバーは初期では隠す */
  .sidebar {
    transform: translateX(-100%);
  }
  /* コンテンツもマージンをなくす */
  .content {
    margin-left: 0;
  }

  /* サイドバーを開いた状態のクラス */
  .sidebar.active {
    transform: translateX(0);
  }

  /* 背後にオーバーレイを出したい場合 */
  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
  }

  .overlay.show {
    display: block;
  }

  .sidebar {
    transform: translateX(-100%);
  }

  .content {
    margin-left: 0;
    width: 100%;
  }

  .section-header-wrap {
    padding: 60px 20px 20px;
  }

  /* ======= 
  * メインビジュアル
  ======= */
  .mv {
    background-image: url("../images/california-tour202509/sp/mv_bg.jpg");
  }

  .mv-wrapper {
    width: 90%;
  }

  .mv-overlay-bottom .mv-logo {
    height: 40px;
  }

  .mv-overlay-middle h2 {
    margin: 20px auto 40px;
    padding: 20px 0;
  }

  .mv-overlay-bottom .mv-logos {
    padding: 0;
  }

  /* ======= 
  * コンセプト
  ======= */
  .concept {
    padding: 40px 10px;
  }

  .concept-header {
    margin: 0 0 290px;
  }

  .concept-header .concept-lead {
    margin: 20px 0 0;
  }

  .concept-circle-img {
    width: 80vw;
    height: 80vw;
    border-radius: 50%;
    overflow: hidden;
  }

  .concept-logo-wrap {
    width: 57vw;
    height: 57vw;
    top: 15%;
    right: 11%;
  }

  .concept-circle-img.two {
    margin: 10px 0 0;
  }

  .concept-images-wrap {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
  }

  /* ======= 
 * お悩み
 ======= */
  .pain {
    padding: 60px 10px 15vw;
  }

  .pain .title {
    margin: 0 0 50px;
  }

  .pain-item .num {
    width: 50px;
    height: 50px;
    left: 46px;
  }

  .pain .title::before,
  .pain .title::after {
    height: 30px;
  }

  .pain .title::before {
    top: 60%;
    left: -20px;
  }

  .pain .title::after {
    top: 60%;
    right: -20px;
  }

  .text-wrap {
    margin: 20px 0 0;
    width: 100%;
  }

  .pain-item {
    padding: 20px;
  }

  .pain-item .icon img {
    margin: 0 auto;
    position: static;
    transform: translateY(0);
  }

  .pain-call {
    margin-top: 40px;
  }

  .about {
    padding: 40px 0 20px;
    background-image: url("../images/california-tour202509/hero-sp.jpg");
  }

  .about-wrapper {
    padding: 0 10px;
  }

  .about-title {
    font-size: 24px;
  }

  .about-desc {
    font-size: 14px;
    margin-bottom: 24px;
    text-align: left;
  }

  .about-label {
    margin: 0 0 0 40px;
    padding: 10px 24px;
    font-size: 20px;
    margin-bottom: -24px;
  }

  .about-content {
    margin: 0;
    padding: 32px 16px;
    top: -24px;
  }

  .about-content .cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-content .card {
    padding: 16px;
  }

  .about-content .card-title {
    font-size: 16px;
  }

  .about-content .card-desc {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .about-content .card-icon {
    width: 48px;
    height: 48px;
  }

  .btn-contact {
    padding: 20px 0;
    width: 95%;
  }

  .tour-structure {
    padding: 60px 20px 0;
  }

  .schedule-table {
    display: none;
  }

  .schedule-cards {
    display: flex;
  }

  .schedule {
    padding: 32px 16px;
  }

  .schedule h3 {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .schedule-card {
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
  }

  .schedule-card span {
    color: #b9a11d;
  }

  .schedule-card dt:first-of-type {
    font-size: 20px;
  }

  .schedule-card dt {
    font-size: 16px;
    margin-top: 8px;
  }

  .schedule-card dd {
    font-size: 14px;
    margin-bottom: 6px;
  }

  /* ======= プライベートジェット ======= */
  .jet-section {
    padding: 0 10px;
  }

  .jet-illustration {
    bottom: -80px;
    right: 20px;
    width: 120px;
  }

  /* ======= 訪問都市紹介 ======= */
  .city-intro {
    padding: 32px 0;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .region-grid {
    grid-template-columns: 1fr;
  }

  .region-details {
    padding: 24px;
  }

  .experience-list li {
    margin-bottom: 12px;
  }

  .exp-icon {
    width: 32px;
    height: 32px;
    margin-right: 12px;
  }

  .exp-text {
    font-size: 14px;
  }

  .spot-highlight {
    padding: 12px;
    margin-bottom: 16px;
  }

  .thumbs {
    flex-direction: column;
  }

  .region-header-inner {
    width: 100% !important;
    float: none !important;
    text-align: center;
    padding: 24px 12px;
  }

  .region-header-title {
    justify-content: center;
    font-size: 22px;
  }

  .region-header-title i {
    width: 22px;
    height: 22px;
  }

  .region-header-en {
    display: inline-block;
    margin-left: 6px;
    font-size: 14px;
  }

  .region-header-sub {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.4;
  }

  .region-section,
  .region-section.sonoma,
  .region-section.losangeles {
    padding: 10px;
    grid-template-columns: 1fr;
  }

  .region-details {
    margin: 0;
    padding: 10px;
  }

  .exp-icon-block {
    flex: 0 0 80px;
  }

  .region-details.left {
    order: 2;
  }

  .region-map.right {
    order: 1;
  }

  .why-tour {
    background-size: 100%;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: relative;
  }

  .why-tour {
    padding: 40px 12px;
  }

  .why-tour__header {
    margin-bottom: 32px;
  }

  .why-tour__subtitle {
    margin-top: 8px;
    font-size: 16px;
  }

  .why-tour__cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }

  .card__text {
    padding: 12px;
    font-size: 14px;
  }

  .why-tour__footer-illu {
    width: 70px;
    bottom: -113px;
  }

  /* =======  自力手配と本ツアーの違い ======= */
  .difference__grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 32px;
    grid-row-gap: 48px;
    margin-bottom: 32px;
  }

  .difference-plane {
    width: 50%;
  }

  .difference__section {
    padding: 32px 15px 15px;
  }

  .difference__section__card {
    padding: 10px 0;
  }

  .difference__catch {
    line-height: 1.8;
  }

  /* ======= 申し込み・参加情報 ======= */

  .costs__inner {
    padding: 40px 10px;
  }

  .costs__price {
    padding: 10px 0;
    width: 100%;
  }

  .costs__notes-block {
    flex-direction: column;
  }

  .costs__cards {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .costs__card-header {
    font-size: 0.95rem;
  }

  .costs__card--gold .costs__card-body {
    padding: 40px;
  }

  /* ======= 申し込み・参加情報 ======= */
  .profile-list {
    padding: 60px 10px;
  }

  .profile-list__cards {
    grid-template-columns: 1fr;
  }

  .profile-card--1 {
    order: 1;
  }

  .profile-card--2 {
    order: 2;
  }

  .profile-card--6 {
    order: 3;
  }

  .profile-card--4 {
    order: 4;
  }

  .profile-card--5 {
    order: 5;
  }

  .profile-card--3 {
    order: 6;
  }

  /* ======= ここが違う ======= */
  .special {
    position: relative;
    background: url("../images/california-tour202509/sp/mv_bg.jpg") center/cover
      no-repeat;
    color: #fff;
    padding: 120px 16px 80px;
    overflow: hidden;
  }

  /* ======= 募集概要とスケジュール ======= */
  .cards {
    grid-template-columns: 1fr;
  }

  /* ======= 申し込み ======= */
  .timeline-header {
    width: 100%;
  }

  .timeline-item {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }

  .timeline-icon {
    width: 50px;
    height: 50px;
  }

  .timeline-header h3 {
    font-size: 18px;
  }

  /* ======= フォーム ======= */
  .contact-section__title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .section-header-button {
    gap: 10px;
  }

  .contact-select__button {
    width: 50%;
  }

  .form-row p {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
