@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --h2-blue: #1faaf4;
  --h2-blue-dark: #028bd4;
  --h2-navy: #163f62;
  --h2-line: #d4d4d7;
  --h2-soft: #f2f9ff;
  --h2-pale: #ebfdea;
  --h2-text: #2f2f2f;
  --h2-muted: #434343;
  --h2-orange: #ffc000;
  --h2-green: #06c755;
  --h2-white: #fff;
  --h2-shadow: 3px 4px 5px 0 rgba(129, 129, 129, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--h2-text);
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  margin-top: 80px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.h2-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  height: 80px;
  background: #fff;
  border-bottom: 0;
  box-shadow: none;
}

.h2-header-inner {
  position: relative;
  width: min(1200px, 100%);
  min-height: 80px;
  margin: 0 auto;
}

.anq01 {
  padding-top: 80px;
  margin-top: -80px;
}

.h2-logo {
  position: absolute;
  top: 20px;
  left: 0;
  width: 218px;
}

.h2-logo img {
  width: 100%;
}

.h2-nav {
  display: flex;
  position: absolute;
  top: 28px;
  right: 180px;
  justify-content: flex-end;
  gap: 24px;
  color: #414143;
  font-size: 14px;
  font-weight: 500;
}

.h2-menu-button {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--h2-line);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(0, 126, 190, 0.1);
  cursor: pointer;
}

.h2-menu-button span {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 2px;
  background: var(--h2-blue-dark);
  border-radius: 999px;
  transition: top 0.22s ease, transform 0.22s ease, opacity 0.18s ease;
}

.h2-menu-button:focus {
  outline: 0;
}

.h2-menu-button span:nth-child(1) {
  top: 15px;
}

.h2-menu-button span:nth-child(2) {
  top: 22px;
}

.h2-menu-button span:nth-child(3) {
  top: 29px;
}

.h2-menu-button.is-open span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.h2-menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.h2-menu-button.is-open span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.h2-menu-overlay {
  display: none;
}

.h2-nav a {
  position: relative;
  display: block;
  padding: 0 0;
  transition: color 0.3s;
}

.h2-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--h2-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.h2-nav a:hover::after {
  transform: scaleX(1);
}

.h2-contact {
  position: absolute;
  top: 15px;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 155px;
  height: 50px;
  padding: 0;
  color: var(--h2-blue-dark);
  background: #fff;
  border: 2px solid var(--h2-blue-dark);
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  line-height: 46px;
  box-shadow: none;
  transition: all 0.4s;
  white-space: nowrap;
}

.h2-contact:hover {
  color: #fff;
  background: var(--h2-blue-dark);
}

.h2-hero {
  overflow: hidden;
  background: var(--h2-soft);
  border-bottom: 0;
}

.h2-hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
  width: min(1200px, calc(100% - 8%));
  min-height: 0;
  margin: 0 auto;
  padding: 80px 0;
}

.h2-kicker {
  margin: 0 0 0;
  color: var(--h2-blue-dark);
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.7;
  text-transform: none;
}

.h2-hero h1,
.h2-section-heading h2,
.h2-article-body h2,
.h2-article-body h3 {
  margin: 0;
  color: var(--h2-navy);
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.h2-hero h1 {
  margin-top: 0;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.8;
  letter-spacing: 0;
}

.h2-lead {
  margin: 20px 0 0;
  color: var(--h2-text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.9;
}

.h2-hero-visual {
  position: relative;
  min-height: 280px;
}

.h2-hero-visual img {
  width: 100%;
  border-radius: 25px;
  box-shadow: none;
}

.h2-badge-panel {
  position: absolute;
  right: 18px;
  bottom: -18px;
  width: min(250px, 70%);
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 2px solid var(--h2-line);
  border-radius: 25px;
  box-shadow: var(--h2-shadow);
}

.h2-badge-panel strong {
  display: block;
  color: var(--h2-blue-dark);
  font-size: 20px;
  line-height: 1.35;
}

.h2-badge-panel span {
  display: block;
  margin-top: 4px;
  color: var(--h2-muted);
  font-size: 13px;
  font-weight: 700;
}

.h2-section {
  width: min(1200px, calc(100% - 8%));
  margin: 0 auto;
  padding: 80px 0;
}

.h2-section-heading {
  margin-bottom: 30px;
  text-align: center;
}

.h2-section-heading h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.8;
}

.h2-section-heading p {
  width: min(760px, 100%);
  margin: 20px auto 40px;
  color: var(--h2-text);
  font-size: 16px;
  font-weight: 700;
}

.h2-category-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 34px;
}

