@charset "utf-8";
/* CSS Document */

/* 驚きの進化 */

/* =========================
   Head / Intro
========================= */
.top-heads,
.bottom-heads {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.top-heads {
  margin: 40px 0 20px 0;
}

.bottom-heads {
  margin: 30px 0 10px 0;
}

.sec1ttl {
  min-height: 37px;
  padding: 2px 0 5px 0;
  border-radius: 999px;
  border: 2px solid #0e54ff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 0;
  color: #fff;
  letter-spacing: 0.1em;
  text-shadow: 2px 2px 0 #004464, 4px 4px 7px #004464;
  background: linear-gradient(to bottom, #007cf6 0%, #0081bf 38%, #004a9b 60%, #0073a3 90%, #cfffff 100%);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.85),
    inset 0 -2px 0 rgba(0, 20, 120, 0.35),
    0 0 0 2px rgba(135, 231, 155, 0.45),
    0 2px 4px rgba(0, 180, 150, 0.35);
}

.sec1ttl::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 2px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.1));
  opacity: 0.8;
}

.sec1ttl span {
  letter-spacing: 0;
}

.kmj {
  color: #D8FF00;
}

.intro {
  position: relative;
  z-index: 1;
  margin: 10px 0 10px 20px;
  font-size: 21px;
  line-height: 1.6;
}

.intro .line1 {
  font-size: 21px;
  line-height: 1.6;
}

.intro .pink {
  color: #ff00a8;
  font-weight: bold;
  font-style: italic;
  line-height: 1.6;
}

/* =========================
   middle 全体
========================= */
.middle {
  position: relative;
  z-index: 1;
  margin-top: 6px;
  display: grid;
  grid-template-columns: 140px 1fr 140px;
  gap: 8px;
  align-items: center;
}

/* =========================
   丸画像
========================= */
.badge-image {
  width: 148px;
  margin: 30px auto 0 auto;
  position: relative;
}

.badge-image img {
  display: block;
  width: 100%;
  height: auto;
}

.badge-left-img {
  animation: badgeFloatLeft 3.2s ease-in-out infinite;
  filter: drop-shadow(0 8px 12px rgba(0, 80, 40, 0.18));
}

.badge-right-img {
  margin-left: -8px;
  animation: badgeFloatRight 3.2s ease-in-out infinite reverse;
  animation-delay: .4s;
  filter: drop-shadow(0 8px 12px rgba(0, 80, 40, 0.18));
}

@keyframes badgeFloatLeft {
  0% {
    transform: translate(-20px, 0);
    filter: drop-shadow(0 8px 12px rgba(0, 80, 40, 0.18));
  }
  50% {
    transform: translate(-20px, -10px);
    filter: drop-shadow(0 16px 24px rgba(0, 80, 40, 0.28));
  }
  100% {
    transform: translate(-20px, 0);
    filter: drop-shadow(0 8px 12px rgba(0, 80, 40, 0.18));
  }
}

@keyframes badgeFloatRight {
  0% {
    transform: translate(20px, 0);
    filter: drop-shadow(0 8px 12px rgba(0, 80, 40, 0.18));
  }
  50% {
    transform: translate(20px, -10px);
    filter: drop-shadow(0 16px 24px rgba(0, 80, 40, 0.28));
  }
  100% {
    transform: translate(20px, 0);
    filter: drop-shadow(0 8px 12px rgba(0, 80, 40, 0.18));
  }
}

/* スマホ用の上並びバッジは通常は非表示 */
.sp-badges {
  display: none;
}

@keyframes badgeFloatLeftSp {
  0% {
    transform: translate(-10px, 0);
    filter: drop-shadow(0 6px 10px rgba(0, 80, 40, 0.16));
  }
  50% {
    transform: translate(-10px, -5px);
    filter: drop-shadow(0 10px 16px rgba(0, 80, 40, 0.24));
  }
  100% {
    transform: translate(-10px, 0);
    filter: drop-shadow(0 6px 10px rgba(0, 80, 40, 0.16));
  }
}

