@charset "utf-8";

/* ======================================== */
/* 変数 */
/* ======================================== */
:root {
  --yellow: #F8D31A;
  --yellow02: #FFED67;
  --yellow-soft: #FFFBDB;
  --blue: #6EADCA;
  --blue-deep: #1E8BBD;
  --text: #222;
  --orange: #FB633D;
  --white: #fff;
  --black: #222;
  --shadow: 6px 6px 0 #222;
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: clamp(10px, 2vw, 20px);
  --radius-sm: clamp(5px, 1vw, 10px);
  --container: 1200px;
}

/* ======================================== */
/* 全体 */
/* ======================================== */
*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.14vw, 16px);
  line-height: 1.6;
  letter-spacing: 0.025em;
  background: var(--white);
  color: var(--black);
}

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

/* 共通 */
/* ======================================== */
.section__inner {
  width: min(90%, 1200px);
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  color: var(--blue-deep);
  font-size: clamp(30px, 7vw, 56px);
  font-weight: 600;
}

.section-heading--white {
  color: var(--white);
}

.section-heading-ja {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 clamp(20px, 3vw, 40px);
  font-family: 'Zen Maru Gothic', sans-serif;
}

.section-heading-ja--white {
  color: rgba(255, 255, 255, .92);
}

.text-left {
  text-align: left;
}

/* menu */
/* ======================================== */
.header {
  position: relative;
  z-index: 100;
}

.hero__menu {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1100;
  width: clamp(50px, 3vw, 58px);
  height: clamp(50px, 3vw, 58px);
  border-radius: 50%;
  background: var(--blue-deep);
  border: none;
  cursor: pointer;
  appearance: none;
}

.hero__menu span,
.hero__menu span::before,
.hero__menu span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transform: translateX(-50%);
  transition: transform .4s ease, opacity .3s ease, top .4s ease;
}

.hero__menu span {
  top: 50%;
  transform: translate(-50%, -50%);
}

.hero__menu span::before {
  top: -7px;
}

.hero__menu span::after {
  top: 7px;
}

.hero__menu.is-open span {
  background: transparent;
}

.hero__menu.is-open span::before {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.hero__menu.is-open span::after {
  top: 0;
  transform: translateX(-50%) rotate(-45deg);
}

/* 全画面メニュー */
.global-nav {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--yellow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .4s ease, visibility .4s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.global-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.global-nav__inner {
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 50px 24px 0;
}

.global-nav__list {
  padding: 0 0 40px;
  text-align: center;
}

.global-nav__list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

.global-nav__list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.8);
}

.global-nav.is-open .global-nav__list li {
  opacity: 1;
  transform: translateY(0);
}

.global-nav__list a {
  display: block;
  padding: 18px 0 16px;
  text-decoration: none;
  text-align: center;
}

/* 英語 */
.global-nav__list a span {
  display: block;
  font-family: 'Montserrat', sans-serif;
  color: var(--white);
  font-size: clamp(18px, 2.8vw, 22px);
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

/* 日本語 */
.global-nav__list a {
  font-family: 'Zen Maru Gothic', sans-serif;
  color: var(--black);
  font-weight: 700;
  line-height: 1.4;
}

.global-nav__list a:hover {
  transform: translateY(-2px);
  transition: 0.2s;
}

/* hero */
/* ======================================== */
.section--hero {
  padding: clamp(20px, 5vw, 40px) clamp(20px, 5vw, 40px) clamp(50px, 7vw, 100px) clamp(20px, 5vw, 40px);
  background: var(--yellow);
}

.hero__inner {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: clamp(10px, 3vw, 20px);
}

.hero__badge {
  display: inline-block;
  background: var(--black);
  color: var(--yellow);
  font-weight: 500;
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.3;
  padding: .8em 1.5em;
  border-radius: var(--radius-sm);
  margin-bottom: clamp(10px, 3vw, 20px);
  text-align: center;
  letter-spacing: .08em;
}

.hero__lead-arc {
  width: min(100%, 520px);
  margin: -90px auto 10px;
}

.hero__lead-arc svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.hero__lead-arc text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: 700;
  fill: var(--black);
}