.h2-category-row a {
  padding: 9px 18px;
  color: var(--h2-blue-dark);
  background: #fff;
  border: 1px solid var(--h2-line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.h2-article-category {
  padding-top: 64px;
  scroll-margin-top: 100px;
}

.h2-article-category:first-of-type {
  padding-top: 0;
}

.h2-category-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 2px solid #e3f3fc;
  text-align: left;
}

.h2-category-heading h3 {
  margin: 0;
  color: var(--h2-blue-dark);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.5;
}

.h2-category-heading p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--h2-muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

.h2-category-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 34px;
  padding: 0 12px;
  color: var(--h2-blue-dark);
  background: #fff;
  border: 1px solid #d8effd;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.h2-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.h2-card {
  overflow: hidden;
  background: #fff;
  border: 0;
  border-radius: 25px;
  box-shadow: var(--h2-shadow);
  text-align: left;
}

.h2-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--h2-pale);
}

.h2-card-body {
  padding: 30px 30px 40px;
}

.h2-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.h2-chip {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  color: var(--h2-blue-dark);
  background: var(--h2-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.h2-card h3 {
  margin: 0;
  color: var(--h2-blue-dark);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.6;
  text-align: center;
}

.h2-card p {
  margin: 12px 0 0;
  color: var(--h2-text);
  font-size: 16px;
  font-weight: 500;
}

.h2-cta-band {
  color: #fff;
  background: var(--h2-blue);
}

.h2-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1200px, calc(100% - 8%));
  margin: 0 auto;
  padding: 42px 0;
}

.h2-cta-inner h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.6;
}

.h2-cta-inner p {
  margin: 10px 0 0;
  font-weight: 700;
}

.h2-line-button,
.h2-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px 70px 10px 30px;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
}

.h2-line-button {
  color: #fff;
  background: var(--h2-green);
}

.h2-primary-button {
  color: var(--h2-blue);
  background: #fff;
  border: 1px solid var(--h2-blue);
  box-shadow: none;
}

