/* ===========================
   リセット & ルート変数
=========================== */
:root {
  --blue:       #3aaecc;
  --blue-dark:  #2290b0;
  --blue-mid:   #2fa8c8;
  --gold:       #c49a30;
  --gold-dark:  #a07820;
  --gold-mid:   #b88820;
  --purple:     #6b3fb5;
  --purple-dark:#4e2a90;
  --red-badge:  #e03060;
  --bg-sky:     #d8eef8;
  --bg-white:   #ffffff;
  --text-body:  #333333;
  --border:     #d0e8f4;
  --header-h: 70px;
  --hero-h: 95vh;

  --bg:          #ECF7FC;
  --text-blue:   #26809B;
  --red:         #FF0000;
  --card-border: #c8e4f2;
  --row-border:  #e0eff8;
  --text:        #222;
  --text-sub:    #888;
}

* { margin:0; padding:0; box-sizing:border-box; }
html, body { height:100%; font-family: 'Noto Sans JP', sans-serif; color:var(--text-body); line-height:1.6; }

/* PC では非表示 */
.sp-only {
  display: none;
}

/* スマホのみ表示 */
@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

/* ===========================
   固定ヒーロー
=========================== */
.hero-fixed {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url("image/top.png");
  background-size: cover;
  background-position: center 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding-top: 100px;

  height: 100svh;
  min-height: 100svh;
}