.hero__title {
  text-align: center;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 600;
  width: max-content;
  margin: 0 auto 24px;
  background: linear-gradient(transparent 70%, var(--yellow) 70%);
  padding: 0 .1em;
  line-height: 1.3;
  letter-spacing: .08em;
}

.hero__title strong {
  font-size: clamp(32px, 6vw, 60px);
  padding: 0 .15em;
  font-weight: 700;
}

.hero__title span {
  font-size: clamp(18px, 2.8vw, 28px);
}

.hero__visual {
  width: min(100%, 650px);
  margin: 0 auto;
}

.hero__copy {
  text-align: center;
  margin: 20px 0;
  color: #fff;
}

.hero__copy span {
  display: inline-block;
  background: var(--blue-deep);
  padding: 0 .5em;
  margin: .1em 0;
  font-size: clamp(14px, 2vw, 20px);
  letter-spacing: .08em;
}

/* ダウンロード */
/* ======================================== */
.section--download {
  background: var(--yellow);
  padding: 0 0 clamp(50px, 7vw, 100px);
  color: var(--white);
}

.section--download .section__inner {
  width: min(90%, 800px);
  background: var(--blue-deep);
  border-radius: var(--radius-sm);
  padding: clamp(15px, 3vw, 40px);
  box-shadow: 8px 8px var(--black);
  border: 2px solid var(--black);
}

.section--download .section-heading-ja {
  font-size: clamp(18px, 2vw, 30px);
  margin: 0 0 16px;
}

.section--download .section-heading-ja {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.section--download .section-heading-ja::before,
.section--download .section-heading-ja::after {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 999px;
}

.section--download .section-heading-ja::before {
  transform: rotate(45deg);
}

.section--download .section-heading-ja::after {
  transform: rotate(-45deg);
}

.store-badges {
  background: #fff;
  border-radius: 999px;
  padding: clamp(10px, 3vw, 40px) clamp(20px, 4vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  border: 2px solid var(--black);
}

.download__text {
  margin: 16px 0 0;
}

/* どんなお店？ */
/* ======================================== */
.section--about {
  background: var(--white);
  border-radius: 30px 30px 0 0;
  position: relative;
  padding: clamp(50px, 7vw, 100px) 0;
}

.section--about::before {
  background: var(--yellow);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  z-index: -1;
}

.about__lead {
  font-size: 18px;
  margin: 0 0 clamp(20px, 3vw, 40px);
}

.about__lead-strong {
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.55;
  display: inline-block;
  background: linear-gradient(transparent 10%, var(--yellow) 10%);
  padding: 0 .16em;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: stretch;
}

.about__image {
  border-radius: var(--radius-md);
  border: 2px solid var(--black);
  overflow: hidden;
  height: 100%;
}

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

.about__text-box {
  background: #fff;
  border: 5px solid var(--yellow02);
  padding: clamp(20px, 3vw, 40px);
  height: 100%;
  display: grid;
  place-content: center;
}

/* 何がすごいの？ */
/* ======================================== */
.section--feature {
  background: var(--yellow-soft);
  border-radius: 30px 30px 0 0;
  position: relative;
  padding: clamp(50px, 7vw, 100px) 0;
}

.section--feature::before {
  background: var(--white);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  z-index: -1;
}

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

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 4px solid var(--yellow);
  padding: clamp(20px, 3vw, 40px);
}

.feature-card__label {
  text-align: center;
  color: var(--orange);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.feature-card__title {
  text-align: center;
  font-size: 22px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  line-height: 1.55;
  margin: 6px 0 10px;
  min-height: calc(1.55em * 2);
  display: grid;
  place-items: center;
}

.feature-card__icon {
  width: 150px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
}

/* こんな方におすすめ！ */
/* ======================================== */
.section--recommended {
  background: var(--yellow);
  border-radius: 30px 30px 0 0;
  position: relative;
  padding: clamp(50px, 7vw, 100px) 0;
}

.section--recommended::before {
  background: var(--yellow-soft);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  z-index: -1;
}

.recommended__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0 0 40px;
}

.recommended__item {
  background: var(--white);
  color: var(--black);
  border-radius: 999px;
  min-height: 62px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 500;
}

.dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue-deep);
  flex: 0 0 auto;
}