.h2-wrapper {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.h2-official-section {
  width: 100%;
  padding: 80px 0;
  background: var(--h2-soft);
}

.h2-bg-white {
  background: #fff;
}

.h2-bg-form {
  background: #2eabed;
}

.h2-bg-form2 {
  background: #e9e9e9;
}

.h2-bg-line {
  background: #ebfdea;
}

.h2-no-bottom-padding {
  padding-bottom: 0;
}

.h2-official-title {
  margin-bottom: 40px;
  text-align: center;
}

.h2-official-title p {
  margin: 0;
  color: var(--h2-blue-dark);
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.h2-official-title h2 {
  margin: 0;
  color: var(--h2-text);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.8;
}

.h2-green-text,
.h2-green-text-inline {
  color: var(--h2-green) !important;
}

.h2-blue-text-inline {
  color: var(--h2-blue-dark);
}

.h2-contact-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.h2-contact-list li {
  list-style: none;
  padding: 80px 4%;
  background: #fbf2ff;
  font-size: 16px;
}

.h2-contact-list li:nth-child(odd) {
  background: var(--h2-soft);
}

.h2-contact-list p {
  margin: 0 0 10px;
}

.h2-contact-list-tx01 {
  color: #da4a98;
  font-size: 20px;
  font-weight: 800;
}

.h2-contact-list-tx02 {
  font-size: 24px;
  font-weight: 800;
}

.h2-contact-list-tx03 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.h2-contact-list-tx03 a {
  color: var(--h2-blue-dark);
}

.h2-contact-list-tx03 span {
  padding-left: 35px;
  background: url("https://h2navi.net/wp/wp-content/themes/h2navi/images/phone.png") no-repeat left center;
  background-size: 26px auto;
}

.h2-contact-list-tx04 {
  font-size: 16px;
}

.h2-form-row {
  color: #fff;
  text-align: left;
}

.h2-blue-text {
  color: var(--h2-blue-dark);
}

.h2-white-text {
  color: #fff;
}

.h2-form-kicker {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.h2-form-copy {
  margin: 0;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.7;
}

.h2-form-copy span {
  font-weight: 800;
}

.h2-form-copy .h2-form-small {
  font-size: 26px;
  font-weight: 400;
}

.h2-form-button {
  float: right;
  margin: 0;
}

.h2-form-button a {
  position: relative;
  display: block;
  min-width: 250px;
  padding: 10px 70px 10px 30px;
  color: var(--h2-blue);
  background: #fff;
  border: 1px solid var(--h2-blue);
  border-radius: 30px;
  font-size: 22px;
  transition: all 0.4s;
}

.h2-form-button a::after,
.h2-line-button-official a::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 40px;
  height: 40px;
  color: #fff;
  text-align: center;
  line-height: 37px;
  content: "→";
  background: var(--h2-blue);
  border: 1px solid var(--h2-blue);
  border-radius: 20px;
  transform: translateY(-50%);
}

.h2-form-button-blue a {
  color: #fff;
  background: var(--h2-blue);
  border-color: #fff;
}

.h2-form-button-blue a::after {
  color: var(--h2-blue);
  background: #fff;
  border-color: #fff;
}

.h2-more-space {
  padding: 0;
}

.h2-line-tx01 {
  margin: 0 0 30px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.7;
}

.h2-line-tx02 dl {
  margin: 0;
}

.h2-line-tx02 dt {
  display: inline-block;
  width: 70px;
  vertical-align: middle;
}

.h2-line-tx02 dd {
  display: inline-block;
  margin: 0;
  padding-left: 10px;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.6;
  text-align: left;
  vertical-align: middle;
}

.h2-line-img {
  width: 580px;
  max-width: 100%;
  margin: 35px auto;
}

.h2-line-tx03 {
  margin: 30px 0 35px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.5;
}

.h2-line-button-official {
  display: inline-block;
  margin: 0;
}

.h2-line-button-official a {
  position: relative;
  display: block;
  padding: 10px 70px 10px 30px;
  color: #06c051;
  background: #fff;
  border: 1px solid #06c051;
  border-radius: 30px;
  font-size: 22px;
  font-weight: 800;
  transition: all 0.4s;
}

.h2-line-button-official a::after {
  background: #06c051;
  border-color: #06c051;
}

.h2-official-footer {
  padding: 10px;
  background: #0c4c6f;
}

.h2-management {
  margin: 0;
}

.h2-management a {
  color: #fff;
}

.h2-sp-only {
  display: none;
}

.h2-footer {
  padding: 10px 18px 92px;
  color: #fff;
  text-align: center;
  background: #0c4c6f;
}

.h2-footer img {
  width: min(240px, 70vw);
  margin: 0 auto 18px;
  filter: brightness(0) invert(1);
}

.h2-footer p {
  margin: 6px 0;
  font-size: 13px;
}

.h2-sticky {
  position: fixed;
  z-index: 500;
  right: 50px;
  bottom: 30px;
  width: 400px;
  max-width: none;
  padding: 0;
  color: inherit;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.h2-sticky a {
  position: relative;
  display: block;
  width: 100%;
}

.h2-sticky img {
  width: 400px;
}

.h2-sticky .h2-sticky-chara {
  position: absolute;
  top: -100px;
  right: -40px;
  z-index: -1;
  width: 116px;
}

.purun {
  animation: purun 0.8s linear 0s 1;
}

@keyframes purun {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }

  20% {
    transform: scale(1, 1.06) translate(-5%, -4%) skew(6deg, 0deg);
  }

  50% {
    transform: scale(1, 0.94) translate(5%, 4%) skew(-6deg, 0deg);
  }

  65% {
    transform: scale(1, 1.03) translate(2%, -2%) skew(-3deg, 0deg);
  }

  80% {
    transform: scale(1, 0.97) translate(-2%, 2%) skew(3deg, 0deg);
  }

  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}

.h2-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(1200px, calc(100% - 8%));
  margin: 24px auto 0;
  color: var(--h2-muted);
  font-size: 13px;
  font-weight: 700;
}

.h2-article-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 34px;
  width: min(1200px, calc(100% - 8%));
  margin: 0 auto;
  padding: 54px 0 82px;
}

.h2-article-main {
  min-width: 0;
}

.h2-article-body {
  background: #fff;
  border: 0;
  border-radius: 25px;
  box-shadow: var(--h2-shadow);
  text-align: left;
}

.h2-article-body > section {
  padding: clamp(28px, 4vw, 44px);
  border-bottom: 1px solid var(--h2-line);
}

.h2-article-body > section:last-child {
  border-bottom: 0;
}

.h2-article-body h2 {
  margin: 3em 0 1.5em;
  padding: 1.1em 0.2em 1em;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  border-left: 0;
  color: var(--h2-text);
  font-size: 22px;
  font-weight: 400;
  text-align: left;
}