.hero-ticket-bg {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(52px, 8vw, 80px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.1em;
  white-space: nowrap;
  z-index: 1;
  user-select: none;
  pointer-events: none;
}

@media (max-width: 767px){
  .hero-ticket-bg{
    top: 85px;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  margin-top: 16px;
}
.hero-title {
  font-size: clamp(18px, 3vw, 30px);
  font-weight: 500;
  color: white;
  letter-spacing: 0.25em;
  text-shadow: 0 1px 8px rgba(0,80,160,0.2);
}
.hero-sub {
  margin-top: 32px;
  color: white;
  font-size: clamp(15px, 3vw, 25px);
  line-height: 2;
  text-shadow: 0 1px 4px rgba(0,60,130,0.15);
}
@media (max-width: 767px){
  .hero-sub {
    margin-top: 32px;
    line-height: 1.5;
  }
}

.hero-sub strong { font-weight: 700; }

/* ===========================
   ヘッダー
=========================== */
.site-header {
  position: fixed;
  top:0; left:0; right:0;
  z-index: 200;
  background: white;
  padding: clamp(10px, 2vw, 15px) clamp(10px, 3vw, 30px);
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-header img {
    width: 200px;
  }

@media (max-width: 767px){
  .site-header img {
    width: 146px;
  }
}

/* ===========================
   スクロールボディ
=========================== */
.scroll-body {
  position: relative;
  z-index: 10;
  margin-top: 95svh;
  background: #fff;
  overflow: visible;
}

/* ===========================
   料金改定のお知らせ
=========================== */
.notice-section {
  background: var(--bg);
  padding: clamp(40px, 6vw, 60px) clamp(16px, 4vw, 32px) clamp(32px, 5vw, 48px);
  text-align: center;
}

.divider-title {
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 500;
  color: #26809B;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.notice-body {
  margin: 20px auto 10px;
  font-size: clamp(11px, 4vw, 25px);
  color: #26809B;
  font-weight: 700;
  line-height: 2.0;
}
.notice-body .line {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

@media (max-width: 767px){
 
  .notice-body {
     margin: 0;
    }
}

/* ============================================================
   料金カードセクション
============================================================ */
.pricing-wrap {
  background: var(--bg);
  padding: 0 clamp(16px, 4vw, 32px) clamp(10px, 8vw, 80px);
}

.pricing-grid {
  padding-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 580px));
  gap: 50px;
  margin: 0 auto;
  justify-content: center;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}




/* ============================================================
   price-card（左カード・青）
============================================================ */

/* カード本体 */
.price-card-left {
  width: 100%;
  max-width: 577px;

  background: #fff;
  border-radius: 20px;
  border: 2.5px solid #26809B;
  box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
}

/* ---- カードヘッダー（飛び出しデザイン） ---- */

.head-blue {
  background: #26809B;
}

.wd-badge-left {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(21px, 6vw, 35px);
  height: clamp(21px, 6vw, 35px);
  border-radius: 50%;
  color: #26809B;
  background: #fff;
  font-size: clamp(14px, 3vw, 25px);
  font-weight: 700;
  margin-left: 4px;
  line-height: 1;
  transform: translateY(-2px);
}

.card-date-sub {
  font-size: clamp(17px, 3vw, 35px);
  font-weight: 400;
  letter-spacing: 3px;
}


@media (max-width: 768px) {
  .card-date-sub {
    line-height: 1.3;
  }

}


.btn:hover {
  transform: translateY(3px);
  background-position: 100% 50%;
}
.btn:active {
  transform: translateY(6px);
  transition-duration: 0.07s;
}

/* 青（展望台） */
.btn-blue {
  background-image: linear-gradient(90deg, #359AB9 0%, #1E9BC2 50%, #069CCB 100%);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: clamp(20px, 4vw, 30px);
}
.btn-blue:hover {
  background-image: linear-gradient(90deg, #069CCB 0%, #1E9BC2 50%, #359AB9 100%);
  box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.07);
}
.btn-blue:active {
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

/* 水色（フリーレン）*/
.btn-blue-ol {
  background-image: linear-gradient(90deg, #35B4B9 0%, #1DB4C2 50%, #06B4CB 100%);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}
.btn-blue-ol:hover {
  background-image: linear-gradient(90deg, #06B4CB 0%, #1DB4C2 50%, #35B4B9 100%);
  box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.07);
}
.btn-blue-ol:active {
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

/* 黄緑（古代エジプト） */
.btn-olive {
  background-image: linear-gradient(90deg, #E5D51C 0%, #D8C511 50%, #CBB406 100%);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}
.btn-olive:hover {
  background-image: linear-gradient(90deg, #CBB406 0%, #D8C511 50%, #E5D51C 100%);
  box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.07);
}
.btn-olive:active {
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

/* 紫（ゴッホ） */
.btn-purple {
  background-image: linear-gradient(90deg, #552390 0%, #302481 50%, #0A2672 100%);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}
.btn-purple:hover {
  background-image: linear-gradient(90deg, #0A2672 0%, #302481 50%, #552390 100%);
  box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.07);
}
.btn-purple:active {
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.content {
   flex: 1;
   display: flex;
   align-items: center;
   gap: 4px;
  }

/* ============================================================
   右カード本体
============================================================ */
.price-card-right {
  width: 100%;
  max-width: 577px;
  background: #fff;
  border-radius: 20px;
  /* 金色ボーダー */
  border: 2.5px solid #CD9221;
  box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
}


/* スマホだけ */
@media screen and (max-width: 768px) {
  .price-card-right {
    margin-top: 50px;
  }
}

/* ============================================================
   カードヘッダー（飛び出しデザイン）
============================================================ */
.card-head {
  height: clamp(72px, 10vw, 125px);
  width: clamp(288px, 50vw, 495px);

  position: absolute;
  top: -52px;
  left: 50%;
  transform: translateX(-50%);

  margin: 0 auto;

  border-radius: 65px;
  padding: 13px 24px 15px;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.head-gold {
  background: #CD9221;
}

.card-date-main {
  font-size: clamp(19px, 3vw, 35px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.wd-badge-right {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #CD9321;
  width: clamp(21px, 6vw, 35px);
  height: clamp(21px, 6vw, 35px);
  border-radius: 50%;
  background: #fff;
  margin: 0 3px;
  font-size: clamp(14px, 3vw, 25px);
  font-weight: 700;
  line-height: 1;
   transform: translateY(-2px);
}

/* ============================================================
   料金リスト
============================================================ */
.price-list {
  padding: clamp(30px, 8vw, 150px)
  clamp(15px, 4vw, 35px)
  clamp(10px, 8vw, 10px);
  flex: 1;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 2px solid #d4e9f1;
}
.price-row:last-child { border-bottom: none; }

.price-row2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 2px solid #e9dcc3;
}


.pl-left {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}

.pl-name {
  font-size: clamp(16px, 2vw, 30px);
  font-weight: 700;
  color: #1a1a1a;
}

.pl-price {
  font-size: clamp(16px, 2vw, 30px);
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
  flex-shrink: 0;
}
.pl-price .en {
  font-size: clamp(11px, 2vw, 20px);
  font-weight: 700;
}

.pl-free {
  font-size: clamp(16px, 2vw, 30px);
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
  flex-shrink: 0;
}

.pl-sub{
  font-weight: 700;
  font-size: clamp(11px, 2vw, 20px);
}

/* ============================================================
   ボタン群
============================================================ */
.card-btns {
  padding: clamp(8px, 1.5vw, 12px) clamp(15px, 2.5vw, 35px) clamp(14px, 2.5vw, 20px);
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: clamp(10px, 4vw, 30px);
}

@media (max-width: 768px) {
  .card-btns {
    gap: 10px;
  }
}

/* ボタン共通 */
.btn {
  position: relative;
  height: 90px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(5px, 4vw, 16px)
  clamp(5px, 4vw, 20px);
  border-radius: clamp(10px, 2vw, 20px);
  font-size: clamp(14px, 2.8vw, 25px);
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  border: none;
  outline: none;
  overflow: hidden;
  /* グラデーション逆流 */
  background-size: 210% 100%;
  background-position: 0% 50%;
  /* 凹む */
  transform: translateY(0);
  transition:
    transform           0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow          0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
    background-position 0.42s ease;
}

/* スマホ */
@media (max-width: 768px) {
  .btn {
    height: 52px;
  }
}

.btn:hover {
  transform: translateY(3px);
  background-position: 100% 50%;
}
.btn:active {
  transform: translateY(6px);
  transition-duration: 0.07s;
}

.btn-arrow {
  margin-left: 20px;
  width: 15px;
  height: 15px;

  border-top: 2px solid #fff;
  border-right: 2px solid #fff;

  transform: rotate(45deg) translateY(2px);
}
/* スマホ */
@media (max-width: 768px) {
  .btn-arrow {
  width: 12px;
  height: 12px;
  transform: rotate(45deg) translateY(0);
}
}

/* バッジ付きボタン inner */
.btn-inner {
  width: 100%;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  gap: 14px;
  min-width: 0;
}


/* 中央 */
.btn-center {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  padding: 0 10px;

  box-sizing: border-box;
  min-width: 0;
}

.btn-center span {
  overflow-wrap: break-word;
}

.btn-label {
  flex: 1;
  line-height: 1.5;
  font-size: clamp(14px, 2.8vw, 25px);
  font-weight: 700;
  /* 2行折り返しを許可 */
  white-space: normal;
}

/* 金（展望台） */
.btn-gold {
  background-image: linear-gradient(90deg, #CD9321 0%, #D8A43D 50%, #E6B95F 100%);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  margin-top: clamp(30px, 4vw, 90px);
  margin-bottom: clamp(20px, 4vw, 30px);
}
.btn-gold:hover {
  background-image: linear-gradient(90deg, #E6B95F 0%, #D8A43D 50%, #CD9321 100%);
  box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.07);
}
.btn-gold:active {
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

/* 紫（ゴッホ） */
.btn-purple2 {
  background-image: linear-gradient(90deg, #552390 0%, #302481 50%, #0A2672 100%);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}
.btn-purple2:hover {
  background-image: linear-gradient(90deg, #0A2672 0%, #302481 50%, #552390 100%);
  box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.07);
}
.btn-purple2:active {
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

/* ============================================================
   美術館バッジ
============================================================ */
.museum-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #FF003D;
  font-size: clamp(11px, 1vw, 20px);
  font-weight: 700;
  line-height: 1.4;
  padding: 5px 8px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  text-align: center;
  min-width: 44px;
  left: 20px;
  margin-right: auto;
}

/* ============================================================
   チケット注記
============================================================ */
.ticket-note {
  max-width: 1200px;
  margin: 30px auto 0;
  font-size: clamp(10px, 1.15vw, 14px);
  font-weight: 700;
  color: var(--red);
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .sp-space {
    margin-left: 1em;
  }
}

/* ============================================================
   レスポンシブ
============================================================ */
@media (max-width: 760px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .case-flow {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
}


/* ===========================
   こんな場合はどっち？
=========================== */

.divider-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-bottom: 40px;
}
.divider-row::before,
.divider-row::after {
  content: '';
  flex: 1;
  max-width: 175px;
  height: 2px;
  background: #26809B;
}

.case-section {
  position: relative;
  background: white;
  padding: 120px 20px 64px;
  text-align: center;
}
.case-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 60px;
  background: #ECF7FC;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.case-flows {
  max-width: 1100px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* 1行フロー */
.case-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

/* ---- ピル（ボックス） ---- */
.flow-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid;
  border-radius: 3px;
  padding: 10px 20px;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 500;
  letter-spacing: 2px;
  white-space: nowrap;
  background: #fff;
  min-width: 130px;
}

.case-blue .flow-pill {
  border-color: #26809B;
  color: #26809B;
}
.case-gold .flow-pill {
  border-color: #C49A30;
  color: #C49A30;
}

/* ---- アイコン丸 ---- */
.flow-pill-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.flow-pill-icon svg {
  width: 30px;
  height: 39px;
}

.case-blue .flow-pill-icon { background: #26809B; }
.case-gold .flow-pill-icon { background: #C49A30; }

/* ---- 矢印（実線） ---- */
.flow-arrow {
  display: block;
  width: 130px;
  flex-shrink: 0;
  position: relative;
  height: 2px;
  margin-right: 15px;
}
.flow-arrow::before {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.flow-arrow::after {
  content: '';
  position: absolute;
  top: 50%; right: 3.5px;
  width: 20px; height: 20px;
  border-top: 2px solid;
  transform: translateY(-50%) rotate(45deg);
}

.case-blue .flow-arrow::before { background: #26809B; }
.case-blue .flow-arrow::after  { border-color: #26809B; }
.case-gold .flow-arrow::before { background: #C49A30; }
.case-gold .flow-arrow::after  { border-color: #C49A30; }

/* ---- 点線 ---- */
.flow-dashed {
  display: block;
  width: 164px;
  flex-shrink: 0;
  height: 2.5px;
  border: none; /* border-top を無効化 */
  background-image: linear-gradient(to right, currentColor 8px, transparent 8px);
  background-size: 14px 100%; /* 8px実線 + 6px空白 = 1セット */
}
.case-blue .flow-dashed {
  background-image: linear-gradient(to right, #26809B 16px, transparent 16px);
  background-size: 22px 100%; /* 16px実線 + 6px空白 */
}
.case-gold .flow-dashed {
  background-image: linear-gradient(to right, #C49A30 16px, transparent 16px);
  background-size: 22px 100%;
}
/* ---- バッジ（丸） ---- */
.flow-badge {
  width: 164px;
  height: 164px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  line-height: 1.5;
  flex-shrink: 0;
}
.flow-badge span:first-child {
  font-size: 35px;
  line-height: 1;
  transform: translateY(-5px);
}
.flow-badge span:last-child {
  font-size: 30px;
  transform: translateY(-5px);
  letter-spacing: 2.5px;
}

.case-blue .flow-badge { background: #26809B; }
.case-gold .flow-badge { background: #C49A30; }


/* ===========================
   スマホ：2列横並び
=========================== */
@media (max-width: 740px) {

.case-section {
  padding: 85px 20px 64px;
}
  .case-section::before {
  clip-path: polygon(0 0, 50% 80%, 100% 0);
}

  /* case-flows を横並びに */
  .case-flows {
    flex-direction: row;        /* ← 横並びに変更 */
    align-items: flex-start;
    gap: 10px;
    justify-content: center;
  }

  /* 各フロー列は縦並びのまま */
  .case-flow {
    flex-direction: column;
    align-items: center;
    gap: 0;
    flex: 1;
    max-width: 160px;          /* 列幅を制限 */
  }

  /* ピル（ボックス）を縮小 */
  .flow-pill {
    width: 100%;
    max-width: 140px;
    padding: 10px 10px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    justify-content: center;
    flex-direction: column;    /* アイコンと文字を縦に */
    gap: 4px;
    text-align: center;
    min-width: unset;
  }

  /* アイコン丸を縮小 */
  .flow-pill-icon {
    width: 32px;
    height: 32px;
  }
  .flow-pill-icon svg {
    width: 17px;
    height: 20px;
  }

  /* 矢印を縦向きに */
  .flow-arrow {
    width: 2px;
    height: 50px;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .flow-arrow::before {
    top: 0; left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
  }
  .flow-arrow::after {
    top: auto;
    bottom: 2px;
    right: 50%;
    transform: translateX(50%) rotate(135deg);
    width: 18px;
    height: 18px;
  }

  /* 点線を縦向きに */
  .flow-dashed {
    width: 2.5px;
    height: 70px;
    border: none;
  }
  .case-blue .flow-dashed {
    background-image: linear-gradient(to bottom, #26809B 8px, transparent 8px);
    background-size: 100% 15px;
  }
  .case-gold .flow-dashed {
    background-image: linear-gradient(to bottom, #C49A30 8px, transparent 8px);
    background-size: 100% 15px;
  }

  /* バッジ（丸）を縮小 */
  .flow-badge {
    width: 100px;
    height: 100px;
  }
  .flow-badge span:first-child {
    font-size: 20px;
    transform: translateY(-3px);
  }
  .flow-badge span:last-child {
    font-size: 18px;
    transform: translateY(-3px);
  }
}/* ===========================
   フッター画像エリア
=========================== */
.footer-imgs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
}

.fi {
  height: clamp(70px, 18vw, 192px);
  overflow: hidden;
}

.fi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===========================
   レスポンシブ
=========================== */
@media (max-width: 640px) {


  .footer-imgs {
    grid-template-columns: repeat(5,1fr);
  }

  .pricing-wrap::after {
    height: 40px;
  }
}