.recommended__copy {
  color: var(--black);
  margin: 0 0 40px;
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 600;
  border-bottom: 2px dotted var(--black);
  padding-bottom: 14px;
  text-align: center;
}

.recommended__slider {
  display: flex;
  overflow: hidden;
}

.recommended__slider-group {
  animation: scroll-left 40s infinite linear .5s both;
  display: flex;
}

.slide {
  width: calc(100vw / 4);
  margin-right: 14px;
  border-radius: 10px;
  border: 2px solid var(--black);
  overflow: hidden;
}

.slide img {
  width: 100%;
  display: block;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/* 料金表 */
/* ======================================== */
.section--price {
  padding: clamp(70px, 7vw, 100px) 0 clamp(50px, 7vw, 100px);
}

.price__header {
  text-align: center;
  margin-bottom: 22px;
}

.price__heading-wrap {
  position: relative;
  display: inline-block;
  margin: 0 0 10px;
}

.price__burst {
  position: absolute;
  top: -40px;
  left: -110px;
  width: 100px;
}

.price__burst img {
  display: block;
  width: 100%;
  height: auto;
}

.price__lead {
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 700;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.price__lead strong {
  color: var(--orange);
  font-size: 25px;
  background-image: radial-gradient(circle at center, var(--orange) 20%, transparent 20%);
  background-position: top left;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: 0.1em;
}

.price__notice {
  border: 4px solid var(--yellow);
  background: #fff;
  padding: 15px;
  border-radius: 5px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: clamp(20px, 3vw, 40px);
}

.price__notice-icon {
  flex-shrink: 0;
  width: 50px;
}

.price__notice-icon img {
  display: block;
  width: 100%;
}

.price__title {
  text-align: center;
  font-size: 25px;
  font-weight: 800;
  margin: clamp(20px, 3vw, 40px) 0 0;
  font-family: 'Zen Maru Gothic', sans-serif;
}

/* 料金表まわり */
.price__table-wrap {
  overflow: visible;
  padding-top: 30px;
  padding-bottom: 14px;
}

.price__table-box {
  position: relative;
  width: min(100%, 800px);
  margin-inline: auto;
}

.price__tax {
  position: absolute;
  top: -30px;
  right: 0;
  font-size: 13px;
  letter-spacing: 0.03em;
}

.price__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 16px;
}

.price__table th {
  background: #F8B61A;
  color: #fff;
  font-size: clamp(18px, 2vw, 20px);
  padding: 15px 12px;
  font-weight: 700;
  text-align: center;
  font-family: 'Zen Maru Gothic', sans-serif;
  letter-spacing: 0.08em;
}

.price__table th:first-child {
  width: 66%;
}

.price__table th:last-child {
  width: 34%;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.price__table td {
  padding: 10px clamp(8px, 1.6vw, 16px);
  border-bottom: 1px solid #ffeaa0;
  vertical-align: middle;
  background: #fff;
}

.price__table tbody tr:nth-child(even) td {
  background: #fffdf2;
}

.price__table tbody tr:last-child td {
  border-bottom: none;
}

.price__table td:last-child {
  border-left: 1px solid #f8d56c;
}

.price-item {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1vw, 10px);
  min-height: 30px;
  font-weight: 500;
}

.category {
  width: clamp(40px, 5vw, 50px);
  flex-shrink: 0;
}

.category img {
  display: block;
  width: 100%;
  height: auto;
}

.price-value {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(8px, 1vw, 10px);
  min-height: 30px;
  white-space: nowrap;
  font-weight: 500;
}

.crown {
  width: clamp(24px, 6vw, 30px);
  flex-shrink: 0;
}

.crown img {
  display: block;
  width: 100%;
  height: auto;
}

.price-value.no-crown {
  justify-content: flex-end;
}

.price-value strong {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ご利用方法 */
/* ======================================== */
.section--howto {
  background: var(--blue);
  border-radius: 30px 30px 0 0;
  position: relative;
  padding: clamp(50px, 7vw, 100px) 0;
}

.howto__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: stretch;
}

.step-card {
  border: 4px solid var(--blue-deep);
  background: var(--white);
  position: relative;
  padding: 60px 16px 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* 2枚目・3枚目の前に矢印 */
.step-card:not(:first-child)::before {
  content: "chevron_forward";
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 34px;
  line-height: 1;
  color: #fff;

  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}

.step-card__label {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--blue-deep);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding: 5px 25px;
  border-radius: 0 0 10px 0;
}

.step-card__label span {
  font-size: 24px;
}

.step-card .text-margin {
  margin: 0 0 16px;
}

.step-card__visual,
.store-badges--inside {
  display: grid;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step-card__visual {
  min-height: 170px;
  /* ここで揃える */
}

.step-card__visual--app {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

.store-badges--inside {
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.step-card__visual img,
.store-badges--inside img {
  display: block;
  max-width: 100%;
  height: auto;
}

.step-card .note {
  font-size: clamp(13px, 1vw, 14px);
  margin-top: 8px;
  display: block;
}

/* Q&A */
/* ======================================== */
.section--qa {
  padding: clamp(50px, 7vw, 100px) 0;
}

.qa__list {
  display: grid;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}

.qa-item {
  border: 4px solid var(--yellow);
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.qa-item__question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 40px 20px 18px;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  color: var(--black);
  position: relative;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.qa-item__question-text {
  position: relative;
  padding-left: 2em;
  line-height: 1.6;
}

.qa-item__question-text::before {
  content: "Q.";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--blue-deep);
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

/* ＋ / − を回転で表現 */
.qa-item__question::after,
.qa-item__question::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 18px;
  height: 2px;
  background: var(--blue-deep);
  border-radius: 999px;
  transform: translateY(-50%);
  transition: transform .35s ease, opacity .25s ease;
}

.qa-item__question::before {
  transform: translateY(-50%) rotate(90deg);
}

.qa-item.is-open .qa-item__question::before {
  transform: translateY(-50%) rotate(0deg);
  opacity: 0;
}

/* answer本体 */
.qa-item__answer-wrap {
  height: 0;
  overflow: hidden;
  transition: height .4s ease;
}

.qa-item__answer {
  border-top: 2px dotted var(--yellow);
  padding: 18px 18px 18px 3.2em;
  font-size: 16px;
  line-height: 1.9;
  position: relative;
}

.qa-item__answer::before {
  content: "A.";
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--orange);
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

/* 店舗情報 */
/* ======================================== */
.section--shop {
  background: var(--yellow);
  border-radius: 30px 30px 0 0;
  padding: clamp(50px, 7vw, 100px) 0;
}

.shop__station {
  background: #fff;
  color: #111;
  border: 2px solid #333;
  box-shadow: var(--shadow);
  border-radius: 999px;
  padding: 18px 14px;
  font-size: clamp(20px, 5vw, 42px);
  font-weight: 500;
  text-align: center;
  margin-bottom: clamp(20px, 3vw, 40px);
  line-height: 1.4;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.shop__station span {
  font-weight: 700;
  font-size: clamp(26px, 6.5vw, 60px);
}

.shop__station .text-c-orange {
  color: var(--orange);
}

.shop__detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: clamp(30px, 3vw, 40px);
}

.shop__photo {
  height: 100%;
}

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

.shop__hours {
  padding: 15px;
  background: var(--white);
  display: grid;
  place-content: center;
  border-radius: 5px;
}

.shop__hours h3 {
  margin: 0 0 12px;
  text-align: center;
  font-size: 24px;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.shop__hours ul {
  font-size: clamp(14px, 1.28, 18px);
}

.shop__hours li {
  position: relative;
  padding-left: 20px;
}

.shop__hours li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 10px;
  height: 10px;
  background: var(--blue-deep);
  border-radius: 50%;
  transform: translateY(-50%);
}

.shop__map {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 2px solid var(--black);
  overflow: hidden;
}

.shop__map iframe {
  display: block;
  width: 100%;
  height: 350px;
  border: 0;
}

.shop__address {
  position: relative;
  color: var(--black);
  font-size: clamp(14px, 1.28, 18px);
  font-weight: 500;
  padding-left: 22px;
  margin: 8px 0 0;
}

.shop__address::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 15px;
  height: 15px;
  background: var(--white);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* ご利用の際に必ずご確認下さい */
/* ======================================== */
.section--notice {
  background: var(--yellow-soft);
  border-radius: 30px 30px 0 0;
  position: relative;
  padding: clamp(50px, 7vw, 100px) 0;
}

.section--notice::before {
  background: var(--yellow);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  z-index: -1;
}

.notice__heading-wrap {
  text-align: center;
  margin-bottom: clamp(20px, 4vw, 32px);
}

.notice__heading {
  padding: clamp(10px, 2vw, 14px) clamp(16px, 3vw, 28px);
  background: var(--orange);
  color: var(--white);
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 700;
  border-radius: 5px;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.notice__blocks {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
}

.notice-card__title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  font-family: 'Zen Maru Gothic', sans-serif;
  line-height: 1.4;
}

.notice-card__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  flex: 0 0 auto;
}

.notice-card__box {
  background: var(--white);
  border: 4px solid var(--yellow02);
  border-radius: var(--radius-md);
  padding: clamp(16px, 3vw, 28px);
}

.notice-card__box p,
.notice-card__box h4 {
  margin: 0 0 1.2em;
}

.notice-card__box p:last-child {
  margin-bottom: 0;
}


.notice-card__box p {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.7;
}

.notice-card__group p+p {
  margin-top: 1.4em;
}

/* footer */
/* ======================================== */
.footer {
  background: var(--yellow-soft);
  padding: 0 0 10px;
}

.footer__inner {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.footer__company {
  text-align: center;
}

.footer__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(90%, 350px);
  padding: 8px 36px;
  border-radius: 999px;
  background: var(--blue-deep);
  color: var(--white);
  font-size: clamp(20px, 4vw, 40px);
  font-family: 'Zen Maru Gothic', sans-serif;
  margin: 0 0 clamp(20px, 4vw, 40px);
}

.footer__info {
  margin-bottom: 40px;
}

.footer__info p {
  font-size: clamp(16px, 3vw, 30px);
  color: var(--black);
}

.footer__logo {
  width: clamp(100px, 14vw, 200px);
  margin: 0 auto clamp(20px, 4vw, 40px);
}

.footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer__copy {
  font-size: clamp(11px, 1vw, 14px);
  color: #4b4b4b;
  font-family: 'Montserrat', 'Zen Maru Gothic', sans-serif;
  text-align: center;
}

.footer__pagetop {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  width: clamp(60px, 5.7vw, 80px);
  height: clamp(60px, 5.7vw, 80px);
  border-radius: 50%;
  background: var(--blue-deep);
  color: var(--white);
  cursor: pointer;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease;
}

.footer__pagetop.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.footer__pagetop:hover {
  transform: translateY(-4px);
}

.footer__pagetop:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.footer__pagetop-arrow {
  position: relative;
  display: block;
  width: 18px;
  height: 12px;
  flex-shrink: 0;
}

.footer__pagetop-arrow::before,
.footer__pagetop-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(7px, .7vw, 10px);
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transform-origin: center center;
}

.footer__pagetop-arrow::before {
  transform: translate(-82%, -50%) rotate(-45deg);
}

.footer__pagetop-arrow::after {
  transform: translate(-18%, -50%) rotate(45deg);
}

.footer__pagetop-text {
  display: block;
  color: var(--white);
  font-size: clamp(12px, 1.14vw, 16px);
  line-height: 1;
  font-family: 'Zen Maru Gothic', sans-serif;
  letter-spacing: 0.02em;
}