.h2-article-body h3 {
  margin: 2.5em 2px 1.2em;
  padding: 0.3em 0 0.3em 0.8em;
  color: var(--h2-text);
  border-left: 2px solid #222;
  font-size: 18px;
  font-weight: 400;
}

.h2-article-body p {
  margin: 18px 0 0;
}

.h2-article-body ul,
.h2-article-body ol {
  margin: 18px 0 0;
  padding-left: 1.3em;
  font-weight: 700;
}

.h2-article-body li + li {
  margin-top: 8px;
}

.h2-article-image {
  margin: 26px 0 0;
}

.h2-article-image img {
  width: 100%;
  border-radius: 15px;
}

.h2-article-image figcaption {
  margin-top: 8px;
  color: var(--h2-muted);
  font-size: 13px;
  text-align: center;
}

.h2-data-table {
  width: 100%;
  margin: 24px 0 0;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid #dceaf4;
  border-radius: 15px;
  background: #fff;
}

.h2-data-table th,
.h2-data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #dceaf4;
  border-left: 1px solid #dceaf4;
  font-size: 15px;
  line-height: 1.7;
  vertical-align: top;
}

.h2-data-table th:first-child,
.h2-data-table td:first-child {
  border-left: 0;
}

.h2-data-table tr:last-child th,
.h2-data-table tr:last-child td {
  border-bottom: 0;
}

.h2-data-table th {
  color: #fff;
  background: var(--h2-blue-dark);
  font-weight: 800;
  text-align: left;
}

.h2-note {
  margin-top: 22px;
  padding: 18px 20px;
  background: var(--h2-soft);
  border: 1px solid var(--h2-line);
  border-radius: 15px;
  font-weight: 700;
}

.h2-note p {
  margin: 0;
}

.h2-cancel-pickup {
  margin-top: 28px;
  padding: 26px;
  border: 2px solid rgba(2, 139, 212, 0.22);
  border-radius: 22px;
  background: linear-gradient(135deg, #f1fbff 0%, #f5fff8 100%);
  box-shadow: 0 14px 30px rgba(2, 139, 212, 0.12);
}

.h2-cancel-label {
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--h2-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
}

.h2-cancel-pickup h3 {
  margin: 0 0 12px;
  padding: 0;
  border-left: 0;
  color: var(--h2-blue-dark);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.55;
}

.h2-cancel-pickup p {
  margin-top: 0;
}

.h2-cancel-table {
  margin-top: 18px;
}

.h2-cancel-table td:first-child {
  width: 34%;
  color: var(--h2-blue-dark);
  background: #f7fbff;
  font-weight: 900;
}

.h2-cancel-flow {
  counter-reset: cancel-step;
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.h2-cancel-flow li {
  counter-increment: cancel-step;
  position: relative;
  padding: 16px 18px 16px 64px;
  border: 1px solid #dceaf4;
  border-radius: 16px;
  background: #fff;
}

.h2-cancel-flow li::before {
  content: counter(cancel-step);
  position: absolute;
  top: 16px;
  left: 18px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--h2-green);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.h2-cancel-flow strong,
.h2-cancel-flow span {
  display: block;
}

.h2-cancel-flow strong {
  color: var(--h2-blue-dark);
  font-size: 16px;
  line-height: 1.55;
}

.h2-cancel-flow span {
  margin-top: 4px;
  color: var(--h2-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.h2-cancel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.h2-cancel-actions a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--h2-blue-dark);
  color: #fff;
  font-weight: 900;
  line-height: 1.4;
  text-decoration: none;
  transition: opacity 0.3s;
}

.h2-cancel-actions a:nth-child(2) {
  background: var(--h2-green);
}

.h2-cancel-actions a:hover {
  opacity: 0.78;
}

.h2-warning-box {
  margin-top: 24px;
  padding: 22px;
  border: 2px solid #e15442;
  border-radius: 18px;
  background: #fff6f3;
  box-shadow: 0 14px 28px rgba(205, 72, 47, 0.1);
}

.h2-warning-box strong {
  display: block;
  margin-bottom: 10px;
  color: #c93225;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.55;
}

.h2-warning-box p {
  margin: 0;
  color: #563029;
  font-weight: 700;
}

.h2-warning-box ul {
  margin: 14px 0 0;
  padding-left: 1.25em;
  color: #563029;
  font-weight: 700;
}

.h2-video-embed {
  margin: 24px 0 0;
}

.h2-video-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #122f47;
  box-shadow: 0 16px 34px rgba(7, 52, 85, 0.16);
  color: #fff;
  text-decoration: none;
}

.h2-video-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.3s ease;
}