/* =========================
   テーブルエリア
========================= */
.panel-table.hydrogen-table {
  margin: 10px 0 20px 0;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.18);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
}

/* PC用テーブル */
.panel-table.hydrogen-table .pc-table {
  display: block;
}

.panel-table.hydrogen-table .table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0;
  padding: 0;
}

.panel-table.hydrogen-table table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  font-weight: bold;
  color: #08221f;
  margin: 0;
}

/* 列幅 */
.panel-table.hydrogen-table .col-no {
  width: 28px;
}

.panel-table.hydrogen-table .col-mode {
  width: 170px;
}

.panel-table.hydrogen-table .col-time,
.panel-table.hydrogen-table .col-auto {
  width: auto;
}

/* 共通セル */
.panel-table.hydrogen-table th,
.panel-table.hydrogen-table td {
  border: 1px solid #57a2a1;
  text-align: center;
  padding: 4px 4px;
  line-height: 1.05;
  vertical-align: middle;
}

/* 見出し */
.panel-table.hydrogen-table thead th {
  background: linear-gradient(to bottom, #f7ffff 0%, #e7f4f2 100%);
  font-size: 16px;
  color: #1b1b1b;
}

.panel-table.hydrogen-table thead th .sub {
  display: block;
  font-size: 13px;
  font-weight: bold;
  margin-top: 2px;
}

/* 本文5行 */
.panel-table.hydrogen-table tbody td,
.panel-table.hydrogen-table tbody td.no,
.panel-table.hydrogen-table tbody td.mode,
.panel-table.hydrogen-table tbody td.time,
.panel-table.hydrogen-table tbody td.auto {
  font-size: 18px;
}

/* 奇数行 */
.panel-table.hydrogen-table tbody tr:nth-child(odd) td {
  background: linear-gradient(to bottom, #00876c 0%, #00614e 100%);
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}

/* 偶数行 */
.panel-table.hydrogen-table tbody tr:nth-child(even) td {
  background: #c6efe7;
  color: #111;
  text-shadow: none;
}

/* 左列 1〜5 */
.panel-table.hydrogen-table tbody td.no {
  width: 28px;
  min-width: 28px;
  max-width: 28px;
  padding: 2px 0;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  letter-spacing: 0;
}

.panel-table.hydrogen-table tbody tr:nth-child(odd) td.no {
  background: linear-gradient(to bottom, #00876c 0%, #00614e 100%);
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
}

.panel-table.hydrogen-table tbody tr:nth-child(even) td.no {
  background: #c6efe7;
  color: #111;
  border-right: 2px solid #7bc7b7;
}

/* モード列 */
.panel-table.hydrogen-table tbody td.mode {
  letter-spacing: 0.02em;
}

.panel-table.hydrogen-table tbody tr:nth-child(odd) td.mode {
  background: linear-gradient(to bottom, #00876c 0%, #00614e 100%);
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
}

.panel-table.hydrogen-table tbody tr:nth-child(even) td.mode {
  background: #c6efe7;
  color: #111;
}

/* 右2列 */
.panel-table.hydrogen-table tbody tr:nth-child(odd) td.time,
.panel-table.hydrogen-table tbody tr:nth-child(odd) td.auto {
  background: linear-gradient(to bottom, #00876c 0%, #00614e 100%);
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
}

.panel-table.hydrogen-table tbody tr:nth-child(even) td.time,
.panel-table.hydrogen-table tbody tr:nth-child(even) td.auto {
  background: #c6efe7;
  color: #111;
}

.panel-table.hydrogen-table .plus {
  font-size: inherit;
  margin-right: 4px;
}

/* =========================
   スマホ用テーブル画像
========================= */
.panel-table.hydrogen-table .sp-table-image {
  display: none;
}

.panel-table.hydrogen-table .sp-table-image img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* =========================
   Bottom
========================= */
.bottom {
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

.bottom-heads {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
  z-index: 1;
  margin: 30px 0 10px 0;
}

.bottom-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 8px 0 18px 10px;
}

.box-text {
  font-size: 21px;
  line-height: 1.6;
  color: #111;
}

.box-text .small {
  display: block;
  font-size: 16px;
  line-height: 1.4;
}

/* =========================
   Tablet / SP
========================= */
@media (max-width: 768px) {
.box-text{
  padding-left:15px;
  padding-right:15px;
}
    .intro .line1 {
  padding-left:15px;
  padding-right:15px;
}
  .sheet {
    padding: 12px 10px 16px;
  }

  .top-heads,
  .bottom-heads {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .middle {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* PC左右の丸は消す */
  .middle > .badge-image {
    display: none;
  }

  /* スマホでは上に2つ並べる */
  .sp-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin: 2px 0 8px;
    justify-items: center;
    align-items: start;
  }

  .sp-badges .badge-image {
    display: block;
    width: 80%;
  }

  .sp-badges .badge-left-img {
    animation: badgeFloatLeftSp 3.2s ease-in-out infinite;
  }

  .sp-badges .badge-right-img {
    animation: badgeFloatRight 3.2s ease-in-out infinite reverse;
    animation-delay: .4s;
  }

  /* スマホではHTMLテーブル非表示、画像表示 */
  .panel-table.hydrogen-table .pc-table {
    display: none;
  }

  .panel-table.hydrogen-table .sp-table-image {
    display: block;
  }

  /* ===== bottom の並び替え本体 ===== */
  .bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .bottom-heads,
  .bottom-body {
    display: contents;
  }

  .bottom-heads .sec1ttl:nth-of-type(1) {
    order: 1;
  }

  .bottom-body .box-text:nth-of-type(1) {
    order: 2;
  }

  .bottom-heads .sec1ttl:nth-of-type(2) {
    order: 3;
  }

  .bottom-body .box-text:nth-of-type(2) {
    order: 4;
  }

  .bottom-body {
    padding: 0;
  }

  .box-text {
    font-size: 19px;
  }

  .box-text .small {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .top-heads,
  .bottom-heads {
    margin: 0 0 10px 0;
  }

  .sheet {
    padding: 10px 8px 14px;
  }

  .sec1ttl {
    font-size: 20px;
    min-height: 38px;
    padding: 8px 10px;
  }

  .intro {
    font-size: 18px;
  }

  .intro .line1,
  .intro .pink {
    font-size: 18px;
  }

  .box-text {
    font-size: 18px;
  }
}

/* =========================
   Tablet / SP
========================= */
@media (max-width: 768px) {
    
  .sheet {
    padding: 12px 10px 16px;
  }

  .top-heads,
  .bottom-heads,
  .bottom-body {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .middle {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* PC左右の丸は消す */
  .middle > .badge-image {
    display: none;
  }

  /* スマホでは上に2つ並べる */
  .sp-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin: 2px 0 8px;
    justify-items: center;
    align-items: start;
  }

  .sp-badges .badge-image {
    display: block;
    width: 80%;
  }

  .sp-badges .badge-left-img {
    animation: badgeFloatLeftSp 3.2s ease-in-out infinite;
  }

  .sp-badges .badge-right-img {
    animation: badgeFloatRight 3.2s ease-in-out infinite reverse;
    animation-delay: .4s;
  }

  /* スマホではHTMLテーブル非表示、画像表示 */
  .panel-table.hydrogen-table .pc-table {
    display: none;
  }

  .panel-table.hydrogen-table .sp-table-image {
    display: block;
  }
}

@media (max-width: 480px) {
  .top-heads,
  .bottom-heads {
    margin: 0 0 10px 0;
  }

  .sheet {
    padding: 10px 8px 14px;
  }

  .sec1ttl {
    font-size: 20px;
    min-height: 38px;
    padding: 8px 10px;
  }

  .intro {
    font-size: 18px;
  }

  .intro .line1,
  .intro .pink {
    font-size: 18px;
  }

  .box-text {
    font-size: 18px;
  }
}