.h2-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 38, 63, 0.06) 0%, rgba(6, 38, 63, 0.38) 100%);
}

.h2-video-card:hover img {
  transform: scale(1.05);
}

.h2-video-card:focus-visible {
  outline: 3px solid var(--h2-blue);
  outline-offset: 4px;
}

.h2-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 78px;
  height: 54px;
  border-radius: 16px;
  background: #e62117;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -50%);
}

.h2-video-play::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 31px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid #fff;
}

.h2-video-label {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(6, 38, 63, 0.78);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.h2-video-embed figcaption {
  margin-top: 10px;
  color: var(--h2-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.h2-quick-answer {
  margin-top: 26px;
  padding: 22px;
  border: 2px solid rgba(31, 170, 244, 0.22);
  border-radius: 20px;
  background: linear-gradient(135deg, #f2f9ff 0%, #f7fff8 100%);
  box-shadow: 0 12px 24px rgba(2, 139, 212, 0.08);
}

.h2-quick-answer h3 {
  margin: 0 0 14px;
  padding: 0 0 0 0.75em;
  border-left: 4px solid var(--h2-blue-dark);
  color: var(--h2-blue-dark);
  font-size: 20px;
  font-weight: 900;
}

.h2-quick-answer .h2-data-table {
  margin-top: 0;
}

.h2-summary-table td:first-child,
.h2-article-info .h2-data-table td:first-child {
  width: 170px;
  font-weight: 800;
}

.h2-mini-note {
  margin-top: 12px;
  color: var(--h2-muted);
  font-size: 13px;
  font-weight: 700;
}

.h2-source-list {
  list-style: none;
  padding-left: 0 !important;
}

.h2-source-list li {
  padding: 12px 14px;
  border: 1px solid #dceaf4;
  border-radius: 12px;
  background: #fff;
}

.h2-source-list a {
  color: var(--h2-blue-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.h2-support-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: 26px;
  align-items: center;
  margin: 30px 0;
  padding: 28px;
  border: 2px solid rgba(6, 199, 85, 0.25);
  border-radius: 25px;
  background: linear-gradient(135deg, #effff5 0%, #f2f9ff 100%);
  box-shadow: 0 14px 28px rgba(2, 139, 212, 0.12);
}

.h2-support-feature-text {
  min-width: 0;
}

.h2-support-label {
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 14px;
  color: #fff;
  background: var(--h2-green);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
}

.h2-support-feature h3 {
  margin: 0 0 16px;
  padding: 0;
  border-left: 0;
  color: var(--h2-blue-dark);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.45;
}

.h2-support-feature p {
  margin-top: 0;
}

.h2-support-feature ul {
  margin-top: 18px;
  padding-left: 1.2em;
}

.h2-support-feature li {
  font-weight: 900;
}

.h2-support-feature li + li {
  margin-top: 8px;
}

.h2-support-feature-image {
  margin: 0;
}

.h2-support-feature-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(20, 68, 96, 0.16);
}

.h2-support-product-cta {
  margin-top: 22px;
}

.h2-support-product-cta a {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 2px solid var(--h2-blue);
  border-radius: 18px;
  background: #fff;
  color: var(--h2-blue-dark);
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(2, 139, 212, 0.1);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.h2-support-product-cta a:hover {
  border-color: var(--h2-blue-dark);
  box-shadow: 0 14px 30px rgba(2, 139, 212, 0.18);
  transform: translateY(-2px);
}

.h2-support-product-cta a + a {
  margin-top: 14px;
}

.h2-support-product-cta img {
  width: 100%;
  border-radius: 12px;
}

.h2-support-product-copy {
  display: grid;
  gap: 12px;
  align-content: center;
}

.h2-support-product-copy span {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.7;
}

.h2-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  color: #fff;
  background: linear-gradient(90deg, var(--h2-blue-dark), var(--h2-blue));
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  box-shadow: 0 8px 18px rgba(2, 139, 212, 0.22);
}

.h2-cta-button::after {
  margin-left: 8px;
  content: ">";
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}

.h2-side {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 18px;
}

.h2-side-box {
  padding: 20px;
  background: #fff;
  border: 0;
  border-radius: 25px;
  box-shadow: var(--h2-shadow);
}

.h2-side-box strong {
  display: block;
  color: var(--h2-navy);
  font-size: 18px;
  line-height: 1.4;
}

.h2-toc {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.h2-toc a {
  padding-bottom: 10px;
  color: var(--h2-muted);
  border-bottom: 1px solid var(--h2-line);
  font-size: 14px;
  font-weight: 800;
}

.h2-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.article-detail .h2-article {
  text-align: left;
}

.h2-article-hero {
  overflow: hidden;
  background: var(--h2-soft);
}

.h2-article-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
  width: min(1200px, calc(100% - 8%));
  margin: 0 auto;
  padding: 80px 0;
}

.h2-label {
  margin: 0;
  color: var(--h2-blue-dark);
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
}

.h2-article-hero h1 {
  margin: 0;
  color: var(--h2-navy);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.h2-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  color: var(--h2-muted);
  font-size: 13px;
  font-weight: 800;
}

.h2-article-hero-image {
  margin: 0;
}

.h2-article-hero-image img {
  width: 100%;
  border-radius: 25px;
}

.article-detail .h2-article > .h2-toc,
.article-detail .h2-article > .h2-section {
  width: min(1200px, calc(100% - 8%));
  margin: 34px auto 0;
  padding: clamp(28px, 4vw, 44px);
  background: #fff;
  border-radius: 25px;
  box-shadow: var(--h2-shadow);
}

.article-detail .h2-article > .h2-toc h2,
.article-detail .h2-section h2 {
  margin: 0 0 1.5em;
  padding: 1.1em 0.2em 1em;
  color: var(--h2-text);
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.42;
}

.article-detail .h2-section h3 {
  margin: 2.2em 2px 1.1em;
  padding: 0.3em 0 0.3em 0.8em;
  color: var(--h2-text);
  border-left: 2px solid #222;
  font-size: 18px;
  font-weight: 400;
}

.article-detail .h2-section p {
  margin: 18px 0 0;
}

.article-detail .h2-article > .h2-toc ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  margin: 0;
  padding-left: 1.3em;
}

.article-detail .h2-article > .h2-toc a {
  color: var(--h2-blue-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.h2-point-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.h2-point-list > div,
.h2-free-period-cards > div {
  padding: 18px;
  background: #f6fbff;
  border: 1px solid #dceaf4;
  border-radius: 16px;
}

.h2-point-list strong,
.h2-free-period-cards strong {
  display: block;
  color: var(--h2-blue-dark);
  font-size: 17px;
  font-weight: 900;
}

.h2-article-table-wrap {
  margin-top: 24px;
  overflow-x: auto;
}

.h2-article-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid #dceaf4;
  border-radius: 15px;
  background: #fff;
}

.h2-article-table th,
.h2-article-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #dceaf4;
  text-align: left;
  vertical-align: top;
}

.h2-article-table th {
  width: 220px;
  color: var(--h2-navy);
  background: #f2f9ff;
  font-weight: 900;
}

.h2-article-table tr:last-child th,
.h2-article-table tr:last-child td {
  border-bottom: 0;
}

.h2-free-period-figure {
  margin-top: 26px;
  padding: 22px;
  background: linear-gradient(135deg, #f2f9ff 0%, #f7fff8 100%);
  border: 2px solid rgba(31, 170, 244, 0.22);
  border-radius: 20px;
}

.h2-free-period-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.article-detail .h2-section.h2-support-feature {
  display: block;
  border: 2px solid rgba(6, 199, 85, 0.25);
  background: linear-gradient(135deg, #effff5 0%, #f2f9ff 100%);
}

.h2-support-feature-head span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 14px;
  color: #fff;
  background: var(--h2-green);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.h2-support-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: 26px;
  align-items: center;
}

.h2-support-feature-grid figure {
  margin: 0;
}

.h2-support-feature-grid img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(20, 68, 96, 0.16);
}

.h2-cancel-pickup h2 {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  color: var(--h2-blue-dark);
  font-size: 26px;
  font-weight: 900;
}

.h2-cancel-pickup-head span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 14px;
  color: #fff;
  background: var(--h2-orange);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.h2-cancel-flow div {
  position: relative;
  min-height: 60px;
  padding: 14px 14px 14px 58px;
  background: #fff;
  border: 1px solid #dceaf4;
  border-radius: 14px;
}

.h2-cancel-flow div strong {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  background: var(--h2-blue-dark);
  border-radius: 50%;
  font-family: "Poppins", sans-serif;
}

.h2-cancel-flow div span {
  display: block;
  font-weight: 900;
}

.h2-faq-list {
  display: grid;
  gap: 12px;
}

.h2-faq-list details {
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #dceaf4;
  border-radius: 14px;
}

.h2-faq-list summary {
  color: var(--h2-navy);
  cursor: pointer;
  font-weight: 900;
}

@media (max-width: 980px) {
  body {
    margin-top: 55px;
    font-size: 16px;
  }

  .anq01 {
    padding-top: 55px;
    margin-top: -55px;
  }

  .h2-header {
    height: 55px;
  }

  .h2-header-inner {
    display: block;
    width: 100%;
    min-height: 55px;
    padding: 0;
  }

  .h2-logo {
    position: absolute;
    top: 12px;
    left: 10px;
    width: 160px;
    min-width: 0;
  }

  .h2-logo img {
    width: 100%;
  }

  .h2-menu-button {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 10px;
    width: 32px;
    height: 21px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    z-index: 10001;
  }

  .h2-menu-button.is-open {
    z-index: 10001;
  }

  .h2-menu-button span {
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--h2-blue-dark);
    border-radius: 4px;
    transition: all 0.5s;
  }

  .h2-menu-button span:nth-child(1) {
    top: 0;
  }

  .h2-menu-button span:nth-child(2) {
    top: 9px;
  }

  .h2-menu-button span:nth-child(3) {
    top: auto;
    bottom: 0;
  }

  .h2-menu-button.is-open span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
  }

  .h2-menu-button.is-open span:nth-child(2) {
    opacity: 0;
  }

  .h2-menu-button.is-open span:nth-child(3) {
    top: auto;
    bottom: 9px;
    transform: rotate(-45deg);
  }

  .h2-contact {
    position: fixed;
    top: 10px;
    right: 60px;
    z-index: 9999;
    width: 130px;
    height: 36px;
    min-height: 0;
    padding: 0;
    color: var(--h2-blue-dark);
    background: #fff;
    border: 2px solid var(--h2-blue-dark);
    border-radius: 25px;
    box-shadow: none;
    font-size: 14px;
    line-height: 30px;
  }

  .h2-nav {
    position: absolute;
    top: 50px;
    right: 0;
    left: 0;
    bottom: auto;
    z-index: 10000;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    height: calc(100vh - 50px);
    max-height: none;
    padding: 5%;
    overflow-y: auto;
    background: #fff;
    border-bottom: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: none;
  }

  .h2-nav.is-open {
    display: flex;
    animation: h2-slide-down 0.4s ease-out forwards;
  }

  @keyframes h2-slide-down {
    from {
      opacity: 0;
      transform: translateY(-100%);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .h2-nav a {
    display: block;
    min-height: 0;
    padding: 10px;
    color: #414143;
    background: #fff;
    border: 0;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
  }

  .h2-nav a::after {
    content: none;
  }

  .h2-menu-overlay {
    display: none;
  }

  body.h2-menu-locked {
    overflow: hidden;
  }

  body.h2-menu-locked .h2-sticky {
    display: none;
  }

  .h2-hero-inner,
  .h2-cta-inner,
  .h2-article-wrap {
    grid-template-columns: 1fr;
  }

  .h2-side {
    position: static;
    order: -1;
  }

  .h2-card-grid {
    grid-template-columns: 1fr;
  }

  .h2-wrapper {
    width: 100%;
    padding: 0 4%;
  }

  .h2-official-section {
    padding: 40px 0;
  }

  .h2-no-bottom-padding {
    padding-bottom: 0;
  }

  .h2-official-title {
    margin-bottom: 20px;
  }

  .h2-official-title p {
    font-size: 16px;
  }

  .h2-official-title h2 {
    font-size: 24px;
  }

  .h2-contact-list ul {
    display: block;
  }

  .h2-contact-list li {
    padding: 40px 4%;
  }

  .h2-contact-list-tx01 {
    font-size: 18px;
  }

  .h2-contact-list-tx02 {
    font-size: 20px;
  }

  .h2-contact-list-tx03 {
    font-size: 24px;
  }

  .h2-form-row {
    text-align: center;
  }

  .h2-form-copy {
    margin-bottom: 15px;
    font-size: 18px;
  }

  .h2-form-copy .h2-form-small {
    font-size: 16px;
  }

  .h2-form-button {
    float: none;
    display: inline-block;
  }

  .h2-form-button a {
    min-width: 0;
    font-size: 18px;
  }

  .h2-pc-only {
    display: none !important;
  }

  .h2-sp-only {
    display: block !important;
  }

  br.h2-sp-only {
    display: inline !important;
  }

  .h2-more-space {
    padding: 0 4%;
  }

  .h2-line-tx01 {
    font-size: 4vw;
    text-align: left;
  }

  .h2-line-tx02 dt {
    width: 70px;
    margin-bottom: 5px;
  }

  .h2-line-tx02 dd {
    padding-left: 0;
    font-size: 18px;
    text-align: center;
  }

  .h2-line-img {
    width: 100%;
    margin: 20px auto;
  }

  .h2-line-tx03 {
    font-size: 18px;
    text-align: center;
  }

  .h2-line-button-official a {
    font-size: 18px;
  }

  .h2-support-feature {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 18px;
  }

  .h2-support-feature h3 {
    font-size: 24px;
  }

  .h2-article-hero,
  .h2-support-feature-grid,
  .h2-point-list,
  .h2-free-period-cards,
  .article-detail .h2-article > .h2-toc ol {
    grid-template-columns: 1fr;
  }

  .h2-article-hero {
    gap: 28px;
    padding: 48px 0;
  }

  .h2-support-product-cta a {
    grid-template-columns: 1fr;
  }

  .h2-support-product-copy {
    gap: 14px;
  }

  .h2-support-product-copy span {
    font-size: 17px;
    text-align: center;
  }

  .h2-cta-button {
    min-height: 52px;
    width: 100%;
    font-size: 16px;
  }

  .h2-quick-answer {
    padding: 18px 14px;
    border-radius: 18px;
  }

  .h2-quick-answer h3 {
    font-size: 18px;
    line-height: 1.5;
  }

  .h2-cancel-pickup {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .h2-cancel-pickup h3 {
    font-size: 20px;
  }

  .h2-cancel-flow li {
    padding: 14px 14px 14px 58px;
  }

  .h2-cancel-flow li::before {
    left: 14px;
  }

  .h2-cancel-actions a {
    width: 100%;
  }

  .h2-summary-table td:first-child,
  .h2-article-info .h2-data-table td:first-child {
    width: 38%;
  }

  .h2-official-footer {
    padding-bottom: 160px;
  }
}

@media (max-width: 640px) {
  .h2-header-inner,
  .h2-hero-inner,
  .h2-section,
  .h2-cta-inner,
  .h2-breadcrumb,
  .h2-article-wrap {
    width: min(100% - 8%, 1200px);
  }

  .h2-header-inner {
    width: 100%;
  }

  .h2-hero-inner {
    min-height: 0;
    padding: 40px 0;
  }

  .h2-hero h1,
  .h2-article-hero h1,
  .h2-section-heading h2 {
    font-size: 24px;
    line-height: 1.8;
  }

  .h2-kicker,
  .h2-label {
    font-size: 16px;
  }

  .h2-lead,
  .h2-section-heading p {
    font-size: 14px;
  }

  .h2-section {
    padding: 40px 0;
  }

  .h2-card-body {
    padding: 20px 20px 20px;
  }

  .h2-article-category {
    padding-top: 42px;
  }

  .h2-category-heading {
    display: block;
    margin-bottom: 18px;
    text-align: center;
  }

  .h2-category-heading h3 {
    font-size: 22px;
  }

  .h2-category-heading p {
    font-size: 13px;
  }

  .h2-category-count {
    margin-top: 12px;
  }

  .h2-card h3 {
    font-size: 18px;
  }

  .h2-card p {
    font-size: 14px;
  }

  .h2-hero-visual {
    min-height: 0;
  }

  .h2-badge-panel {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .h2-card-grid,
  .h2-related-grid {
    grid-template-columns: 1fr;
  }

  .h2-card {
    border-radius: 25px;
  }

  .h2-cta-inner {
    text-align: center;
  }

  .h2-line-button,
  .h2-primary-button {
    width: 100%;
  }

  .h2-article-wrap {
    padding-top: 28px;
  }

  .h2-sticky {
    right: 3%;
    bottom: -18px;
    left: auto;
    width: min(38%, 176px);
    max-width: 176px;
    justify-content: space-between;
  }

  .h2-sticky img {
    width: 100%;
  }

  .h2-sticky .h2-sticky-chara {
    top: -28px;
    right: 0;
    width: 40px;
  }
}
